/* ================================================================
   PsiUniverse – Site Comercial  |  Dark Gold Premium
   ================================================================ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
    --gold:        #c9a84c;
    --gold-dim:    #9a7a51;
    --gold-light:  #e8d4a0;
    --gold-bright: #f5d978;
    --gold-glow:   rgba(201,168,76,.35);

    --bg:          #08080f;
    --bg-2:        #0f0f1a;
    --surface-1:   #131320;
    --surface-2:   #1b1b2c;
    --surface-3:   #232338;

    --border:       rgba(201,168,76,.16);
    --border-hover: rgba(201,168,76,.5);

    --text:       #f0ecff;
    --text-muted: #8a83a8;

    --radius:    14px;
    --radius-sm: 8px;
    --transition:.22s cubic-bezier(.4,0,.2,1);
    --max-w:     1200px;

    /* Shadows */
    --shadow-gold: 0 0 40px rgba(201,168,76,.18);
    --shadow-card: 0 4px 24px rgba(0,0,0,.5);
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* aqui não quebra position:fixed */
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    padding-top: 72px; /* compensação do header fixo */
    min-height: 100vh;
    overflow-x: hidden;
    max-width: 100%;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── FUNDO COM GRADIENTE E BRILHO ────────────────────────────── */
.site-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60% 40% at 75% 20%, rgba(201,168,76,.1) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 20% 80%, rgba(201,168,76,.06) 0%, transparent 55%),
        radial-gradient(ellipse 80% 80% at 50% 50%, rgba(15,15,30,1) 0%, var(--bg) 100%);
}

/* ── PARTÍCULAS (injetadas via JS) ───────────────────────────── */
.particle {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    animation: particle-rise linear infinite;
    will-change: transform;
}
@keyframes particle-rise {
    0%   { transform: translateY(102vh) scale(0); opacity: 0; }
    8%   { opacity: 1; transform: translateY(95vh) scale(1); }
    92%  { opacity: .6; }
    100% { transform: translateY(-8vh) scale(.5); opacity: 0; }
}

/* ── BOTÕES ──────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .8rem 1.9rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .95rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
    font-family: inherit;
    letter-spacing: .01em;
}
.btn--primary {
    background: linear-gradient(135deg, var(--gold) 0%, #a8732e 100%);
    color: #09090f;
    box-shadow: 0 4px 24px rgba(201,168,76,.4);
}
.btn--primary:hover {
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
    box-shadow: 0 6px 36px rgba(201,168,76,.6);
    transform: translateY(-2px);
}
.btn--outline {
    background: transparent;
    color: var(--gold-light);
    border: 1.5px solid var(--border-hover);
}
.btn--outline:hover {
    background: rgba(201,168,76,.08);
    border-color: var(--gold);
    transform: translateY(-2px);
}
.btn--ghost {
    background: transparent;
    color: var(--text-muted);
    border: 1.5px solid rgba(255,255,255,.2);
}
.btn--ghost:hover {
    color: var(--text);
    border-color: rgba(255,255,255,.4);
    background: rgba(255,255,255,.05);
}
.btn--sm  { padding: .55rem 1.3rem; font-size: .87rem; }
.btn--lg  { padding: 1rem 2.6rem; font-size: 1.05rem; }

/* ── HEADER FIXO ─────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 9000;
    height: 72px;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 3rem;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: background .4s ease, border-color .4s ease,
                backdrop-filter .4s ease, box-shadow .4s ease;
}
.site-header.is-scrolled {
    background: rgba(8,8,15,.92);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-bottom-color: rgba(201,168,76,.18);
    box-shadow: 0 1px 0 rgba(201,168,76,.08), 0 4px 32px rgba(0,0,0,.55);
}
.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}
.brand img {
    width: 180px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}
.brand--footer img {
    width: 100%;
    height: auto;
}
.site-nav {
    display: flex;
    gap: 2.2rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.site-nav a {
    color: var(--text-muted);
    font-size: .9rem;
    font-weight: 500;
    transition: color var(--transition);
    position: relative;
}
.site-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform var(--transition);
}
.site-nav a:hover { color: var(--gold-light); }
.site-nav a:hover::after { transform: scaleX(1); }
.site-header__actions {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-left: auto;
    flex-shrink: 0;
}

/* ── HELPERS ─────────────────────────────────────────────────── */
.inner       { max-width: var(--max-w); margin: 0 auto; }
section      { padding: 7rem 2.5rem; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.7rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
}
.section-header h2 em, .gold-text { color: var(--gold); font-style: normal; }
.section-sub {
    color: var(--text-muted);
    margin-top: .9rem;
    font-size: 1.05rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}
