/* =====================================================
   INTENSIVO SSA 1 · 2 · 3 — Landing page de venda
   Identidade Curso Darlan Moutinho (manual v1.1):
   Preto Youbiz, gradiente azul→violeta, laranja comercial.
   A paleta aqui é a OFICIAL do Portal de Aula, igual à das
   artes dos Intensivos, e não o verde das LPs da Maratona.
   ===================================================== */

:root {
    --bg: #0B0B12;
    --bg-1: #08080F;
    --bg-2: #12121E;
    --surface: #14141F;
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.16);

    --blue: #4D7CFF;
    --violet: #9B5CFF;
    --orange: #FF8A3D;
    --lime: #B6FF3D;
    --menta: #6FE6C0;
    --red: #FF5C6C;

    --blue-glow: rgba(77, 124, 255, 0.35);
    --violet-glow: rgba(155, 92, 255, 0.35);
    --orange-glow: rgba(255, 138, 61, 0.40);

    --grad: linear-gradient(120deg, var(--blue) 0%, var(--violet) 100%);

    --text: #F2F3F7;
    --text-dim: #B4B2C0;
    --text-mute: #74718A;

    --heading: 'Space Grotesk', system-ui, -apple-system, sans-serif;
    --sans: 'DM Sans', system-ui, -apple-system, sans-serif;

    --container: 1180px;
    --radius: 16px;
    --radius-lg: 26px;
    --radius-pill: 999px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 800px; }

h1, h2, h3 { font-family: var(--heading); font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.05rem, 4.3vw, 3.25rem); }
h2 { font-size: clamp(1.65rem, 3.2vw, 2.45rem); }
h3 { font-size: 1.18rem; }

/* Regra de ouro do manual: 1 palavra do título em acento, o resto branco */
em.grad {
    font-style: normal;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
em.orange { font-style: normal; color: var(--orange); }

/* ---------- Filete arco-íris (assinatura da marca) ---------- */
.rainbow-bar {
    height: 4px; width: 100%;
    background: linear-gradient(90deg, var(--blue) 0%, var(--violet) 34%, var(--orange) 68%, var(--lime) 100%);
}
.rainbow-top { position: fixed; top: 0; left: 0; right: 0; z-index: 101; }

/* ---------- Header ---------- */
.site-header {
    position: fixed; top: 4px; left: 0; right: 0; z-index: 100;
    transition: background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.site-header.scrolled { background: rgba(11, 11, 18, 0.9); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo { height: 42px; width: auto; }
.brand-sep { width: 1px; height: 28px; background: var(--line-strong); }
.brand-programa {
    font-family: var(--heading); font-size: 0.95rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-dim);
}
.brand-programa strong { color: var(--orange); font-weight: 700; }

/* ---------- Botões ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--heading); font-weight: 600; letter-spacing: 0.01em;
    padding: 15px 28px; border-radius: var(--radius-pill); text-align: center;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.btn-primary {
    background: var(--orange); color: #14100A;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12) inset, 0 14px 40px -12px var(--orange-glow);
}
.btn-primary:hover { transform: translateY(-2px); background: #FF9A55; box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18) inset, 0 20px 50px -12px var(--orange-glow); }
.btn-ghost { border: 1.5px solid var(--line-strong); color: var(--text); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-lg { padding: 17px 34px; font-size: 1.04rem; }
.btn-block { width: 100%; }

/* ---------- Badges ---------- */
.badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--heading); font-size: 0.76rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.14em;
    padding: 8px 16px; border-radius: var(--radius-pill); border: 1.5px solid;
    margin-bottom: 20px;
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.badge-lime { color: var(--lime); border-color: var(--lime); background: rgba(182, 255, 61, 0.10); }
.badge-orange { color: var(--orange); border-color: var(--orange); background: rgba(255, 138, 61, 0.10); }

/* ---------- Elementos de marca ---------- */
.bg-grid {
    position: absolute; inset: 0; pointer-events: none;
    background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1.5px, transparent 1.5px);
    background-size: 36px 36px;
    -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, #000 0%, transparent 72%);
    mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, #000 0%, transparent 72%);
    opacity: 0.18;
}
.glow { position: absolute; border-radius: 50%; filter: blur(160px); pointer-events: none; }
.glow-orange { width: 520px; height: 520px; background: var(--orange-glow); top: -180px; right: -120px; opacity: 0.32; }
.glow-violet { width: 520px; height: 520px; background: var(--violet-glow); bottom: -200px; left: -160px; opacity: 0.34; }
.plus { position: absolute; font-family: var(--heading); font-weight: 700; pointer-events: none; opacity: 0.85; }
.plus-1 { color: var(--lime); font-size: 34px; top: 16%; right: 7%; }
.plus-2 { color: var(--blue); font-size: 26px; bottom: 20%; left: 4%; }
.plus-3 { color: var(--violet); font-size: 46px; top: 66%; right: 3%; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 148px 0 88px; overflow: hidden; }
.hero-inner { position: relative; display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 54px; align-items: center; }
.hero-sub { color: var(--text-dim); font-size: 1.12rem; margin-top: 20px; max-width: 580px; }
.hero-sub strong { color: var(--text); }

