/* Homepage agência — SSR Django (escopo .site-public). Tokens espelham agency-tokens.css
 *
 * Cores: sRGB (hex/rgba) = conversão exata do oklch de design; declarado primeiro.
 * oklch em forma L% vem em seguida (Safari aceita % melhor que L 0–1).
 * Em engines sem oklch, o sRGB permanece — visualmente o mesmo no gamut sRGB.
 */
.site-public {
  --navy: #0e1e36;
  --navy: oklch(23.51% 0.0514 258.31);
  --navy-2: #182d4a;
  --navy-2: oklch(29.54% 0.0597 256.79);
  --ink-2: #404f5d;
  --ink-2: oklch(42% 0.0307 246.70);
  --ink-3: #5b6b7a;
  --ink-3: oklch(52% 0.0307 246.70);
  --line-lite: #dde5ed;
  --line-lite: oklch(91.82% 0.0139 247.98);
  --surface-2: #eff4f8;
  --surface-2: oklch(96.45% 0.0076 241.66);
  --brand: #2e7a9b;
  --brand: oklch(54.73% 0.0894 230.34);
  --mauve: #9b72aa;
  --mauve: oklch(61.33% 0.0945 316.76);
  --font-serif: 'Bricolage Grotesque', 'Segoe UI', system-ui, sans-serif;
  --font-sans: Inter, 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
  --radius-md: 8px;
  --radius-xl: 999px;
  box-sizing: border-box;
  font-family: var(--font-sans);
  color: #fff;
  background: #0e1e36;
  background: var(--navy);
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.site-public *, .site-public *::before, .site-public *::after { box-sizing: border-box; }
.site-public a { color: inherit; text-decoration: none; }
/* Sem color:inherit — em seções claras vence navy e some o texto (FAQ/planos). */
.site-public button { font: inherit; cursor: pointer; border: none; background: none; }
.site-public a:focus-visible, .site-public button:focus-visible {
  outline: 2px solid #4b9fc4;
  outline: 2px solid oklch(66.55% 0.0977 229.58);
  outline-offset: 3px;
}

.site-public .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 500; border-radius: var(--radius-xl); white-space: nowrap;
}
.site-public .btn--hero { font-size: 15px; padding: 13px 24px; height: 48px; }
.site-public .btn--nav { font-size: 14px; padding: 10px 18px; height: 40px; }
.site-public .btn--light { background: #fff; color: var(--navy); }
.site-public .btn--soft { background: rgba(255,255,255,.10); color: #fff; }
.site-public .btn--navy { background: var(--navy); color: #fff; }
.site-public .btn--text { background: transparent; color: rgba(255,255,255,.85); padding: 10px 14px; }

.site-public .text-gradient {
  background: linear-gradient(100deg, #a270ae 0%, #17a2c8 100%);
  background-clip: text; -webkit-background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.site-public .eyebrow {
  display: inline-block; font-family: var(--font-mono); font-size: 11.5px;
  font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--brand);
}

/* Nav — paridade AgencyHome Nav (logo SVG + links legíveis no hero) */
.ah-nav {
  position: fixed; inset: 0 0 auto; z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 22px 48px;
  transition: background .2s ease, padding .2s ease, box-shadow .2s ease;
}
.ah-nav.is-scrolled {
  background: rgba(255,255,255,.94);
  color: var(--navy);
  backdrop-filter: blur(10px);
  padding: 14px 48px;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
}
.ah-nav__logo {
  display: flex;
  align-items: center;
  justify-self: start;
  transition: opacity .16s ease;
}
.ah-nav__logo:hover { opacity: .75; }
.ah-nav__logo svg {
  height: 37px;
  width: 163px;
  display: block;
  fill: #fff;
  transition: fill .24s ease;
}
.ah-nav.is-scrolled .ah-nav__logo svg { fill: var(--navy); }
.ah-nav__menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}
.ah-nav__link {
  color: rgba(255,255,255,.72);
  font-weight: 500;
  letter-spacing: -.005em;
  padding: 8px 12px;
  border-radius: 8px;
  white-space: nowrap;
  transition: color .2s ease;
}
.ah-nav__link:hover { color: #17a2c8; }
.ah-nav.is-scrolled .ah-nav__link { color: oklch(0.42 0.03 246.7); }
.ah-nav.is-scrolled .ah-nav__link:hover { color: #17a2c8; }
.ah-nav__actions {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-self: end;
}
.ah-nav__entrar-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ah-nav__entrar-arrow {
  flex-shrink: 0;
  transition: transform .2s ease;
}
.ah-nav__entrar:hover .ah-nav__entrar-arrow { transform: translateX(2px); }
.ah-nav.is-scrolled .btn--text { color: var(--navy); }
@media (max-width: 900px) {
  .ah-nav { padding: 14px 24px; gap: 16px; grid-template-columns: 1fr auto; }
  .ah-nav.is-scrolled { padding: 12px 24px; }
  .ah-nav__menu { display: none; }
  .ah-nav__logo svg { height: 30px; width: 132px; }
}

/* Hero — paridade AgencyHome Stage: texto à esquerda + foto à direita */
.ah-hero { position: relative; }
.ah-hero__viewport {
  position: relative; height: 100vh; height: 100svh;
  overflow: hidden; isolation: isolate;
  background: #0e1e36; /* base se vídeo/overlay falharem */
}
.ah-hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; z-index: 0;
}
.ah-hero__overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 70% at 15% 85%, rgba(2, 12, 34, 0.72) 0%, transparent 60%),
    linear-gradient(135deg,
      rgba(4, 17, 39, 0.55) 0%,
      rgba(7, 22, 44, 0.30) 45%,
      rgba(79, 39, 92, 0.22) 100%);
  background:
    radial-gradient(ellipse 60% 70% at 15% 85%, oklch(16% 0.05 258 / 0.72) 0%, transparent 60%),
    linear-gradient(135deg,
      oklch(18% 0.05 258 / 0.55) 0%,
      oklch(20% 0.05 258 / 0.30) 45%,
      oklch(35% 0.10 317 / 0.22) 100%);
}
.ah-hero__scene { position: absolute; inset: 0; z-index: 10; }
.ah-hero__content {
  position: absolute; left: 4px; right: 0; bottom: 0;
  padding: 0 calc(48px + min(clamp(630px, 42vw, 840px), calc((100svh - 194px) * 0.75)) + 56px) 64px 48px;
}
.ah-hero__inner { max-width: clamp(640px, 40vw, 820px); text-align: left; }
.ah-hero__headline {
  font-family: var(--font-serif); font-size: clamp(2.2rem, 3.5vw + .6rem, 3.4rem);
  font-weight: 500; line-height: 1.02; letter-spacing: -.042em; margin: 0 0 28px; color: #fff;
}
.ah-hero__body {
  font-size: 16px; line-height: 1.6; color: rgba(255,255,255,.65);
  max-width: 520px; margin: 0 0 36px;
}
.ah-hero__ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.ah-hero__slider {
  position: absolute; z-index: 15; bottom: 64px; right: 48px;
  width: min(clamp(630px, 42vw, 840px), calc((100svh - 194px) * 0.75));
  aspect-ratio: 3 / 4; border-radius: 20px; overflow: hidden;
  box-shadow:
    0 30px 80px -20px rgba(0, 1, 11, 0.7),
    0 12px 32px -8px rgba(12, 0, 20, 0.35);
  box-shadow:
    0 30px 80px -20px oklch(8% 0.04 258 / 0.7),
    0 12px 32px -8px oklch(10% 0.08 317 / 0.35);
}
.ah-hero__slider picture {
  display: block; width: 100%; height: 100%;
}
.ah-hero__slider img {
  display: block; width: 100%; height: 100%; object-fit: cover;
}
.ah-hero__slider::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 65%, rgba(1, 10, 32, 0.45) 100%);
  background: linear-gradient(180deg, transparent 65%, oklch(15% 0.05 258 / 0.45) 100%);
}
/* Mobile: viewport cresce com o conteúdo (paridade Stage.tsx).
   Antes: height:100svh + overflow:hidden cortava a foto a uma “faixa”. */