.label-tag {
    display: inline-block;
    padding: .3rem 1.1rem;
    border: 1px solid var(--border-hover);
    border-radius: 50px;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--gold-light);
    background: rgba(201,168,76,.08);
    margin-bottom: 1.4rem;
    text-transform: uppercase;
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    min-height: calc(92vh - 72px);
    padding: 4rem 3rem 5rem;
    max-width: 1320px;
    margin: 0 auto;
}
.hero__content { max-width: 580px; }
.hero__content h1 {
    font-size: clamp(2.1rem, 4.5vw, 2.5rem);
    font-weight: 900;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1.4rem;
    letter-spacing: -.02em;
}
/* TinyMCE envolve o título em <p> — neutraliza estilos de parágrafo dentro do h1 */
.hero__content h1 :is(p, div) {
    display: contents;
    margin: 0;
    color: inherit;
    font: inherit;
    letter-spacing: inherit;
}
.hero__content h1 strong { color: var(--gold); }
.hero__content h1 em.gold-text,
.hero__content h1 .gold-text { color: var(--gold); font-style: normal; }
.hero__content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.4rem;
    max-width: 480px;
    line-height: 1.75;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero__social-proof {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: .85rem;
}
.hero__avatars {
    display: flex;
}
.hero__avatars span {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--surface-3);
    border: 2px solid var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    margin-left: -8px;
    color: var(--gold);
    font-weight: 700;
}
.hero__avatars span:first-child { margin-left: 0; }
.hero__social-proof strong { color: var(--gold-light); }
@keyframes glow-pulse {
    0%, 100% { transform: scale(1);   opacity: .8; }
    50%       { transform: scale(1.12); opacity: 1; }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}

/* ── TRUST BAR ───────────────────────────────────────────────── */
.trust-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface-1);
    padding: 1.4rem 3rem;
}
.trust-bar__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .87rem;
    color: var(--text-muted);
    font-weight: 500;
}
.trust-item svg {
    width: 20px; height: 20px;
    color: var(--gold);
    flex-shrink: 0;
}

/* ── MÉTODO (FOTO + TEXTO) ───────────────────────────────────── */
.method-section {
    padding: 5rem 2.5rem;
}
.method-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem;
    align-items: center;
    max-width: var(--max-w);
}
.method-section__media {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    background: var(--surface-1);
    min-height: 320px;
}
.method-section__media img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}
.method-section__content h2 {
    font-size: clamp(1.8rem, 3.8vw, 2.5rem);
    line-height: 1.15;
    color: var(--text);
    margin-bottom: .8rem;
    font-weight: 900;
}
.method-section__content h3 {
    font-size: clamp(1rem, 2.1vw, 1.3rem);
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 800;
}
.method-section__content p {
    color: var(--text-muted);
    margin-bottom: .7rem;
    line-height: 1.65;
    font-size: 1rem;
}
.method-section__content #methodLead {
    color: var(--text);
    font-weight: 600;
}

/* ── FEATURES ────────────────────────────────────────────────── */
.features { padding: 6rem 2.5rem; }
.features__inner { max-width: var(--max-w); margin: 0 auto; }
.features__heading {
    text-align: center;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 3rem;
}
.features__heading em { color: var(--gold-light); font-style: normal; font-weight: 700; }
.features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
}
.feat-card {
    background: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.6rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    cursor: default;
}
.feat-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform .4s;
}
.feat-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(201,168,76,.12);
}
.feat-card:hover::after { transform: scaleX(1); }
.feat-card__icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: rgba(201,168,76,.1);
    border: 1.5px solid rgba(201,168,76,.25);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.3rem;
    color: var(--gold);
    transition: all var(--transition);
}
.feat-card__icon svg { width: 26px; height: 26px; }
.feat-card:hover .feat-card__icon {
    background: rgba(201,168,76,.18);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(201,168,76,.25);
}
.feat-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .55rem;
    line-height: 1.4;
}
.feat-card p {
    font-size: .87rem;
    color: var(--text-muted);
    line-height: 1.65;
}
.feat-card__link {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    margin-top: .9rem;
    font-size: .82rem;
    color: var(--gold);
    font-weight: 600;
    transition: gap var(--transition);
}
.feat-card:hover .feat-card__link { gap: .6rem; }

/* ── PLANOS ──────────────────────────────────────────────────── */
.plans {
    padding: 6rem 2.5rem 5rem;
    background: linear-gradient(180deg, transparent 0%, rgba(201,168,76,.05) 50%, transparent 100%);
}
.plans__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1120px;
    margin: 0 auto;
    align-items: stretch;
}

.plans__grid .plan-card {
    flex: 0 1 340px;
    width: min(100%, 340px);
    max-width: 360px;
}

