/* ==========================================================================
   Aprova ENEM — página de vendas
   styles.css — CSS moderno, sem build, sem dependências obrigatórias.
   ========================================================================== */

/* ---------- Tokens de marca (derivados da logo oficial) ---------- */
:root {
  --navy-900: #050d1f;
  --navy-800: #0a1730;
  --navy-700: #0f2347;
  --navy-600: #16315f;

  --blue-700: #0f3fd0;
  --blue-600: #1e5bff;
  --blue-500: #3d78ff;
  --blue-200: #bed0ff;
  --blue-100: #e7eeff;
  --blue-050: #f4f7ff;

  --orange-600: #c6660a;
  --orange-500: #e8790c;
  --orange-400: #f79237;
  --orange-100: #fff0e1;

  --ink: #0d1a2f;
  --ink-soft: #4c5f80;
  --muted: #5a6b8c;
  --line: #dce4f2;
  --line-soft: #eaf0fa;
  --white: #ffffff;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(10, 23, 48, .06), 0 2px 8px rgba(10, 23, 48, .05);
  --shadow-md: 0 4px 12px rgba(10, 23, 48, .07), 0 14px 32px rgba(10, 23, 48, .07);
  --shadow-lg: 0 10px 24px rgba(10, 23, 48, .09), 0 30px 70px rgba(10, 23, 48, .12);
  --shadow-cta: 0 8px 20px rgba(232, 121, 12, .28);

  --font: "Plus Jakarta Sans", "Manrope", "Inter", ui-sans-serif, system-ui,
    -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --wrap: 1180px;
  --gutter: clamp(20px, 5vw, 40px);
  --section-y: clamp(60px, 8vw, 116px);
  --header-h: 74px;
}

/* ---------- Reset enxuto ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(16px, 1.02rem, 17px);
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; display: block; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.14; letter-spacing: -.02em; font-weight: 800; text-wrap: balance; }
p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: var(--blue-700); text-decoration: none; }
a:hover { color: var(--blue-600); text-decoration: underline; }

:where(a, button, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--blue-600);
  outline-offset: 3px;
  border-radius: 6px;
}
::selection { background: var(--blue-100); color: var(--navy-800); }

/* ---------- Utilidades ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section--soft { background: var(--blue-050); border-block: 1px solid var(--line-soft); }
.section--navy { background: var(--navy-800); color: #eaf0ff; }
.section--navy h2, .section--navy h3 { color: #fff; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0;
}
:target { scroll-margin-top: calc(var(--header-h) + 20px); }
section[id] { scroll-margin-top: calc(var(--header-h) + 12px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-700); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--orange-500); border-radius: 2px; }
.section--navy .eyebrow { color: var(--blue-200); }

.h-xl { font-size: clamp(2rem, 5.4vw, 3.35rem); }
.h-lg { font-size: clamp(1.6rem, 4.2vw, 2.5rem); }
.h-md { font-size: clamp(1.25rem, 2.6vw, 1.6rem); }
.lead { font-size: clamp(1.02rem, 2.1vw, 1.18rem); color: var(--muted); max-width: 62ch; }
.section--navy .lead { color: #b9c8e6; }
.head-block { max-width: 60ch; margin-bottom: clamp(32px, 5vw, 56px); }

/* ---------- Botões ---------- */
.btn {
  --btn-bg: var(--blue-600);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 14px 26px;
  border: 1px solid transparent; border-radius: var(--radius-pill);
  font-weight: 800; font-size: 1rem; letter-spacing: -.01em;
  cursor: pointer; text-decoration: none; position: relative;
  transition: transform .18s ease, box-shadow .22s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { text-decoration: none; }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--cta { background: var(--orange-500); color: #fff; box-shadow: var(--shadow-cta); overflow: hidden; }
.btn--cta::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.34) 45%, transparent 70%);
  transform: translateX(-120%);
}
.btn--cta:hover { background: var(--orange-600); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(232,121,12,.34); }
.btn--cta:hover::after { animation: sheen 1s ease forwards; }
.btn--cta:active { transform: translateY(0); background: var(--orange-600); }
@keyframes sheen { to { transform: translateX(120%); } }