@media (max-width: 900px) {
  .ah-hero__viewport {
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
    overflow: visible;
  }
  .ah-hero__scene {
    position: relative;
    inset: auto;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100svh;
  }
  .ah-hero__slider {
    order: 0;
    position: relative;
    top: auto; left: auto; right: auto; bottom: auto;
    z-index: 15;
    margin: 96px auto 28px;
    width: calc(100vw - 64px);
    max-width: 360px;
    aspect-ratio: 16 / 17;
    flex-shrink: 0;
  }
  .ah-hero__content {
    order: 1;
    position: relative;
    left: auto; right: auto; bottom: auto;
    padding: 0 32px 48px;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .ah-hero__inner { max-width: none; }
  .ah-hero__headline { font-size: clamp(1.9rem, 7vw, 2.6rem); margin-bottom: 16px; }
}
@media (max-width: 640px) {
  .ah-hero__slider { margin-top: 84px; max-width: 320px; }
  .ah-hero__content { padding: 0 24px 40px; }
  .ah-hero__body { font-size: 15px; margin-bottom: 28px; }
  .site-public .btn--hero { font-size: 14px; padding: 12px 20px; height: 44px; }
}
@media (prefers-reduced-motion: reduce) {
  .ah-hero__video { display: none; }
}

/* Sections common */
.ah-section { padding: 100px 48px; color: var(--navy); background: #fff; }
.ah-section--dark { background: var(--navy); color: #fff; }
.ah-section--soft { background: var(--surface-2); color: var(--navy); }
.ah-inner { max-width: 1100px; margin: 0 auto; }
.ah-h2 {
  font-family: var(--font-serif); font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500; line-height: 1.08; letter-spacing: -.035em; margin: 12px 0 16px;
}
.ah-lead {
  font-family: var(--font-sans); font-size: 17px; line-height: 1.6;
  color: var(--ink-2); max-width: 560px;
}
.ah-nav, .ah-card, .ah-list, .ah-details, .ah-plano-card, .ah-escola-card, .ah-faq, .ah-footer {
  font-family: var(--font-sans);
}
.ah-section--dark .ah-lead { color: rgba(255,255,255,.72); }

/* Problema — tipografia = AgencyHome (sans, não mono) */
.ah-problema {
  padding: 120px 48px; background: var(--navy); color: #fff; text-align: center;
}
.ah-problema .ah-inner { max-width: 720px; }
.ah-problema .ah-h2 { color: #fff; }
.ah-problema .ah-lead { color: rgba(255,255,255,.72); margin-left: auto; margin-right: auto; }
.ah-problema__ritmo {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px;
  margin: 28px 0; font-family: var(--font-sans); font-size: 17px; font-weight: 500;
  color: rgba(255,255,255,.92);
}
.ah-problema__transition {
  font-family: var(--font-sans); font-size: 15px; color: rgba(255,255,255,.55); margin: 0 0 20px;
}
.ah-problema__quote {
  font-family: var(--font-serif); font-size: clamp(1.4rem, 1.8vw + .6rem, 2rem);
  font-style: normal; font-weight: 400; letter-spacing: -.025em;
  margin: 24px 0 40px; color: #c18fd2;
  color: oklch(72% 0.11 317);
}
.ah-problema__punch {
  font-family: var(--font-sans); font-size: 17px; font-weight: 500;
  margin-top: 24px; color: #fff;
}

/* Como Funciona — paridade SectionComoFunciona (título centrado + ícones + badge) */
.ah-como { padding: 140px 48px 160px; }
.ah-como__inner { max-width: 1200px; }
.ah-como .eyebrow,
.ah-como .ah-h2,
.ah-como .ah-lead { text-align: center; }
.ah-como .ah-h2 { max-width: 900px; margin-left: auto; margin-right: auto; }
.ah-como .ah-lead {
  max-width: 620px;
  margin: 0 auto 72px;
}
.ah-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 0; }
.ah-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 32px 28px 28px;
  border-radius: 20px;
  background: oklch(0.97 0.012 317);
  border: none;
  transition: transform .2s cubic-bezier(0.16, 1, 0.3, 1), background .2s ease;
}
.ah-card:hover {
  background: oklch(0.955 0.016 317);
  transform: translateY(-2px);
}
.ah-card__idx {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: oklch(0.6133 0.0945 316.76);
  letter-spacing: .05em;
}
.ah-card__icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: oklch(0.5133 0.1245 316.76);
  margin-bottom: 36px;
}
.ah-card__icon svg { width: 100%; height: 100%; display: block; }
.ah-card__title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -.028em;
  line-height: 1.1;
  margin: 0 0 14px;
}
.ah-card__body {
  font-size: 15px;
  line-height: 1.5;
  color: oklch(0.42 0.0307 246.7);
  margin: 0;
  flex: 1;
}
@media (max-width: 1080px) {
  .ah-cards { grid-template-columns: 1fr 1fr; }
  .ah-card { min-height: 280px; }
}
@media (max-width: 640px) {
  .ah-como { padding: 96px 24px 120px; }
  .ah-como .ah-lead { margin-bottom: 48px; }
  .ah-cards { grid-template-columns: 1fr; gap: 12px; }
  .ah-card { min-height: 0; padding: 28px 24px 24px; }
  .ah-card__title { font-size: 24px; }
  .ah-card__icon { margin-bottom: 24px; }
}

