/* ═══════════════════════════════════════════════════
   BOVEM LANDING — CSS COMPLETO
   Paleta: preto, branco, cinza escuro
   Tipografia: Poppins (disponível no tema pai)
═══════════════════════════════════════════════════ */

/* ── RESET SCOPED ── */
#bovem, #bovem * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ── VARIÁVEIS ── */
#bovem {
    --bv-black:   #0a0a0a;
    --bv-dark:    #111111;
    --bv-dark2:   #1a1a1a;
    --bv-dark3:   #222222;
    --bv-gray:    #333333;
    --bv-gray2:   #555555;
    --bv-gray3:   #888888;
    --bv-light:   #cccccc;
    --bv-white:   #ffffff;
    --bv-accent:  #ffffff;
    --bv-border:  rgba(255,255,255,0.08);
    --bv-radius:  4px;
    --bv-max:     1160px;
    font-family: 'Poppins', 'Mulish', sans-serif;
    background: var(--bv-black);
    color: var(--bv-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── CONTAINER ── */
.bv-container {
    max-width: var(--bv-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── TIPOGRAFIA GLOBAL ── */
#bovem h1, #bovem h2, #bovem h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.15;
    color: var(--bv-white);
}
#bovem em { font-style: normal; color: var(--bv-white); opacity: 0.6; }
#bovem p  { color: var(--bv-light); line-height: 1.7; }
#bovem a  { color: var(--bv-white); text-decoration: none; }

/* ── LABEL ── */
.bv-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bv-gray3);
    display: block;
    margin-bottom: 12px;
}
.bv-label--center { text-align: center; }
.bv-label--light  { color: rgba(255,255,255,0.35); }

/* ── BOTÃO ── */
.bv-btn {
    display: inline-block;
    background: var(--bv-white);
    color: var(--bv-black) !important;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 36px;
    border-radius: var(--bv-radius);
    transition: background 0.2s, transform 0.15s;
    cursor: pointer;
    border: none;
}
.bv-btn:hover { background: var(--bv-light); transform: translateY(-1px); }
.bv-btn--lg   { padding: 18px 48px; font-size: 1rem; }
.bv-btn--white { background: var(--bv-white); color: var(--bv-black) !important; }

/* ══════════════════════
   HEADER
══════════════════════ */
.bv-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--bv-border);
}
.bv-header__inner {
    max-width: var(--bv-max);
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.bv-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}
.bv-logo__bull {
    font-size: 1.2rem;
    color: var(--bv-white);
    line-height: 1;
}
.bv-logo__text {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--bv-white);
}
.bv-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.bv-nav a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bv-gray3);
    transition: color 0.2s;
}
.bv-nav a:hover { color: var(--bv-white); }
.bv-nav__cta {
    background: var(--bv-white) !important;
    color: var(--bv-black) !important;
    padding: 9px 20px;
    border-radius: var(--bv-radius);
    font-weight: 700 !important;
    font-size: 0.75rem !important;
}
.bv-nav__cta:hover { background: var(--bv-light) !important; color: var(--bv-black) !important; }
.bv-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.bv-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--bv-white);
    border-radius: 2px;
}

/* ══════════════════════
   HERO
══════════════════════ */
.bv-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}
.bv-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 50%, rgba(255,255,255,0.03) 0%, transparent 60%),
        linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
    z-index: 0;
}
.bv-hero .bv-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}
.bv-hero__content { flex: 1; max-width: 620px; }
.bv-hero__h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--bv-white);
}
.bv-hero__h1 em { opacity: 0.4; font-style: normal; }
.bv-hero__sub {
    font-size: 1.1rem;
    color: var(--bv-gray3);
    margin-bottom: 40px;
    line-height: 1.7;
}
.bv-hero__badge {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    opacity: 0.7;
}
.bv-bull svg { width: 180px; height: 180px; }
.bv-bull__quote {
    font-size: 0.75rem;
    text-align: center;
    color: var(--bv-gray3);
    font-style: italic;
    line-height: 1.6;
    letter-spacing: 0.03em;
}

/* ══════════════════════
   FRASE CENTRAL
══════════════════════ */
.bv-quote-bar {
    background: var(--bv-white);
    padding: 40px 0;
}
.bv-quote-bar__text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    color: var(--bv-black);
    text-align: center;
    font-style: italic;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* ══════════════════════
   SEÇÕES GERAIS