.btn--ghost { background: transparent; color: var(--navy-700); border-color: var(--line); }
.btn--ghost:hover { background: var(--blue-050); border-color: var(--blue-200); color: var(--blue-700); }
.btn--ghost:active { background: var(--blue-100); }
.section--navy .btn--ghost, .btn--ghost-light {
  color: #fff; border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.04);
}
.section--navy .btn--ghost:hover, .btn--ghost-light:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }
.btn--sm { min-height: 44px; padding: 10px 18px; font-size: .94rem; }
.btn--block { width: 100%; }

/* ---------- Barra superior ---------- */
.topbar {
  background: linear-gradient(90deg, var(--navy-900), var(--navy-700) 55%, var(--blue-700));
  color: #dbe6ff; font-size: .86rem; text-align: center;
}
.topbar p { margin: 0; padding: 9px var(--gutter); }
.topbar strong { color: #fff; }

/* ---------- Cabeçalho ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.header.is-scrolled { background: rgba(255,255,255,.96); border-bottom-color: var(--line); box-shadow: 0 6px 24px rgba(10,23,48,.07); }
.header__inner { display: flex; align-items: center; gap: 18px; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { height: 34px; width: auto; }
.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: clamp(6px, 1.4vw, 22px); }
.nav__list a {
  display: block; padding: 8px 6px; font-size: .95rem; font-weight: 650; color: var(--navy-700);
  border-radius: 8px; position: relative;
}
.nav__list a::after {
  content: ""; position: absolute; left: 6px; right: 6px; bottom: 2px; height: 2px;
  background: var(--orange-500); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform .22s ease;
}
.nav__list a:hover { color: var(--blue-700); text-decoration: none; }
.nav__list a:hover::after, .nav__list a.is-active::after { transform: scaleX(1); }
.header__actions { display: flex; align-items: center; gap: 10px; flex: none; }
.nav-toggle { display: none; }
.nav__login { display: none; }
@media (max-width: 1000px) { .nav__login { display: block; } }

@media (max-width: 1000px) {
  .nav { position: fixed; inset: var(--header-h) 0 auto; margin: 0; }
  .nav__list {
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 12px var(--gutter) 20px; box-shadow: var(--shadow-md);
    max-height: 0; overflow: hidden; visibility: hidden;
    transition: max-height .3s ease, visibility .3s ease;
  }
  .nav.is-open .nav__list { max-height: 70vh; overflow-y: auto; visibility: visible; }
  .nav__list a { padding: 14px 4px; font-size: 1.02rem; border-bottom: 1px solid var(--line-soft); }
  .header__actions { margin-left: auto; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 46px; height: 46px; order: 3;
    background: #fff; border: 1px solid var(--line); border-radius: 12px; cursor: pointer;
  }
  .nav-toggle:hover { background: var(--blue-050); }
  .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
    content: ""; display: block; width: 20px; height: 2px; background: var(--navy-800); border-radius: 2px;
    transition: transform .22s ease, opacity .18s ease;
  }
  .nav-toggle span::before { transform: translateY(-6px); }
  .nav-toggle span::after { transform: translateY(4px); }
  .nav-toggle[aria-expanded="true"] span { background: transparent; }
  .nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span::after { transform: rotate(-45deg) translateY(0); }
}
@media (max-width: 560px) {
  .brand img { height: 28px; }
  .header__actions .btn--ghost { display: none; }
  .header__actions .btn { font-size: .86rem; padding: 10px 14px; min-height: 44px; }
}

/* ---------- Placeholders de mídia ---------- */
.ph {
  margin: 0; position: relative;
  aspect-ratio: var(--ratio, 4 / 3);
  border: 2px dashed var(--blue-200); border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 100% at 15% 0%, rgba(30,91,255,.10), transparent 60%),
    linear-gradient(160deg, #f7faff, #eaf0ff);
  display: grid; place-items: center; padding: clamp(18px, 3.4vw, 34px);
  overflow: hidden;
  max-height: 620px;
}
.ph--dark {
  border-color: rgba(190,208,255,.45);
  background:
    radial-gradient(120% 100% at 20% 0%, rgba(61,120,255,.28), transparent 62%),
    linear-gradient(160deg, var(--navy-700), var(--navy-900));
  color: #dfe8ff;
}
.ph__body { text-align: center; max-width: 46ch; }
.ph__tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: #fff; background: var(--navy-800); padding: 6px 12px; border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.ph--dark .ph__tag { background: var(--blue-600); }
.ph__desc { font-size: clamp(.86rem, 1.7vw, .97rem); line-height: 1.55; color: var(--navy-700); margin-bottom: 12px; }
.ph--dark .ph__desc { color: #e3eaff; }
.ph__meta {
  display: block; font-size: .76rem; font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--muted); letter-spacing: .01em;
}
.ph--dark .ph__meta { color: #9fb4e0; }
.ph__play {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px;
  background: var(--orange-500); color: #fff; border: 0; border-radius: var(--radius-pill);
  min-height: 52px; padding: 12px 22px; font-weight: 800; cursor: not-allowed;
}
.ph__play svg { width: 20px; height: 20px; }

/* ---------- Mídia real (fotos e capturas de tela) ---------- */
.photo, .shot { margin: 0; border-radius: var(--radius-lg); overflow: hidden; background: #fff; }
.photo img, .shot img { width: 100%; height: auto; }
.photo { box-shadow: var(--shadow-lg); }
.shot { border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.tour__media .shot { transition: transform .3s ease, box-shadow .3s ease; }
.tour__media:hover .shot { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(90% 70% at 88% 8%, rgba(30,91,255,.10), transparent 60%),
    radial-gradient(70% 60% at 4% 96%, rgba(232,121,12,.08), transparent 62%),
    linear-gradient(180deg, #fbfcff, #f2f6ff);
  border-bottom: 1px solid var(--line-soft);
  padding-block: clamp(44px, 6.5vw, 92px) clamp(54px, 7vw, 104px);
}
.hero__glow {
  position: absolute; width: 640px; height: 640px; border-radius: 50%; pointer-events: none;
  left: var(--mx, 50%); top: var(--my, 40%); translate: -50% -50%;
  background: radial-gradient(circle, rgba(30,91,255,.16), rgba(30,91,255,0) 62%);
  opacity: 0; transition: opacity .5s ease; z-index: 0;
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; gap: clamp(34px, 5vw, 58px);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 940px) { .hero__grid { grid-template-columns: 1.06fr .94fr; } }
@media (min-width: 1024px) and (pointer: fine) { .hero:hover .hero__glow { opacity: 1; } }

.hero h1 { font-size: clamp(2.05rem, 5.6vw, 3.5rem); margin-bottom: 18px; }
.hero h1 .mark { color: var(--blue-700); }
.hero__sub { font-size: clamp(1.04rem, 2.2vw, 1.22rem); color: var(--ink-soft); max-width: 54ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 12px; }
.hero__micro { font-size: .9rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.hero__micro svg { width: 16px; height: 16px; color: var(--blue-600); flex: none; }
.hero__points { display: grid; gap: 10px; margin-top: 26px; }
@media (min-width: 620px) { .hero__points { grid-template-columns: 1fr 1fr; } }
.hero__points li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .95rem; font-weight: 620; color: var(--navy-700);
  background: rgba(255,255,255,.72); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 11px 14px;
}
.hero__points svg { width: 18px; height: 18px; color: var(--blue-600); flex: none; margin-top: 2px; }
.hero__media { position: relative; }
.hero__media .photo { box-shadow: var(--shadow-lg); }

/* ---------- Cards genéricos ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(20px, 2.6vw, 26px); position: relative; overflow: hidden;
  transition: transform .22s ease, box-shadow .24s ease, border-color .22s ease;
}
.card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 50%), rgba(30,91,255,.12), transparent 70%);
  transition: opacity .3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-200); }
.card:hover::before { opacity: 1; }
.card > * { position: relative; }
.card__title { font-size: 1.06rem; margin-bottom: 6px; }
.card__text { font-size: .95rem; color: var(--muted); margin: 0; }

.icon-badge {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: var(--blue-100); color: var(--blue-700); margin-bottom: 14px;
  transition: transform .22s ease, background-color .22s ease, color .22s ease;
}
.icon-badge svg { width: 23px; height: 23px; }
.card:hover .icon-badge { transform: translateY(-2px) scale(1.06); background: var(--blue-600); color: #fff; }
.icon-badge--orange { background: var(--orange-100); color: var(--orange-600); }
.card:hover .icon-badge--orange { background: var(--orange-500); color: #fff; }

.grid-3 { display: grid; gap: clamp(14px, 2vw, 20px); grid-template-columns: 1fr; }
@media (min-width: 620px) { .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 940px) { .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* ---------- Seção de dor ---------- */
.pain__layout { display: grid; gap: clamp(28px, 4vw, 48px); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 980px) { .pain__layout { grid-template-columns: 1.15fr .85fr; } }
.pain__cards { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .pain__cards { grid-template-columns: 1fr 1fr; } }
.pain-card {
  background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--orange-500);
  border-radius: var(--radius-sm); padding: 16px 18px;
  display: flex; gap: 12px; align-items: flex-start;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pain-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.pain-card svg { width: 20px; height: 20px; color: var(--orange-600); flex: none; margin-top: 3px; }
.pain-card p { font-size: .95rem; font-weight: 600; color: var(--navy-700); margin: 0; }

/* ---------- Transição ---------- */
.bridge { background: linear-gradient(180deg, var(--navy-900), var(--navy-700)); color: #e6edff; }
.bridge__grid { display: grid; gap: clamp(26px, 4vw, 46px); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) { .bridge__grid { grid-template-columns: 1fr 1fr; } }
.bridge h2 { font-size: clamp(1.55rem, 4.2vw, 2.4rem); color: #fff; }
.bridge p { color: #b9c8e6; }
.bridge__flow { display: grid; gap: 12px; }
.bridge__row {
  display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: center;
  border: 1px solid rgba(190,208,255,.22); border-radius: var(--radius); padding: 14px 16px;
  background: rgba(255,255,255,.04);
}
.bridge__row--on { border-color: rgba(61,120,255,.6); background: rgba(30,91,255,.14); }
.bridge__row b { display: block; color: #fff; font-size: .98rem; }
.bridge__row small { color: #a9bce0; font-size: .88rem; }
.bridge__chip {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255,255,255,.08); color: #cfdcff;
}
.bridge__row--on .bridge__chip { background: var(--blue-600); color: #fff; }
.bridge__chip svg { width: 20px; height: 20px; }

/* ---------- Ciclo de Domínio ---------- */
.cycle { position: relative; }
.cycle__track { position: relative; }
.cycle__rail {
  position: absolute; left: 26px; top: 8px; bottom: 8px; width: 3px;
  background: var(--line); border-radius: 3px;
}
.cycle__rail::after {
  content: ""; position: absolute; inset: 0 0 auto; width: 3px;
  height: var(--progress, 0%);
  background: linear-gradient(180deg, var(--blue-600), var(--orange-500));
  border-radius: 3px; transition: height .35s linear;
}
.cycle__steps { display: grid; gap: 14px; }
.step {
  position: relative; display: grid; grid-template-columns: 54px 1fr; gap: 16px;
  align-items: start; padding-left: 0;
}
.step__num {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: #fff; border: 2px solid var(--line); color: var(--blue-700);
  font-weight: 800; z-index: 1;
  transition: transform .22s ease, border-color .22s ease, background-color .22s ease, color .22s ease;
}
.step__num svg { width: 24px; height: 24px; }
.step__body {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 18px; transition: transform .2s ease, box-shadow .22s ease, border-color .2s ease;
}
.step:hover .step__body { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--blue-200); }
.step:hover .step__num { background: var(--blue-600); border-color: var(--blue-600); color: #fff; transform: scale(1.06); }
.step.is-on .step__num { border-color: var(--blue-600); }
.step__kicker { font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.step h3 { font-size: 1.08rem; margin: 2px 0 6px; }
.step p { font-size: .95rem; color: var(--muted); margin: 0; }

@media (min-width: 1000px) {
  .cycle__rail { left: 0; right: 0; top: 26px; bottom: auto; width: auto; height: 3px; }
  .cycle__rail::after { height: 3px; width: var(--progress, 0%); background: linear-gradient(90deg, var(--blue-600), var(--orange-500)); transition: width .35s linear; }
  .cycle__steps { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 18px; }
  .step { grid-template-columns: 1fr; gap: 14px; text-align: left; }
  .step__num { margin: 0; }
  .step__body { padding: 14px 15px; }
  .step h3 { font-size: 1rem; }
  .step p { font-size: .88rem; }
}

/* ---------- Tour do produto ---------- */
.tour { display: grid; gap: clamp(46px, 7vw, 96px); }
.tour__row { display: grid; gap: clamp(24px, 4vw, 52px); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 940px) {
  .tour__row { grid-template-columns: 1fr 1fr; }
  .tour__row:nth-child(even) .tour__text { order: 2; }
}
.tour__badge {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px;
  font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue-700); background: var(--blue-100); padding: 6px 12px; border-radius: var(--radius-pill);
}
.tour__text h3 { font-size: clamp(1.3rem, 3vw, 1.75rem); }
.tour__list { display: grid; gap: 8px; margin-top: 16px; }
.tour__list li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; color: var(--ink-soft); }
.tour__list svg { width: 18px; height: 18px; color: var(--blue-600); flex: none; margin-top: 3px; }
.tour__media .ph { box-shadow: var(--shadow-md); transition: transform .3s ease, box-shadow .3s ease; }
.tour__media:hover .ph { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.callout {
  margin-top: 18px; padding: 14px 16px; border-radius: var(--radius-sm);
  background: var(--orange-100); border: 1px solid #f7d7b4; color: #7a3f05;
  font-size: .93rem; font-weight: 650;
}

/* ---------- Benefícios ---------- */
.benefits { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .benefits { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .benefits { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.benefit {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; transition: transform .2s ease, box-shadow .22s ease, border-color .2s ease;
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-200); }
.benefit h3 { font-size: 1.02rem; margin-bottom: 6px; display: flex; gap: 10px; align-items: flex-start; }
.benefit h3 svg { width: 20px; height: 20px; color: var(--orange-500); flex: none; margin-top: 2px; }
.benefit p { font-size: .92rem; color: var(--muted); margin: 0; }

/* ---------- Para quem é ---------- */
.fit { display: grid; gap: clamp(16px, 2.4vw, 24px); grid-template-columns: 1fr; }
@media (min-width: 900px) { .fit { grid-template-columns: 1fr 1fr; } }
.fit__col { border-radius: var(--radius-lg); padding: clamp(22px, 3vw, 32px); border: 1px solid var(--line); background: #fff; }
.fit__col--yes { border-color: var(--blue-200); background: linear-gradient(170deg, #f6f9ff, #fff); }
.fit__col--no { background: #fbfcfe; }
.fit__col h3 { font-size: clamp(1.15rem, 2.6vw, 1.45rem); }
.fit__list { display: grid; gap: 11px; margin-top: 18px; }
.fit__list li { display: flex; gap: 11px; align-items: flex-start; font-size: .96rem; color: var(--ink-soft); }
.fit__list svg { width: 19px; height: 19px; flex: none; margin-top: 3px; }
.fit__col--yes svg { color: var(--blue-600); }
.fit__col--no svg { color: var(--muted); }
.fit__note { margin-top: 20px; font-size: .9rem; color: var(--muted); }

/* ---------- Prova visual (vídeo) ---------- */
.videoframe {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(190,208,255,.3);
  background: var(--navy-900); box-shadow: var(--shadow-lg);
}
.videoframe__bar {
  display: flex; align-items: center; gap: 8px; padding: 12px 16px;
  background: rgba(255,255,255,.06); border-bottom: 1px solid rgba(190,208,255,.18);
}
.videoframe__dots { display: flex; gap: 6px; }
.videoframe__dots i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.24); }
.videoframe__url {
  margin-left: 8px; font-size: .8rem; color: #9fb4e0; background: rgba(255,255,255,.06);
  padding: 4px 12px; border-radius: var(--radius-pill);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.videoframe .ph { border: 0; border-radius: 0; }
.demo-video { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; background: var(--navy-900); }

/* ---------- Oferta ---------- */
.offer { display: grid; gap: clamp(20px, 3vw, 30px); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 940px) { .offer { grid-template-columns: .95fr 1.05fr; } }
.price-card {
  background: linear-gradient(170deg, var(--navy-800), var(--navy-900));
  color: #e9efff; border-radius: var(--radius-lg); padding: clamp(24px, 3.4vw, 36px);
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(61,120,255,.32);
}
.price-card::before {
  content: ""; position: absolute; inset: -40% 40% 40% -40%;
  background: radial-gradient(circle, rgba(30,91,255,.32), transparent 62%); pointer-events: none;
}
.price-card > * { position: relative; }
.price-card__name { font-size: .82rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--blue-200); }
.price-card__value { display: flex; align-items: flex-end; gap: 8px; margin: 10px 0 4px; }
.price-card__value b { font-size: clamp(2.6rem, 8vw, 3.6rem); line-height: 1; letter-spacing: -.03em; color: #fff; }
.price-card__value span { font-size: 1rem; color: #b9c8e6; padding-bottom: 8px; }
.price-card__terms { display: grid; gap: 8px; margin: 18px 0 24px; }
.price-card__terms li { display: flex; gap: 10px; align-items: flex-start; font-size: .93rem; color: #c8d6f4; }
.price-card__terms svg { width: 17px; height: 17px; color: var(--blue-200); flex: none; margin-top: 3px; }
.price-card .btn--cta { width: 100%; }
.price-card__micro { margin-top: 12px; font-size: .85rem; color: #9fb4e0; text-align: center; }

.included { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 3.4vw, 34px); }
.included h3 { font-size: 1.15rem; }
.included__list { display: grid; gap: 10px; margin-top: 16px; }
@media (min-width: 620px) { .included__list { grid-template-columns: 1fr 1fr; } }
.included__list li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; color: var(--ink-soft); }
.included__list svg { width: 18px; height: 18px; color: var(--blue-600); flex: none; margin-top: 3px; }

/* ---------- Como o acesso funciona ---------- */
.access { display: grid; gap: clamp(28px, 4vw, 50px); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 980px) { .access { grid-template-columns: 1.05fr .95fr; } }
.steps-ol { counter-reset: acc; display: grid; gap: 12px; }
.steps-ol li {
  counter-increment: acc; display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 15px 17px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.steps-ol li:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.steps-ol li::before {
  content: counter(acc); width: 40px; height: 40px; border-radius: 12px;
  background: var(--blue-100); color: var(--blue-700); font-weight: 800;
  display: grid; place-items: center;
}
.steps-ol b { display: block; font-size: .99rem; }
.steps-ol p { font-size: .92rem; color: var(--muted); margin: 2px 0 0; }
.notice {
  margin-top: 20px; border: 1px solid var(--blue-200); background: var(--blue-050);
  border-radius: var(--radius); padding: 18px 20px;
}
.notice h3 { font-size: 1rem; }
.notice ul { display: grid; gap: 8px; margin-top: 10px; }
.notice li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: var(--ink-soft); }
.notice svg { width: 17px; height: 17px; color: var(--blue-700); flex: none; margin-top: 3px; }

/* ---------- Pais e responsáveis ---------- */
.parents { background: var(--navy-800); color: #e6edff; }
.parents__grid { display: grid; gap: clamp(28px, 4vw, 50px); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 980px) { .parents__grid { grid-template-columns: 1fr 1fr; } }
.parents__list { display: grid; gap: 11px; margin-top: 20px; }
.parents__list li { display: flex; gap: 11px; align-items: flex-start; font-size: .96rem; color: #c6d4f2; }
.parents__list svg { width: 18px; height: 18px; color: var(--blue-200); flex: none; margin-top: 3px; }
.parents__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 10px; max-width: 860px; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease;
}
.faq details[open] { border-color: var(--blue-200); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; list-style: none; padding: 17px 54px 17px 20px; position: relative;
  font-weight: 750; font-size: 1rem; color: var(--navy-800); min-height: 56px;
  display: flex; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: var(--blue-050); color: var(--blue-700); }
.faq summary::after {
  content: ""; position: absolute; right: 20px; top: 50%; width: 11px; height: 11px;
  border-right: 2.5px solid var(--blue-600); border-bottom: 2.5px solid var(--blue-600);
  translate: 0 -70%; rotate: 45deg; transition: rotate .24s ease;
}
.faq details[open] summary::after { rotate: 225deg; translate: 0 -20%; }
.faq__answer { padding: 0 20px 20px; font-size: .95rem; color: var(--muted); }
.faq__answer p { margin-bottom: .7em; }

/* ---------- CTA final ---------- */
.final {
  background:
    radial-gradient(80% 90% at 80% 10%, rgba(30,91,255,.34), transparent 60%),
    radial-gradient(70% 80% at 6% 96%, rgba(232,121,12,.24), transparent 62%),
    linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: #eaf0ff; text-align: left;
}
.final .eyebrow { color: var(--blue-200); }
.final h2 { font-size: clamp(1.7rem, 4.6vw, 2.7rem); color: #fff; max-width: 24ch; }
.final p { color: #c3d1ef; max-width: 58ch; font-size: clamp(1rem, 2.1vw, 1.13rem); }
.final__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 14px; }
.final__micro { font-size: .9rem; color: #9fb4e0; }

/* ---------- Rodapé ---------- */
.footer { background: var(--navy-900); color: #a9bce0; padding-block: clamp(40px, 6vw, 64px) 28px; font-size: .92rem; }
.footer__grid { display: grid; gap: clamp(24px, 4vw, 44px); grid-template-columns: 1fr; }
@media (min-width: 780px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer img { height: 34px; width: auto; background: #fff; padding: 8px 12px; border-radius: 10px; }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .13em; text-transform: uppercase; margin-bottom: 14px; }
.footer ul { display: grid; gap: 9px; }
.footer a { color: #c6d4f2; }
.footer a:hover { color: #fff; }
.footer__editable {
  margin-top: 30px; padding: 16px 18px; border: 2px dashed rgba(190,208,255,.3);
  border-radius: var(--radius); font-size: .86rem; color: #9fb4e0;
}
.footer__editable b { color: #dbe6ff; }
.footer__bottom {
  margin-top: 26px; padding-top: 20px; border-top: 1px solid rgba(190,208,255,.16);
  display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: space-between;
  font-size: .84rem; color: #8ea5d0;
}

/* ---------- Revelação no scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .07s; }
.reveal[data-delay="2"] { transition-delay: .14s; }
.reveal[data-delay="3"] { transition-delay: .21s; }
.reveal[data-delay="4"] { transition-delay: .28s; }
.reveal[data-delay="5"] { transition-delay: .35s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero__glow { display: none; }
  .card::before { display: none; }
  html { scroll-behavior: auto; }
  .cycle__rail::after { height: 100%; }
  @media (min-width: 1000px) { .cycle__rail::after { width: 100%; } }
}