/* Motor / lists */
.ah-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.ah-list li { display: grid; grid-template-columns: 18px 1fr; gap: 10px; font-size: 15px; }
.ah-check {
  width: 18px; height: 18px; border-radius: 50%; background: var(--brand);
  color: #fff; display: grid; place-items: center; font-size: 11px; margin-top: 2px;
}

/* Treino details */
.ah-details { border-top: 1px solid var(--line-lite); }
.ah-details details { border-bottom: 1px solid var(--line-lite); padding: 14px 0; }
.ah-details summary {
  cursor: pointer; font-family: var(--font-serif); font-size: 1.2rem; font-weight: 500; color: var(--navy);
}
.ah-details p { margin: 10px 0 0; color: var(--ink-2); font-size: 15px; line-height: 1.55; }

/* Planos */
.ah-planos-wrap {
  display: grid; grid-template-columns: 1.1fr 1fr; max-width: 940px; margin: 48px auto 0;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(1, 10, 32, 0.16);
  box-shadow: 0 30px 80px -30px oklch(15% 0.05 258 / 0.16);
}
.ah-trial {
  background: linear-gradient(135deg, #4e215d, #0a0316);
  background: linear-gradient(135deg, oklch(34% 0.11 317), oklch(13% 0.045 300));
  color: #fff; padding: 48px 44px;
}
.ah-trial__tag {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px;
  border-radius: 999px; background: rgba(255,255,255,.1);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 10px;
}
.ah-trial__note {
  margin: 0 0 20px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: rgba(255,255,255,.65);
}
.ah-trial__title { font-family: var(--font-serif); font-size: 36px; font-weight: 600; line-height: 1.05; margin: 0 0 14px; }
.ah-trial__body { font-size: 15px; line-height: 1.55; color: rgba(255,255,255,.72); max-width: 320px; }
.ah-plano-card { background: #fff; padding: 48px 44px; color: var(--navy); }
.ah-plano-name {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--brand); margin-bottom: 16px;
}
.ah-plano-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: var(--surface-2, #eff4f8);
}
.ah-plano-toggle__btn {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--ink-3);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.ah-plano-toggle__btn.is-active {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 1px 4px rgba(14, 30, 54, 0.1);
  box-shadow: 0 1px 4px oklch(20% 0.04 258 / 0.1);
}
.ah-plano-toggle__badge {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 2px 7px;
  border-radius: 999px;
  background: #e8f5e9;
  background: oklch(94% 0.04 145);
  color: #2e7d32;
  color: oklch(38% 0.1 145);
}
@media (prefers-reduced-motion: reduce) {
  .ah-plano-toggle__btn { transition: none; }
}
.ah-plano-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 8px; }
.ah-plano-price .amount {
  font-family: var(--font-mono); font-size: clamp(1.75rem, 2.2vw + .8rem, 2.1rem);
  font-weight: 700; white-space: nowrap; color: var(--navy);
}
.ah-plano-price .per {
  font-family: var(--font-mono);
  font-size: clamp(1.75rem, 2.2vw + .8rem, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  white-space: nowrap;
  flex-shrink: 0;
}
.ah-plano-monthly { font-size: 14px; color: var(--ink-3); margin: 0 0 6px; }
.ah-plano-monthly[hidden] { display: none !important; }
.ah-plano-hint { font-size: 13px; color: var(--ink-3); margin: 0 0 24px; }
.ah-plano-includes {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 12px;
}
@media (max-width: 900px) {
  .ah-planos-wrap { grid-template-columns: 1fr; }
  .ah-section, .ah-problema { padding-left: 24px; padding-right: 24px; }
}

/* Motor de Navegação — paridade SectionMotor (head centrado + box navy) */
.ah-motor {
  background: #fff;
  color: var(--navy);
  padding: 140px 48px 160px;
}
.ah-motor__inner { max-width: 1240px; }
.ah-motor__head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 72px;
}
.ah-motor__head .eyebrow { margin-bottom: 24px; }
.ah-motor__headline {
  font-size: clamp(2.4rem, 4vw + 0.5rem, 3.75rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.042em;
  margin: 0 0 18px;
}
.ah-motor__sub {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.2vw + 0.7rem, 1.5rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -.02em;
  color: var(--ink-3);
  margin: 0;
}
.ah-motor__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: start;
}
.ah-motor__box {
  background: var(--navy);
  color: #fff;
  border-radius: 24px;
  padding: 56px 56px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 560px;
}
.ah-motor__box::after {
  content: "";
  position: absolute;
  inset: auto -20% -30% auto;
  width: 480px; height: 480px;
  background: radial-gradient(circle, oklch(0.35 0.10 317 / 0.22), transparent 65%);
  pointer-events: none;
}
.ah-motor__box-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 1.8vw + 0.8rem, 2.15rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -.028em;
  color: #fff;
  margin: 0 0 48px;
  max-width: 560px;
  position: relative;
  z-index: 1;
}
.ah-motor__box-title strong { font-weight: 600; color: #fff; }
.ah-motor__video {
  position: relative;
  z-index: 1;
  margin-top: auto;
  flex: 1;
  min-height: 300px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}
.ah-motor__video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.ah-motor__list-label {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 20px;
  padding-top: 12px;
}
.ah-motor__list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: grid;
  gap: 14px;
}
.ah-motor__list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
  font-size: 16px;
  line-height: 1.5;
  color: var(--navy);
}
.ah-motor__check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: oklch(0.94 0.04 230);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  margin-top: 2px;
}
.ah-motor__closer {
  padding-top: 28px;
  border-top: 1px solid var(--line-lite);
}
.ah-motor__closer-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.ah-motor__question {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 1.4vw + 0.7rem, 1.65rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -.024em;
  color: var(--navy);
  margin: 0;
}
.ah-motor__question::before { content: "\201c"; color: var(--mauve); margin-right: 2px; }
.ah-motor__question::after  { content: "\201d"; color: var(--mauve); margin-left: 2px; }
@media (max-width: 960px) {
  .ah-motor { padding: 96px 32px 112px; }
  .ah-motor__grid { grid-template-columns: 1fr; gap: 40px; }
  .ah-motor__box { padding: 40px 32px 0; min-height: 480px; }
  .ah-motor__box-title { margin-bottom: 36px; }
  .ah-motor__head { margin-bottom: 56px; }
}
@media (max-width: 640px) {
  .ah-motor { padding: 72px 20px 88px; }
  .ah-motor__box { padding: 32px 24px 0; border-radius: 20px; }
}