/* Card */
.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2.6rem 1.8rem 1.8rem;
    border-radius: 20px;
    background: linear-gradient(180deg, #151826 0%, #0f1220 100%);
    border: 1px solid rgba(255,255,255,.05);
    box-shadow:
        inset 0 0 0 1px rgba(201,168,76,.08),
        0 18px 40px rgba(0,0,0,.35);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    overflow: visible;
}
.plan-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,168,76,.35);
    box-shadow:
        inset 0 0 0 1px rgba(201,168,76,.2),
        0 24px 60px rgba(0,0,0,.45);
}
.plan-card--featured {
    background: linear-gradient(180deg, #1a1d2d 0%, #121626 100%);
    border-color: rgba(201,168,76,.55);
    box-shadow:
        inset 0 0 0 1px rgba(201,168,76,.35),
        0 0 0 2px rgba(201,168,76,.18),
        0 24px 70px rgba(201,168,76,.18);
    z-index: 2;
}
.plan-card--featured.reveal.visible { transform: translateY(-10px) scale(1.035); }
.plan-card--featured:hover,
.plan-card--featured.reveal.visible:hover {
    transform: translateY(-16px) scale(1.035);
    box-shadow:
        inset 0 0 0 1px rgba(201,168,76,.55),
        0 0 0 2px rgba(201,168,76,.3),
        0 30px 80px rgba(201,168,76,.3);
}

/* Pill no topo */
.plan-card__pill {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .42rem 1.1rem;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: linear-gradient(180deg, #1c2134 0%, #141729 100%);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 6px 18px rgba(0,0,0,.5);
    white-space: nowrap;
    z-index: 3;
}
.plan-card__pill--featured {
    color: #1a1304;
    background: linear-gradient(135deg, #f5d978 0%, #c9a84c 100%);
    border-color: rgba(201,168,76,.85);
    box-shadow:
        0 0 0 3px rgba(201,168,76,.18),
        0 8px 20px rgba(201,168,76,.4);
}
.plan-card__pill-icon { font-size: .95rem; line-height: 1; }
.plan-card__pill-text { line-height: 1; }
.plan-card__pill--basic::before,
.plan-card__pill--basic::after {
    content: '\203A';
    font-size: .85rem;
    opacity: .55;
    color: var(--gold-light);
}
.plan-card__pill--basic::before {
    content: '\2039';
}

/* Nome */
.plan-card__name {
    margin: .2rem 0 1rem;
    text-align: center;
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: .01em;
}

/* Bonus block */
.plan-card__bonus {
    margin: .3rem 0 1.3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
}
.plan-card__bonus-banner {
    display: block;
    width: 100%;
    padding: .7rem .5rem;
    border-radius: 10px;
    text-align: center;
    font-size: .95rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #1a1304;
    background: linear-gradient(135deg, #f5d978 0%, #c9a84c 50%, #b38a3d 100%);
    border: 1px solid rgba(255,220,140,.6);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.4),
        inset 0 -2px 0 rgba(0,0,0,.1),
        0 6px 18px rgba(201,168,76,.35);
    text-shadow: 0 1px 0 rgba(255,255,255,.2);
}
.plan-card__bonus-stage {
    position: relative;
    width: 100%;
    min-height: 180px;
    padding: 1rem .5rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse 70% 55% at 50% 50%, rgba(245,217,120,.4) 0%, rgba(201,168,76,.18) 35%, rgba(201,168,76,0) 65%),
        linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.15));
    overflow: hidden;
}
.plan-card__bonus-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 45% at 50% 50%, rgba(245,217,120,.45) 0%, rgba(201,168,76,.18) 40%, transparent 72%);
    filter: blur(8px);
    pointer-events: none;
}
.plan-card__bonus-img {
    position: relative;
    width: auto;
    max-width: 100%;
    max-height: 190px;
    object-fit: contain;
    filter: drop-shadow(0 22px 26px rgba(0,0,0,.7)) drop-shadow(0 0 20px rgba(245,217,120,.2));
    z-index: 1;
}
.plan-card__bonus-fallback {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    font-size: 2.8rem;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(75,87,186,.35), rgba(39,47,109,.2));
    border: 1px solid rgba(201,168,76,.35);
    z-index: 1;
}
.plan-card__bonus-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    padding: .55rem 1.1rem;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 700;
    color: var(--gold-light);
    border: 1px solid rgba(201,168,76,.55);
    background: linear-gradient(180deg, rgba(201,168,76,.14), rgba(201,168,76,.04));
    box-shadow:
        inset 0 1px 0 rgba(255,220,140,.15),
        0 6px 16px rgba(0,0,0,.4);
    max-width: 100%;
    text-align: center;
    line-height: 1.25;
}
.plan-card__bonus-pill span { font-size: 1.05rem; line-height: 1; flex-shrink: 0; }

