/* =========================================================
   Workshop Reconstrução Capilar — Wilian Baldan
   Inspirado no DS Cátedra, mas paleta azul dark profunda.
   Modelo de página: framework Will Baldan (1 mensagem/dobra).
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Geist:wght@300;400;500;600;700&family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400&display=swap');

:root {
  /* ---------- COR ---------- */
  /* Ink azul: quase preto-azulado, profundo. Substitui o vermelho/vinho da ref. */
  --ink-1000: #060912;        /* fundo absoluto */
  --ink-950:  #0a0f1c;        /* fundo padrão dark */
  --ink-900:  #0f1626;        /* surface elevada */
  --ink-800:  #161f33;        /* card */
  --ink-700:  #1f2a44;        /* card hover */
  --ink-600:  #2c3a58;        /* divider escuro */
  --ink-400:  #5a6b8a;        /* texto muted no escuro */
  --ink-300:  #8294b3;        /* texto subtle */

  /* Azul saturado — o "vermelho" da referência, traduzido pra azul forte do Wilian */
  --blue-deep:   #0b1d4a;     /* fundo de bloco azul */
  --blue-700:    #15347e;
  --blue-600:    #1d4ab3;     /* azul forte de destaque */
  --blue-500:    #2563eb;     /* botão / acento */
  --blue-400:    #4d8bff;
  --blue-glow:   #5b8dff;

  /* Paper — modo claro (seções alternadas) */
  --paper-50:  #f5f4ef;
  --paper-100: #ecebe3;
  --paper-200: #ddd9cb;

  /* Texto */
  --fg-light:    #f6f4ee;     /* texto sobre dark */
  --fg-muted-l:  #b9c0cf;     /* sec sobre dark */
  --fg-subtle-l: #7d8aa3;
  --fg-dark:     #0a0f1c;     /* texto sobre paper */
  --fg-muted-d:  #3b4561;

  /* Vermelho residual: só como CTA crítico (escassez) */
  --hot:        #d24a3a;

  /* ---------- TIPO ---------- */
  --font-serif: 'Instrument Serif', 'Fraunces', Georgia, serif;
  --font-sans:  'Geist', 'Inter', -apple-system, system-ui, sans-serif;
  --font-display: 'Geist', 'Inter', -apple-system, system-ui, sans-serif;

  --tracking-caps: 0.14em;
  --tracking-tight: -0.02em;

  /* ---------- LAYOUT ---------- */
  --max: 1200px;
  --max-narrow: 980px;
  --gutter: clamp(20px, 4vw, 48px);

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-light);
  background: var(--ink-950);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

/* Destaque "fio derma" — chip-like, mantém a mesma fonte mas com tratamento de marca */
.hl-fioderma{
  color: var(--blue-400);
  font-style: italic;
  font-weight: 500;
  white-space: nowrap;
  position: relative;
  padding: 0 0.08em;
}
.hl-fioderma::after{
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0.04em;
  height: 0.12em;
  background: var(--blue-400);
  opacity: 0.35;
  border-radius: 1px;
}

/* Destaques em cor no headline do hero */
.hl-pro{
  color: inherit;
  font-weight: inherit;
  font-style: italic;
}
.hl-recon{
  color: inherit;
  font-weight: inherit;
  font-style: italic;
}
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ---------------- LAYOUT BASE ---------------- */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.wrap-narrow {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { position: relative; }

/* ---------------- TIPO HELPERS ---------------- */
.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted-l);
}
.eyebrow .dot { color: var(--blue-400); margin-right: 6px; }

.h-display {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.0;
  text-wrap: balance;
}
.h-section {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-wrap: balance;
}

/* ============================================================
   HEADER (sticky)
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 18px 0;
  background: rgba(10, 15, 28, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--ease) 240ms;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.brand .mark {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  color: var(--blue-400);
  font-weight: 700;
}
.brand .edition {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-muted-l);
  margin-left: 8px;
  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,0.18);
  letter-spacing: 0.04em;
}
.header-meta {
  display: flex; align-items: center; gap: 18px;
  font-size: 13px;
  color: var(--fg-muted-l);
  font-variant-numeric: tabular-nums;
}
.header-meta .date { display: flex; align-items: center; gap: 8px; font-weight: 500; color: var(--fg-light); }
.header-meta .sep { color: var(--ink-600); }
.header-meta svg { width: 16px; height: 16px; opacity: 0.85; }

@media (max-width: 720px) {
  .header-meta .sep, .header-meta .time { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  padding: 140px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 80% 30%, rgba(29, 74, 179, 0.55) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 90% 70%, rgba(11, 29, 74, 0.7) 0%, transparent 70%),
    linear-gradient(180deg, var(--ink-950) 0%, var(--ink-1000) 100%);
}
.hero::before {
  /* grão sutil */
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.04) 0%, transparent 40%),
    repeating-linear-gradient(45deg, transparent 0 2px, rgba(255,255,255,0.012) 2px 3px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: calc(92vh - 220px);
}
.hero-copy { padding-right: 0; }

.hero-copy { position: relative; z-index: 2; }

.hero h1 {
  font-size: clamp(40px, 5.4vw, 70px);
  margin: 28px 0 28px;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
  max-width: 22ch;
}
.hero h1 .accent { color: var(--blue-400); font-weight: 600; }
.hero h1 .underline {
  position: relative;
  white-space: nowrap;
}
.hero h1 .underline::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0.05em;
  height: 0.16em;
  background: var(--blue-500);
  z-index: -1;
  opacity: 0.6;
}

.hero-sub {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-muted-l);
  max-width: 460px;
  margin-bottom: 36px;
  font-weight: 400;
}
.hero-sub strong { color: var(--fg-light); font-weight: 600; }

.cta-block { margin-bottom: 24px; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 15px 24px;
  background: var(--blue-600);
  color: #fff;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.005em;
  border-radius: 3px;
  transition: background 200ms var(--ease), transform 140ms var(--ease);
  position: relative;
}
.btn-primary::after {
  content: "";
  width: 1px; height: 18px;
  background: rgba(255,255,255,0.22);
}
.btn-primary .lot {
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  font-size: 13.5px;
}
.btn-primary:hover {
  background: var(--blue-500);
}
.btn-primary:active { transform: translateY(1px); }

.btn-arrow { width: 14px; height: 14px; }

.scarcity-bar {
  margin-top: 18px;
  max-width: 380px;
}
.scarcity-bar .track {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.scarcity-bar .fill {
  height: 100%;
  width: 38%;
  background: linear-gradient(90deg, var(--fg-light), var(--blue-400));
  border-radius: 2px;
}
.scarcity-bar .meta {
  margin-top: 10px;
  font-size: 13px;
  color: var(--fg-muted-l);
}
.scarcity-bar .meta strong { color: var(--fg-light); font-weight: 600; }

/* Hero portrait — foto cinematográfica, integrada ao fundo */
.hero-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 560px;
  margin-left: 0;
  margin-right: auto;
  overflow: hidden;
  isolation: isolate;
  border-radius: 2px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(91, 141, 255, 0.08);
}
.hero-portrait .portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
  display: block;
  position: relative;
  z-index: 1;
}
.hero-portrait::before {
  /* vinheta sutil + integração com bg */
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,15,28,0.35) 0%, rgba(10,15,28,0) 25%, rgba(10,15,28,0) 65%, rgba(10,15,28,0.85) 100%),
    radial-gradient(ellipse at 50% 40%, transparent 50%, rgba(10, 15, 28, 0.55) 110%);
  z-index: 2;
  pointer-events: none;
}
.hero-portrait::after {
  /* glow azul cinematográfico (rim light) */
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 90% 30%, rgba(91, 141, 255, 0.25) 0%, transparent 55%);
  mix-blend-mode: screen;
  z-index: 3;
  pointer-events: none;
}
.hero-portrait .ruler {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  width: 14px; height: 240px;
  z-index: 3;
  background-image: repeating-linear-gradient(
    180deg,
    var(--blue-400) 0 1px,
    transparent 1px 8px
  );
  opacity: 0.55;
}

@media (max-width: 880px) {
  /* hero vira full-bleed: foto como background, copy sobreposto */
  .hero {
    padding: 0;
    min-height: 100vh;
    background: #0a0e16;
  }
  .hero::before { display: none; }
  .hero > .wrap {
    padding: 0;
    max-width: none;
  }
  .hero-grid {
    display: flex;
    flex-direction: column;
    position: relative;
    background: #0a0e16;
  }
  /* Foto: full-bleed, ocupa mais altura. Título sobrepõe a parte inferior */
  .hero-portrait {
    position: relative;
    inset: auto;
    width: 100%;
    height: 78vw;
    max-height: 460px;
    aspect-ratio: auto;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    background: #0a0e16;
    z-index: 0;
    overflow: hidden;
    order: 1;
    margin-top: 56px;
    margin-bottom: -90px;
    contain: layout paint size;
    transform: translateZ(0);
  }
  .hero-portrait .portrait-img {
    width: 100%;
    height: 100%;
    object-position: center top;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
  }
  .hero-portrait .ruler { display: none; }
  /* gradiente forte na borda inferior pro título descansar sobre a foto */
  .hero-portrait::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg,
        rgba(10,14,22,0) 0%,
        rgba(10,14,22,0) 35%,
        rgba(10,14,22,0.75) 62%,
        rgba(10,14,22,0.98) 82%,
        rgba(10,14,22,1) 100%);
    z-index: 1;
    pointer-events: none;
  }
  .hero-portrait::after { display: none; }

  /* Copy: sobe sobre a foto, sem fundo (gradiente da foto já cobre) */
  .hero-copy {
    position: relative;
    z-index: 2;
    min-height: auto;
    padding: 0 22px 24px;
    gap: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: #fff;
    background: transparent;
    order: 2;
  }
  .hero-copy .eyebrow { color: rgba(255,255,255,0.85); }
  .hero-copy .eyebrow .dot { color: var(--blue-400); }
  .hero h1, .hero-section h1.h-display {
    color: #fff;
    font-size: clamp(26px, 6.6vw, 36px) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.025em !important;
    margin-top: 4px;
    text-shadow:
      0 2px 12px rgba(0,0,0,0.85),
      0 0 28px rgba(0,0,0,0.7),
      0 1px 2px rgba(0,0,0,0.9);
  }
  .hero-copy .eyebrow {
    text-shadow: 0 1px 8px rgba(0,0,0,0.85);
  }
  .hero-copy .eyebrow { font-size: 11px; }
  .hero-topics { font-size: 13px; gap: 10px; flex-wrap: wrap; margin: 6px 0 4px !important; }
  .hero-topics li { gap: 6px; }
  .hero-topics li svg { width: 16px; height: 16px; }
  .hero-sub { font-size: 14px; line-height: 1.45; margin: 0 !important; }
  .hero .cta-block { margin-top: 2px; margin-bottom: 8px !important; }
  .hero h1 .accent { color: var(--blue-glow); }
  .hero-topics { color: rgba(255,255,255,0.85); }
  .hero-topics li svg { color: var(--blue-400); }
  .hero-topics .sep { background: rgba(255,255,255,0.18); }
  .hero-sub { color: rgba(255,255,255,0.78); }
  .hero-sub strong { color: #fff; }
  .scarcity-bar .meta { color: rgba(255,255,255,0.7); }
  .scarcity-bar .track { background: rgba(255,255,255,0.18); }
}