══════════════════════ */
.bv-section { padding: 100px 0; }
.bv-section__h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.8rem);
    margin-bottom: 16px;
    color: var(--bv-black);
}
.bv-section__h2--center { text-align: center; }
.bv-section__h2--light  { color: var(--bv-white); }
.bv-section__sub {
    font-size: 1rem;
    color: var(--bv-gray2);
    margin-bottom: 60px;
    max-width: 640px;
}
.bv-section__sub--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* ── GRID ── */
.bv-grid { display: grid; gap: 24px; margin-top: 60px; }
.bv-grid--2   { grid-template-columns: repeat(2, 1fr); }
.bv-grid--3   { grid-template-columns: repeat(3, 1fr); }
.bv-grid--gap-lg { gap: 40px; }

/* ══════════════════════
   PROBLEMA
══════════════════════ */
.bv-problem { background: var(--bv-white); }
.bv-problem .bv-section__h2 { color: var(--bv-black); }

.bv-card {
    background: var(--bv-black);
    border: 1px solid var(--bv-border);
    border-radius: 2px;
    padding: 32px 28px;
    transition: border-color 0.2s;
}
.bv-card:hover { border-color: rgba(255,255,255,0.2); }
.bv-card--dark { background: var(--bv-dark2); }
.bv-card__icon {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--bv-gray3);
    margin-bottom: 16px;
    display: block;
}
.bv-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--bv-white);
}
.bv-card p { font-size: 0.9rem; color: var(--bv-gray3); }

.bv-callout {
    margin-top: 48px;
    padding: 32px 40px;
    border: 1px solid var(--bv-black);
    text-align: center;
    background: var(--bv-dark);
    border-radius: 2px;
}
.bv-callout p {
    font-size: 1.15rem;
    color: var(--bv-white);
    font-weight: 400;
}
.bv-callout strong { font-weight: 700; }

/* ══════════════════════
   MÉTODO
══════════════════════ */
.bv-method { background: var(--bv-dark); }
.bv-method .bv-section__sub { color: var(--bv-gray3); }

.bv-pillar {
    padding: 40px 32px;
    border: 1px solid var(--bv-border);
    border-radius: 2px;
    background: var(--bv-dark2);
    transition: border-color 0.2s;
}
.bv-pillar:hover { border-color: rgba(255,255,255,0.2); }
.bv-pillar__number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255,255,255,0.06);
    line-height: 1;
    margin-bottom: 20px;
}
.bv-pillar__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bv-white);
    margin-bottom: 12px;
}
.bv-pillar__desc {
    font-size: 0.9rem;
    color: var(--bv-gray3);
    line-height: 1.7;
}
.bv-method__footer {
    margin-top: 64px;
    padding: 40px;
    border-top: 1px solid var(--bv-border);
    text-align: center;
}
.bv-method__footer p {
    font-size: 1.05rem;
    color: var(--bv-gray3);
    line-height: 1.8;
}
.bv-method__footer strong { color: var(--bv-white); font-weight: 600; }

/* ══════════════════════
   SOBRE
══════════════════════ */
.bv-about { background: var(--bv-white); }
.bv-about .bv-section__h2 { color: var(--bv-black); }
.bv-about p { color: var(--bv-gray2); margin-bottom: 16px; }
.bv-about strong { color: var(--bv-black); }

.bv-about__grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: start;
}
.bv-about__img-wrap { position: relative; }
.bv-about__img-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--bv-dark2);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bv-gray3);
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.6;
}
.bv-about__stat-box {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--bv-black);
    padding: 20px 28px;
    border-radius: 2px;
    text-align: center;
}
.bv-about__stat-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--bv-white);
    line-height: 1;
}
.bv-about__stat-label {
    display: block;
    font-size: 0.7rem;
    color: var(--bv-gray3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 6px;
}
.bv-about__values { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.bv-value {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--bv-gray2);
}
.bv-value__mark {
    color: var(--bv-black);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ══════════════════════
   TREINAMENTO
══════════════════════ */
.bv-training { background: var(--bv-black); }

.bv-feature {
    display: flex;
    gap: 24px;
    padding: 32px;
    border: 1px solid var(--bv-border);
    border-radius: 2px;
    background: var(--bv-dark2);
    align-items: flex-start;
    transition: border-color 0.2s;
}
.bv-feature:hover { border-color: rgba(255,255,255,0.2); }
.bv-feature__icon {
    font-size: 1.4rem;
    color: var(--bv-white);
    flex-shrink: 0;
    width: 40px;
    text-align: center;
    opacity: 0.5;
}
.bv-feature h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bv-white);
    margin-bottom: 8px;
}
.bv-feature p { font-size: 0.9rem; color: var(--bv-gray3); }