/* Preço */
.plan-card__price-wrap {
    text-align: center;
    margin: .4rem 0 .3rem;
}
.plan-card__price {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: .4rem;
    line-height: 1;
}
.plan-card__price-currency,
.plan-card__price-prefix {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--gold-bright);
    letter-spacing: .01em;
}
.plan-card__price-value {
    font-size: 3.1rem;
    font-weight: 900;
    color: var(--gold-bright);
    letter-spacing: -.02em;
    line-height: 1;
    text-shadow: 0 2px 14px rgba(201,168,76,.3);
}
.plan-card__price-period {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-muted);
}
.plan-card__price-alt {
    margin-top: .45rem;
    font-size: .88rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Promo (ex: Oferta de lançamento) */
.plan-card__promo {
    margin: .9rem 0;
    padding: .75rem 1rem;
    background: rgba(201,168,76,.08);
    border: 1px solid rgba(201,168,76,.28);
    border-radius: 10px;
    font-size: .85rem;
    color: var(--gold-light);
    line-height: 1.5;
    text-align: center;
}
.plan-card__promo strong { color: var(--gold-bright); font-weight: 700; }

/* Trial */
.plan-card__trial {
    margin: .6rem 0;
    padding: .55rem .9rem;
    border-radius: 999px;
    background: rgba(100,200,130,.08);
    border: 1px solid rgba(100,200,130,.25);
    color: #8fe2a1;
    font-size: .78rem;
    font-weight: 700;
    text-align: center;
}

/* Features */
.plan-card__features {
    list-style: none;
    padding: 0;
    margin: 1.1rem 0 1.3rem;
    display: flex;
    flex-direction: column;
    gap: .65rem;
    text-align: center;
}
.plan-card__features li {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: .55rem;
    font-size: .92rem;
    color: var(--text);
    line-height: 1.35;
}
.plan-card__features li::before {
    content: '';
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Footer */
.plan-card__footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.plan-card__guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    margin: 0;
    padding: .55rem .9rem;
    border-radius: 10px;
    background: rgba(91,127,230,.1);
    border: 1px solid rgba(91,127,230,.28);
    color: #a6bfff;
    font-size: .8rem;
    font-weight: 600;
    text-align: center;
}
.plan-card__guarantee svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* CTA */
.plan-card__cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem 1rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: .95rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid rgba(201,168,76,.45);
    background: transparent;
    color: var(--gold-light);
    transition: all var(--transition);
}
.plan-card__cta:hover {
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
    border-color: transparent;
    color: #0b0a10;
    box-shadow: 0 8px 26px rgba(201,168,76,.5);
    transform: translateY(-2px);
}
.plan-card--featured .plan-card__cta {
    background: linear-gradient(135deg, #f5d978 0%, #c9a84c 100%);
    border-color: transparent;
    color: #0b0a10;
    box-shadow: 0 8px 26px rgba(201,168,76,.35);
}
.plan-card--featured .plan-card__cta:hover {
    background: linear-gradient(135deg, #ffe88a 0%, #d4b257 100%);
    box-shadow: 0 12px 34px rgba(201,168,76,.6);
    transform: translateY(-3px);
}

/* Trust bar */
.plans-trust {
    margin: 3rem auto 0;
    max-width: 1000px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 0 1rem;
}
.plans-trust__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .85rem;
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.3;
}
.plans-trust__item svg {
    width: 26px;
    height: 26px;
    color: var(--gold-light);
    flex-shrink: 0;
}
.plans-trust__item strong {
    display: block;
    color: var(--text);
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: 2px;
}
.plans-trust__item span {
    display: block;
    font-size: .82rem;
    color: var(--text-muted);
}

/* ── PRÉ-INSCRIÇÃO ─────────────────────────────────────────────── */
.pre-reg {
    padding: 5rem 0 4.5rem;
    position: relative;
}
.pre-reg[hidden] { display: none !important; }
.plans[hidden] { display: none !important; }
.pre-reg__benefit {
    margin: .85rem auto 0;
    max-width: 40rem;
    text-align: center;
    color: var(--gold-light);
    font-weight: 600;
    font-size: .98rem;
    line-height: 1.45;
}
.pre-reg__form {
    margin: 2rem auto 0;
    max-width: 720px;
    padding: 1.6rem 1.5rem 1.75rem;
    border-radius: 22px;
    border: 1px solid rgba(201,168,76,.28);
    background:
        radial-gradient(ellipse at top, rgba(201,168,76,.08), transparent 55%),
        rgba(10, 10, 18, .72);
    box-shadow: 0 18px 50px rgba(0,0,0,.35);
}
.pre-reg__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.1rem;
}
.pre-reg__field label {
    display: block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: .4rem;
}
.pre-reg__field input {
    width: 100%;
    padding: .85rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(201,168,76,.28);
    background: rgba(0,0,0,.35);
    color: var(--text);
    font: inherit;
    font-size: .95rem;
    transition: border-color .2s, box-shadow .2s;
}
.pre-reg__field input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,.18);
}
.pre-reg__hint {
    margin: 1rem 0 1.15rem;
    font-size: .82rem;
    color: var(--text-muted);
    line-height: 1.4;
    text-align: center;
}
.pre-reg__form .btn {
    width: 100%;
    justify-content: center;
}
.pre-reg__feedback {
    margin: 1rem 0 0;
    text-align: center;
    font-size: .92rem;
    line-height: 1.4;
}
.pre-reg__feedback--ok { color: #8fd49a; }
.pre-reg__feedback--error { color: #f0a0a0; }

.pre-reg__whatsapp {
    margin-top: 1rem;
    text-align: center;
}

.pre-reg__whatsapp[hidden] { display: none !important; }

.btn--whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #25d366;
    color: #fff;
    border: none;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s, transform 0.15s;
}

.btn--whatsapp:hover {
    background: #1ebe57;
    color: #fff;
    transform: translateY(-1px);
}

.btn--whatsapp::before {
    content: '';
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.883 9.884M20.52 3.449C18.24 1.245 15.24 0 12.05 0 5.463 0 .104 5.367.101 11.954c0 2.096.547 4.142 1.588 5.945L0 24l6.335-1.662c1.72.937 3.659 1.432 5.652 1.437h.005c6.587 0 11.946-5.367 11.949-11.953.003-3.192-1.242-6.193-3.421-8.423'/%3E%3C/svg%3E") center/contain no-repeat;
}

@media (max-width: 700px) {
    .pre-reg__grid { grid-template-columns: 1fr; }
    .pre-reg__form { padding: 1.25rem 1rem 1.4rem; }
}

/* ── ACADEMY ─────────────────────────────────────────────────── */
.academy {
    padding: 7rem 2.5rem;
    background: var(--surface-1);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.academy__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    max-width: var(--max-w);
    margin: 0 auto;
}
.academy-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.2rem 1.8rem;
    transition: all var(--transition);
    position: relative;
}
.academy-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold), var(--shadow-card);
}
.academy-card__icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: rgba(201,168,76,.1);
    border: 1.5px solid rgba(201,168,76,.25);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.2rem;
    color: var(--gold);
}
.academy-card__icon svg { width: 26px; height: 26px; }
.academy-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: .9rem;
    line-height: 1.35;
}
.academy-card ul {
    list-style: none; padding: 0;
    display: flex; flex-direction: column; gap: .55rem;
}
.academy-card ul li {
    display: flex; align-items: flex-start; gap: .55rem;
    font-size: .87rem; color: var(--text-muted); line-height: 1.55;
}
.academy-card ul li::before {
    content: '';
    display: block;
    width: 15px; height: 15px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
    flex-shrink: 0;
    margin-top: 3px;
}
.academy-card p { font-size: .87rem; color: var(--text-muted); line-height: 1.65; }
.academy__cta { text-align: center; margin-top: 3.5rem; }