/* Motor / Treino media (treino + genérico) */
.ah-media {
  border-radius: 16px; overflow: hidden; background: #0a1628;
  background: oklch(20% 0.04 258);
  box-shadow: 0 20px 50px -24px rgba(1, 10, 32, 0.35);
  box-shadow: 0 20px 50px -24px oklch(15% 0.05 258 / 0.35);
}
.ah-media video, .ah-media img {
  display: block; width: 100%; height: 100%; object-fit: cover;
}
.ah-media--video { aspect-ratio: 16 / 10; }
.ah-media--video video { width: 100%; height: 100%; }

.ah-section--treino {
  background:
    radial-gradient(70% 60% at 90% 6%, rgba(0, 57, 87, 0.30), transparent 60%),
    radial-gradient(85% 65% at 4% 96%, rgba(67, 22, 81, 0.42), transparent 62%),
    linear-gradient(160deg, #071831 0%, #010204 46%, #190122 100%);
  background:
    radial-gradient(70% 60% at 90% 6%, oklch(32% 0.09 230 / 0.30), transparent 60%),
    radial-gradient(85% 65% at 4% 96%, oklch(30% 0.11 317 / 0.42), transparent 62%),
    linear-gradient(160deg, oklch(21% 0.055 258) 0%, oklch(8.5% 0.01 260) 46%, oklch(16% 0.075 317) 100%);
  color: #fff;
  padding: 140px 48px 160px;
  overflow: hidden;
}
.ah-treino__inner { max-width: 1240px; position: relative; }
.ah-treino__head { text-align: center; max-width: 760px; margin: 0 auto 72px; }
.ah-treino__headline {
  color: #fff;
  font-size: clamp(2.4rem, 4vw + 0.5rem, 3.75rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.042em;
  margin: 0 0 18px;
}
.ah-treino__lead {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,.66);
  max-width: 600px;
  margin: 0 auto;
}
.ah-treino__body {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 32px;
  align-items: start;
}
.ah-treino__acc {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ah-treino__item {
  background: rgba(255,255,255,.06);
  border-radius: 16px;
  overflow: hidden;
  transition: background .2s ease;
}
.ah-treino__item:hover:not(.is-open) { background: rgba(255,255,255,.10); }
.ah-treino__item.is-open {
  background: rgba(255,255,255,.14);
  box-shadow: 0 20px 50px -24px rgba(0,0,0,.6);
}
.ah-treino__q {
  width: 100%;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 24px 26px;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  font: inherit;
}
.ah-treino__q-name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -.02em;
  color: rgba(255,255,255,.82);
  transition: color .16s ease;
}
.ah-treino__item.is-open .ah-treino__q-name,
.ah-treino__item:hover:not(.is-open) .ah-treino__q-name { color: #fff; }
.ah-treino__chev {
  width: 22px; height: 22px;
  color: rgba(255,255,255,.5);
  transition: transform .26s cubic-bezier(0.16,1,0.3,1), color .16s ease;
}
.ah-treino__item.is-open .ah-treino__chev {
  transform: rotate(180deg);
  color: #fff;
}
.ah-treino__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s cubic-bezier(0.16,1,0.3,1);
}
.ah-treino__item.is-open .ah-treino__a { grid-template-rows: 1fr; }
.ah-treino__a-inner { overflow: hidden; }
.ah-treino__a-body {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,.72);
  margin: 0;
  padding: 0 26px 26px;
  max-width: 420px;
}
.ah-treino__media {
  position: sticky;
  top: 96px;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.55);
  background: #0a1628;
}
.ah-treino__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 960px) {
  .ah-section--treino { padding: 96px 32px 112px; }
  .ah-treino__head { margin-bottom: 48px; }
  .ah-treino__body { grid-template-columns: 1fr; gap: 28px; }
  .ah-treino__media { position: relative; top: 0; order: -1; }
}
@media (max-width: 640px) {
  .ah-section--treino { padding: 72px 20px 88px; }
  .ah-treino__q { padding: 20px; gap: 14px; }
  .ah-treino__q-name { font-size: 21px; }
  .ah-treino__a-body { padding: 0 20px 22px; }
}