.hero-price { margin-top: 26px; }
.hero-price-num {
    display: block; font-family: var(--heading); font-weight: 700;
    font-size: clamp(1.6rem, 3vw, 2.1rem); color: var(--lime); letter-spacing: -0.02em;
}
.hero-price-sub { color: var(--text-dim); font-size: 0.98rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.hero-trust { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 34px; }
.trust-item { display: flex; flex-direction: column; }
.trust-item strong { font-family: var(--heading); font-size: 1.24rem; color: var(--text); }
.trust-item span { color: var(--text-mute); font-size: 0.86rem; }
.trust-divider { width: 1px; height: 34px; background: var(--line-strong); }

/* ---------- Relógio das provas ---------- */
.hero-clock {
    position: relative;
    background: linear-gradient(160deg, var(--bg-2) 0%, var(--bg-1) 100%);
    border: 1px solid var(--line-strong); border-radius: var(--radius-lg);
    padding: 30px 28px; box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.75);
}
.clock-title { font-size: 1.32rem; }
.clock-sub { color: var(--text-mute); font-size: 0.92rem; margin-top: 4px; }
.clock-block { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.clock-label {
    display: block; font-family: var(--heading); font-size: 0.76rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.14em; color: var(--orange);
}
.clock-date { display: block; color: var(--text); font-size: 0.98rem; margin-top: 4px; }
.clock-date .sep { color: var(--text-mute); margin: 0 4px; }
.clock-exams { display: flex; gap: 12px; margin-top: 24px; }
.exam-mini { background: #fff; border-radius: 10px; padding: 8px 14px; display: inline-flex; align-items: center; }
.exam-mini img { height: 24px; width: auto; }

/* ---------- Countdown ---------- */
.countdown { display: flex; gap: 10px; margin-top: 14px; }
.count-box {
    flex: 1; text-align: center;
    background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line);
    border-radius: 12px; padding: 10px 6px;
}
.count-num { display: block; font-family: var(--heading); font-weight: 700; font-size: 1.5rem; color: var(--lime); font-variant-numeric: tabular-nums; }
.count-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-mute); }

/* ---------- Sections ---------- */
/* scroll-margin compensa o header fixo: sem isso o link "Ver as turmas"
   para a rolagem com o título já escondido atrás da barra. */