/* ── MÉTRICAS ────────────────────────────────────────────────── */
.metrics-section {
    padding: 6rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.metrics-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
    pointer-events: none;
}
.metrics-big {
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 900;
    line-height: 1;
    color: var(--text);
    letter-spacing: -.04em;
}
.metrics-big .accent { color: var(--gold); }
.metrics-sub { font-size: 1.15rem; color: var(--text-muted); margin: .8rem 0 3.5rem; line-height: 1.6; }
.metrics-sub strong { color: var(--text); }
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
    max-width: 900px;
    margin: 0 auto;
}
.metric-card {
    background: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    transition: all var(--transition);
}
.metric-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}
.metric-value {
    font-size: 2.4rem; font-weight: 900;
    color: var(--gold); line-height: 1;
    letter-spacing: -.02em;
}
.metric-label { font-size: .87rem; color: var(--text-muted); margin-top: .55rem; }

/* ── PILARES ─────────────────────────────────────────────────── */
.pillars { padding: 6rem 2.5rem; }
.pillars__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
    max-width: var(--max-w);
    margin: 0 auto;
}
.pillar-card {
    background: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.8rem 1.5rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.pillar-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}
.pillar-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}
.pillar-card:hover::before { opacity: 1; }
.pillar-card__icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(201,168,76,.1);
    border: 1.5px solid rgba(201,168,76,.25);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: .9rem;
    color: var(--gold);
}
.pillar-card__icon svg { width: 24px; height: 24px; }
.pillar-card h3 {
    font-size: .97rem; font-weight: 700;
    color: var(--gold-light); margin-bottom: .8rem; line-height: 1.35;
}
.pillar-card ul {
    list-style: none; padding: 0;
    display: flex; flex-direction: column; gap: .45rem;
}
.pillar-card ul li {
    display: flex; align-items: flex-start; gap: .5rem;
    font-size: .84rem; color: var(--text-muted); line-height: 1.5;
}
.pillar-card ul li::before {
    content: '▸';
    color: var(--gold-dim);
    flex-shrink: 0;
    font-size: .8rem;
    margin-top: .15rem;
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-section { padding: 7rem 2.5rem; }
.faq__list {
    max-width: 780px; margin: 0 auto;
    display: flex; flex-direction: column; gap: .9rem;
}
.faq-item {
    background: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}
.faq-item:hover { border-color: rgba(201,168,76,.3); }
.faq-item.open  { border-color: var(--border-hover); box-shadow: var(--shadow-gold); }
.faq-item__header {
    display: flex; align-items: center; gap: 1rem;
    padding: 1.25rem 1.5rem; cursor: pointer; user-select: none;
}
.faq-item__icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: rgba(201,168,76,.1);
    border: 1px solid rgba(201,168,76,.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); flex-shrink: 0;
}
.faq-item__icon svg { width: 20px; height: 20px; }
.faq-item__question {
    font-size: .97rem; font-weight: 700;
    color: var(--text); flex: 1;
}
.faq-chevron {
    width: 20px; height: 20px;
    color: var(--gold-dim); flex-shrink: 0;
    transition: transform var(--transition);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--gold); }
.faq-item__body {
    display: none;
    padding: 0 1.5rem 1.4rem 4.4rem;
    font-size: .9rem; color: var(--text-muted); line-height: 1.75;
}
.faq-item__body strong { color: var(--text); }
.faq-item.open .faq-item__body { display: block; }