/* Sua Evolução — paridade SectionEvolucao (2 colunas + cards flutuantes) */
.ah-evolucao {
  background: var(--surface-2);
  color: var(--navy);
  padding: 160px 48px 120px;
  overflow: hidden;
}
.ah-evolucao__inner {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 88px;
  align-items: center;
}
.ah-evolucao__text .eyebrow { margin-bottom: 20px; display: block; }
.ah-evolucao__headline {
  font-size: clamp(2.2rem, 3.4vw + 0.6rem, 3.25rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.038em;
  margin: 0 0 28px;
}
.ah-evolucao__intro {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 24px;
}
.ah-evolucao__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 14px;
}
.ah-evolucao__list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 14px;
  align-items: start;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
}
.ah-evolucao__check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: oklch(0.94 0.04 230);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  margin-top: 1px;
}
.ah-evolucao__closer {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -.018em;
  color: var(--navy);
  max-width: 400px;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--line-lite);
}
.ah-evolucao__stage {
  position: relative;
  aspect-ratio: 1024 / 953;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
}
.ah-evolucao__photo-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ah-evolucao__photo-wrap--mobile { display: none; }
.ah-evolucao__photo-wrap picture,
.ah-evolucao__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}
.ah-evo-card {
  display: none;
  position: absolute;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--line-lite);
  border-radius: 16px;
  box-shadow:
    0 24px 60px -18px rgba(15, 23, 42, 0.18),
    0 6px 20px -6px rgba(15, 23, 42, 0.10);
  padding: 20px 22px;
  color: var(--navy);
}
.ah-evo-card__label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.ah-evo-card--goal { top: 0; left: 0; width: 38%; }
.ah-evo-goal-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.02em;
  margin-bottom: 4px;
}
.ah-evo-goal-sub {
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 18px;
}
.ah-evo-goal-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.ah-evo-goal-corte {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--navy);
  font-weight: 500;
}
.ah-evo-goal-corte--brand { color: var(--brand); }
.ah-evo-card--gauge { top: 0; right: 0; width: 34%; padding: 22px 20px 20px; }
.ah-evo-gauge-title {
  font-size: 13.5px;
  font-weight: 500;
  margin-bottom: 16px;
}
.ah-evo-gauge-num {
  font-family: var(--font-mono);
  font-size: 42px;
  line-height: 1;
  letter-spacing: -.03em;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.ah-evo-gauge-num span {
  font-size: 15px;
  color: var(--ink-3);
  font-weight: 500;
  letter-spacing: 0;
}
.ah-evo-gauge-delta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  padding: 3px 9px;
  background: oklch(0.94 0.04 155);
  color: oklch(0.42 0.10 155);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
}
.ah-evo-gauge-bar {
  margin-top: 18px;
  height: 6px;
  background: var(--surface-2);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}