/* ============================================================
   STATS BAR (logo após hero)
   ============================================================ */
.stats-bar {
  padding: 0;
  background: var(--ink-1000);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat {
  padding: 48px 24px;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(38px, 4vw, 56px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--fg-light);
}
.stat-num { color: var(--blue-400); }
.stat-label {
  font-size: 13px;
  line-height: 1.4;
  color: var(--fg-muted-l);
}
@media (max-width: 720px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .stat:last-child { border-bottom: none; }
  .stat:nth-child(n+3) { border-bottom: none; }
}

/* ============================================================
   ANTES & DEPOIS
   ============================================================ */
.section-ba {
  padding: 80px 0 88px;
  background: var(--ink-950);
  position: relative;
  overflow: hidden;
}
.section-ba::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(91, 141, 255, 0.10), transparent 70%);
  pointer-events: none;
}
.ba-head {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
  position: relative;
}
.ba-head .eyebrow { margin-bottom: 14px; display: inline-flex; justify-content: center; }
.ba-head h2 { font-size: clamp(26px, 3.2vw, 38px); margin-bottom: 10px; }
.ba-head p {
  font-size: 13px;
  color: var(--fg-muted-l);
  letter-spacing: 0.005em;
}

/* Grid de 4 comparadores compactos */
.ba-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  position: relative;
}
.ba-compare {
  touch-action: pan-y;
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
  background: #000;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 14px 36px -8px rgba(0,0,0,0.6);
  transition: border-color 220ms var(--ease), transform 220ms var(--ease);
}
.ba-compare:hover {
  border-color: rgba(91, 141, 255, 0.35);
  transform: translateY(-2px);
}
.ba-compare img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}
.ba-before-wrap {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
  z-index: 2;
  will-change: width;
}
.ba-before-wrap .ba-before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--stage-w, 100%);
  max-width: none;
  object-fit: cover;
}
.ba-compare {
  --ba-pos: 50%;
}

.ba-label {
  position: absolute;
  top: 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 7px;
  border-radius: 2px;
  z-index: 4;
  pointer-events: none;
}
.ba-label--antes {
  left: 8px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
}
.ba-label--depois {
  right: 8px;
  background: rgba(91, 141, 255, 0.9);
  color: #fff;
}

.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 32px;
  height: 100%;
  transform: translateX(-50%);
  background: transparent;
  border: 0;
  cursor: ew-resize;
  z-index: 5;
  display: grid;
  place-items: center;
  color: #0b1d4a;
  padding: 0;
}
.ba-handle::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  box-shadow: 0 0 10px rgba(91,141,255,0.5);
  transform: translateX(-50%);
}
.ba-handle svg {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
  background: #fff;
  border-radius: 999px;
  padding: 6px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

@media (max-width: 1100px) {
  .ba-row { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}
@media (max-width: 880px) {
  .ba-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 480px) {
  .section-ba { padding: 64px 0 72px; }
  .ba-row { grid-template-columns: 1fr; }
}

/* ============================================================
   POR QUE CONVERTE / FUNDO AZUL PROFUNDO
   ============================================================ */
.section-blue {
  padding: 120px 0;
  background: #0b1a36;
  position: relative;
  overflow: hidden;
}
.section-blue::before { display: none; }

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.split-grid h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  color: var(--fg-light);
}

.feature-list { display: flex; flex-direction: column; }
.feature-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  align-items: start;
}
.feature-row:last-child { border-bottom: none; }
.feature-row .icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  color: var(--fg-light);
  background: rgba(255,255,255,0.04);
}
.feature-row .icon svg { width: 18px; height: 18px; }
.feature-row h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg-light);
  margin-bottom: 6px;
}
.feature-row p {
  font-size: 14px;
  color: var(--fg-muted-l);
  line-height: 1.55;
}

@media (max-width: 880px) {
  .split-grid { grid-template-columns: 1fr; gap: 32px; }
  .section-blue { padding: 80px 0; }
}

/* ============================================================
   FUNCIONA PARA QUEM (cards lado a lado)
   ============================================================ */
.section-dark {
  padding: 120px 0;
  background: var(--ink-950);
  text-align: center;
}
.section-dark .h-section {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
  color: var(--fg-light);
}
.audience-lede {
  font-size: 15px;
  color: var(--fg-muted-l);
  max-width: 480px;
  margin: 0 auto 56px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  text-align: left;
}
.aud-card {
  position: relative;
  border-radius: 4px;
  padding: 24px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: transform 320ms var(--ease);
  border: 1px solid rgba(255,255,255,0.06);
}
.aud-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,15,28,0.2) 0%, rgba(10,15,28,0.4) 50%, rgba(6,9,18,0.95) 100%);
  pointer-events: none;
}
.aud-card:hover { transform: translateY(-4px); border-color: rgba(91, 141, 255, 0.35); }

.aud-num {
  position: relative; z-index: 2;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--blue-400);
}
.aud-body { position: relative; z-index: 2; }
.aud-card .label {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--fg-light);
  margin-bottom: 10px;
}
.aud-card .sub {
  font-size: 13px;
  line-height: 1.5;
  color: var(--fg-muted-l);
  max-width: 100%;
  background: none;
  padding: 0;
  margin: 0;
  display: block;
}

@media (max-width: 880px) {
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .aud-card { min-height: 280px; }
}
@media (max-width: 520px) {
  .audience-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESULTADOS — PROVA SOCIAL (esteira de prints)
   ============================================================ */
.section-paper {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(91, 141, 255, 0.10), transparent 70%),
    linear-gradient(180deg, var(--ink-1000) 0%, var(--ink-950) 100%);
  color: var(--fg-light);
  padding: 48px 0 72px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.section-paper::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.025) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.6;
}
.section-paper .eyebrow { color: var(--blue-400); }
.section-paper .h-section { color: var(--fg-light); }

.results-head {
  text-align: center;
  margin-bottom: 28px;
  position: relative;
}
.results-head .eyebrow { justify-content: center; margin-bottom: 16px; }
.results-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin: 0;
}

.tcard { display: none; }

.marquee-stage {
  position: relative;
  --fade: 100px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 var(--fade), #000 calc(100% - var(--fade)), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 var(--fade), #000 calc(100% - var(--fade)), transparent 100%);
}
.marquee-row {
  overflow: hidden;
  padding: 6px 0;
}
.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee-scroll 110s linear infinite;
  will-change: transform;
}
.marquee-stage:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

.prt {
  flex: 0 0 auto;
  height: 320px;
  margin: 0;
  background: #0d1424;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 16px 40px -16px rgba(0,0,0,0.6);
  transition: transform 320ms var(--ease), border-color 320ms var(--ease);
  position: relative;
}
.prt:hover {
  transform: translateY(-3px);
  border-color: var(--blue-400);
  z-index: 2;
}
.prt img {
  height: 100%;
  width: auto;
  display: block;
}

@media (max-width: 720px) {
  .section-paper { padding: 64px 0 72px; }
  .marquee-stage { --fade: 30px; }
  .prt { height: 260px; }
  .marquee-track { animation-duration: 80s; }
}

/* MOBILE: substituir marquee por stack vertical com fade-in ao rolar */
@media (max-width: 720px) {
  .marquee-stage {
    -webkit-mask-image: none;
    mask-image: none;
    overflow: visible;
  }
  .marquee-row {
    overflow: visible;
    padding: 0;
  }
  .marquee-track {
    animation: none !important;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    padding: 0 16px;
    width: 100%;
    box-sizing: border-box;
  }
  .marquee-track .prt[aria-hidden="true"] { display: none; }
  .marquee-track .prt {
    flex: 0 0 auto;
    width: 100%;
    max-width: min(480px, calc(100vw - 32px));
    box-sizing: border-box;
    height: auto;
    aspect-ratio: auto;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    background: #0d1424;
    overflow: hidden;
    cursor: default;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 600ms var(--ease), transform 600ms var(--ease);
  }
  .marquee-track .prt.in-view {
    opacity: 1;
    transform: translateY(0);
  }
  .marquee-track .prt:hover {
    transform: translateY(0);
    border-color: rgba(255,255,255,0.06);
  }
  .marquee-track .prt img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
  }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .marquee-stage { -webkit-mask-image: none; mask-image: none; overflow-x: auto; }
}