/* ── FINAL CTA ───────────────────────────────────────────────── */
.final-cta {
    padding: 8rem 2.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(201,168,76,.07) 0%, transparent 100%);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(201,168,76,.08) 0%, transparent 70%);
    pointer-events: none;
}
.final-cta h2 {
    font-size: clamp(2.1rem, 4.5vw, 3.2rem);
    font-weight: 900;
    color: var(--text);
    margin-bottom: 1.1rem;
    letter-spacing: -.02em;
}
.final-cta p {
    color: var(--text-muted); font-size: 1.1rem;
    margin-bottom: 2.8rem;
    max-width: 520px; margin-left: auto; margin-right: auto;
    line-height: 1.7;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
    background: var(--surface-1);
    border-top: 1px solid var(--border);
    padding: 3rem 2.5rem;
    text-align: center;
}
.trust-bar--footer {
    background: transparent;
    border-top: none;
    border-bottom: 1px solid var(--border);
    padding: 0 0 1.2rem;
    margin: 0 auto 2rem;
    max-width: var(--max-w);
}
.site-footer__inner {
    max-width: 700px; margin: 0 auto;
    display: flex; flex-direction: column; align-items: center; gap: .8rem;
}
.brand--footer { display: inline-flex; align-items: center; }
.site-footer p { font-size: .87rem; color: var(--text-muted); }
.site-footer strong { color: var(--gold-light); }
.footer-contacts {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: .4rem .9rem;
    text-align: center;
    line-height: 1.5;
}
.footer-contacts a {
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.footer-contacts a:hover {
    color: var(--gold-light);
}

/* ── HERO MOCK UI ────────────────────────────────────────────── */
.hero-mock {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

/* Cartão principal — preview da plataforma */
.mock-card {
    background: var(--surface-2);
    border: 1px solid rgba(201,168,76,.22);
    border-radius: 18px;
    padding: 1.6rem;
    box-shadow: 0 24px 80px rgba(0,0,0,.55), 0 0 60px rgba(201,168,76,.08);
    animation: float 7s ease-in-out infinite;
}
.mock-topbar {
    display: flex;
    align-items: center;
    gap: .45rem;
    margin-bottom: 1.3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.mock-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,.15);
}
.mock-dot:first-child  { background: rgba(255,80,80,.7); }
.mock-dot:nth-child(2) { background: rgba(255,180,0,.7); }
.mock-dot:nth-child(3) { background: rgba(50,200,80,.7); }
.mock-topbar-title {
    margin-left: .6rem;
    font-size: .78rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: .04em;
}
.mock-semester {
    font-size: .8rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 1rem;
    display: flex; align-items: center; gap: .5rem;
}
.mock-semester svg { width: 16px; height: 16px; }
.mock-modules { display: flex; flex-direction: column; gap: .85rem; }
.mock-module { display: flex; flex-direction: column; gap: .35rem; }
.mock-module-label {
    display: flex; justify-content: space-between;
    font-size: .8rem; color: var(--text-muted);
}
.mock-module-label span:last-child { color: var(--gold); font-weight: 600; }
.mock-bar {
    height: 6px; background: rgba(255,255,255,.07);
    border-radius: 99px; overflow: hidden;
}
.mock-bar-fill {
    height: 100%; border-radius: 99px;
    background: linear-gradient(90deg, var(--gold-dim), var(--gold-bright));
    box-shadow: 0 0 8px rgba(201,168,76,.5);
}
.mock-footer {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,.06);
}
.mock-progress-text {
    font-size: .8rem; color: var(--text-muted);
}
.mock-progress-text strong { color: var(--gold-light); }
.mock-continue-btn {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .4rem .9rem;
    border-radius: 50px;
    background: rgba(201,168,76,.12);
    border: 1px solid rgba(201,168,76,.3);
    font-size: .75rem; font-weight: 700;
    color: var(--gold-light);
}

/* Cartões flutuantes ao redor */
.mock-float {
    position: absolute;
    background: var(--surface-3);
    border: 1px solid rgba(201,168,76,.25);
    border-radius: 14px;
    padding: .75rem 1rem;
    display: flex; align-items: center; gap: .6rem;
    box-shadow: 0 8px 32px rgba(0,0,0,.4);
    white-space: nowrap;
    font-size: .82rem;
    font-weight: 700;
    color: var(--text);
}
.mock-float svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--gold); }
.mock-float-val { font-size: 1.1rem; color: var(--gold-bright); font-weight: 900; }
.mock-float-label { font-size: .72rem; color: var(--text-muted); font-weight: 500; display: block; margin-top: .1rem; }

/* Posições dos floaters */
.mock-float--tl {
    top: -22px; left: -48px;
    animation: float-tl 8s ease-in-out infinite;
}
.mock-float--tr {
    top: 24px; right: -56px;
    animation: float-tr 9s ease-in-out infinite;
}
.mock-float--br {
    bottom: 18px; right: -60px;
    animation: float-br 7.5s ease-in-out infinite;
}
.mock-float--bl {
    bottom: -18px; left: -44px;
    animation: float-bl 8.5s ease-in-out infinite;
}

/* Glow atrás do mock */
.mock-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 340px; height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,.15) 0%, transparent 70%);
    pointer-events: none;
    animation: glow-pulse 5s ease-in-out infinite;
    z-index: -1;
}