.ah-evo-gauge-fill {
  position: absolute;
  inset: 0;
  width: 72%;
  background: linear-gradient(90deg, var(--brand), var(--mauve));
  border-radius: 999px;
}
.ah-evo-card--chart { bottom: 0; left: 0; width: 56%; padding: 22px 22px 18px; }
.ah-evo-chart-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}
.ah-evo-chart-title { font-size: 13.5px; font-weight: 500; }
.ah-evo-chart-sub { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); }
.ah-evo-card--chart svg { display: block; width: 100%; height: auto; }

@media (max-width: 1100px) {
  .ah-evolucao { padding: 120px 40px 100px; }
  .ah-evolucao__inner { gap: 48px; }
  .ah-evolucao__headline { font-size: clamp(1.95rem, 2.8vw + 0.6rem, 2.75rem); }
}
@media (max-width: 768px) {
  .ah-evolucao { padding: 100px 32px 120px; }
  .ah-evolucao__inner { grid-template-columns: 1fr; gap: 56px; }
  .ah-evolucao__stage { width: 100%; max-width: 460px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .ah-evolucao { padding: 80px 24px 96px; }
  .ah-evolucao__stage {
    position: static;
    aspect-ratio: unset;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .ah-evolucao__photo-wrap--desktop { display: none; }
  .ah-evolucao__photo-wrap--mobile {
    display: block;
    position: static;
    width: 100%;
    height: auto;
    order: 1;
  }
  .ah-evolucao__photo-wrap--mobile picture,
  .ah-evolucao__photo-wrap--mobile .ah-evolucao__photo {
    position: static;
    width: 100%;
    height: auto;
    border-radius: 16px;
  }
  .ah-evo-card,
  .ah-evo-card--goal,
  .ah-evo-card--gauge,
  .ah-evo-card--chart {
    display: block;
    position: static;
    width: 100%;
    order: 0;
  }
  .ah-evo-goal-title { font-size: 18px; }
  .ah-evo-gauge-num { font-size: 32px; }
}

/* Escolas — paridade SectionEscolas (head centrado + cards + CTA pill) */
.ah-section--escolas {
  color: #fff;
  padding: 160px 48px 180px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(0, 3, 12, 0.74) 0%, rgba(0, 3, 12, 0.5) 45%, rgba(9, 2, 21, 0.7) 100%),
    url('/media/fundo-azimus.webp') center / cover no-repeat,
    url('/media/fundo-azimus.jpg') center / cover no-repeat;
  background:
    linear-gradient(160deg, oklch(10% 0.03 258 / 0.74) 0%, oklch(10% 0.03 258 / 0.5) 45%, oklch(12% 0.05 300 / 0.7) 100%),
    url('/media/fundo-azimus.webp') center / cover no-repeat,
    url('/media/fundo-azimus.jpg') center / cover no-repeat;
}
.ah-escolas__inner { max-width: 1200px; position: relative; }
.ah-escolas__head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 56px;
}
.ah-escolas__eyebrow {
  display: block;
  margin-bottom: 20px;
  color: oklch(0.72 0.10 230);
}
.ah-escolas__headline {
  color: #fff;
  font-size: clamp(2.2rem, 3.4vw + 0.6rem, 3.25rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.036em;
  margin: 0;
}
.ah-escolas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.ah-escola-card {
  background: var(--navy-2);
  border: none;
  border-radius: 20px;
  padding: 44px 40px;
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 480px;
  box-shadow: 0 24px 60px -24px rgba(0,0,0,.5);
}
.ah-escola-card__media {
  margin: -44px -40px 28px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #061223;
}
.ah-escola-card__media picture,
.ah-escola-card__media img {
  display: block; width: 100%; height: 100%; object-fit: cover;
}
.ah-escola-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  margin: 0 0 24px;
  padding: 10px 20px 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.ah-escola-card__badge svg {
  width: 17px; height: 17px;
  color: var(--brand);
  filter: drop-shadow(0 0 5px oklch(0.6655 0.0977 229.58 / 0.9));
}
.ah-escola-card--coord .ah-escola-card__badge svg {
  color: var(--mauve);
  filter: drop-shadow(0 0 5px oklch(0.6133 0.0945 316.76 / 0.9));
}
.ah-escola-card h3 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.028em;
  margin: 0 0 28px;
  padding: 0;
}
.ah-escola-card ul {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  gap: 12px;
  flex: 1;
  color: rgba(255,255,255,.78);
  font-size: 15.5px;
  line-height: 1.5;
}
.ah-escola-card li {
  display: grid;
  grid-template-columns: 6px 1fr;
  gap: 14px;
  align-items: start;
  margin: 0;
}
.ah-escola-card li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 7px 1.5px oklch(0.6655 0.0977 229.58 / 0.85);
  margin-top: 8px;
}
.ah-escola-card--coord li::before {
  background: var(--mauve);
  box-shadow: 0 0 7px 1.5px oklch(0.6133 0.0945 316.76 / 0.85);
}
.ah-escolas-cta {
  margin: 56px auto 0;
  max-width: 860px;
  background: oklch(0.93 0.035 235);
  border-radius: 999px;
  padding: 64px 80px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
  text-align: left;
}
.ah-escolas-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 1.6vw + 1rem, 2.2rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.03em;
  color: var(--navy);
  margin: 0;
}
.ah-escolas-cta__body p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 24px;
  max-width: 440px;
}
.ah-escolas-cta__body [aria-disabled="true"] {
  opacity: .6;
  cursor: default;
  pointer-events: none;
}
@media (max-width: 900px) {
  .ah-section--escolas { padding: 100px 32px 120px; }
  .ah-escolas-grid { grid-template-columns: 1fr; }
  .ah-escola-card { padding: 36px 28px; min-height: 0; }
  .ah-escola-card__media { margin: -36px -28px 24px; }
  .ah-escola-card h3 { font-size: 28px; }
  .ah-escolas-cta {
    grid-template-columns: 1fr;
    border-radius: 32px;
    padding: 44px 40px;
    gap: 20px;
    text-align: center;
  }
  .ah-escolas-cta__body {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .ah-escolas-cta__body p { margin-left: auto; margin-right: auto; }
}
@media (max-width: 640px) {
  .ah-section--escolas { padding: 80px 24px 96px; }
  .ah-escolas-cta { padding: 36px 28px; }
}

/* FAQ — paridade SectionFAQ (coluna estreita ~800px + linhas com +) */
.ah-faq-section {
  background: #fff;
  color: var(--navy);
  padding: 140px 48px 160px;
}
.ah-faq__inner {
  max-width: 800px;
  margin: 0 auto;
}
.ah-faq__head { margin-bottom: 56px; }
.ah-faq__head .eyebrow { display: block; margin-bottom: 20px; }
.ah-faq__headline {
  font-size: clamp(2rem, 2.6vw + 0.6rem, 2.75rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.036em;
  margin: 0;
}
.ah-faq-group { margin: 0 0 44px; }
.ah-faq-group:last-child { margin-bottom: 0; }
.ah-faq-group__title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 4px;
}
.ah-faq__item {
  border: none;
  border-bottom: 1px solid var(--line-lite);
  border-radius: 0;
  padding: 0;
  margin: 0;
  background: transparent;
}
.ah-faq__item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  cursor: pointer;
  font-weight: 500;
  color: var(--navy);
  font-size: 16.5px;
  line-height: 1.4;
  transition: color .16s ease;
}
.ah-faq__item summary::-webkit-details-marker { display: none; }
.ah-faq__item summary::marker { content: ""; }
.ah-faq__item summary:hover { color: var(--brand); }
.ah-faq__item summary:hover .ah-faq__toggle { background: oklch(0.50 0.089 230.34); }
.ah-faq__toggle {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .16s ease;
}
.ah-faq__toggle svg {
  width: 16px; height: 16px;
  transition: transform .26s cubic-bezier(0.16,1,0.3,1);
}
.ah-faq__item[open] .ah-faq__toggle svg { transform: rotate(45deg); }
.ah-faq__item p {
  margin: 0;
  padding: 0 32px 24px 0;
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.65;
}
@media (max-width: 640px) {
  .ah-faq-section { padding: 96px 24px 112px; }
  .ah-faq__item summary { font-size: 15.5px; padding: 18px 0; }
  .ah-faq__item p { padding-right: 0; padding-bottom: 20px; }
}