.section { position: relative; padding: 86px 0; scroll-margin-top: 76px; }
.section-alt { background: var(--bg-1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { text-align: center; max-width: 840px; margin: 0 auto 48px; }
.section-sub { color: var(--text-dim); margin-top: 16px; }
.section-sub strong { color: var(--text); }

/* ---------- A conta do SSA ---------- */
.conta-grid {
    display: grid; align-items: stretch; gap: 14px;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
}
.conta-step {
    background: var(--surface); border: 1px solid var(--line);
    border-top: 3px solid var(--blue); border-radius: var(--radius);
    padding: 24px 22px;
}
/* nth-child e não nth-of-type: os sinais de "+" e "=" também são div e
   entrariam na contagem, jogando a cor para o card errado. */
.conta-grid > .conta-step:nth-child(3) { border-top-color: var(--violet); }
.conta-grid > .conta-step:nth-child(5) { border-top-color: var(--orange); }
.conta-result { border-top-color: var(--lime); background: linear-gradient(160deg, rgba(182, 255, 61, 0.08), rgba(255, 255, 255, 0.02)); }
.conta-ano {
    display: block; font-family: var(--heading); font-size: 0.72rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-mute); margin-bottom: 6px;
}
.conta-step h3 { margin-bottom: 10px; }
.conta-step p { color: var(--text-dim); font-size: 0.95rem; }
.conta-op {
    display: flex; align-items: center; justify-content: center;
    font-family: var(--heading); font-weight: 700; font-size: 1.6rem; color: var(--text-mute);
}
.conta-note { text-align: center; color: var(--text-dim); margin-top: 32px; font-size: 1.05rem; }

/* ---------- Dores ---------- */
.dores-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.dores-col {
    background: var(--surface); border: 1px solid var(--line);
    border-left: 4px solid var(--red); border-radius: var(--radius-lg);
    padding: 30px 28px;
}
.dores-title { margin-bottom: 18px; color: var(--text); }
.pain-list li { padding: 14px 0; border-top: 1px solid var(--line); color: var(--text-dim); font-size: 0.97rem; }
.pain-list li:first-child { border-top: none; padding-top: 0; }
.pain-list strong { display: block; color: var(--text); font-weight: 700; margin-bottom: 3px; }

/* ---------- Passos do método ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 24px; }
.step-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--grad); color: #fff;
    font-family: var(--heading); font-weight: 700; margin-bottom: 14px;
}
.step h3 { font-size: 1.06rem; margin-bottom: 8px; }
.step p { color: var(--text-dim); font-size: 0.94rem; }

.metodo-extra { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.extra-card {
    background: linear-gradient(160deg, rgba(255, 138, 61, 0.09), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--line-strong); border-radius: var(--radius-lg); padding: 28px 26px;
}
.extra-card h3 { margin-bottom: 8px; }
.extra-card p { color: var(--text-dim); font-size: 0.97rem; }

/* ---------- O que está incluído ---------- */
.incluido-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.inc {
    display: flex; gap: 12px; align-items: flex-start;
    background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 22px 20px;
}
.inc-mark {
    flex: none; width: 24px; height: 24px; border-radius: 50%;
    background: rgba(182, 255, 61, 0.14); border: 1.5px solid var(--lime); color: var(--lime);
    display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700;
    margin-top: 2px;
}
.inc h3 { font-size: 1rem; margin-bottom: 5px; }
.inc p { color: var(--text-dim); font-size: 0.9rem; }

/* ---------- Turmas (oferta) ---------- */
.section-turmas { overflow: hidden; background: var(--bg-1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.turmas-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.turma {
    position: relative; display: flex; flex-direction: column;
    background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius-lg); overflow: hidden;
    transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.turma:hover { transform: translateY(-5px); border-color: var(--line-strong); box-shadow: 0 30px 70px -34px rgba(0, 0, 0, 0.9); }
/* Os três cards têm o mesmo peso visual de propósito: cada turma atende uma
   série diferente, então destacar uma delas só desvaloriza as outras duas. */
.turma-art { display: block; background: var(--bg-2); }
.turma-art img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.turma-body { display: flex; flex-direction: column; flex: 1; padding: 26px 24px 28px; }
.turma-serie {
    font-family: var(--heading); font-size: 0.72rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-mute);
}
.turma-body h3 { font-size: 1.42rem; margin: 6px 0 12px; }
.turma-pitch { color: var(--text-dim); font-size: 0.96rem; }
.turma-facts { margin: 20px 0 0; }
.turma-facts li { padding: 10px 0; border-top: 1px solid var(--line); font-size: 0.92rem; }
.turma-facts span { display: block; color: var(--text-mute); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; }
.turma-facts strong { color: var(--text); font-weight: 500; }
.turma-price { margin: 22px 0 18px; padding-top: 18px; border-top: 1px solid var(--line-strong); margin-top: auto; }
.tp-main { display: block; font-family: var(--heading); font-weight: 700; font-size: 1.6rem; color: var(--lime); }
.tp-sub { color: var(--text-mute); font-size: 0.88rem; }
.turmas-note { text-align: center; color: var(--text-mute); font-size: 0.92rem; margin-top: 30px; }

/* ---------- Conquistas ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; text-align: center; }
.stat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 16px; }
.stat-num, .stat-plus {
    font-family: var(--heading); font-weight: 700; font-size: 2rem;
    color: var(--orange); font-variant-numeric: tabular-nums;
}
.stat-label { display: block; color: var(--text-dim); font-size: 0.88rem; margin-top: 6px; }

/* ---------- Mural de eventos ---------- */
.events-marquee { margin-top: 44px; display: grid; gap: 14px; }
.marquee-row { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 14px; width: max-content; animation: marquee 62s linear infinite; }
.marquee-row.reverse .marquee-track { animation-direction: reverse; }
.marquee-row:hover .marquee-track { animation-play-state: paused; }
.m-tile { border-radius: var(--radius); overflow: hidden; background: var(--bg-2); }
.m-tile img { height: 170px; width: 100%; object-fit: cover; }
.m-tile.w-sm { width: 170px; }
.m-tile.w-md { width: 250px; }
.m-tile.w-lg { width: 330px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
    .marquee-track { animation: none; }
    .marquee-row { overflow-x: auto; }
}

/* ---------- Depoimentos em vídeo ---------- */
.depo-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.depo-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.depo-frame { background: #000; }
.depo-video { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; }
.depo-card figcaption { padding: 16px 16px 20px; }
.depo-card figcaption strong { display: block; font-family: var(--heading); font-size: 0.98rem; }
.depo-card figcaption span { display: block; color: var(--text-mute); font-size: 0.82rem; margin-top: 3px; }

/* ---------- Notas reais ---------- */
.notas-bloco { margin-bottom: 38px; }
.notas-titulo {
    font-size: 0.86rem; text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--orange); margin-bottom: 16px;
}
.notas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.nota { display: block; border-radius: var(--radius); overflow: hidden; background: var(--surface); border: 1px solid var(--line); transition: transform 0.22s var(--ease), border-color 0.22s var(--ease); }
.nota:hover { transform: translateY(-4px); border-color: var(--orange); }
.nota img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.nota-cap { display: block; padding: 12px 14px; font-family: var(--heading); font-size: 0.92rem; color: var(--text-dim); }
.nota-cap strong { color: var(--lime); }
.ig-follow { text-align: center; color: var(--text-mute); font-size: 0.95rem; }
.ig-follow a { color: var(--orange); font-weight: 700; }
.ig-follow a:hover { text-decoration: underline; }

/* ---------- Carta para os pais ---------- */
.carta {
    background: linear-gradient(160deg, rgba(255, 138, 61, 0.10), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--line-strong); border-radius: var(--radius-lg);
    padding: 46px 42px;
}
.carta p { color: var(--text-dim); margin-top: 16px; font-size: 1.05rem; }
.carta-final { color: var(--text) !important; font-weight: 500; }
.carta .btn { margin-top: 28px; }

/* ---------- Professores ----------
   As fotos são recortes de corpo inteiro, não retratos. Por isso o card é
   uma moldura 4/5 com a pessoa apoiada na base, como no site de venda, e
   não um avatar redondo (que cortaria o professor na altura do peito). */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.prof {
    position: relative; aspect-ratio: 4 / 5; overflow: hidden;
    border: 1px solid var(--line); border-radius: var(--radius);
    background:
        radial-gradient(100% 55% at 50% -6%, var(--accent-glow, rgba(255, 255, 255, 0.04)) 0%, transparent 46%),
        url("images/professores/plus-pattern.svg"),
        linear-gradient(165deg, var(--bg-2) 0%, var(--bg) 78%);
    background-repeat: no-repeat, repeat, no-repeat;
    background-size: auto, 170px 170px, cover;
    background-position: center top, center, center;
    transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.prof:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.prof img {
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    height: 90%; width: auto; max-width: 112%;
    object-fit: contain; object-position: bottom center;
    filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.5));
}
.prof figcaption {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
    padding: 52px 16px 18px; text-align: center;
    background: linear-gradient(to top, var(--bg) 8%, rgba(11, 11, 18, 0.82) 46%, transparent 100%);
}
.prof figcaption strong { display: block; font-family: var(--heading); font-size: 1.06rem; line-height: 1.15; }
.prof figcaption span { display: block; margin-top: 6px; font-size: 0.78rem; font-weight: 600; line-height: 1.3; color: var(--accent-color, var(--text-dim)); }
/* O acento circula pela paleta do manual, um por card */
.team .prof:nth-child(4n+1) { --accent-glow: rgba(77, 124, 255, 0.15); --accent-color: var(--blue); }
.team .prof:nth-child(4n+2) { --accent-glow: rgba(155, 92, 255, 0.15); --accent-color: var(--violet); }
.team .prof:nth-child(4n+3) { --accent-glow: rgba(182, 255, 61, 0.12); --accent-color: var(--lime); }
.team .prof:nth-child(4n)   { --accent-glow: rgba(255, 138, 61, 0.13); --accent-color: var(--orange); }
/* Com 9 professores a última fileira de 4 colunas fica com um card só. O
   seletor só casa quando sobra exatamente um: aí ele ocupa a faixa central e
   se centraliza, em vez de ficar encostado na esquerda. */
.team .prof:last-child:nth-child(4n + 1) {
    grid-column: 2 / span 2;
    justify-self: center;
    width: calc((100% - 18px) / 2);
}

/* ---------- FAQ ---------- */
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq summary {
    cursor: pointer; list-style: none; padding: 20px 22px;
    font-family: var(--heading); font-weight: 600; font-size: 1.02rem;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-weight: 700; color: var(--orange); font-size: 1.35rem; transition: transform 0.2s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 22px 20px; color: var(--text-dim); }

/* ---------- CTA final ---------- */
.section-final { overflow: hidden; text-align: center; padding: 96px 0; }
.final-inner { position: relative; }
.final-inner p { color: var(--text-dim); margin-top: 16px; font-size: 1.08rem; }
.final-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 34px; }
.final-note { color: var(--text-mute) !important; font-size: 0.92rem !important; margin-top: 20px !important; }