@keyframes float-tl {
    0%, 100% { transform: translateY(0) translateX(0); }
    40%       { transform: translateY(-10px) translateX(4px); }
    70%       { transform: translateY(-5px) translateX(-3px); }
}
@keyframes float-tr {
    0%, 100% { transform: translateY(0) translateX(0); }
    35%       { transform: translateY(-8px) translateX(-4px); }
    65%       { transform: translateY(5px) translateX(2px); }
}
@keyframes float-br {
    0%, 100% { transform: translateY(0) translateX(0); }
    50%       { transform: translateY(-12px) translateX(-2px); }
}
@keyframes float-bl {
    0%, 100% { transform: translateY(0) translateX(0); }
    45%       { transform: translateY(8px) translateX(5px); }
}

/* ── HERO VISUAL WRAP ────────────────────────────────────────── */
.hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 4rem 3rem 2rem;
}

/* ── REVEAL ──────────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── MOCK STATS ROW (mobile only — floaters substitute) ──────── */
.mock-stats-row {
    display: none; /* mostrado via media query no mobile */
}
.mock-stat-badge {
    display: flex;
    align-items: center;
    gap: .45rem;
    background: rgba(201,168,76,.08);
    border: 1px solid rgba(201,168,76,.2);
    border-radius: 50px;
    padding: .4rem .9rem;
    font-size: .8rem;
    color: var(--text-muted);
    white-space: nowrap;
}
.mock-stat-badge svg { color: var(--gold); flex-shrink: 0; }
.mock-stat-badge strong { color: var(--gold-light); }

/* ═══════════════════════════════════════════════════════════════
   MOBILE NAV — HAMBURGER + DRAWER
   ═══════════════════════════════════════════════════════════════ */

/* Botão hamburger — oculto no desktop */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: transparent;
    border: 1.5px solid rgba(201,168,76,.35);
    border-radius: 9px;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    position: relative;
    z-index: 1;                          /* garante que fique acima de outros filhos do header */
    transition: border-color var(--transition), background var(--transition);
    color: #e8d4a0;
}
.nav-toggle:hover { border-color: var(--gold); background: rgba(201,168,76,.08); }
.nav-toggle::before {
    content: '\2630';
    display: block;
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
    color: currentColor;
}
.nav-toggle__bar {
    display: none;
    width: 20px;
    height: 2px;
    background: #e8d4a0;
    border-radius: 2px;
    transition: transform .3s ease, opacity .2s ease;
    transform-origin: center;
    will-change: transform, opacity;
}

/* Estado open: anima em X */
.site-header.nav-open .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.nav-open .nav-toggle__bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.site-header.nav-open .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.site-header.nav-open .nav-toggle::before {
    content: '\2715';
    font-size: 18px;
}

/* Drawer mobile */
.mobile-drawer {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 8999;
    background: rgba(8,8,15,.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(201,168,76,.2);
    padding: 0 1.5rem 2rem;
    transform: translateY(-110%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    pointer-events: none;              /* não intercepta eventos quando fechado */
    display: none;
    flex-direction: column;
    gap: 0;
}
.mobile-drawer.is-open {
    transform: translateY(0);
    pointer-events: auto;
}
.mobile-drawer__nav {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    padding-top: 1rem;
}
.mobile-drawer__link {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: 1rem .75rem;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all var(--transition);
    border: 1px solid transparent;
}
.mobile-drawer__link svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold); }
.mobile-drawer__link:hover, .mobile-drawer__link:focus {
    background: rgba(201,168,76,.07);
    border-color: rgba(201,168,76,.2);
    color: var(--gold-light);
}
.mobile-drawer__actions {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.06);
}
.mobile-drawer__footer {
    text-align: center;
    font-size: .82rem;
    color: var(--text-muted);
    margin-top: 1rem;
}
.mobile-drawer__footer strong { color: var(--gold); }

/* Overlay escuro por trás do drawer */
.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 8998;
    background: rgba(0,0,0,.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}
.mobile-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