/* ============================================================
   IDENTIFICAÇÃO — PARA QUEM É (DARK PROFUNDO)
   ============================================================ */
.section-identify {
  padding: 120px 0;
  background: var(--ink-1000);
  position: relative;
  overflow: hidden;
}
.section-identify .h-section {
  font-size: clamp(36px, 5vw, 64px);
  text-align: center;
  margin-bottom: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.section-identify .lede {
  text-align: center;
  font-size: 17px;
  color: var(--fg-muted-l);
  max-width: 560px;
  margin: 0 auto 64px;
}

.id-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}
.id-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: var(--ink-900);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--fg-light);
  transition: all 240ms var(--ease);
}
.id-row:hover {
  border-color: var(--blue-500);
  background: var(--ink-800);
}
.id-row .check {
  flex: 0 0 24px;
  width: 24px; height: 24px;
  border-radius: 999px;
  background: var(--blue-500);
  color: white;
  display: grid; place-items: center;
}
.id-row .check svg { width: 12px; height: 12px; }

@media (max-width: 880px) {
  .id-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTEÚDO DO WORKSHOP (DARK COM 2 COLUNAS)
   ============================================================ */
.section-content {
  padding: 120px 0;
  background:
    linear-gradient(180deg, var(--ink-1000) 0%, var(--ink-950) 100%);
}
.content-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
.content-head h2 { font-size: clamp(36px, 4.5vw, 56px); }
.content-head p { color: var(--fg-muted-l); font-size: 16px; line-height: 1.7; }
.content-head p strong { color: var(--fg-light); font-weight: 600; }

.modules { display: none; }
.module { display: none; }

/* CURRICULUM — stepper interativo */
.curriculum {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 24px;
  background: rgba(8, 12, 24, 0.5);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 16px;
  position: relative;
}

.curriculum-rail {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-self: start;
}
.cr-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  border-radius: 6px;
  cursor: pointer;
  color: var(--fg-muted-l);
  transition: background 220ms var(--ease), color 220ms var(--ease);
  position: relative;
  border: 1px solid transparent;
}
.cr-item::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 2px; height: 0;
  background: var(--blue-400);
  transform: translateY(-50%);
  transition: height 320ms var(--ease);
  border-radius: 2px;
}
.cr-item:hover { background: rgba(255,255,255,0.025); color: var(--fg-light); }
.cr-item.is-active {
  background: rgba(91, 141, 255, 0.08);
  color: var(--fg-light);
  border-color: rgba(91, 141, 255, 0.18);
}
.cr-item.is-active::before { height: 60%; }
.cr-item.is-featured .cr-num {
  color: var(--blue-400);
}
.cr-item.is-featured.is-active {
  background: linear-gradient(90deg, rgba(91, 141, 255, 0.18), rgba(91, 141, 255, 0.04));
  border-color: rgba(91, 141, 255, 0.3);
}
.cr-num {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  font-variant-numeric: tabular-nums;
  color: rgba(255,255,255,0.4);
  width: 24px;
  transition: color 220ms var(--ease);
}
.cr-item.is-active .cr-num { color: var(--blue-400); }
.cr-title {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.cr-arrow {
  font-size: 16px;
  color: rgba(255,255,255,0.25);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 220ms var(--ease), transform 220ms var(--ease), color 220ms var(--ease);
}
.cr-item:hover .cr-arrow,
.cr-item.is-active .cr-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--blue-400);
}

.curriculum-panel {
  position: relative;
  min-height: 360px;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(91, 141, 255, 0.12), transparent 55%),
    linear-gradient(160deg, rgba(20, 30, 60, 0.4), rgba(8, 12, 24, 0.6));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 40px 44px;
  overflow: hidden;
}
.curriculum-panel::before {
  /* dot grid */
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 22px 22px;
  pointer-events: none;
  opacity: 0.6;
}
.cr-pane {
  position: absolute;
  inset: 40px 44px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 360ms var(--ease), transform 360ms var(--ease);
}
.cr-pane.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 80ms;
}
.pane-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-400);
  padding: 6px 10px;
  border: 1px solid rgba(91, 141, 255, 0.3);
  border-radius: 3px;
  margin-bottom: 18px;
}
.cr-pane h3 {
  font-family: var(--font-sans);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--fg-light);
  margin: 0 0 14px;
  max-width: 480px;
}
.cr-pane > p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-muted-l);
  max-width: 480px;
  margin: 0 0 20px;
}
.pane-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pane-list li {
  font-size: 13.5px;
  color: var(--fg-muted-l);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.pane-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 1px;
  background: var(--blue-400);
}

@media (max-width: 880px) {
  .content-head { grid-template-columns: 1fr; gap: 24px; }
  .content-head { margin-bottom: 40px !important; }

  /* Mobile: vira ACCORDION VERTICAL — clique abre/fecha cada aula */
  .curriculum {
    display: block !important;
    grid-template-columns: none;
    gap: 0;
    padding: 0;
    background: transparent;
    border: none;
  }
  .curriculum-rail {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
  }
  .curriculum-panel {
    display: none !important;
  }

  /* Cada item vira cartão accordion: header sempre visível, conteúdo expande quando .is-active */
  .cr-item {
    display: block !important;
    grid-template-columns: none;
    padding: 0 !important;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 220ms var(--ease), background 220ms var(--ease);
  }
  .cr-item::before { display: none; }
  .cr-item.is-active {
    background: rgba(91, 141, 255, 0.06);
    border-color: rgba(91, 141, 255, 0.35);
  }

  /* Header do cartão (número + título + ícone +/−) */
  .cr-item .cr-num,
  .cr-item .cr-title,
  .cr-item .cr-arrow {
    display: inline-flex;
    align-items: center;
  }
  .cr-item > .cr-num {
    color: var(--blue-400);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    padding: 18px 0 0 20px;
  }
  .cr-item > .cr-title {
    display: block;
    font-size: 17px;
    font-weight: 600;
    color: var(--fg-light);
    padding: 6px 56px 18px 20px;
    line-height: 1.3;
    position: relative;
  }
  /* Botão +/− no canto */
  .cr-item > .cr-title::after {
    content: "+";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(91,141,255,0.15);
    color: var(--blue-400);
    display: grid; place-items: center;
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
    transition: transform 240ms var(--ease), background 240ms var(--ease);
  }
  .cr-item.is-active > .cr-title::after {
    content: "−";
    background: var(--blue-400);
    color: #fff;
    transform: translateY(-50%) rotate(0deg);
  }
  .cr-item > .cr-arrow { display: none; }

  /* Conteúdo do accordion — clona o pane usando os mesmos atributos via JS */
  .cr-item .cr-mobile-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 360ms var(--ease);
    padding: 0 20px;
  }
  .cr-item.is-active .cr-mobile-body {
    max-height: 600px;
    padding: 0 20px 20px;
  }
  .cr-mobile-body .pane-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue-400);
    background: rgba(91,141,255,0.1);
    padding: 6px 10px;
    border-radius: 4px;
    margin-bottom: 14px;
  }
  .cr-mobile-body p {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--fg-muted-l);
    margin: 0 0 14px;
  }
  .cr-mobile-body ul {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .cr-mobile-body ul li {
    font-size: 13.5px;
    color: var(--fg-muted-l);
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
  }
  .cr-mobile-body ul li::before {
    content: "";
    position: absolute;
    left: 0; top: 8px;
    width: 12px; height: 1px;
    background: var(--blue-400);
  }
}
/* ============================================================
   CRONOGRAMA
   ============================================================ */
.section-schedule {
  padding: 120px 0;
  background: var(--ink-1000);
}
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.schedule-grid .meta {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--fg-muted-l);
  margin-bottom: 24px;
  font-weight: 500;
}
.schedule-grid h2 { font-size: clamp(48px, 6vw, 80px); margin-bottom: 16px; }
.schedule-grid > div > p { color: var(--fg-muted-l); font-size: 14px; }

.timeline { display: flex; flex-direction: column; }
.tl-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.tl-row:first-child { padding-top: 0; }
.tl-row:last-child { border-bottom: none; }
.tl-row .time {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  color: var(--fg-light);
}
.tl-row .label {
  font-size: 18px;
  color: var(--fg-light);
  text-align: right;
}
.tl-row .marker {
  display: none;
}
.schedule-note {
  margin-top: 24px;
  font-size: 12px;
  color: var(--fg-subtle-l);
  font-style: italic;
  line-height: 1.5;
  text-align: right;
}

@media (max-width: 880px) {
  .schedule-grid { grid-template-columns: 1fr; gap: 32px; }
  .tl-row { grid-template-columns: 80px 1fr; }
  .tl-row .label { text-align: left; font-size: 16px; }
  .tl-row .time { font-size: 18px; }
  .schedule-note { text-align: left; }
}

/* ============================================================
   GARANTIA / PROVA INTERMEDIÁRIA
   ============================================================ */
.section-claim {
  padding: 140px 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(29, 74, 179, 0.18) 0%, transparent 70%),
    var(--ink-1000);
  text-align: center;
}
.section-claim .badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-light);
  margin-bottom: 32px;
}
.section-claim h2 {
  font-size: clamp(36px, 5.6vw, 72px);
  font-family: var(--font-serif);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-wrap: balance;
  max-width: 980px;
  margin: 0 auto;
}
.section-claim h2 em {
  color: var(--blue-glow);
  font-style: italic;
}

/* tools symbol — barbearia */
.tools-mark {
  margin: 56px auto 0;
  width: 220px; height: 80px;
  position: relative;
  opacity: 0.55;
}
.tools-mark svg { width: 100%; height: 100%; stroke: var(--fg-light); stroke-width: 1.2; fill: none; }

/* ============================================================
   CERTIFICADO
   ============================================================ */