/* ---------- Footer ---------- */
.site-footer { padding: 56px 0 0; border-top: 1px solid var(--line); }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.footer-logo { height: 46px; width: auto; opacity: 0.75; }
.footer-programa { color: var(--text-mute); font-size: 0.88rem; font-family: var(--heading); letter-spacing: 0.08em; text-transform: uppercase; }
.footer-contact p { color: var(--text-dim); font-size: 0.95rem; margin-bottom: 6px; }
.footer-contact strong { color: var(--text); }
.footer-contact a:hover { color: var(--orange); }
.footer-legal { color: var(--text-mute); font-size: 0.85rem; margin-top: 28px; }

/* ---------- WhatsApp flutuante ---------- */
.whats-float {
    position: fixed; right: 20px; bottom: 20px; z-index: 90;
    background: #22c55e; color: #06230f;
    font-family: var(--heading); font-weight: 600; font-size: 0.9rem;
    padding: 12px 20px; border-radius: var(--radius-pill);
    box-shadow: 0 14px 40px -12px rgba(34, 197, 94, 0.5);
    transition: transform 0.2s var(--ease);
}
.whats-float:hover { transform: translateY(-2px); }

/* ---------- Barra fixa de compra (mobile) ----------
   Some no desktop: lá o CTA do header e os cards já resolvem. */