/* Footer */
.ah-footer {
  background: #fff; color: var(--navy); padding: 64px 56px 32px;
  border-top: 1px solid var(--line-lite);
}
.ah-footer__grid {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  /* max-content nas colunas de link: evita trilhos largos com gap “vazio” */
  grid-template-columns: minmax(220px, 260px) repeat(auto-fit, minmax(120px, max-content));
  justify-content: start;
  column-gap: 40px;
  row-gap: 28px;
  align-items: start;
}
.ah-footer__brand a { display: inline-block; color: inherit; text-decoration: none; }
.ah-footer__brand svg {
  height: 32px;
  width: auto;
  fill: var(--navy);
  margin-bottom: 16px;
  display: block;
}
.ah-footer__tagline {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0;
  max-width: 28ch;
}
.ah-footer__col-title {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 12px;
}
.ah-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: 14px; }
.ah-footer__copy {
  max-width: 1100px; margin: 40px auto 0; padding-top: 24px;
  border-top: 1px solid var(--line-lite); font-size: 13px; color: var(--ink-3);
}
@media (max-width: 900px) {
  .ah-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
  }
  .ah-footer__tagline { max-width: none; }
  .ah-footer { padding: 48px 24px 24px; }
}
@media (max-width: 520px) {
  .ah-footer__grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .ah-hero__video { display: none; }
}