.section-cert {
  padding: 120px 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 40%, rgba(29, 74, 179, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 15% 80%, rgba(91, 141, 255, 0.08) 0%, transparent 70%),
    linear-gradient(180deg, #0d1426 0%, #111a30 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(91, 141, 255, 0.08);
  border-bottom: 1px solid rgba(91, 141, 255, 0.08);
}
.section-cert::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(91,141,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,141,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 0%, transparent 80%);
  pointer-events: none;
}

.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cert-copy .h-section {
  font-size: clamp(36px, 4.5vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 14px 0 20px;
  color: var(--fg-light);
}
.cert-lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg-muted-l);
  margin-bottom: 28px;
  max-width: 46ch;
}
.cert-lede strong { color: var(--fg-light); font-weight: 600; }

.cert-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.cert-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--fg-light);
}
.cert-check {
  flex: 0 0 26px;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(91, 141, 255, 0.12);
  border: 1px solid rgba(91, 141, 255, 0.3);
  color: var(--blue-400);
  margin-top: 1px;
}
.cert-check svg { width: 14px; height: 14px; }

.cert-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cert-media img {
  width: 100%;
  max-width: 720px;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 10px 30px rgba(29, 74, 179, 0.18);
  position: relative;
  z-index: 1;
}
.cert-glow {
  position: absolute;
  inset: -8% -6% -8% -6%;
  background:
    radial-gradient(ellipse 55% 40% at 50% 50%, rgba(91, 141, 255, 0.35) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}
.cert-tag {
  position: absolute;
  bottom: 18px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(10, 15, 28, 0.85);
  border: 1px solid rgba(91, 141, 255, 0.35);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-light);
}
.cert-tag-star { color: var(--blue-400); font-size: 14px; line-height: 1; }

@media (max-width: 960px) {
  .section-cert { padding: 80px 0; }
  .cert-grid { grid-template-columns: 1fr; gap: 40px; }
  .cert-media { order: -1; }
  .cert-media img { max-width: 560px; margin: 0 auto; }
}
@media (max-width: 560px) {
  .section-cert { padding: 64px 0 72px; }
  .cert-tag { bottom: 10px; right: 10px; padding: 6px 10px; font-size: 10px; }
}

/* ============================================================
   PREÇO
   ============================================================ */
.section-price {
  padding: 120px 0;
  background: var(--ink-950);
}
.section-price .h-section {
  font-size: clamp(36px, 4.5vw, 56px);
  text-align: center;
  margin-bottom: 56px;
}

.price-box {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  max-width: 1080px;
  margin: 0 auto;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.price-author {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: right;
}
.price-author .photo {
  width: 56px; height: 56px;
  border-radius: 999px;
  margin-left: auto;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-deep));
  display: grid; place-items: center;
  color: white;
  font-family: var(--font-serif);
  font-size: 22px;
}
.price-author .meta {
  font-size: 13px;
  color: var(--fg-muted-l);
  line-height: 1.5;
}
.price-author .meta strong { color: var(--fg-light); display: block; margin-bottom: 4px; }
.price-author p {
  font-size: 13px;
  color: var(--fg-muted-l);
  line-height: 1.6;
  max-width: 280px;
  margin-left: auto;
}

.price-card {
  background: var(--ink-900);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 28px;
  text-align: center;
  position: relative;
}
.price-card .product {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-muted-l);
  letter-spacing: 0.04em;
  color: var(--fg-muted-l);
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 20px;
}
.price-card .product .dot { color: var(--blue-400); }
.price-card .price-main {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-serif);
  font-weight: 500;
  margin: 12px 0 8px;
}
.price-card .price-main .currency {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 24px;
  margin-right: 6px;
  opacity: 0.8;
}
.price-card .price-main .integer {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: -0.04em;
  font-size: 86px;
  line-height: 1;
  font-variation-settings: "opsz" 144;
}
.price-card .price-main .cents {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 24px;
  margin-left: 4px;
  opacity: 0.8;
}
.price-card .installment {
  font-size: 13px;
  color: var(--fg-muted-l);
  margin-bottom: 20px;
}
.price-card .pays {
  font-family: var(--font-sans);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 20px 0 22px;
  font-size: 11px;
  color: var(--fg-subtle-l);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.price-card .pays span { font-weight: 500; }
.btn-buy {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--hot);
  color: white;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: 4px;
  transition: background 140ms var(--ease);
}
.btn-buy:hover { background: #b03c2e; }
.price-card .price-scarcity {
  margin-top: 16px;
  text-align: left;
}
.price-card .price-scarcity .track {
  height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px;
  overflow: hidden;
}
.price-card .price-scarcity .fill {
  height: 100%; width: 38%;
  background: linear-gradient(90deg, var(--hot), #f0a23a);
}
.price-card .price-scarcity .meta {
  margin-top: 8px;
  font-size: 12px;
  color: var(--fg-muted-l);
}

.price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--fg-light);
}
.price-list li .check {
  color: var(--blue-400);
  flex: 0 0 18px;
}

@media (max-width: 880px) {
  .price-box { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .price-list li { justify-content: flex-start; text-align: left; }
}

/* ============================================================
   SOBRE WILIAN
   ============================================================ */
.section-about {
  padding: 120px 0;
  background:
    linear-gradient(90deg, var(--ink-1000) 0%, var(--ink-1000) 50%, transparent 100%),
    radial-gradient(ellipse at 100% 50%, rgba(29, 74, 179, 0.4) 0%, transparent 60%),
    var(--ink-950);
  overflow: hidden;
}
.about-section-head {
  text-align: center;
  margin-bottom: 56px;
}
.about-section-head .eyebrow {
  justify-content: center;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted-l);
}
.about-section-head .eyebrow .dot { color: var(--blue-400); margin-right: 8px; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-copy h2 {
  font-size: clamp(40px, 5vw, 64px);
  margin-bottom: 8px;
}
.about-copy .role {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--blue-400);
  margin-bottom: 24px;
}
.about-copy p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-muted-l);
  margin-bottom: 16px;
}
.about-copy p strong { color: var(--fg-light); }
.tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 24px;
}
.tag {
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font-size: 13px;
  color: var(--fg-light);
  transition: all 140ms var(--ease);
}
.tag:hover { background: var(--blue-500); border-color: var(--blue-500); }

.about-portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-width: 480px;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
  background: var(--ink-1000);
  border: 1px solid rgba(91, 141, 255, 0.18);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
}
.about-portrait .about-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  z-index: 1;
}
.about-portrait::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(8, 14, 36, 0.85) 100%),
    linear-gradient(110deg, transparent 60%, rgba(11, 29, 74, 0.35) 95%);
  pointer-events: none;
  z-index: 2;
}
.about-portrait-caption {
  position: absolute;
  left: 20px; right: 20px;
  bottom: 18px;
  z-index: 3;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
}
.about-portrait-caption::before {
  content: "";
  display: inline-block;
  width: 18px; height: 1px;
  background: var(--blue-400);
  vertical-align: middle;
  margin-right: 10px;
}
.about-portrait .placeholder { display: none; }

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   FAQ
   ============================================================ */
.section-faq {
  padding: 120px 0;
  background: var(--ink-950);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
.faq-grid h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.18);
  margin-bottom: 32px;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--fg-light);
  transition: color 140ms var(--ease);
}
.faq-q:hover { color: var(--blue-400); }
.faq-q .chev {
  width: 20px; height: 20px;
  transition: transform 240ms var(--ease);
  flex: 0 0 20px;
}
.faq-item.open .faq-q .chev { transform: rotate(180deg); color: var(--blue-400); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 240ms var(--ease);
}
.faq-a > div { overflow: hidden; }
.faq-a p {
  padding: 0 0 24px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-muted-l);
  max-width: 580px;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }

.faq-help {
  background: var(--ink-900);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 28px;
}
.faq-help h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 8px;
}
.faq-help p {
  color: var(--fg-muted-l);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.55;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: #1fa84e;
  color: white;
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
  transition: background 140ms var(--ease);
}
.btn-whatsapp:hover { background: #178a3e; }
.btn-whatsapp svg { width: 16px; height: 16px; }

@media (max-width: 880px) {
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   FOOTER + CTA FINAL
   ============================================================ */
.section-footer-cta {
  padding: 120px 0 80px;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, var(--blue-700) 0%, transparent 60%),
    var(--ink-1000);
  text-align: center;
}
.section-footer-cta h2 {
  font-size: clamp(40px, 5.6vw, 72px);
  font-family: var(--font-serif);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-wrap: balance;
  max-width: 800px;
  margin: 0 auto 32px;
}
.section-footer-cta p {
  font-size: 16px;
  color: var(--fg-muted-l);
  max-width: 540px;
  margin: 0 auto 40px;
}

.site-footer {
  padding: 32px 0;
  background: var(--ink-1000);
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
  color: var(--fg-subtle-l);
}
.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ============================================================
   STICKY CTA BAR (após scroll)
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 40;
  background: rgba(10, 15, 28, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 8px 8px 8px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  transition: transform 320ms var(--ease);
  max-width: calc(100vw - 32px);
}
.sticky-cta.visible { transform: translateX(-50%) translateY(0); }
.sticky-cta .text {
  font-size: 13px;
  color: var(--fg-muted-l);
}
.sticky-cta .text strong { color: var(--fg-light); }
.sticky-cta .btn-buy {
  width: auto;
  padding: 10px 18px;
  font-size: 13px;
  border-radius: 999px;
}
@media (max-width: 600px) {
  .sticky-cta .text { display: none; }
  .sticky-cta { padding: 6px; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
.reveal.in { opacity: 1; transform: none; }


/* ============ HERO TOPICS ============ */
.hero-topics{
  list-style:none;
  display:flex;
  align-items:center;
  gap:20px;
  margin:24px 0 28px;
  padding:0;
  flex-wrap:wrap;
}
.hero-topics li{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  letter-spacing:0.05em;
  color:rgba(255,255,255,0.85);
  text-transform:uppercase;
  font-weight:500;
}
.hero-topics li.sep{
  width:1px;
  height:14px;
  background:rgba(255,255,255,0.18);
  padding:0;
}
.hero-topics svg{
  width:18px;
  height:18px;
  color:var(--blue-400);
}

/* ============ BTN HOVER PRICE ============ */
.btn-primary--hover-price{
  position:relative;
  overflow:hidden;
}
.btn-primary--hover-price .btn-default,
.btn-primary--hover-price .btn-hover{
  display:inline-flex;
  align-items:center;
  gap:14px;
  transition:transform 280ms var(--ease), opacity 240ms var(--ease);
}
.btn-primary--hover-price .btn-hover{
  position:absolute;
  inset:0;
  display:flex;
  justify-content:center;
  align-items:center;
  opacity:0;
  transform:translateY(100%);
  padding:inherit;
}
.btn-primary--hover-price:hover .btn-default{
  opacity:0;
  transform:translateY(-100%);
}
.btn-primary--hover-price:hover .btn-hover{
  opacity:1;
  transform:translateY(0);
}
.btn-hover .price-old{
  position:relative;
  font-size:15px;
  opacity:0.55;
  font-weight:500;
}
.btn-hover .price-old::after{
  content:"";
  position:absolute;
  left:-2px;right:-2px;
  top:55%;
  height:1.5px;
  background:currentColor;
  transform:rotate(-8deg);
}
.btn-hover .price-new{
  font-size:18px;
  font-weight:700;
  letter-spacing:0.01em;
}

/* ============ STATS BAR (NOVO) ============ */
.stats-bar{
  padding:96px 0 104px;
  background:var(--ink-1000);
  border-top:1px solid rgba(255,255,255,0.06);
  border-bottom:1px solid rgba(255,255,255,0.06);
  position:relative;
  overflow:hidden;
}
.stats-bar::before{
  content:"";
  position:absolute;inset:0;
  background:radial-gradient(ellipse 60% 70% at 50% 50%, rgba(91,141,255,0.08), transparent 70%);
  pointer-events:none;
}
.stats-eyebrow{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin-bottom:48px;
  font-size:11px;
  letter-spacing:0.28em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.55);
  position:relative;
}
.stats-eyebrow .line{
  flex:0 0 60px;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}
.stats-bar .stats-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
  position:relative;
}
.stats-bar .stat{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  position:relative;
  padding:0 24px;
}
.stats-bar .stat:not(:last-child)::after{
  content:"";
  position:absolute;
  right:-16px; top:18%; bottom:18%;
  width:1px;
  background:linear-gradient(180deg, transparent, rgba(255,255,255,0.15), transparent);
}
.stats-bar .stat-prefix{
  font-family:var(--font-display);
  font-size:34px;
  font-weight:300;
  color:#fff;
  line-height:1;
  margin-bottom:4px;
  opacity:0.65;
}
.stats-bar .stat-num{
  font-family:var(--font-display);
  font-size:clamp(56px, 7vw, 88px);
  font-weight:600;
  color:#fff;
  line-height:1;
  letter-spacing:-0.04em;
  font-variant-numeric:tabular-nums;
  margin-bottom:18px;
}
.stats-bar .stat-rule{
  width:36px;
  height:1px;
  background:var(--blue-400);
  margin-bottom:18px;
}
.stats-bar .stat-label{
  font-size:13px;
  line-height:1.5;
  color:rgba(255,255,255,0.7);
  letter-spacing:0.01em;
  max-width:220px;
}
@media (max-width: 760px){
  .stats-bar .stats-grid{ grid-template-columns:1fr; gap:48px; }
  .stats-bar .stat:not(:last-child)::after{ display:none; }
  .stats-bar{ padding:64px 0 72px; }
}

/* ============ AUDIENCE LIST (compacta) ============ */
.audience-list{
  list-style:none;
  margin:32px 0 0;
  padding:0;
  border-top:1px solid rgba(255,255,255,0.08);
  max-width:900px;
}
.aud-item{
  display:grid;
  grid-template-columns:60px 1fr 2fr;
  gap:24px;
  align-items:baseline;
  padding:22px 4px;
  border-bottom:1px solid rgba(255,255,255,0.08);
  transition:background 200ms var(--ease), padding-left 200ms var(--ease);
}
.aud-item:hover{
  background:rgba(91,141,255,0.04);
  padding-left:14px;
}
.aud-n{
  font-family:var(--font-display);
  font-size:14px;
  color:var(--blue-400);
  letter-spacing:0.08em;
  font-weight:500;
}
.aud-t{
  font-size:18px;
  font-weight:600;
  color:#fff;
  letter-spacing:-0.01em;
}
.aud-d{
  font-size:14px;
  color:rgba(255,255,255,0.65);
  line-height:1.55;
}
@media (max-width:720px){
  .aud-item{ grid-template-columns:50px 1fr; row-gap:6px; }
  .aud-d{ grid-column:1 / -1; padding-left:0; }
}

/* ============ PRT clickable ============ */
.prt{ transition: transform 220ms var(--ease); }
.prt:hover{ transform: translateY(-3px) scale(1.02); }

/* ============ LIGHTBOX ============ */
.lb{
  position:fixed;
  inset:0;
  background:rgba(5,8,18,0.97);
  z-index:9999;
  display:flex;
  align-items:center;
  justify-content:center;
}
.lb[hidden]{ display:none; }
.lb-stage{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:5vh 8vw;
  cursor:zoom-out;
}
.lb-img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
  border-radius:6px;
  box-shadow:0 30px 80px rgba(0,0,0,0.6);
  pointer-events:none;
  user-select:none;
}
.lb-close{
  position:absolute;
  top:24px; right:32px;
  width:44px; height:44px;
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.18);
  color:#fff;
  font-size:24px;
  line-height:1;
  display:grid;
  place-items:center;
  transition:background 200ms;
}
.lb-close:hover{ background:rgba(255,255,255,0.16); }
.lb-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:52px; height:52px;
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.18);
  color:#fff;
  font-size:30px;
  line-height:1;
  display:grid;
  place-items:center;
  transition:background 200ms, transform 200ms;
}
.lb-nav:hover{ background:rgba(91,141,255,0.4); }
.lb-prev{ left:24px; }
.lb-next{ right:24px; }
.lb-counter{
  position:absolute;
  bottom:24px;
  left:50%;
  transform:translateX(-50%);
  font-size:13px;
  letter-spacing:0.16em;
  color:rgba(255,255,255,0.6);
  font-variant-numeric:tabular-nums;
}
@media (max-width:600px){
  .lb-stage{ padding:8vh 4vw; }
  .lb-nav{ width:42px; height:42px; font-size:22px; }
  .lb-prev{ left:10px; } .lb-next{ right:10px; }
  .lb-close{ top:14px; right:14px; }
}