.sticky-buy {
    display: none;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    align-items: center; justify-content: space-between; gap: 14px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    background: rgba(11, 11, 18, 0.96); backdrop-filter: blur(14px);
    border-top: 1px solid var(--line-strong);
    transform: translateY(120%); transition: transform 0.3s var(--ease);
}
.sticky-buy.show { transform: none; }
.sb-price strong { display: block; font-family: var(--heading); font-size: 1.02rem; color: var(--lime); }
.sb-price span { color: var(--text-mute); font-size: 0.78rem; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

/* ---------- Responsivo ---------- */
@media (max-width: 1100px) {
    .depo-grid { grid-template-columns: repeat(3, 1fr); }
    .incluido-grid { grid-template-columns: repeat(2, 1fr); }
    .team { grid-template-columns: repeat(3, 1fr); }
    .team .prof:last-child:nth-child(4n + 1) { grid-column: auto; justify-self: stretch; width: auto; }
}
@media (max-width: 960px) {
    .hero { padding-top: 124px; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .conta-grid { grid-template-columns: 1fr; }
    .conta-op { display: none; }
    .dores-cols, .metodo-extra { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr 1fr; }
    .turmas-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .turma-price { margin-top: 22px; }
    .stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
    .depo-grid { grid-template-columns: repeat(2, 1fr); }
    .notas-grid { grid-template-columns: repeat(2, 1fr); }
    .team { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .sticky-buy { display: flex; }
    body { padding-bottom: 72px; }
    .whats-float { bottom: 84px; }
}
@media (max-width: 640px) {
    body { font-size: 16px; }
    .plus { display: none; }
    .section { padding: 62px 0; }
    .steps, .incluido-grid { grid-template-columns: 1fr; }
    .brand-logo { height: 34px; }
    .brand-sep, .brand-programa { display: none; }
    .header-inner .btn-sm { padding: 9px 15px; font-size: 0.8rem; }
    .hero-clock { padding: 26px 22px; }
    .carta { padding: 34px 24px; }
    .dores-col { padding: 26px 22px; }
    .final-ctas .btn { width: 100%; }
    .m-tile img { height: 130px; }
    .m-tile.w-sm { width: 130px; }
    .m-tile.w-md { width: 190px; }
    .m-tile.w-lg { width: 250px; }
}