/* Fallback robusto: garante estado mobile no primeiro carregamento. */
body.mobile-nav-enabled { padding-top: 64px; }
body.mobile-nav-enabled .site-header { height: 64px; padding: 0 1.5rem; gap: 0; }
body.mobile-nav-enabled .site-nav,
body.mobile-nav-enabled .site-header__actions { display: none; }
body.mobile-nav-enabled .nav-toggle {
    display: flex !important;
    margin-left: auto;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    z-index: 9101;
    background: rgba(10, 10, 18, 0.92);
}
body.mobile-nav-enabled .mobile-drawer { display: flex; padding-top: 64px; overflow-x: hidden; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .features__grid { grid-template-columns: repeat(2, 1fr); }
    .pillars__grid  { grid-template-columns: repeat(2, 1fr); }
    .metrics-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    body                   { padding-top: 64px; }
    .site-header           { height: 64px; padding: 0 1.5rem; gap: 0; }
    /* Oculta nav + actions desktop, mostra hamburger */
    .site-nav              { display: none; }
    .site-header__actions  { display: none; }
    /* Hamburger: filho direto do header, empurrado para a direita */
    .nav-toggle            {
        display: flex !important;
        margin-left: auto;
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        z-index: 9101;
        background: rgba(10, 10, 18, 0.92);
    }
    .mobile-drawer         { display: flex; padding-top: 64px; overflow-x: hidden; max-width: 100vw; }

    .hero {
        grid-template-columns: 1fr;
        min-height: unset;
        padding: 3rem 1.5rem 4rem;
        text-align: center;
        gap: 2rem;
    }
    .hero__content      { max-width: 100%; }
    .hero__content p    { max-width: 100%; }
    .hero__actions      { justify-content: center; }
    .hero__social-proof { justify-content: center; }
    .hero__visual {
        order: -1;
        padding: 2rem 1.5rem 0;
        flex-direction: column;  /* empilha mock + badges */
        align-items: center;
    }

    /* Remove todos os floaters absolutos */
    .mock-float--tr, .mock-float--bl,
    .mock-float--tl, .mock-float--br { display: none; }

    /* Stats badges abaixo do card */
    .mock-stats-row {
        display: flex;
        gap: .65rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 1rem;
        padding-bottom: .5rem;
    }

    .plans__grid {
        flex-direction: column;
        align-items: center;
        max-width: 460px;
        margin: 0 auto;
        gap: 2.2rem;
    }
    .plans__grid .plan-card {
        width: 100%;
        max-width: 460px;
    }
    .plan-card--featured { transform: none; }
    .plan-card--featured:hover { transform: translateY(-4px); }
    .plan-card__bonus-img { max-height: 150px; }
    .plans-trust { grid-template-columns: 1fr; max-width: 340px; gap: 1rem; margin-top: 2.5rem; }
    .plans-trust__item { justify-content: flex-start; }
    .academy__grid  { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .method-section__inner { grid-template-columns: 1fr; gap: 1.2rem; }
    .method-section { padding: 3rem 1.5rem 1rem; }

    .trust-bar__inner { gap: 1.5rem; }
    section { padding: 5rem 1.5rem; }
}

@media (max-width: 640px) {
    body          { padding-top: 60px; }
    .site-header  { height: 60px; padding: 0 1.2rem; }
    .mobile-drawer { padding-top: 60px; }
    body.mobile-nav-enabled { padding-top: 60px; }
    body.mobile-nav-enabled .site-header { height: 60px; padding: 0 1.2rem; }
    body.mobile-nav-enabled .mobile-drawer { padding-top: 60px; }

    section { padding: 4rem 1.2rem; }
    .features, .plans, .academy, .pillars, .faq-section, .final-cta, .metrics-section { padding: 4rem 1.2rem; }
    .trust-bar { padding: 1rem 1.2rem; }

    /* Trust bar: 2 colunas */
    .trust-bar__inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .trust-item { justify-content: flex-start; }

    .features__grid { grid-template-columns: 1fr; }
    .pillars__grid  { grid-template-columns: 1fr; }
    .metrics-grid   { grid-template-columns: repeat(2, 1fr); }

    .hero__visual { padding: 1.2rem 1rem 0; }

    /* Mock card: mais compacto em telas pequenas */
    .hero-mock     { max-width: 100%; width: 100%; }
    .mock-card     { padding: 1rem; box-shadow: 0 12px 40px rgba(0,0,0,.5); }
    .mock-topbar   { margin-bottom: .85rem; padding-bottom: .7rem; gap: .4rem; }
    .mock-topbar-title { font-size: .72rem; }
    .mock-semester { font-size: .68rem; letter-spacing: .04em; gap: .35rem; margin-bottom: .65rem; }
    .mock-modules  { padding: .6rem 0; gap: .5rem; }
    .mock-module-label { font-size: .72rem; }
    .mock-footer   { margin-top: .7rem; padding-top: .7rem; }
    .mock-progress-text { font-size: .74rem; }
    .mock-continue-btn  { font-size: .72rem; padding: .3rem .6rem; gap: .3rem; }
    .mock-dot      { width: 8px; height: 8px; }

    /* Métricas em destaque — ajusta tamanho */
    .metrics-big { font-size: clamp(3rem, 18vw, 5.5rem); }

    /* Plan cards: padding menor */
    .plan-card        { padding: 2.2rem 1.3rem 1.5rem; }
    .plan-card__name  { font-size: 1.45rem; }
    .plan-card__price-value { font-size: 2.5rem; }

    /* FAQ */
    .faq-item__body   { padding: 0 1.2rem 1.2rem 1.2rem; }
    .faq-item__header { padding: 1rem 1.2rem; }

    /* Final CTA */
    .final-cta h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }

    /* Section headers */
    .section-header { margin-bottom: 2.5rem; }
    .section-sub    { font-size: .95rem; }
    .footer-contacts {
        flex-direction: column;
        gap: .35rem;
    }
}

@media (max-width: 400px) {
    .site-header { padding: 0 1rem; }
    .brand span  { font-size: 1.05rem; }
    .brand img   { width: 28px; height: 28px; }
    .hero__content h1 { font-size: 1.85rem; }
    .trust-bar__inner { grid-template-columns: 1fr; }
    .btn--lg { padding: .85rem 1.6rem; font-size: .95rem; }
    .mock-card { padding: .8rem; }
    .mock-modules { gap: .4rem; }
}