/* ============ DATA SECTION (oportunidade) ============ */
.data-grid{
  display:grid;
  grid-template-columns: minmax(0,0.95fr) minmax(0,1fr);
  gap:80px;
  align-items:start;
}
.data-side .h-section{ margin-bottom:24px; }
.data-lede{
  color:rgba(255,255,255,0.7);
  font-size:15px;
  line-height:1.6;
  margin:0 0 36px;
  max-width:440px;
}
.data-toggles{
  list-style:none;
  margin:0; padding:0;
  display:flex;
  flex-direction:column;
  gap:0;
  border-top:1px solid rgba(255,255,255,0.1);
  max-width:480px;
}
.data-toggle{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:18px 4px;
  border-bottom:1px solid rgba(255,255,255,0.1);
  cursor:pointer;
  transition:padding-left 220ms var(--ease), background 220ms var(--ease);
  user-select:none;
}
.data-toggle:hover{
  padding-left:8px;
  background:rgba(255,255,255,0.02);
}
.dt-text{
  font-size:15.5px;
  font-weight:500;
  color:rgba(255,255,255,0.85);
  letter-spacing:-0.005em;
}
.data-toggle.is-active{
  background:rgba(91,141,255,0.12);
  padding-left:14px;
  padding-right:14px;
  border-radius:4px;
  border-bottom-color:transparent;
}
.data-toggle.is-active .dt-text{ color:#fff; }
.dt-switch{
  flex:0 0 38px;
  width:38px; height:22px;
  border-radius:999px;
  background:rgba(255,255,255,0.12);
  position:relative;
  transition:background 220ms var(--ease);
}
.dt-knob{
  position:absolute;
  top:3px; left:3px;
  width:16px; height:16px;
  border-radius:50%;
  background:#fff;
  transition:transform 240ms var(--ease);
}
.data-toggle.is-active .dt-switch{ background:var(--blue-400); }
.data-toggle.is-active .dt-knob{ transform:translateX(16px); }

/* Mobile-only heading injetado em cada pane — escondido no desktop */
.data-pane-heading{ display: none; }

/* Stage / panes */
.data-stage{
  position:relative;
  min-height:520px;
}
.data-pane{
  position:absolute;
  inset:0;
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:opacity 320ms var(--ease), transform 320ms var(--ease);
  pointer-events:none;
}
.data-pane.is-active{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
  pointer-events:auto;
}
.data-card{
  background:#fff;
  color:#0b1020;
  border-radius:14px;
  padding:32px;
  box-shadow:0 30px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.04);
}
.data-card-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:16px;
  margin-bottom:22px;
  padding-bottom:18px;
  border-bottom:1px solid rgba(11,16,32,0.08);
}
.data-kicker{
  font-size:15px;
  font-weight:600;
  color:#0b1020;
  letter-spacing:-0.01em;
}
.data-source{
  font-size:11px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:rgba(11,16,32,0.45);
}
.data-card-img{
  width:100%;
  border-radius:8px;
  overflow:hidden;
  background:#f4f6fb;
}
.data-card-img img{ width:100%; display:block; }
.data-card-foot{
  margin-top:22px;
  display:flex;
  align-items:center;
  gap:18px;
  padding-top:18px;
  border-top:1px solid rgba(11,16,32,0.06);
}
.data-card-foot--note{
  font-size:13px;
  color:rgba(11,16,32,0.6);
  line-height:1.55;
}
.data-stat-big{
  font-family:var(--font-display);
  font-size:48px;
  font-weight:600;
  color:var(--blue-500, #2c5fff);
  letter-spacing:-0.03em;
  line-height:1;
}
.data-stat-label{
  font-size:13px;
  color:rgba(11,16,32,0.65);
  line-height:1.5;
}

/* Salary bars */
.data-bars{
  display:flex;
  flex-direction:column;
  gap:22px;
  padding:8px 0;
}
.data-bar .db-row{
  display:flex;
  justify-content:space-between;
  margin-bottom:8px;
}
.db-val{ font-weight:600; font-size:18px; color:#0b1020; letter-spacing:-0.01em; font-variant-numeric:tabular-nums; }
.db-when{ font-size:13px; color:rgba(11,16,32,0.55); letter-spacing:0.01em; }
.db-track{
  height:8px;
  background:#1a2138;
  border-radius:999px;
  overflow:hidden;
  position:relative;
}
.db-fill{
  height:100%;
  width:var(--w);
  background:linear-gradient(90deg, #2c5fff, #5b8dff);
  border-radius:999px;
  transform-origin:left;
  animation:dbgrow 900ms var(--ease) both;
}
@keyframes dbgrow{ from{ transform:scaleX(0); } to{ transform:scaleX(1); } }

/* Calvície headline */
.data-headline{
  display:flex;
  align-items:center;
  gap:24px;
  padding:8px 0 22px;
  border-bottom:1px solid rgba(11,16,32,0.06);
  margin-bottom:22px;
}
.data-headline-num{
  font-family:var(--font-display);
  font-size:84px;
  font-weight:600;
  color:var(--blue-500, #2c5fff);
  letter-spacing:-0.05em;
  line-height:0.9;
}
.data-headline-num .slash{ font-weight:300; opacity:0.4; padding:0 4px; }
.data-headline-txt{
  font-size:17px;
  color:#0b1020;
  font-weight:500;
  line-height:1.4;
  max-width:280px;
}
.data-rows{ display:flex; flex-direction:column; gap:14px; }
.dr{
  display:grid;
  grid-template-columns:90px 1fr 60px;
  align-items:center;
  gap:14px;
}
.dr-age{ font-size:13px; color:rgba(11,16,32,0.7); font-weight:500; }
.dr-bar{ height:8px; background:#eef1f8; border-radius:999px; overflow:hidden; }
.dr-fill{
  height:100%;
  width:var(--w);
  background:linear-gradient(90deg, #2c5fff, #5b8dff);
  border-radius:999px;
  animation:dbgrow 900ms var(--ease) both;
}
.dr-pct{ font-size:14px; font-weight:600; color:#0b1020; text-align:right; font-variant-numeric:tabular-nums; }

/* Mulheres / quote pane */
.data-quote-h{
  font-family:var(--font-display);
  font-size:24px;
  font-weight:500;
  letter-spacing:-0.015em;
  line-height:1.25;
  color:#0b1020;
  margin-bottom:14px;
}
.data-quote-h em{ color:var(--blue-500, #2c5fff); font-style:normal; font-weight:600; }
.data-quote p{
  font-size:14px;
  line-height:1.6;
  color:rgba(11,16,32,0.7);
  margin:0 0 18px;
}
.data-quote-img{
  border-radius:8px;
  overflow:hidden;
  background:#f4f6fb;
  aspect-ratio:16/9;
}
.data-quote-img img{ width:100%; height:100%; object-fit:cover; display:block; }

@media (max-width: 980px){
  .data-grid{ grid-template-columns:1fr; gap:0; }

  /* No mobile: esconder os toggles (a navegação é por scroll) */
  .data-side .data-toggles{ display: none; }
  .data-side{
    position: sticky;
    top: 0;
    background: linear-gradient(180deg, #0b1a36 0%, #0b1a36 70%, rgba(11,26,54,0) 100%);
    padding-top: 16px;
    padding-bottom: 20px;
    z-index: 5;
  }
  #oportunidade.section-blue{ padding-top: 24px !important; }
  .data-side .eyebrow{ margin-bottom: 12px !important; }
  .data-side .data-lede{ display: none; }
  .data-side .h-section{
    font-family: var(--font-sans) !important;
    font-weight: 600 !important;
    letter-spacing: -0.025em !important;
    font-size: clamp(28px, 7.5vw, 40px) !important;
    line-height: 1.04 !important;
  }

  /* Stage vira coluna vertical: cada pane ocupa altura cheia, scroll natural revela um por vez */
  .data-stage{
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding: 24px 0 40px;
  }
  .data-pane{
    position: relative;
    inset: auto;
    opacity: 0;
    visibility: visible;
    transform: translateY(40px);
    pointer-events: auto;
    display: block !important;
    transition: opacity 600ms var(--ease), transform 600ms var(--ease);
  }
  .data-pane.in-view{
    opacity: 1;
    transform: translateY(0);
  }
  .data-pane:not(.is-active){ display: block; }
  .data-card{ padding:24px; }
  .data-headline-num{ font-size:64px; }

  /* Título do pane — tratamento tech/editorial: label numérico + sans peso 600 */
  .data-pane[data-pane]::before{
    content: "/ DADO " attr(data-pane) " · ESTATÍSTICA";
    display: block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--blue-400);
    margin: 0 24px 14px;
    padding: 0;
    opacity: 0.9;
  }
  .data-pane > .data-pane-heading{
    display: block;
    font-family: var(--font-sans);
    font-size: clamp(26px, 7vw, 34px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: #fff;
    margin: 0 24px 26px;
    padding: 0 0 22px;
    border-bottom: 1px solid rgba(91, 141, 255, 0.18);
    position: relative;
  }
  .data-pane > .data-pane-heading::after{
    content: "";
    position: absolute;
    left: 0; bottom: -1px;
    width: 48px; height: 1px;
    background: var(--blue-400);
  }
  .data-pane::after{ display: none; }
  .data-headline{ gap:18px; }
  .dr{ grid-template-columns:80px 1fr 50px; }
}

/* ============ PROFILE GRID (id) ============ */
.id-head{ max-width:780px; margin-bottom:48px; }
.profile-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}
.profile-card{
  background:#fff;
  border:1px solid rgba(11,16,32,0.06);
  border-radius:12px;
  padding:28px;
  transition:transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
}
.profile-card:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 40px rgba(11,16,32,0.08);
  border-color:rgba(91,141,255,0.3);
}
.profile-icon{
  width:44px; height:44px;
  border-radius:10px;
  background:rgba(91,141,255,0.1);
  color:var(--blue-500, #2c5fff);
  display:grid;
  place-items:center;
  margin-bottom:18px;
}
.profile-icon svg{ width:22px; height:22px; }
.profile-card h4{
  font-family:var(--font-display);
  font-size:19px;
  font-weight:600;
  color:#0b1020;
  letter-spacing:-0.015em;
  margin:0 0 8px;
}
.profile-card p{
  font-size:14px;
  line-height:1.55;
  color:rgba(11,16,32,0.65);
  margin:0;
}
@media (max-width:900px){
  .profile-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:560px){
  .profile-grid{ grid-template-columns:1fr; }
  .id-head{ margin-bottom: 20px !important; }
  .id-head--center .eyebrow{ margin-bottom: 12px; }
  .id-head--center .h-section{ margin-bottom: 14px; }
  .id-head--center .lede{ font-size: 15px; line-height: 1.5; }
}


/* ============ ID HEAD CENTER ============ */
.id-head--center{
  text-align:center;
  max-width:780px;
  margin:0 auto 64px;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.id-head--center .eyebrow{ margin-bottom:18px; }
.id-head--center .lede{ max-width:640px; margin-left:auto; margin-right:auto; }

/* ============ PROFILE GRID — futuristic dark ============ */
.section-identify--dark{
  background:#0a0e1a;
  color:#fff;
  position:relative;
  overflow:hidden;
}
.section-identify--dark::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(91,141,255,0.08), transparent 60%),
    linear-gradient(180deg, transparent, rgba(0,0,0,0.4));
  pointer-events:none;
}
.section-identify--dark::after{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(91,141,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,141,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 75%);
  pointer-events:none;
}
.section-identify--dark .wrap{ position:relative; z-index:1; }
.section-identify--dark .h-section,
.section-identify--dark .lede,
.section-identify--dark .eyebrow{ color:#fff; }
.section-identify--dark .lede{ color:rgba(255,255,255,0.7); }
.section-identify--dark .eyebrow{ color:rgba(255,255,255,0.55); }

.profile-grid--dark{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  position:relative;
}
.profile-grid--dark .profile-card{
  background:linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border:1px solid rgba(255,255,255,0.08);
  border-radius:16px;
  padding:32px 28px 28px;
  position:relative;
  overflow:hidden;
  backdrop-filter:blur(8px);
  transition:transform 320ms var(--ease), border-color 320ms var(--ease), background 320ms var(--ease);
}
.profile-grid--dark .profile-card::before{
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(91,141,255,0.5), transparent);
  opacity:0;
  transition:opacity 320ms var(--ease);
}
.profile-grid--dark .profile-card:hover{
  transform:translateY(-4px);
  border-color:rgba(91,141,255,0.4);
  background:linear-gradient(180deg, rgba(91,141,255,0.08), rgba(91,141,255,0.02));
}
.profile-grid--dark .profile-card:hover::before{ opacity:1; }
.profile-corner{
  position:absolute;
  top:0; right:0;
  width:36px; height:36px;
  border-top:1px solid rgba(91,141,255,0.4);
  border-right:1px solid rgba(91,141,255,0.4);
  border-radius:0 16px 0 0;
}
.profile-grid--dark .profile-num{
  position:absolute;
  top:18px; right:22px;
  font-family:var(--font-display);
  font-size:13px;
  letter-spacing:0.14em;
  color:var(--blue-400);
  font-variant-numeric:tabular-nums;
  font-weight:500;
}
.profile-grid--dark .profile-icon{
  width:48px; height:48px;
  border-radius:12px;
  background:rgba(91,141,255,0.1);
  border:1px solid rgba(91,141,255,0.2);
  color:var(--blue-400);
  display:grid;
  place-items:center;
  margin-bottom:22px;
  transition:background 320ms var(--ease), transform 320ms var(--ease);
}
.profile-grid--dark .profile-card:hover .profile-icon{
  background:rgba(91,141,255,0.18);
  transform:scale(1.05);
}
.profile-grid--dark .profile-icon svg{ width:22px; height:22px; }
.profile-grid--dark .profile-card h4{
  font-family:var(--font-display);
  font-size:18px;
  font-weight:600;
  color:#fff;
  letter-spacing:-0.015em;
  margin:0 0 8px;
}
.profile-grid--dark .profile-card p{
  font-size:13.5px;
  line-height:1.55;
  color:rgba(255,255,255,0.6);
  margin:0;
}
@media (max-width:900px){
  .profile-grid--dark{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:560px){
  .profile-grid--dark{ grid-template-columns:1fr; }
}

/* ============ FOOTER CTA — dramatic ============ */
.section-footer-cta{
  position:relative;
  overflow:hidden;
  background:radial-gradient(ellipse 80% 100% at 50% 0%, #0e1430 0%, #050816 60%, #03050d 100%);
  padding:140px 0 160px;
  text-align:center;
  isolation:isolate;
}
.cta-orb{
  position:absolute;
  border-radius:50%;
  filter:blur(80px);
  z-index:0;
  pointer-events:none;
  animation:orbFloat 12s ease-in-out infinite;
}
.cta-orb--a{
  width:520px; height:520px;
  left:-180px; top:50%;
  transform:translateY(-50%);
  background:radial-gradient(circle, rgba(91,141,255,0.55), transparent 60%);
}
.cta-orb--b{
  width:480px; height:480px;
  right:-160px; top:30%;
  background:radial-gradient(circle, rgba(44,95,255,0.45), transparent 60%);
  animation-delay:-4s;
}
@keyframes orbFloat{
  0%, 100% { transform:translate(0,-50%) scale(1); opacity:0.9; }
  50% { transform:translate(20px,-46%) scale(1.08); opacity:1; }
}
.cta-orb--b{ animation-name: orbFloatB; }
@keyframes orbFloatB{
  0%, 100% { transform:translate(0,0) scale(1); opacity:0.85; }
  50% { transform:translate(-22px,18px) scale(1.06); opacity:1; }
}
.cta-noise{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size:80px 80px;
  mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, #000, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, #000, transparent 70%);
  z-index:0;
  opacity:0.6;
}
.cta-narrow{
  position:relative;
  z-index:1;
  text-align:center;
}
.cta-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:11px;
  letter-spacing:0.28em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.6);
  margin-bottom:32px;
  padding:8px 18px;
  border:1px solid rgba(255,255,255,0.12);
  border-radius:999px;
  background:rgba(255,255,255,0.03);
}
.cta-eyebrow .dot{ color:var(--blue-400); }
.cta-title{
  font-family:var(--font-display);
  font-size:clamp(40px, 6vw, 72px);
  font-weight:600;
  line-height:1.05;
  letter-spacing:-0.035em;
  color:#fff;
  margin:0 0 28px;
  text-wrap:balance;
}
.cta-title em{
  font-style:italic;
  font-weight:500;
  background:linear-gradient(135deg, #fff 0%, #5b8dff 50%, #fff 100%);
  background-size:200% 100%;
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  animation:ctaShimmer 4s ease-in-out infinite;
}
@keyframes ctaShimmer{
  0%, 100% { background-position:0% 50%; }
  50% { background-position:100% 50%; }
}
.cta-lede{
  font-size:16px;
  color:rgba(255,255,255,0.7);
  margin:0 0 40px;
  letter-spacing:0.01em;
}
.cta-btn{
  margin-inline:auto;
  box-shadow:0 20px 60px rgba(91,141,255,0.35), 0 0 0 1px rgba(91,141,255,0.4);
}
@media (max-width:720px){
  .section-footer-cta{ padding:96px 0 110px; }
  .cta-orb--a, .cta-orb--b{ width:340px; height:340px; filter:blur(60px); }
}

/* ============================================================
   RESULTADOS — scroll-jacked sticky stack
   ============================================================ */
#resultados.section-paper{ padding: 0; background: var(--bg-paper); }
.results-scroll{
  position: relative;
  /* 4 slides * 100vh + 100vh de "leitura" inicial = 5x viewport */
  height: 500vh;
}
.results-sticky{
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 56px;
  padding: 80px clamp(24px, 6vw, 96px);
  box-sizing: border-box;
  overflow: hidden;
}
.results-head-stack{
  max-width: 520px;
}
.results-head-stack .eyebrow{
  margin-bottom: 24px;
  color: rgba(13,18,28,0.5);
}
.results-head-stack .eyebrow .dot{ color: var(--blue-500); }
.results-title{
  font-size: clamp(40px, 5.6vw, 84px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}
.results-lede{
  font-size: 17px;
  line-height: 1.5;
  color: rgba(13,18,28,0.6);
  margin: 0 0 32px;
  max-width: 380px;
}

.results-stage{
  position: relative;
  width: 100%;
  height: min(78vh, 720px);
  border-radius: 22px;
  overflow: hidden;
  background: #0a0e16;
  box-shadow: 0 30px 80px rgba(13,18,28,0.18), 0 0 0 1px rgba(13,18,28,0.06);
}
.rs-slide{
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 520ms var(--ease), transform 720ms var(--ease);
  pointer-events: none;
}
.rs-slide.is-active{
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.rs-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.results-progress{
  position: absolute;
  left: clamp(24px, 6vw, 96px);
  bottom: clamp(28px, 5vh, 64px);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.rp-dot{
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: rgba(13,18,28,0.18);
  transition: background 320ms var(--ease), width 320ms var(--ease);
}
.rp-dot.is-active{
  background: var(--blue-500);
  width: 44px;
}

.results-hint{
  position: absolute;
  right: clamp(24px, 6vw, 96px);
  bottom: clamp(28px, 5vh, 64px);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(13,18,28,0.5);
  font-weight: 500;
  z-index: 5;
  animation: rs-hint-bounce 2s var(--ease) infinite;
}
.results-hint svg{ width: 14px; height: 14px; }
@keyframes rs-hint-bounce{
  0%,100%{ transform: translateY(0); opacity: 0.5; }
  50%{ transform: translateY(4px); opacity: 0.85; }
}

@media (max-width: 980px){
  .results-sticky{
    grid-template-columns: 1fr;
    align-items: start;
    gap: 20px;
    padding: 56px 20px 40px;
    /* permite que o conteúdo do header role um pouco no topo */
    align-content: start;
  }
  .results-head-stack{ max-width: 100%; }
  .results-head-stack .eyebrow{ margin-bottom: 14px; }
  .results-title{
    font-size: clamp(34px, 9vw, 52px);
    margin-bottom: 12px;
  }
  .results-lede{
    font-size: 15px;
    margin-bottom: 0;
    max-width: 100%;
  }
  .results-stage{
    height: 62vh;
    max-height: 580px;
    border-radius: 18px;
  }
  .results-progress{
    left: 20px;
    bottom: 20px;
  }
  .rp-dot{ width: 22px; }
  .rp-dot.is-active{ width: 34px; }
  .results-hint{
    right: 20px;
    bottom: 20px;
    font-size: 10px;
    letter-spacing: 0.1em;
  }
  .results-hint span{ display: none; }
}

/* ============================================================
   CONCLUSÃO — usa a tipografia padrão do site (sans / Geist)
   ============================================================ */
.section-claim h2{
  font-family: var(--font-sans) !important;
  font-weight: 600;
  font-variation-settings: normal;
  font-size: clamp(30px, 4.6vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--fg-light);
}
.section-claim h2 em{
  font-family: var(--font-sans) !important;
  font-style: normal;
  font-weight: 600;
  color: var(--blue-glow);
}

/* ============================================================
   PASSADA GERAL MOBILE
   ============================================================ */
@media (max-width: 720px){
  /* tipografias display gigantes ficam mais respiráveis */
  .h-display{
    font-size: clamp(34px, 9vw, 48px) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.02em;
  }
  .h-section{
    font-size: clamp(30px, 8vw, 44px) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.02em;
  }
  /* hero */
  .hero-section{ padding-top: 24px !important; }
  .hero-grid{ gap: 24px !important; }
  .hero-topics{ gap: 6px !important; }
  /* paddings das seções */
  .section-blue,
  .section-paper,
  .section-data,
  .section-cert,
  .section-pricing,
  .section-about,
  .section-faq{
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  .wrap, .wrap-narrow{ padding-left: 20px !important; padding-right: 20px !important; }
  /* CTAs sempre acessíveis */
  .cta-btn{ width: 100%; min-height: 56px; }
  .cta-block{ flex-direction: column; align-items: stretch; gap: 10px; }
  /* schedule / pricing */
  .price-box{ padding: 24px !important; }
  .price-old, .price-new{ text-align: center; }
  /* curriculum */
  .curriculum-tabs{ gap: 6px !important; }
  /* about */
  .about-portrait{ max-width: 100%; }
  /* certificate */
  .cert-glow{ display: none; }
  /* sticky cta z-index acima de tudo */
  .sticky-cta{ z-index: 50; }
  /* data card */
  .data-card{ padding: 18px !important; }
  .data-bars{ gap: 14px !important; }
  /* tirar hover transforms em mobile */
  .ba-compare:hover{ transform: none !important; }
}

@media (max-width: 480px){
  body{ font-size: 15px; }
  .h-display{ font-size: clamp(28px, 9vw, 40px) !important; }
  .hero-section h1.h-display{ font-size: 34px !important; }
  .hero-sub{ font-size: 15px !important; }
  .badge{ font-size: 11px !important; }
}

/* ============================================================
   CONTEÚDO v2 — 9 módulos divididos por dia
   ============================================================ */
.curric2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
}
.curric2-day{
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid rgba(91,141,255,0.18);
  border-radius: 6px;
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
}
.curric2-day::before{
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91,141,255,0.55), transparent);
}
.curric2-day-head{
  display: flex; align-items: baseline; gap: 14px;
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px dashed rgba(255,255,255,0.12);
}
.curric2-day-num{
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 28px;
  color: var(--fg-light);
  letter-spacing: -0.01em;
}
.curric2-day-date{
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-400);
}
.curric2-block{
  margin-bottom: 24px;
}
.curric2-block:last-child{ margin-bottom: 0; }
.curric2-block-tag{
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-glow);
  background: rgba(91,141,255,0.10);
  border: 1px solid rgba(91,141,255,0.22);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.curric2-mod{
  position: relative;
  padding: 16px 0 18px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.curric2-mod:first-of-type{ border-top: none; padding-top: 8px; }
.curric2-mod-num{
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 6px;
}
.curric2-mod h3{
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--fg-light);
  margin: 0 0 8px;
}
.curric2-mod p{
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.70);
  margin: 0;
}
.curric2-mod--featured{
  background: rgba(91,141,255,0.06);
  border: 1px solid rgba(91,141,255,0.28);
  border-radius: 4px;
  padding: 16px 16px 18px;
  margin: 4px 0;
}
.curric2-mod--featured + .curric2-mod{ border-top-color: rgba(255,255,255,0.06); }
.curric2-mod--featured .curric2-mod-num{ color: var(--blue-glow); }

@media (max-width: 880px){
  .curric2{
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 36px;
  }
  .curric2-day{ padding: 24px 18px 20px; }
  .curric2-day-num{ font-size: 24px; }
  .curric2-mod h3{ font-size: 17px; }
  .curric2-mod p{ font-size: 14px; }
}

/* ===== Curriculum Accordion (v3) ===== */
.curric-acc{
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 56px;
}
.curric-acc-item{
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid rgba(91,141,255,0.18);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color .3s ease, background .3s ease;
}
.curric-acc-item[open]{
  border-color: rgba(91,141,255,0.42);
  background: linear-gradient(180deg, rgba(91,141,255,0.05), rgba(255,255,255,0.01));
}
.curric-acc-head{
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  user-select: none;
}
.curric-acc-head::-webkit-details-marker{ display: none; }
.curric-acc-meta{
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 96px;
}
.curric-acc-num{
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
  color: var(--blue-glow);
  letter-spacing: -0.02em;
}
.curric-acc-period{
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.curric-acc-title{
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
}
.curric-acc-chev{
  width: 22px; height: 22px;
  color: rgba(255,255,255,0.55);
  transition: transform .3s ease, color .3s ease;
  flex-shrink: 0;
}
.curric-acc-item[open] .curric-acc-chev{
  transform: rotate(180deg);
  color: var(--blue-glow);
}
.curric-acc-body{
  padding: 4px 26px 24px;
  border-top: 1px dashed rgba(255,255,255,0.1);
  margin-top: 4px;
}
.curric-acc-body .curric2-mod{
  padding: 18px 0 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.curric-acc-body .curric2-mod:first-of-type{ border-top: none; padding-top: 16px; }

@media (max-width: 720px){
  .curric-acc{ margin-top: 36px; gap: 10px; }
  .curric-acc-head{
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    padding: 18px 18px;
  }
  .curric-acc-meta{ min-width: 0; }
  .curric-acc-num{ font-size: 24px; }
  .curric-acc-period{ font-size: 10px; letter-spacing: 0.14em; }
  .curric-acc-title{ font-size: 15px; line-height: 1.35; }
  .curric-acc-body{ padding: 4px 18px 18px; }
  .curric-acc-body .curric2-mod h3{ font-size: 16px; }
  .curric-acc-body .curric2-mod p{ font-size: 14px; }
}

/* ============================================================
   ALUNOS / TURMAS
   ============================================================ */
.section-alunos{
  position: relative;
  padding: 130px 0 140px;
  background: var(--ink-1000);
  color: var(--fg-light);
  overflow: hidden;
}
.section-alunos .alunos-bg{
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 15%, rgba(29,74,179,0.22), transparent 65%),
    radial-gradient(ellipse 50% 45% at 10% 90%, rgba(91,141,255,0.14), transparent 70%);
  pointer-events: none;
}
.section-alunos .wrap{ position: relative; z-index: 1; }
.alunos-head{ text-align: center; max-width: 880px; margin: 0 auto 64px; }
.alunos-head .eyebrow{
  color: var(--blue-400);
  margin-bottom: 18px;
}
.alunos-head h2{
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.022em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.alunos-head h2 em{
  font-family: var(--font-sans);
  font-style: normal;
  color: var(--blue-glow);
  font-weight: 600;
}
.alunos-lede{
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  max-width: 620px;
  margin: 0 auto;
}

.alunos-mosaic{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 240px;
  gap: 14px;
}
.alunos-card{
  margin: 0;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--ink-950);
  border: 1px solid rgba(91,141,255,0.18);
  transition: transform .35s ease, border-color .35s ease;
}
.alunos-card img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  transition: transform .6s ease;
}
.alunos-card:hover{
  transform: translateY(-3px);
  border-color: rgba(91,141,255,0.42);
}
.alunos-card:hover img{ transform: scale(1.04); }

/* Mosaico — 10 fotos em composição assimétrica (12 cols / 3 linhas) */
.alunos-mosaic > .alunos-card:nth-child(1){ grid-column: span 6; grid-row: span 2; }
.alunos-mosaic > .alunos-card:nth-child(2){ grid-column: span 3; grid-row: span 1; }
.alunos-mosaic > .alunos-card:nth-child(3){ grid-column: span 3; grid-row: span 1; }
.alunos-mosaic > .alunos-card:nth-child(4){ grid-column: span 3; grid-row: span 1; }
.alunos-mosaic > .alunos-card:nth-child(5){ grid-column: span 3; grid-row: span 1; }
.alunos-mosaic > .alunos-card:nth-child(6){ grid-column: span 3; grid-row: span 1; }
.alunos-mosaic > .alunos-card:nth-child(7){ grid-column: span 3; grid-row: span 1; }
.alunos-mosaic > .alunos-card:nth-child(8){ grid-column: span 3; grid-row: span 1; }
.alunos-mosaic > .alunos-card:nth-child(9){ grid-column: span 3; grid-row: span 1; }
.alunos-mosaic > .alunos-card:nth-child(10){ grid-column: span 6; grid-row: span 1; }

.alunos-card figcaption{
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 24px 22px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(6,9,18,0.85) 100%);
  display: flex; justify-content: flex-start;
}
.alunos-card-tag{
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(11,29,74,0.65);
  border: 1px solid rgba(91,141,255,0.3);
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.alunos-stats{
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 32px 24px;
  border-top: 1px solid rgba(91,141,255,0.18);
  border-bottom: 1px solid rgba(91,141,255,0.18);
}
.alunos-stat{ text-align: center; }
.alunos-stat .n{
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  color: var(--blue-glow);
  letter-spacing: -0.02em;
}
.alunos-stat .l{
  margin-top: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

@media (max-width: 720px){
  .section-alunos{ padding: 90px 0 100px; }
  .alunos-head{ margin-bottom: 44px; }
  .alunos-head h2{ font-size: clamp(28px, 7vw, 42px); }
  .alunos-lede{ font-size: 15px; }

  .alunos-mosaic{
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 10px;
  }
  .alunos-mosaic > .alunos-card:nth-child(1){ grid-column: span 2; grid-row: span 2; }
  .alunos-mosaic > .alunos-card:nth-child(n+2){ grid-column: span 1; grid-row: span 1; }
  .alunos-mosaic > .alunos-card:nth-child(10){ grid-column: span 2; grid-row: span 1; }

  .alunos-stats{
    margin-top: 40px;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 16px;
  }
  .alunos-stat{ text-align: left; display: flex; align-items: baseline; gap: 14px; }
  .alunos-stat .n{ font-size: 36px; }
  .alunos-stat .l{ margin-top: 0; }
}

/* ===== MOBILE: reduzir espaços enormes entre seções ===== */
@media (max-width: 720px){
  section[class*="section-"]{ padding-top: 56px !important; padding-bottom: 56px !important; }
  .section-audience, .section-content, .section-ba, .section-blue, .section-paper,
  .section-cert, .section-alunos, .section-faq, .section-footer-cta{
    padding-top: 56px !important; padding-bottom: 56px !important;
  }
  .audience-head, .content-head, .alunos-head, .cert-head{ margin-bottom: 28px !important; }
  .audience-grid{ margin-bottom: 0 !important; }
  .content-head + *{ margin-top: 24px !important; }
  /* margins de heads/leds em geral no mobile */
  .section-price .h-section{ margin-bottom: 24px !important; }
  .about-section-head{ margin-bottom: 28px !important; }
  .id-head{ margin-bottom: 20px !important; }
  .data-side .h-section{ margin-bottom: 14px !important; }
  .h-section{ margin-bottom: 18px; }
}