/* ══════════════════════
   PROVA
══════════════════════ */
.bv-proof { background: var(--bv-white); }
.bv-proof .bv-section__h2 { color: var(--bv-black); }
.bv-proof .bv-section__sub { color: var(--bv-gray2); }

.bv-stat-card {
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
}
.bv-stat-card__img {
    aspect-ratio: 4/3;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.6;
}
.bv-disclaimer {
    margin-top: 40px;
    text-align: center;
    font-size: 0.75rem;
    color: #999;
}

/* ══════════════════════
   PARA QUEM NÃO É
══════════════════════ */
.bv-nofor { background: var(--bv-dark); }
.bv-nofor__inner {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 64px;
    align-items: start;
}
.bv-nofor__divider { background: var(--bv-border); }
.bv-nofor .bv-section__h2 { margin-bottom: 32px; }
.bv-nofor em { opacity: 0.45; }

.bv-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.bv-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--bv-gray3);
    line-height: 1.5;
}
.bv-list li::before {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 900;
    margin-top: 1px;
}
.bv-list--no  li::before { content: '✕'; background: rgba(255,255,255,0.06); color: var(--bv-gray3); }
.bv-list--yes li::before { content: '✓'; background: rgba(255,255,255,0.1); color: var(--bv-white); }
.bv-list--yes li { color: var(--bv-light); }

/* ══════════════════════
   CTA FINAL
══════════════════════ */
.bv-cta { background: var(--bv-dark2); }
.bv-cta__inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}
.bv-cta__h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--bv-white);
    margin-bottom: 20px;
}
.bv-cta__sub {
    font-size: 1rem;
    color: var(--bv-gray3);
    margin-bottom: 40px;
    line-height: 1.7;
}
.bv-cta__fine {
    margin-top: 20px;
    font-size: 0.72rem;
    color: var(--bv-gray2);
}

/* ══════════════════════
   FOOTER
══════════════════════ */
.bv-footer {
    background: var(--bv-black);
    padding: 48px 0;
    border-top: 1px solid var(--bv-border);
}
.bv-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}
.bv-footer__legal {
    font-size: 0.75rem;
    color: var(--bv-gray2);
    line-height: 1.7;
    max-width: 560px;
}
.bv-footer__links { display: flex; gap: 24px; }
.bv-footer__links a {
    font-size: 0.75rem;
    color: var(--bv-gray2);
    transition: color 0.2s;
}
.bv-footer__links a:hover { color: var(--bv-white); }

/* ══════════════════════
   RESPONSIVO
══════════════════════ */
@media (max-width: 960px) {
    .bv-grid--3 { grid-template-columns: repeat(2, 1fr); }
    .bv-about__grid { grid-template-columns: 1fr; gap: 48px; }
    .bv-about__img-wrap { max-width: 340px; }
    .bv-nofor__inner { grid-template-columns: 1fr; gap: 48px; }
    .bv-nofor__divider { display: none; }
    .bv-hero .bv-container { flex-direction: column; }
    .bv-hero__badge { display: none; }
}

@media (max-width: 680px) {
    .bv-nav { display: none; flex-direction: column; position: fixed; top: 64px; left: 0; right: 0; background: var(--bv-black); padding: 24px; gap: 20px; border-bottom: 1px solid var(--bv-border); z-index: 999; }
    .bv-nav--open { display: flex; }
    .bv-nav a { font-size: 0.9rem; }
    .bv-burger { display: flex; }
    .bv-grid--2, .bv-grid--3 { grid-template-columns: 1fr; }
    .bv-section { padding: 72px 0; }
    .bv-hero { padding: 100px 0 60px; }
    .bv-hero__h1 { font-size: 2rem; }
}

/* ── ANIMAÇÃO SUAVE DE ENTRADA ── */
@keyframes bvFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.bv-hero__content { animation: bvFadeUp 0.7s ease both; }
