/* ==========================================================================
   Carreira365 — LP de VENDAS (Membership) · PM3
   Base: /pm3-design-system · tokens/componentes portados da LP de captação irmã
   Conteúdo dinâmico por lote via app.js. (Twin do <style id="inline-estilo">.)
   ========================================================================== */

/* ── 1. Tokens ──────────────────────────────────────────────────────────── */
:root {
  --deep-purple: #452E78;
  --royal-purple: #6645B1;
  --black: #000000;
  --white: #FFFFFF;
  --gray-fog: #B9B5C1;
  --yellow-glow: #FFB12A;
  --lilac: #B04DDD;
  --lilac-soft: #FCCBC9;
  --surface-muted: #F5F4F8;
  --ink: #1a1523;

  --grad-brand: linear-gradient(135deg, #452E78, #6645B1);
  --grad-lilac: linear-gradient(135deg, #B04DDD, #FCCBC9);
  --grad-blaze: linear-gradient(135deg, #4D2B9F, #DACBF6);

  --ink-black: #08060f;
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");

  --font-head: 'Inter Tight', system-ui, -apple-system, sans-serif;
  --font-body: 'Rubik', system-ui, -apple-system, sans-serif;

  --r-btn: 6px;
  --r-card: 12px;
  --r-hero: 20px;
  --container: 1200px;
}

@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url('/assets/fonts/inter-tight-latin.woff2?v=1') format('woff2');
}
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/rubik-latin.woff2?v=1') format('woff2');
}

/* ── 2. Reset / base ────────────────────────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; font-weight: 800; text-wrap: balance; }
.testi-title { text-wrap: balance; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }
s, del { text-decoration: line-through; }
:focus-visible { outline: 3px solid var(--royal-purple); outline-offset: 2px; border-radius: 4px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.container-narrow { max-width: 820px; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── Backgrounds atmosféricos ───────────────────────────────────────────── */
.bg-hero {
  background:
    var(--grain),
    radial-gradient(120% 90% at 88% 4%, rgba(255,177,42,0.16) 0%, rgba(20,12,38,0) 48%),
    radial-gradient(110% 95% at -5% 98%, rgba(176,77,221,0.34) 0%, rgba(20,12,38,0) 55%),
    linear-gradient(155deg, #3a2668 0%, #2a1a52 52%, #140c26 100%);
  color: var(--white);
}
.bg-band {
  background:
    var(--grain),
    radial-gradient(75% 110% at 100% 0%, rgba(176,77,221,0.15) 0%, rgba(8,6,15,0) 58%),
    radial-gradient(75% 110% at 0% 100%, rgba(102,69,177,0.20) 0%, rgba(8,6,15,0) 58%),
    radial-gradient(45% 55% at 50% 45%, rgba(255,177,42,0.05) 0%, rgba(8,6,15,0) 70%),
    var(--ink-black);
  color: var(--white);
}
.text-gradient { color: var(--yellow-glow); text-shadow: 0 0 16px rgba(255,177,42,0.35); }

/* ── Botões ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  padding: 14px 26px; border-radius: var(--r-btn); border: 1.5px solid transparent;
  cursor: pointer; transition: background-color .2s, color .2s, transform .2s, box-shadow .2s;
  text-align: center; line-height: 1.15;
}
.btn-primary { background: var(--royal-purple); color: var(--white); box-shadow: 0 10px 30px -12px rgba(102,69,177,.7); }
.btn-primary:hover { background: var(--deep-purple); transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(102,69,177,.85); }
.btn-yellow { background: var(--yellow-glow); color: #2a1a00; box-shadow: 0 12px 32px -12px rgba(255,177,42,.6); }
.btn-yellow:hover { background: #ffbe4d; transform: translateY(-2px); box-shadow: 0 18px 44px -12px rgba(255,177,42,.75); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.28); }
.btn-outline-light:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.55); }
.btn-lg { padding: 17px 34px; font-size: 1.02rem; }
.btn-block { display: flex; width: 100%; }
a[data-cta][data-todo] { opacity: .92; cursor: not-allowed; }

/* ── Badges / labels ────────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.72rem;
  letter-spacing: .06em; text-transform: uppercase; padding: 7px 14px; border-radius: 999px;
}
.badge-glow { color: var(--yellow-glow); background: rgba(255,177,42,.10); border: 1px solid rgba(255,177,42,.35); }
.badge-new { color: #2a1a00; background: var(--yellow-glow); font-size: 0.62rem; padding: 4px 9px; letter-spacing: .04em; }
.section-label { display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--yellow-glow); margin-bottom: 14px; }
.section-label-dark { color: var(--royal-purple); }

/* ── Seção genérica ─────────────────────────────────────────────────────── */
.section { padding: 76px 0; position: relative; margin-top: -34px; border-radius: 34px 34px 0 0; }
.section:first-of-type { margin-top: 0; }
.section-head { max-width: 780px; margin: 0 auto 44px; text-align: center; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.5rem); }
.section-title-dark { color: var(--ink); }
.section-lead { margin-top: 16px; font-size: 1.1rem; color: var(--gray-fog); }
.section-lead-dark { color: #6b6577; }
.section-cta { text-align: center; margin-top: 44px; }
.section-cta .cta-sub { margin-top: 14px; font-size: 0.85rem; color: var(--gray-fog); }

/* ══════════ HEADER / BARRA FIXA ══════════ */
#site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.95); backdrop-filter: blur(10px); border-bottom: 1px solid transparent; transition: box-shadow .2s ease, border-color .2s ease; }
#site-header.scrolled { box-shadow: 0 4px 20px -8px rgba(69,46,120,.25); border-bottom-color: rgba(185,181,193,.35); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 16px; }
.header-logo { display: flex; align-items: center; flex-shrink: 0; }
.header-offer { display: flex; align-items: center; gap: 18px; margin-left: auto; }
.header-countdown { display: flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 0.85rem; color: var(--deep-purple); }
.hc-label { color: var(--ink); opacity: .7; }
.hc-clock { font-family: var(--font-head); font-weight: 700; letter-spacing: .02em; font-size: 1.05rem; }
.hc-clock span[data-countdown-unit] { color: var(--deep-purple); }
.hc-unit { color: var(--gray-fog); font-weight: 500; font-size: 0.72rem; margin: 0 6px 0 1px; }
.header-price { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: var(--deep-purple); white-space: nowrap; }
.header-price small { font-weight: 500; font-size: 0.72rem; color: #8b8698; }
.header-cta { padding: 10px 20px; font-size: 0.85rem; flex-shrink: 0; }
.countdown-expired { font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; color: var(--royal-purple); }
.final-countdown .countdown-expired { font-size: 1rem; color: var(--yellow-glow); }
@media (max-width: 899px) { .header-price, .header-countdown { display: none; } }

/* ══════════ HERO ══════════ */
.hero { padding: 32px 0 92px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.hero-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; flex-wrap: wrap; }
.hero-logo-campanha { height: 36px; width: auto; }
.hero-title { font-size: clamp(2rem, 5.2vw, 3.2rem); font-weight: 800; letter-spacing: -0.02em; }
.hero-sub { margin-top: 22px; font-size: 1.12rem; color: rgba(255,255,255,.82); max-width: 52ch; }
.hero-sub strong { color: var(--white); font-weight: 700; }
.hero-bullets { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.hero-bullets li { display: flex; align-items: center; gap: 12px; font-size: 1rem; color: rgba(255,255,255,.92); }
.hero-bullets svg { flex-shrink: 0; width: 22px; height: 22px; padding: 3px; border-radius: 999px; background: rgba(255,177,42,.18); stroke: var(--yellow-glow); stroke-width: 3; fill: none; stroke-linecap: round; stroke-linejoin: round; }

.hero-offer-wrap { position: relative; }
.offer-card { background: var(--white); color: var(--ink); border-radius: var(--r-hero); padding: 30px 28px; box-shadow: 0 30px 70px -24px rgba(0,0,0,.55); text-align: center; }
.offer-lote-tag { color: #b26a00; background: rgba(255,177,42,.14); border: 1px solid rgba(255,177,42,.5); }
.offer-anchor { margin-top: 18px; font-size: 0.95rem; color: #8b8698; }
.offer-anchor s { color: #a7a2b3; }
.offer-price { margin-top: 6px; display: flex; align-items: baseline; justify-content: center; gap: 6px; }
.offer-price .cur { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; color: var(--deep-purple); }
.offer-price .val { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.6rem, 8vw, 3.4rem); line-height: 1; color: var(--deep-purple); letter-spacing: -.02em; }
.offer-parcela { margin-top: 8px; font-size: 1rem; color: var(--ink); font-weight: 500; }
.offer-parcela strong { font-family: var(--font-head); font-weight: 800; color: var(--royal-purple); }
.offer-card .btn { margin-top: 22px; }
.offer-trust { margin-top: 16px; display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.78rem; color: #6b6577; }
.offer-trust svg { color: #43c07f; width: 15px; height: 15px; }
.offer-note { margin-top: 6px; font-size: 0.74rem; color: #8b8698; }

/* Preço com 12x em destaque (parcela grande, à vista discreto) */
.price-parcela { display: flex; align-items: baseline; justify-content: center; gap: 6px; flex-wrap: wrap; margin-top: 16px; }
.price-parcela .pre { font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--ink); }
.price-parcela .cur { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: var(--deep-purple); }
.price-parcela .big { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.4rem, 8vw, 3.2rem); line-height: 1; color: var(--deep-purple); letter-spacing: -.02em; }
.price-juros { margin-top: 4px; font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: #6b6577; }
.price-avista { margin-top: 10px; font-size: 0.88rem; color: #8b8698; }
.price-avista s { color: #b8b3c2; }
.offer-plan .price-parcela { justify-content: flex-start; margin-top: 8px; }
.offer-plan .price-avista { text-align: left; }
.offer-plan--anchor .offer-price { justify-content: flex-start; }
.offer-plan--anchor .offer-price .val, .offer-plan--anchor .offer-price .cur { color: #a7a2b3; }

/* ══════════ BARRA DE NÚMEROS ══════════ */
.stats-bar { background: var(--surface-muted); border-top: 1px solid #e7e4ee; border-bottom: 1px solid #e7e4ee; padding: 34px 0 60px; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px 16px; max-width: 1000px; margin: 0 auto; text-align: center; }
.stat-item { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.8rem, 4.5vw, 2.6rem); line-height: 1; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { font-size: 0.9rem; color: #6b6577; font-weight: 500; }

/* ══════════ O PILOTO AUTOMÁTICO (inimigo + contraste) ══════════ */
.enemy-body { max-width: 760px; margin: 0 auto; text-align: center; }
.enemy-body p { color: var(--gray-fog); font-size: 1.05rem; }
.enemy-body p + p { margin-top: 16px; }
.impact-quote { max-width: 860px; margin: 40px auto 0; padding: 26px 30px; border-left: 4px solid var(--yellow-glow); border-radius: 0 var(--r-card) var(--r-card) 0; background: rgba(255,177,42,.06); font-family: var(--font-head); font-weight: 700; font-size: clamp(1.2rem, 3vw, 1.6rem); line-height: 1.35; color: var(--white); text-align: left; }
.impact-quote span { color: var(--yellow-glow); }
.compare-grid { display: grid; grid-template-columns: 1fr; gap: 22px; max-width: 1000px; margin: 48px auto 0; }
.compare-col { border-radius: var(--r-hero); padding: 30px 26px; }
.compare-before { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.12); }
.compare-after { background: var(--grad-brand); color: var(--white); box-shadow: 0 30px 70px -30px rgba(69,46,120,.6); }
.compare-tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700; font-size: 0.72rem; text-transform: uppercase; letter-spacing: .05em; padding: 6px 14px; border-radius: 999px; margin-bottom: 18px; }
.compare-before .compare-tag { color: var(--gray-fog); background: rgba(255,255,255,.06); }
.compare-after .compare-tag { color: #2a1a00; background: var(--yellow-glow); }
.compare-col h3 { font-size: 1.2rem; margin-bottom: 16px; color: #fff; }
.compare-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.compare-list li { display: flex; gap: 12px; font-size: 0.97rem; line-height: 1.5; }
.compare-list li svg { flex-shrink: 0; width: 22px; height: 22px; margin-top: 1px; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.compare-before .compare-list li { color: var(--gray-fog); }
.compare-before .compare-list li svg { stroke: #d98a9a; }
.compare-after .compare-list li { color: rgba(255,255,255,.92); }
.compare-after .compare-list li svg { stroke: var(--yellow-glow); }
.compare-list li strong { color: inherit; font-weight: 700; }

/* ══════════ O MEMBERSHIP (grade do que inclui) ══════════ */
.grid-features { display: grid; grid-template-columns: 1fr; gap: 18px; }
.feature { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.10); border-radius: var(--r-card); padding: 24px 22px; transition: border-color .25s, transform .25s; }
.feature:hover { border-color: rgba(176,77,221,.4); transform: translateY(-3px); }
.feature-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.feature-ico { flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px; background: var(--grad-brand); display: grid; place-items: center; }
.feature-ico svg { width: 21px; height: 21px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature-head h3 { font-size: 1.05rem; color: var(--white); line-height: 1.25; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.feature p { color: var(--gray-fog); font-size: 0.94rem; }
.feature-highlight { border-color: rgba(255,177,42,.45); background: rgba(255,177,42,.06); }
.feature-highlight .feature-ico { background: linear-gradient(135deg, var(--yellow-glow), #ff9d2a); }
.feature-highlight .feature-ico svg { stroke: #2a1a00; }
.grade-footer { max-width: 640px; margin: 40px auto 0; text-align: center; }
.grade-footer .pill { display: inline-flex; align-items: center; gap: 10px; padding: 12px 22px; border-radius: 999px; background: rgba(255,177,42,.12); border: 1px solid rgba(255,177,42,.35); font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--yellow-glow); }

/* ══════════ AS FORMAÇÕES (interativa) ══════════ */
.formacoes-tabs { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 1040px; margin: 0 auto; }
.formacoes-list { display: flex; flex-direction: column; gap: 6px; }
.formacao-item { display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: var(--r-card); border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.02); cursor: pointer; transition: background .2s, border-color .2s, color .2s; color: var(--gray-fog); text-align: left; width: 100%; font: inherit; }
.formacao-item:hover { background: rgba(255,255,255,.05); }
.formacao-item.is-active { background: rgba(176,77,221,.14); border-color: rgba(176,77,221,.5); color: #fff; }
.formacao-ico { width: 34px; height: 34px; flex-shrink: 0; border-radius: 9px; display: grid; place-items: center; background: rgba(255,255,255,.06); }
.formacao-ico svg { width: 18px; height: 18px; fill: none; stroke: var(--lilac); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.formacao-item.is-active .formacao-ico { background: var(--grad-brand); }
.formacao-item.is-active .formacao-ico svg { stroke: #fff; }
.formacao-name { font-family: var(--font-head); font-weight: 600; font-size: 0.96rem; }
.formacao-item .badge-new { margin-left: auto; }
.formacoes-panel { position: relative; display: flex; flex-direction: column; gap: 14px; }
.formacao-stage { position: relative; }
.formacao-detail { display: none; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.10); border-radius: var(--r-hero); padding: 28px 26px; }
.formacao-detail.is-active { display: block; animation: fade-in .4s ease both; }
@media (min-width: 860px) { .formacao-stage { min-height: 232px; } }
.detail-head { display: flex; align-items: center; gap: 14px; }
.detail-ico { width: 48px; height: 48px; border-radius: 12px; background: var(--grad-brand); display: grid; place-items: center; flex-shrink: 0; }
.detail-ico svg { width: 24px; height: 24px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.detail-title { font-size: 1.3rem; color: #fff; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.detail-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.detail-chip { font-family: var(--font-head); font-weight: 700; font-size: 0.66rem; text-transform: uppercase; letter-spacing: .03em; padding: 4px 10px; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); color: var(--gray-fog); }
.formacao-detail p { color: var(--gray-fog); font-size: 1rem; line-height: 1.6; }
.detail-modules-label { margin-top: 20px; font-family: var(--font-head); font-weight: 700; font-size: 0.72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--yellow-glow); }
.detail-modules { margin-top: 12px; list-style: none; counter-reset: mod; display: flex; flex-direction: column; gap: 8px; }
.detail-modules li { counter-increment: mod; display: flex; gap: 10px; font-size: 0.92rem; color: rgba(255,255,255,.9); line-height: 1.4; }
.detail-modules li::before { content: counter(mod); flex-shrink: 0; width: 22px; height: 22px; border-radius: 999px; background: rgba(176,77,221,.16); border: 1px solid rgba(176,77,221,.4); color: var(--lilac); font-family: var(--font-head); font-weight: 700; font-size: 0.7rem; display: grid; place-items: center; }

/* ══════════ COMUNIDADE ══════════ */
.community-lead { max-width: 760px; margin: 0 auto 44px; text-align: center; color: var(--gray-fog); font-size: 1.05rem; }
.community-grid { display: grid; grid-template-columns: 1fr; gap: 22px; max-width: 1040px; margin: 0 auto; }
.community-block { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.10); border-radius: var(--r-card); padding: 28px 24px; }
.community-num { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.6rem, 4vw, 2.1rem); background: var(--grad-lilac); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1.1; }
.community-block h3 { margin: 8px 0 10px; font-size: 1.1rem; color: var(--white); }
.community-block p { color: var(--gray-fog); font-size: 0.95rem; }
.community-close { max-width: 820px; margin: 44px auto 0; padding: 24px 28px; text-align: center; border-radius: var(--r-card); background: rgba(255,177,42,.06); border: 1px solid rgba(255,177,42,.22); font-family: var(--font-head); font-weight: 700; font-size: clamp(1.1rem, 2.6vw, 1.35rem); color: var(--white); }
.community-close span { color: var(--yellow-glow); }

/* ══════════ INSTRUTORES (carrossel horizontal full-bleed) ══════════ */
.instrutores-scroller {
  overflow: hidden;
  padding: 4px 0 18px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 40px, #000 calc(100% - 40px), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 40px, #000 calc(100% - 40px), transparent);
}
.instrutores-track {
  display: flex; gap: 16px; width: max-content;
  padding-inline: max(24px, calc((100vw - var(--container)) / 2 + 24px));
  animation: instrutores-marquee 55s linear infinite;
}
.instrutores-track.is-paused { animation-play-state: paused; }
@keyframes instrutores-marquee { to { transform: translateX(-50%); } }
.instrutor-card { flex: 0 0 220px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.10); border-radius: var(--r-card); padding: 22px 18px; display: flex; flex-direction: column; align-items: center; text-align: center; transition: border-color .25s, transform .25s; }
.instrutor-card:hover { border-color: rgba(176,77,221,.4); transform: translateY(-4px); }
.instrutor-avatar { width: 76px; height: 76px; border-radius: 999px; background: var(--grad-brand); display: grid; place-items: center; margin-bottom: 14px; font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; color: #fff; box-shadow: 0 10px 26px -12px rgba(102,69,177,.7); }
.instrutor-photo { width: 76px; height: 76px; border-radius: 999px; overflow: hidden; margin-bottom: 14px; background: var(--grad-brand); box-shadow: 0 10px 26px -12px rgba(102,69,177,.7); flex-shrink: 0; }
.instrutor-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.instrutor-nome { font-size: 1.02rem; color: var(--white); }
.instrutor-cargo { margin-top: 6px; font-size: 0.83rem; color: var(--gray-fog); line-height: 1.4; }
.instrutor-cargo strong { color: var(--white); font-weight: 600; }
.instrutor-courses { margin-top: 14px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.10); width: 100%; display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.instrutor-course { font-family: var(--font-head); font-weight: 700; font-size: 0.6rem; text-transform: uppercase; letter-spacing: .03em; padding: 4px 8px; border-radius: 999px; background: rgba(176,77,221,.15); border: 1px solid rgba(176,77,221,.42); color: #dcb3f0; }
.instrutor-card--more { justify-content: center; border-style: dashed; border-color: rgba(176,77,221,.45); background: rgba(176,77,221,.05); }
.instrutor-more-plus { width: 76px; height: 76px; border-radius: 999px; border: 2px dashed rgba(176,77,221,.55); display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: var(--lilac); margin-bottom: 14px; }
.instrutor-card--more .instrutor-cargo { color: var(--gray-fog); }

/* ══════════ PROVA SOCIAL ══════════ */
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 980px; margin: 0 auto; }
.testimonial { display: flex; flex-direction: column; min-width: 0; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.10); border-radius: var(--r-hero); padding: 28px 26px; }
.testi-mark { font-family: var(--font-head); font-weight: 800; font-size: 2rem; line-height: .6; color: var(--lilac); }
.testi-title { font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; color: #fff; margin: 14px 0 4px; }
.testi-stars { color: var(--yellow-glow); letter-spacing: 3px; font-size: 0.95rem; }
.testimonial blockquote { margin: 12px 0 20px; font-size: 0.98rem; line-height: 1.6; color: var(--gray-fog); flex: 1; overflow-wrap: break-word; }
.testimonial figcaption { display: flex; align-items: center; gap: 12px; }
.testi-avatar { flex-shrink: 0; width: 46px; height: 46px; border-radius: 999px; background: var(--grad-brand); display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 0.95rem; color: #fff; }
.testi-meta { display: flex; flex-direction: column; min-width: 0; }
.testi-meta strong { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; color: var(--white); }
.testi-meta small { font-size: 0.82rem; color: var(--gray-fog); overflow-wrap: break-word; }

/* ══════════ BÔNUS DO LOTE ══════════ */
.bonus { background: var(--white); }
.bonus-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.bonus-item { display: flex; align-items: flex-start; gap: 16px; padding: 22px 24px; border-radius: var(--r-card); background: var(--surface-muted); border: 1px solid #e7e4ee; transition: opacity .3s, filter .3s; }
.bonus-check { flex-shrink: 0; width: 30px; height: 30px; border-radius: 999px; background: var(--grad-brand); display: grid; place-items: center; margin-top: 2px; }
.bonus-check svg { width: 16px; height: 16px; fill: none; stroke: #fff; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.bonus-item h3 { font-size: 1.05rem; color: var(--ink); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.bonus-item p { margin-top: 5px; font-size: 0.92rem; color: #6b6577; }
.bonus-item.bonus-off { opacity: .5; filter: grayscale(1); }
.bonus-item.bonus-off h3 { text-decoration: line-through; color: #8b8698; }
.bonus-item.bonus-off .bonus-check { background: #c9c4d4; }
.bonus-extra { border-color: rgba(255,177,42,.55); background: rgba(255,177,42,.09); }
.bonus-extra .bonus-check { background: linear-gradient(135deg, var(--yellow-glow), #ff9d2a); }
.bonus-tag-hoje { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-head); font-weight: 700; font-size: 0.64rem; text-transform: uppercase; letter-spacing: .04em; color: #b26a00; background: rgba(255,177,42,.18); border: 1px solid rgba(255,177,42,.5); padding: 3px 9px; border-radius: 999px; }
.bonus-note { max-width: 760px; margin: 28px auto 0; text-align: center; font-size: 0.95rem; color: #6b6577; }
.bonus-note strong { color: var(--deep-purple); }

/* ══════════ OFERTA PRINCIPAL — 2 CARDS ══════════ */
.oferta { background: var(--white); }
.offer-cards { display: grid; grid-template-columns: 1fr; gap: 22px; max-width: 860px; margin: 0 auto; align-items: start; }
.offer-plan { position: relative; background: var(--white); border: 1px solid #e7e4ee; border-radius: var(--r-hero); padding: 30px 26px; }
.offer-plan--anchor { background: var(--surface-muted); opacity: .9; }
.offer-plan--rec { border: 2px solid var(--royal-purple); box-shadow: 0 30px 70px -30px rgba(69,46,120,.55); }
.offer-plan-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--yellow-glow); color: #2a1a00; font-family: var(--font-head); font-weight: 800; font-size: 0.7rem; letter-spacing: .05em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; white-space: nowrap; }
.offer-plan-name { font-family: var(--font-head); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: .05em; color: #8b8698; }
.offer-plan--rec .offer-plan-name { color: var(--royal-purple); }
.offer-plan-econ { display: inline-block; margin-top: 14px; font-family: var(--font-head); font-weight: 700; font-size: 0.82rem; color: #b26a00; background: rgba(255,177,42,.14); border: 1px solid rgba(255,177,42,.4); padding: 5px 12px; border-radius: 999px; }
.offer-plan-list { list-style: none; margin: 20px 0 0; display: flex; flex-direction: column; gap: 10px; }
.offer-plan-list li { display: flex; gap: 10px; font-size: 0.9rem; color: #4b4658; line-height: 1.4; }
.offer-plan-list li svg { flex-shrink: 0; width: 18px; height: 18px; margin-top: 1px; fill: none; stroke: #2fa46a; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.offer-plan-list li.muted { color: #a7a2b3; }
.offer-plan-list li.muted svg { stroke: #c9c4d4; }
.offer-plan-list li.hl { color: var(--deep-purple); font-weight: 600; }
.offer-plan-list li.hl svg { stroke: #b26a00; }
.offer-plan-bonus { margin-top: 10px; padding-top: 14px; border-top: 1px dashed #e0dcea; }
.offer-plan-cd { margin-top: 20px; padding: 14px; border-radius: var(--r-card); background: rgba(255,177,42,.08); border: 1px solid rgba(255,177,42,.3); text-align: center; }
.offer-plan-cd .cd-label { font-family: var(--font-head); font-weight: 700; font-size: 0.7rem; text-transform: uppercase; letter-spacing: .04em; color: #b26a00; display: block; margin-bottom: 6px; }
.offer-plan-cd .hc-clock { font-size: 1.3rem; color: var(--deep-purple); }
.offer-plan-cd .hc-clock span[data-countdown-unit] { color: var(--deep-purple); }
.offer-plan-cd .hc-unit { color: #b26a00; }
.offer-plan .btn { margin-top: 20px; }
.offer-plan-addon { margin-top: 14px; text-align: center; font-size: 0.85rem; color: #6b6577; }
.offer-plan-addon a { color: var(--royal-purple); font-weight: 700; }
.offer-plan-addon a:hover { text-decoration: underline; }

/* ══════════ PCAMP (consolidado) ══════════ */
.pcamp-detail-lead { max-width: 820px; margin: 0 auto 24px; text-align: center; color: var(--gray-fog); font-size: 1.05rem; }
.pcamp-value { max-width: 420px; margin: 0 auto 40px; text-align: center; font-family: var(--font-head); font-weight: 700; color: var(--white); font-size: 1.05rem; }
.pcamp-value strong { color: var(--yellow-glow); }
.pcamp-detail-grid { display: grid; grid-template-columns: 1fr; gap: 22px; max-width: 1040px; margin: 0 auto; }
.pcamp-detail-block { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.10); border-radius: var(--r-card); padding: 26px 24px; }
.pcamp-detail-block h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 10px; }
.pcamp-detail-block h3::before { content: ""; display: block; width: 34px; height: 3px; border-radius: 3px; background: var(--yellow-glow); margin-bottom: 14px; }
.pcamp-detail-block p { color: var(--gray-fog); font-size: 0.95rem; }
.pcamp-more-link { display: inline-block; margin-top: 14px; font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: var(--lilac); }
.pcamp-more-link:hover { text-decoration: underline; }

/* ══════════ GARANTIA ══════════ */
.guarantee { background: var(--surface-muted); }
.guarantee-inner { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 22px; }
.guarantee-seal { width: 92px; height: 92px; border-radius: 999px; background: var(--white); border: 2px solid rgba(102,69,177,.25); box-shadow: 0 18px 44px -22px rgba(69,46,120,.5); display: grid; place-items: center; }
.guarantee-seal svg { width: 44px; height: 44px; fill: none; stroke: var(--royal-purple); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.guarantee h2 { font-size: clamp(1.6rem, 4vw, 2.1rem); color: var(--ink); }
.guarantee p { font-size: 1.03rem; color: #4b4658; max-width: 560px; }

/* ══════════ FAQ ══════════ */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq-item { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-card); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; color: var(--white); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:focus-visible { outline: 2px solid var(--yellow-glow); outline-offset: -2px; }
.chevron { width: 20px; height: 20px; flex-shrink: 0; fill: none; stroke: var(--lilac); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s ease; }
.faq-item[open] > summary .chevron { transform: rotate(180deg); }
.faq-answer { padding: 0 22px 20px; }
.faq-answer p { color: var(--gray-fog); font-size: 0.98rem; }
.faq-answer a { color: var(--lilac); font-weight: 600; }
.faq-answer a:hover { text-decoration: underline; }

/* ══════════ CTA FINAL ══════════ */
.cta-final { padding: 76px 0; text-align: center; }
.cta-final .hero-title { font-size: clamp(1.8rem, 4.6vw, 2.8rem); }
.cta-final-sub { margin-top: 20px; font-size: 1.08rem; color: rgba(255,255,255,.85); max-width: 620px; margin-inline: auto; }
.cta-final-sub strong { color: var(--white); }
.final-countdown { display: flex; gap: 12px; margin: 30px auto 0; justify-content: center; }
.fc-unit { display: flex; flex-direction: column; align-items: center; gap: 4px; min-width: 62px; padding: 12px 8px; border-radius: var(--r-card); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); }
.fc-unit span { font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; color: var(--white); line-height: 1; }
.fc-unit small { font-size: 0.68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-fog); }
.cta-final .btn { margin-top: 32px; }
.cta-final .cta-sub { margin-top: 14px; font-size: 0.85rem; color: var(--gray-fog); }

/* ══════════ FOOTER ══════════ */
.site-footer { background: var(--black); color: var(--gray-fog); padding: 44px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 0.85rem; color: var(--gray-fog); transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 0.78rem; color: #6b6577; line-height: 1.6; }

/* ── Sticky CTA mobile ──────────────────────────────────────────────────── */
.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.96); backdrop-filter: blur(10px); border-top: 1px solid #e7e4ee; box-shadow: 0 -6px 24px -12px rgba(0,0,0,.25); transition: transform .3s ease; display: flex; align-items: center; gap: 14px; }
.sticky-cta-price { flex-shrink: 0; font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: var(--deep-purple); line-height: 1.1; }
.sticky-cta-price small { display: block; font-weight: 500; font-size: 0.66rem; color: #8b8698; }
.sticky-cta-btn { flex: 1; padding: 15px; }
.translate-y-full { transform: translateY(120%); }

/* ── Reveal + motion ────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes fade-up { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.hero-copy > * { animation: fade-up .7s cubic-bezier(.22,.61,.36,1) both; }
.hero-copy .hero-brand   { animation-delay: .05s; }
.hero-copy .hero-title   { animation-delay: .12s; }
.hero-copy .hero-sub     { animation-delay: .20s; }
.hero-copy .hero-bullets { animation-delay: .28s; }
.hero-offer-wrap { animation: fade-in .7s ease .36s both; }
.grid-features .reveal:nth-child(2), .community-grid .reveal:nth-child(2) { transition-delay: .08s; }
.grid-features .reveal:nth-child(3), .community-grid .reveal:nth-child(3) { transition-delay: .16s; }

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 767px) {
  /* Depoimentos: só os 2 primeiros, cards mais compactos */
  .testimonials-grid { gap: 14px; }
  .testimonial:nth-child(n+3) { display: none; }
  .testimonial { padding: 18px 16px; border-radius: var(--r-card); }
  .testi-mark { font-size: 1.6rem; }
  .testi-title { font-size: 1.02rem; margin: 8px 0 2px; }
  .testi-stars { font-size: 0.85rem; }
  .testimonial blockquote { font-size: 0.9rem; margin: 8px 0 14px; }
  .testi-avatar { width: 38px; height: 38px; font-size: 0.82rem; }
  .testi-meta strong { font-size: 0.88rem; }
  .testi-meta small { font-size: 0.76rem; }
}
@media (min-width: 768px) {
  .section { padding: 92px 0; }
  .compare-grid { grid-template-columns: 1fr 1fr; }
  .community-grid { grid-template-columns: repeat(3, 1fr); }
  .grid-features { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .pcamp-detail-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 20px 24px; }
  .offer-cards { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 860px) {
  .formacoes-tabs { grid-template-columns: 320px 1fr; align-items: start; }
}
@media (min-width: 1024px) {
  .hero { padding: 56px 0 116px; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; column-gap: 56px; }
  .hero-offer-wrap { position: sticky; top: 96px; }
  .feature-wide { grid-column: span 2; }
  .sticky-cta { display: none; }
}
@media (max-width: 1023px) {
  #site-header { position: static; }
  .header-cta { padding: 14px 22px; } /* alvo de toque mais confortável no mobile */
}
@media (max-width: 859px) {
  .formacoes-list { flex-direction: row; overflow-x: auto; gap: 8px; padding-bottom: 8px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .formacao-item { flex: 0 0 auto; scroll-snap-align: start; }
}

/* ── Reduced motion ─────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .translate-y-full { transform: translateY(120%); }
}
