/* =============================================================
   Larissa Ruza — Psicóloga · sistema de layout e componentes
   Depende de: tokens.css, fonts.css

   A arquitetura de layout e a engenharia de movimento vêm do template
   e foram preservadas (barra flutuante, palco do hero com parallax em
   camadas, reveal em spring, accordion sem medir altura em JS).
   Cor, tipografia, conteúdo e identidade são desta marca.
   ============================================================= */

/* ---------------------------------------------------------------
   1. Reset e base
   --------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 104px;   /* âncoras não somem sob a barra fixa */
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-tight);
  font-feature-settings: var(--otf);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

img { height: auto; }

a { color: inherit; text-decoration: none; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

ul { list-style: none; }

/* Foco visível em toda parte. Sobre o escuro e sobre o céu, a cor troca
   para a terracota, que é o que enxerga lá. */
:focus-visible {
  outline: 2px solid var(--accent-ink);
  outline-offset: 3px;
  border-radius: 4px;
}
.footer :focus-visible,
.frame-dark :focus-visible,
.hero :focus-visible,
.numbers :focus-visible { outline-color: var(--accent); }

.skip-link {
  position: absolute;
  left: 50%;
  top: 8px;
  translate: -50% -200%;
  z-index: 200;
  padding: 12px 20px;
  border-radius: var(--r-lg);
  background: var(--ink);
  color: var(--sand);
  font-size: var(--t-sm);
  font-weight: 500;
  transition: translate var(--dur-fast) var(--ease-snap);
}
.skip-link:focus-visible { translate: -50% 0; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ---------------------------------------------------------------
   2. Tipografia
   --------------------------------------------------------------- */
.display,
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: var(--ls-display);
  line-height: var(--lh-tight);
  text-wrap: balance;
}

/* Ênfase do display: cor + peso + traço terracota por baixo.
   NUNCA itálico — o token --display-emph-style é `normal` e existe
   só para deixar essa decisão explícita e num lugar só. */
.display em,
h1 em, h2 em, h3 em,
.emph {
  font-style: var(--display-emph-style);
  font-weight: var(--display-emph-weight);
  color: var(--display-emph-color);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.14em;
  text-decoration-skip-ink: none;
}

h1 { font-size: var(--t-h1); line-height: var(--lh-display); }
h2 { font-size: var(--t-h2); }
h3 { font-size: var(--t-h3); }

h4, h5 {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: var(--ls-tight);
}
h4 { font-size: var(--t-h5); line-height: var(--lh-relaxed); }
h5 { font-size: var(--t-lead); line-height: var(--lh-snug); }

p { text-wrap: pretty; }

.lead {
  font-size: var(--t-lead);
  line-height: var(--lh-body);
  color: var(--fg-muted);
  max-width: var(--maxw-text);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--accent-ink);
}

/* ---------------------------------------------------------------
   3. Layout
   --------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: calc(var(--maxw) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); position: relative; }
.section--soft { background: var(--sand-soft); }

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-3xl);
  margin-bottom: clamp(40px, 5vw, 72px);
}

.section-head__text { max-width: 42ch; }
.section-head__text .lead { margin-top: var(--sp-xl); }

/* ---------------------------------------------------------------
   4. Botões e links
   --------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-md);
  padding: 16px 20px;
  min-height: 48px;              /* alvo de toque confortável */
  border-radius: var(--r-lg);
  font-size: var(--t-sm);
  font-weight: 500;
  line-height: 1.1;
  transition:
    background-color var(--dur-fast) var(--ease-snap),
    border-color var(--dur-fast) var(--ease-snap),
    color var(--dur-fast) var(--ease-snap);
}

.btn svg { flex: none; width: 14px; height: 14px; }

.btn--primary {
  background: var(--rust);
  color: var(--sand);
}
.btn--primary:hover { background: var(--rust-deep); }

.btn--light {
  background: var(--white);
  color: var(--rust);
  box-shadow: var(--inset-hairline);
}
.btn--light:hover { background: var(--sand-soft); }

/* Contorno sobre fundo claro: a ação secundária de verdade */
.btn--outline {
  background: transparent;
  color: var(--rust);
  border: 1px solid var(--border-strong);
}
.btn--outline:hover {
  background: var(--sand-soft);
  border-color: var(--accent);
}

/* Contorno sobre o céu: creme no traço e na letra */
.btn--outline-sky {
  background: transparent;
  color: var(--sand);
  border: 1px solid rgba(251, 248, 245, 0.55);
}
.btn--outline-sky:hover {
  background: rgba(251, 248, 245, 0.14);
  border-color: var(--sand);
}

.btn--ghost {
  padding-inline: 0;
  min-height: 0;
  color: var(--fg);
}
.btn--ghost svg { width: 16px; height: 16px; }

/* `translate` (não `transform`): o spring do Motion é dono do transform. */
.btn:active { translate: 0 1px; }

.btn .arrow { transition: translate var(--dur-fast) var(--ease-snap); }
.btn:hover .arrow { translate: 3px 0; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--accent-ink);
}
.link-arrow svg { width: 16px; height: 16px; transition: translate var(--dur-fast) var(--ease-snap); }
.link-arrow:hover { text-decoration: underline; text-underline-offset: 4px; }
.link-arrow:hover svg { translate: 4px 0; }

/* ---------------------------------------------------------------
   5. Header
   --------------------------------------------------------------- */
.header {
  position: fixed;
  top: 12px;
  left: 0;
  right: 0;
  z-index: 100;
  padding-inline: var(--gutter);
  pointer-events: none;
}

.header__bar {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3xl);
  max-width: 1124px;
  min-height: 68px;
  margin-inline: auto;
  padding-inline: var(--sp-3xl);
  border-radius: var(--r-2xl);
  color: var(--fg);
  background: transparent;
  transition:
    background-color var(--dur-base) var(--ease-brand),
    backdrop-filter var(--dur-base) var(--ease-brand),
    color var(--dur-base) var(--ease-brand);
}

.header[data-scrolled='true'] .header__bar {
  background: rgba(251, 248, 245, 0.72);
  backdrop-filter: blur(44px);
  -webkit-backdrop-filter: blur(44px);
  box-shadow: var(--inset-hairline);
}

/* Sobre o céu, antes de rolar: tudo em creme */
.header[data-onsky='true'][data-scrolled='false'] .header__bar { color: var(--sand); }

/* Logotipo: marca + nome + CRP. O registro anda junto com o nome —
   é a prova de credibilidade que o CFP exige em material de divulgação. */
.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  color: inherit;
}
.logo__mark {
  flex: none;
  width: 30px;
  height: 26px;
  color: var(--accent);
}
.header[data-onsky='true'][data-scrolled='false'] .logo__mark { color: var(--sand-pale); }
.logo__text { display: flex; flex-direction: column; gap: 1px; }
.logo__name {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.logo__crp {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.72;
  line-height: 1.2;
}

.nav { display: flex; align-items: center; gap: var(--sp-3xl); }

.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: var(--t-sm);
  font-weight: 500;
  color: inherit;
  padding-block: 8px;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  scale: 0 1;
  transform-origin: left;
  transition: scale var(--dur-base) var(--ease-brand);
}
.nav__link:hover::after,
.nav__link[aria-current='page']::after { scale: 1 1; }

.header__actions { display: flex; align-items: center; gap: var(--sp-xl); }

.btn--nav {
  background: var(--rust);
  color: var(--sand);
  padding: 12px 18px;
  min-height: 44px;
}
.btn--nav:hover { background: var(--rust-deep); }
.header[data-onsky='true'][data-scrolled='false'] .btn--nav {
  background: var(--white);
  color: var(--rust);
}
.header[data-onsky='true'][data-scrolled='false'] .btn--nav:hover { background: var(--sand-pale); }

.nav-toggle { display: none; }
.mobile-nav { display: none; }

/* ---------------------------------------------------------------
   6. Hero
   ---------------------------------------------------------------
   Palco em camadas, como no template:
     z0 céu (gradiente)  ·  z1 véu do entardecer  ·  z2 nuvens
     z3 o bando          ·  z5 o texto
   O véu entra por baixo das borboletas: elas ficam saturadas, e o
   texto creme ganha os 5:1 de contraste que o céu sozinho não dá.  */
.hero {
  position: relative;
  height: 110vh;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.sky {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 101%;
  background: linear-gradient(
    180deg,
    var(--sky-1)  0%,
    var(--sky-2) 24%,
    var(--sky-3) 52%,
    var(--sky-4) 72%,
    var(--sky-5) 88%,
    var(--sky-6) 100%
  );
  pointer-events: none;
}

/* O brilho do horizonte: um clarão QUENTE, na cor da marca, subindo do
   rodapé. É o que dá vida ao céu — e some antes da faixa de texto, para
   não roubar contraste de nenhuma linha. */
.sky__glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    120% 46% at 50% 104%,
    rgba(240, 226, 214, 0.72) 0%,
    rgba(205, 123, 67, 0.42) 42%,
    rgba(205, 123, 67, 0) 74%
  );
  pointer-events: none;
}

/* Nuvens e bando dividem o MESMO contexto de empilhamento (o .hero, que já
   é `isolate`). Por isso nem .sky__clouds nem .flight podem criar contexto
   próprio: nada de z-index e nada de `translate` neles — senão o z-index dos
   filhos fica preso ao contêiner e a borboleta nunca passa por trás da nuvem.
   A ordem é intencional:
     z2 nuvens de fundo + faixa · z3 bando distante · z4 nuvem do meio
     z5 bando do meio          · z6 nuvem da frente · z7 bando da frente
   O texto (z10) fica SEMPRE por cima — nenhuma asa e nenhuma nuvem
   disputa contraste com ele. */
.sky__clouds {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* A profundidade vem de escala, opacidade, desfoque e SOBREPOSIÇÃO —
   nunca de sombra preta. A opacidade de plano vai dentro do `filter`:
   o Motion anima `opacity` na entrada e sobrescreveria qualquer valor
   posto em `opacity` no CSS. As nuvens já vêm na cor da marca; nenhuma
   delas é recolorida. */
.sky__cloud {
  position: absolute;
  max-width: none;
  height: auto;
  will-change: transform;
}

/* A faixa que sangra pelo rodapé do hero — o horizonte */
.sky__cloud--band {
  z-index: 2;
  width: 161%;
  right: -91px;
  bottom: -237px;
  aspect-ratio: 2.87615;
}

/* Plano da frente — cobre a parte de baixo da monarca do meio (.butterfly--3) */
.sky__cloud--1 { z-index: 6; width: 30%; left: -4%;  bottom: 6%; filter: opacity(0.9); }
/* Plano do meio — a .butterfly--4 (z5) passa na frente dela, a --8 (z3) por trás */
.sky__cloud--2 { z-index: 4; width: 26%; right: -2%; top: 36%;   filter: opacity(0.74) blur(1px); }
/* Plano de fundo — lavado na cor do céu, desfocado. Acentos, não cobertura:
   o alto do céu tem que continuar escuro, é ele que sustenta o texto creme. */
.sky__cloud--3 { z-index: 2; width: 22%; left: 2%;   top: 13%;   filter: opacity(0.5) blur(2px); }
.sky__cloud--4 { z-index: 2; width: 18%; right: 3%;  top: 6%;    filter: opacity(0.36) blur(2.8px); }

/* A NUVEM-COLCHÃO — o colchão de leitura que o dono pediu.
   Não é uma forma nova: é a nuvem-2 da própria arte, usada como MÁSCARA e
   preenchida com o terracota profundo do céu (--sky-cushion). Fica na frente
   de todas as nuvens e de todo o bando (z8) e atrás do texto (z10) — ou seja,
   é ELA o pixel que fica atrás de cada letra. É também a nuvem mais próxima do
   observador, e num céu de fim de tarde é justamente a mais próxima que está
   em sombra: as claras estão lá atrás, pegando a luz. Profundidade de verdade,
   sem uma gota de preto.

   Enriquece o contraste, mas não o sustenta sozinha: o céu já passa em AA sem
   ela (ver --sky-1..4), então nenhuma linha depende de uma camada animada. */
.sky__cloud--cushion {
  z-index: 8;
  width: 108%;
  left: -4%;
  top: 5%;
  /* Altura em % do hero (não aspect-ratio): a coluna de texto muda de altura
     com o viewport, e o colchão TEM que cobrir da primeira linha do título
     até o último botão em qualquer tela. A máscara estica junto — nuvem
     estica, é o que nuvem faz. */
  height: 72%;
  background: var(--sky-cushion);
  -webkit-mask: url('../assets/img/hero/nuvem-2.png') center / 100% 100% no-repeat;
  mask: url('../assets/img/hero/nuvem-2.png') center / 100% 100% no-repeat;
}

/* O bando. Palco fixo de 1120×660, 9 monarcas em 6 poses. Composição de
   bando: escala, altura, rotação de repouso e distância entre elas variam —
   nenhuma fileira, nenhuma simetria. A coluna central do palco (x 280–840)
   fica livre: é por onde o texto passa. */
.flight {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
}
.flight__stage {
  position: relative;
  width: 1120px;
  height: 660px;
  flex: none;
  margin-bottom: 24px;
}

.butterfly {
  position: absolute;
  height: auto;
  will-change: transform;
}

/* --- frente (z7): grandes, nítidas, deriva ampla.
       A única sombra é um brilho quente da própria paleta (#C0805F). --- */
.butterfly--1,
.butterfly--2 { z-index: 7; filter: drop-shadow(0 12px 22px rgba(192, 128, 95, 0.18)); }
/* monarca-2 (1.964) — a que lidera o bando, asas abertas, embaixo */
.butterfly--1 { left: 262px;  bottom: 6px;   width: 248px; rotate: -5deg; }
/* monarca-x-1 (1.503) — a segunda da frente, do outro lado */
.butterfly--2 { right: 60px;  bottom: 92px;  width: 214px; rotate: 6deg; }

/* --- meio (z5): média escala, leve desfoque nas duas mais altas --- */
.butterfly--3,
.butterfly--4,
.butterfly--5 { z-index: 5; }
/* monarca-x-2 (0.927) — a metade de baixo dela some atrás da nuvem da frente */
.butterfly--3 { left: 30px;   bottom: 200px; width: 128px; rotate: -9deg;  filter: opacity(0.92); }
/* monarca-1 (0.938) — passa NA FRENTE da nuvem do meio */
.butterfly--4 { right: 70px;  bottom: 448px; width: 116px; rotate: 13deg;  filter: opacity(0.88) blur(0.5px); }
/* monarca-3 (0.789) */
.butterfly--5 { left: 74px;   bottom: 462px; width: 102px; rotate: -15deg; filter: opacity(0.86) blur(0.6px); }

/* --- fundo (z3): pequenas, lavadas, desfocadas, deriva curta e lenta.
       Passam por TRÁS da nuvem do meio (z4) e da nuvem da frente (z6). --- */
.butterfly--6,
.butterfly--7,
.butterfly--8,
.butterfly--9 { z-index: 3; }
/* monarca-x-3 (0.772) */
.butterfly--6 { left: 208px;  bottom: 396px; width: 64px;  rotate: 20deg;  filter: opacity(0.6) blur(1.6px); }
/* monarca-1 (0.938) */
.butterfly--7 { right: 196px; bottom: 556px; width: 52px;  rotate: -12deg; filter: opacity(0.54) blur(1.9px); }
/* monarca-x-3 (0.772) — some por trás da nuvem do meio */
.butterfly--8 { right: 30px;  bottom: 428px; width: 46px;  rotate: 26deg;  filter: opacity(0.48) blur(2.2px); }
/* monarca-3 (0.789) — a mais distante de todas */
.butterfly--9 { left: 18px;   bottom: 350px; width: 38px;  rotate: -22deg; filter: opacity(0.42) blur(2.6px); }

.hero__inner {
  position: relative;
  z-index: 10;
  width: 560px;
  max-width: 100%;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-3xl);
  color: var(--sand);
}

/* Sem véu, sem vinheta, sem scrim. O contraste da coluna de texto é
   responsabilidade do CÉU (--sky-1..4, saturados na cor da marca) e da
   nuvem-colchão (.sky__cloud--cushion) — nunca de uma sombra por cima
   da arte. Se um dia faltar razão aqui, escurece-se e satura-se MAIS o
   próprio terracota; preto não volta. */

.hero__title {
  font-size: clamp(2.5rem, 1.9rem + 2.4vw, 3.5rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--sand);
  text-wrap: balance;
}
/* No céu a ênfase inverte: a letra clareia (creme quente) e o traço
   terracota continua embaixo. O rust do fundo claro não teria contraste
   aqui — por isso o par de cores troca de papel, nunca de método. */
.hero__title em {
  color: var(--sand-pale);
  font-weight: 700;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 0.055em;
  text-underline-offset: 0.16em;
}

.hero__sub {
  font-size: var(--t-sm);
  line-height: var(--lh-loose);
  color: var(--sand);
  max-width: 48ch;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-lg);
}

/* A última linha do hero cai na parte mais clara do céu, já perto da crista
   das nuvens. Em vez de uma pílula escura, ela ganha a pílula da MARCA: o
   rust (#804C3E) — a mesma cor do botão primário, sólida, luminosa.
   Creme sobre rust = 6,6:1, folgado em AA, e a linha vira parte do sistema
   de cor em vez de uma mancha por cima da arte. */
.hero__micro {
  align-self: center;
  padding: 8px 18px;
  border-radius: var(--r-pill);
  background: var(--rust);
  box-shadow: 0 1px 0 rgba(240, 226, 214, 0.22) inset;
  font-size: var(--t-xs);
  line-height: var(--lh-loose);
  color: var(--sand);
}

/* ---------------------------------------------------------------
   7. Faixa de credibilidade — as 5 provas
   --------------------------------------------------------------- */
.proof {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-lg);
}

.proof__item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  padding: var(--sp-3xl);
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--inset-hairline);
  transition: transform var(--dur-base) var(--ease-brand);
}
.proof__item:hover { transform: translateY(-3px); }

.proof__title {
  font-family: var(--font-display);
  font-size: var(--t-sm);
  font-weight: 600;
  line-height: var(--lh-snug);
  letter-spacing: -0.01em;
  color: var(--accent-ink);
}
.proof__text {
  font-size: var(--t-xs);
  line-height: var(--lh-loose);
  color: var(--fg-muted);
}
.proof__item a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------------------------------------------------------------
   8. Passos — "Como começa"
   --------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3xl);
}

.step {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
  padding: var(--sp-4xl) var(--sp-3xl);
  background: var(--white);
  border-radius: var(--r-card);
  box-shadow: var(--inset-hairline);
  transition: transform var(--dur-base) var(--ease-brand);
}
.step:hover { transform: translateY(-4px); }

.step__num {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: var(--ls-caps);
  color: var(--accent-ink);
}

.step__title {
  font-family: var(--font-display);
  font-size: var(--t-h5);
  font-weight: 600;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-display);
}

.step__text {
  font-size: var(--t-sm);
  line-height: var(--lh-loose);
  color: var(--fg-muted);
}

/* ---------------------------------------------------------------
   8b. Como eu penso o cuidado — 3 cards com ilustração editorial
   --------------------------------------------------------------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3xl);
}

.pillar {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2xl);
  padding: var(--sp-3xl);
  background: var(--white);
  border-radius: var(--r-card);
  box-shadow: var(--inset-hairline);
  transition: transform var(--dur-base) var(--ease-brand);
}
.pillar:hover { transform: translateY(-4px); }

/* A ilustração tem fundo transparente: quem dá o corpo é o painel claro
   da paleta (terracota lavada). Nada de branco sobre branco. */
.pillar__art {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  padding: var(--sp-2xl);
  background: var(--terracota-soft);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.pillar__art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--dur-slow) var(--ease-brand);
}
.pillar:hover .pillar__art img { transform: scale(1.04); }

.pillar__title {
  font-family: var(--font-display);
  font-size: var(--t-h4);
  font-weight: 700;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-display);
  color: var(--accent-ink);
}
.pillar__text {
  font-size: var(--t-sm);
  line-height: var(--lh-loose);
  color: var(--fg-muted);
}

/* ---------------------------------------------------------------
   9. O que eu trato — grade de pills
   Rótulo à esquerda, seta à direita. Fecha com a pill tracejada
   "& mais" e a pill de ênfase na primária da marca.
   --------------------------------------------------------------- */
.pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}

.pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-xl);
  min-height: 66px;
  padding: var(--sp-xl) var(--sp-3xl);
  background: var(--white);
  border: 1.5px solid transparent;
  border-radius: var(--r-pill);
  box-shadow: var(--inset-hairline), 0 1px 2px rgba(36, 27, 22, 0.05);
  font-family: var(--font-display);
  font-size: var(--t-sm);
  font-weight: 600;
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight);
  color: var(--accent-ink);            /* rust — 6,6:1 sobre branco ✓ AA */
  transition:
    translate var(--dur-fast) var(--ease-snap),
    box-shadow var(--dur-fast) var(--ease-snap),
    background-color var(--dur-fast) var(--ease-snap),
    border-color var(--dur-fast) var(--ease-snap);
}
.pill:hover {
  translate: 0 -3px;
  box-shadow: var(--inset-hairline), 0 10px 24px rgba(128, 76, 62, 0.14);
}
.pill:focus-visible { box-shadow: var(--focus-ring); }

.pill__go {
  flex: none;
  width: 18px;
  height: 18px;
  transition: translate var(--dur-fast) var(--ease-snap);
}
.pill:hover .pill__go { translate: 4px 0; }

/* "& mais": tracejada, sem preenchimento — sinaliza que a lista continua */
.pill--more {
  background: transparent;
  border: 1.5px dashed var(--border-strong);
  box-shadow: none;
  color: var(--fg-muted);
  cursor: default;
}
.pill--more:hover {
  translate: none;
  box-shadow: none;
  border-color: var(--accent);
  color: var(--accent-ink);
}

/* Ênfase: preenchida na primária da marca (#C0805F), texto claro.
   Branco sobre terracota = 3,24:1 — por isso o rótulo é texto GRANDE
   (700 / 19px ≥ 14pt bold), faixa em que o AA pede 3:1. Nunca preto.
   No hover a cor aprofunda para o rust, que sobe para 6,6:1. */
.pill--emph {
  grid-column: span 2;
  background: var(--terracota);
  border-color: var(--terracota);
  box-shadow: none;
  color: var(--white);
  font-size: 1.1875rem;
  font-weight: 700;
}
.pill--emph:hover {
  background: var(--rust);
  border-color: var(--rust);
  box-shadow: 0 10px 24px rgba(128, 76, 62, 0.22);
}

/* ---------------------------------------------------------------
   10. "Talvez você se reconheça aqui"
   --------------------------------------------------------------- */
.recognize {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 clamp(32px, 5vw, 80px);
}

.recognize__item {
  display: flex;
  gap: var(--sp-2xl);
  align-items: flex-start;
  padding-block: var(--sp-4xl);
  border-top: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: var(--t-h4);
  font-weight: 400;
  line-height: var(--lh-relaxed);
  letter-spacing: -0.015em;
  color: var(--fg);
}
/* Traço em vez de bolinha: marca a lista sem virar ícone decorativo */
.recognize__item::before {
  content: '';
  flex: none;
  width: 22px;
  height: 2px;
  margin-top: 0.72em;
  background: var(--accent);
  border-radius: 2px;
}

.recognize__close {
  margin-top: clamp(40px, 5vw, 64px);
  padding: var(--sp-4xl) clamp(24px, 4vw, 48px);
  border-radius: var(--r-card);
  background: var(--terracota-soft);
  font-family: var(--font-display);
  font-size: var(--t-h4);
  font-weight: 600;
  line-height: var(--lh-relaxed);
  letter-spacing: var(--ls-display);
  color: var(--accent-ink);
  text-align: center;
}

/* ---------------------------------------------------------------
   11. Faixa de imagem larga
   --------------------------------------------------------------- */
.media-band { position: relative; }
.media-band__frame {
  overflow: hidden;
  border-radius: var(--r-card);
  aspect-ratio: 16 / 7;
  background: var(--sand-soft);
}
.media-band__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-band__caption {
  margin-top: var(--sp-2xl);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm) var(--sp-3xl);
  font-size: var(--t-sm);
  color: var(--fg-muted);
}
.media-band__caption strong {
  font-weight: 600;
  color: var(--accent-ink);
}

/* ---------------------------------------------------------------
   12. Bloco escuro — "O que você não vai encontrar aqui"
   --------------------------------------------------------------- */
.frame-dark {
  position: relative;
  border-radius: var(--r-card);
  background: var(--ink-deep);
  color: var(--sand);
  padding: clamp(40px, 6vw, 80px);
  overflow: hidden;
  isolation: isolate;
}

.frame-dark__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.frame-dark__title {
  font-size: var(--t-h2);
  line-height: var(--lh-tight);
  max-width: 15ch;
}
.frame-dark__title em {
  color: var(--sand-pale);
  text-decoration-color: var(--accent);
}
.frame-dark__lead {
  margin-top: var(--sp-3xl);
  font-size: var(--t-lead);
  line-height: var(--lh-body);
  color: var(--fg-on-dark-muted);
  max-width: 40ch;
}
.frame-dark__cta { margin-top: clamp(32px, 4vw, 48px); }

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-2xl);
}

.benefit {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  padding: var(--sp-3xl);
  border-radius: var(--r-xl);
  background: rgba(251, 248, 245, 0.06);
  border: 1px solid var(--border-on-dark);
}

.benefit__title {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  font-family: var(--font-body);
  font-size: var(--t-lead);
  font-weight: 600;
}
/* O "x" que nega — desenhado, não emoji */
.benefit__title::before {
  content: '';
  flex: none;
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: var(--r-pill);
  mask: linear-gradient(45deg, transparent 43%, #000 43%, #000 57%, transparent 57%),
        linear-gradient(-45deg, transparent 43%, #000 43%, #000 57%, transparent 57%);
  -webkit-mask: linear-gradient(45deg, transparent 43%, #000 43%, #000 57%, transparent 57%),
                linear-gradient(-45deg, transparent 43%, #000 43%, #000 57%, transparent 57%);
}
.benefit__text {
  font-size: var(--t-sm);
  line-height: var(--lh-loose);
  color: var(--fg-on-dark-muted);
}

.frame-dark__wing {
  position: absolute;
  right: -60px;
  bottom: -50px;
  width: clamp(180px, 26vw, 340px);
  z-index: 1;
  opacity: 0.2;
  pointer-events: none;
}

/* Números honestos — o contador. Nenhum deles é métrica de resultado:
   são contagens do que está descrito nesta própria página. */
.numbers {
  position: relative;
  z-index: 2;
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--border-on-dark);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3xl);
}

.number { display: flex; flex-direction: column; gap: var(--sp-sm); }
.number__num {
  font-family: var(--font-display);
  font-size: var(--t-stat);
  font-weight: 600;
  line-height: 1;
  letter-spacing: var(--ls-display);
  color: var(--sand-pale);
}
.number__label {
  font-size: var(--t-sm);
  line-height: var(--lh-loose);
  color: var(--fg-on-dark-muted);
  max-width: 26ch;
}

/* ---------------------------------------------------------------
   13. Sobre — "Quem vai te ouvir"
   --------------------------------------------------------------- */
.about {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

/* Colagem: retrato grande + detalhe deslocado. Um floreio, não três. */
.about__media { position: relative; }
.about__portrait {
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--sand-soft);
  box-shadow: var(--inset-hairline);
}
.about__portrait img { width: 100%; height: 100%; object-fit: cover; }

.about__detail {
  position: absolute;
  right: -28px;
  bottom: -36px;
  width: 42%;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 6px solid var(--sand);
  background: var(--sand-soft);
}
.about__detail img { width: 100%; height: 100%; object-fit: cover; }

.about__body { display: flex; flex-direction: column; gap: var(--sp-2xl); }
.about__name {
  font-size: var(--t-h2);
  line-height: var(--lh-tight);
}
.about__role {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-top: calc(var(--sp-2xl) * -1 + var(--sp-md));
}
.about__body p {
  font-size: var(--t-body);
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: 56ch;
}
.about__cta { margin-top: var(--sp-lg); align-self: flex-start; }

/* ---------------------------------------------------------------
   14. FAQ
   --------------------------------------------------------------- */
.faq__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.faq__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.faq-item { border-bottom: 1px solid var(--border); }

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3xl);
  padding-block: var(--sp-3xl);
  text-align: left;
  font-size: var(--t-lead);
  font-weight: 500;
  line-height: var(--lh-snug);
  color: var(--fg);
  transition: color var(--dur-fast) var(--ease-snap);
}
.faq-item__q:hover { color: var(--accent-ink); }

.faq-item__icon {
  flex: none;
  position: relative;
  width: 20px;
  height: 20px;
  color: var(--accent-ink);
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  inset: 50% 0 auto 0;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: rotate var(--dur-base) var(--ease-brand);
}
.faq-item__icon::after { rotate: 90deg; }
.faq-item[data-open='true'] .faq-item__icon::after { rotate: 0deg; }

.faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows var(--dur-base) var(--ease-brand);
}
.faq-item[data-open='true'] .faq-item__a { grid-template-rows: 1fr; }

.faq-item__a-inner {
  min-height: 0;
  overflow: hidden;
  padding-bottom: 0;
  padding-right: clamp(0px, 6vw, 56px);
  font-size: var(--t-sm);
  line-height: var(--lh-loose);
  color: var(--fg-muted);
  transition: padding-bottom var(--dur-base) var(--ease-brand);
}
.faq-item[data-open='true'] .faq-item__a-inner { padding-bottom: var(--sp-3xl); }

/* ---------------------------------------------------------------
   15. CTA final
   --------------------------------------------------------------- */
.cta {
  position: relative;
  text-align: center;
  padding-block: clamp(88px, 11vw, 168px);
  overflow: hidden;
  isolation: isolate;
  background: var(--sand-soft);
}

.cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3xl);
}

.cta__title {
  font-size: var(--t-h1);
  line-height: var(--lh-display);
  max-width: 20ch;
}
.cta__lead {
  font-size: var(--t-lead);
  line-height: var(--lh-body);
  color: var(--fg-muted);
  max-width: 50ch;
}
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-lg);
}

.cta__wing {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.9;
}
.cta__wing--l { left: 7%;  top: 20%;    width: clamp(64px, 8vw, 118px); rotate: -10deg; }
.cta__wing--r { right: 8%; bottom: 18%; width: clamp(56px, 7vw, 100px); rotate: 12deg; }

/* Linha de apoio — 188 / 192. Não é aviso legal de rodapé: é a
   informação mais importante da página para quem chegou em risco. */
.support-line {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-lg);
  max-width: 62ch;
  margin-top: var(--sp-2xl);
  padding: var(--sp-2xl) var(--sp-3xl);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-xl);
  background: var(--white);
  font-size: var(--t-sm);
  line-height: var(--lh-loose);
  color: var(--fg);
  text-align: left;
}
.support-line::before {
  content: '';
  flex: none;
  width: 4px;
  align-self: stretch;
  border-radius: 2px;
  background: var(--accent-ink);
}
.support-line a {
  font-weight: 600;
  color: var(--accent-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------------------------------------------------------------
   16. Footer
   --------------------------------------------------------------- */
.footer {
  position: relative;
  background: var(--ink-deep);
  color: var(--sand);
  padding-block: clamp(64px, 8vw, 112px) var(--sp-5xl);
  overflow: hidden;
  isolation: isolate;
}

.footer__wing {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.12;
}
.footer__wing--l { left: -30px;  bottom: 10px; width: clamp(140px, 18vw, 240px); rotate: -12deg; }
.footer__wing--r { right: -40px; top: 40px;    width: clamp(120px, 16vw, 210px); rotate: 16deg; }

.footer__top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 64px);
}

.footer__brand { display: flex; flex-direction: column; gap: var(--sp-3xl); }
.footer__brand .logo__mark { width: 36px; height: 31px; color: var(--sand-pale); }
.footer__brand .logo__name { font-size: 1.25rem; }

.footer__facts {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  font-size: var(--t-sm);
  line-height: var(--lh-loose);
  color: var(--fg-on-dark-muted);
}
.footer__facts a { text-decoration: underline; text-underline-offset: 3px; }
.footer__facts a:hover { color: var(--sand); }

.footer__social { display: flex; gap: var(--sp-lg); }
.footer__social a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-on-dark);
  transition:
    background-color var(--dur-fast) var(--ease-snap),
    border-color var(--dur-fast) var(--ease-snap);
}
.footer__social a:hover {
  background: rgba(251, 248, 245, 0.1);
  border-color: rgba(251, 248, 245, 0.5);
}
.footer__social svg { width: 20px; height: 20px; }

.footer-col__title {
  font-size: var(--t-xs);
  font-family: var(--font-mono);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: rgba(251, 248, 245, 0.58);
  margin-bottom: var(--sp-xl);
}

.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-lg); }

.footer-col a {
  font-size: var(--t-sm);
  color: rgba(251, 248, 245, 0.82);
  transition: color var(--dur-fast) var(--ease-snap);
}
.footer-col a:hover { color: var(--sand); text-decoration: underline; text-underline-offset: 3px; }

.footer__bottom {
  position: relative;
  z-index: 2;
  margin-top: clamp(56px, 7vw, 96px);
  padding-top: var(--sp-3xl);
  border-top: 1px solid var(--border-on-dark);
  display: flex;
  flex-direction: column;
  gap: var(--sp-xl);
}

.footer__notice {
  display: flex;
  gap: var(--sp-lg);
  max-width: 92ch;
  font-size: var(--t-xs);
  line-height: var(--lh-loose);
  color: var(--fg-on-dark-muted);
}
.footer__notice::before {
  content: '';
  flex: none;
  width: 3px;
  align-self: stretch;
  border-radius: 2px;
  background: var(--accent);
}
.footer__notice a { color: var(--sand); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-lg) var(--sp-3xl);
  font-size: var(--t-xs);
  color: rgba(251, 248, 245, 0.62);
}
.footer__legal a:hover { color: var(--sand); text-decoration: underline; text-underline-offset: 3px; }

/* ---------------------------------------------------------------
   17. Estado inicial das animações
   Só quando o JS confirma suporte — sem JS nada fica invisível.
   --------------------------------------------------------------- */
.js-motion [data-reveal] {
  opacity: 0;
  transform: translateY(60px);
}
.js-motion [data-hero-line] {
  opacity: 0;
  transform: translateY(28px);
}
.js-motion .sky__cloud,
.js-motion .butterfly {
  opacity: 0;
}

html.motion-failed [data-reveal],
html.motion-failed [data-hero-line],
html.motion-failed .sky__cloud,
html.motion-failed .butterfly {
  opacity: 1 !important;
  transform: none !important;
}

/* ---------------------------------------------------------------
   18. Responsivo
   --------------------------------------------------------------- */

/* Tablet: 700px – 1199.98px */
@media (max-width: 1199.98px) {
  .proof { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: repeat(3, 1fr); gap: var(--sp-xl); }
  .pillar { padding: var(--sp-2xl); }
  .pills { grid-template-columns: repeat(2, 1fr); }
  .pill--emph { grid-column: 1 / -1; }
  .recognize { grid-template-columns: 1fr; }
  .numbers { grid-template-columns: 1fr; gap: var(--sp-4xl); }
  .frame-dark__grid { grid-template-columns: 1fr; }
  .benefit-list { grid-template-columns: repeat(2, 1fr); }
  .faq__layout { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; gap: clamp(56px, 8vw, 88px); }
  .about__media { max-width: 460px; }
  .footer__top { grid-template-columns: repeat(2, 1fr); }
  .footer__brand { grid-column: 1 / -1; }
  .nav { gap: var(--sp-2xl); }

  /* Hero — tablet */
  .hero { height: 100vh; min-height: 680px; }
  .hero__inner { width: 440px; }

  .sky__cloud--band { right: -103px; bottom: -71px; }
  .sky__cloud--1 { width: 44%; left: -8%;  bottom: 4%; }
  .sky__cloud--2 { width: 38%; right: -6%; top: 38%; }
  .sky__cloud--3 { width: 32%; left: -6%;  top: 12%; }
  .sky__cloud--4 { width: 26%; right: -4%; top: 5%; }

  /* A nuvem do meio sai da coluna de texto: no tablet ela cruzava o subtítulo
     e derrubava o contraste para 2,5:1 (medido). Vai para fora e desce. */
  .sky__cloud--2 { width: 38%; right: -16%; top: 46%; }

  /* A coluna de texto fica mais alta em relação à largura — o colchão
     acompanha, mais largo e mais alto. */
  .sky__cloud--cushion { width: 130%; left: -15%; top: 4%; height: 70%; }

  .flight__stage { width: 880px; height: 560px; margin-bottom: 12px; }
  .butterfly--1 { left: 210px;  bottom: 0;     width: 200px; }
  .butterfly--2 { right: 30px;  bottom: 72px;  width: 174px; }
  .butterfly--3 { left: 16px;   bottom: 160px; width: 104px; }
  .butterfly--4 { right: 44px;  bottom: 372px; width: 94px; }
  .butterfly--5 { left: 50px;   bottom: 384px; width: 82px; }
  .butterfly--6 { left: 160px;  bottom: 330px; width: 52px; }
  .butterfly--7 { right: 150px; bottom: 462px; width: 42px; }
  .butterfly--8 { right: 12px;  bottom: 356px; width: 38px; }
  .butterfly--9 { left: 6px;    bottom: 292px; width: 30px; }
}

/* Mobile: ≤ 699.98px */
@media (max-width: 699.98px) {
  :root { --section-y: 64px; }

  .header__bar {
    padding-inline: var(--sp-2xl);
    background: rgba(251, 248, 245, 0.78);
    backdrop-filter: blur(44px);
    -webkit-backdrop-filter: blur(44px);
  }
  /* No mobile a barra já nasce fosca — o logo volta a ser escuro */
  .header[data-onsky='true'][data-scrolled='false'] .header__bar { color: var(--fg); }
  .header[data-onsky='true'][data-scrolled='false'] .logo__mark { color: var(--accent); }
  .header[data-onsky='true'][data-scrolled='false'] .btn--nav { background: var(--rust); color: var(--sand); }

  /* 390px não comporta marca + CRP + CTA + menu sem quebrar o nome em três
     linhas. O CRP sai da barra (segue no rodapé, em toda página) e o CTA
     encolhe — o botão inteiro continua no menu, com o texto completo. */
  .logo__crp { display: none; }
  .logo__mark { width: 26px; height: 22px; }
  .logo__name { font-size: 0.9375rem; white-space: nowrap; }
  .btn--nav { padding: 12px 14px; min-height: 42px; }

  /* Hero — mobile. O bando desce para a metade de baixo e o texto
     fica sozinho na parte alta do céu, que é a mais escura: nenhuma
     asa passa por trás de uma linha de texto. */
  .hero {
    height: auto;
    min-height: 100svh;
    justify-content: flex-start;
    padding-top: 132px;
    padding-bottom: 400px;
  }
  .hero__inner {
    width: 100%;
    padding-inline: var(--gutter);
    padding-bottom: 0;
    gap: var(--sp-2xl);
  }
  .hero__title { font-size: 2.125rem; }
  .hero__sub { font-size: 0.9375rem; }
  .hero__cta { width: 100%; flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }

  .sky__cloud--band {
    width: 240%;
    right: calc(-12.8205% - 122px);
    bottom: -30px;
  }

  /* No mobile as nuvens dos planos da frente e do meio descem para a zona do
     bando, e as de fundo ficam ainda mais lavadas: nuvem clara atrás de letra
     creme derruba o contraste, e a faixa do texto tem que continuar limpa. */
  .sky__cloud--1 { width: 68%; left: -18%; right: auto; top: auto; bottom: 0; }
  .sky__cloud--2 { width: 56%; right: -16%; left: auto; top: auto; bottom: 16%; }
  .sky__cloud--3 { width: 50%; left: -18%; right: auto; top: auto; bottom: 30%; filter: opacity(0.42) blur(2.4px); }
  .sky__cloud--4 { width: 42%; right: -14%; left: auto; top: 5%;  bottom: auto; filter: opacity(0.28) blur(3px); }

  /* O colchão precisa cobrir uma coluna de texto que aqui é ALTA e estreita.
     A nuvem abre bem além das bordas da tela e sobe: o título, o parágrafo e
     os botões nascem todos sobre ela. */
  .sky__cloud--cushion { width: 240%; left: -70%; top: 2%; height: 66%; }

  /* Palco de 430px, todo ele ABAIXO da coluna de texto (que termina nos
     400px de padding-bottom do hero). Nenhuma asa passa atrás de uma linha. */
  .flight__stage { width: 100%; max-width: 420px; height: 430px; margin-bottom: 0; }
  .butterfly--1 { left: 92px;   bottom: 0;     width: 168px; }
  .butterfly--2 { right: -12px; bottom: 52px;  width: 146px; }
  .butterfly--3 { left: -6px;   bottom: 116px; width: 88px; }
  .butterfly--4 { right: 22px;  bottom: 196px; width: 76px; }
  .butterfly--5 { left: 54px;   bottom: 222px; width: 66px; }
  .butterfly--6 { left: 156px;  bottom: 262px; width: 46px; }
  .butterfly--7 { right: 84px;  bottom: 326px; width: 36px; }
  .butterfly--8 { right: 4px;   bottom: 250px; width: 32px; }
  .butterfly--9 { left: 6px;    bottom: 340px; width: 26px; }

  .nav { display: none; }

  .nav-toggle {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-right: -10px;
    color: inherit;
  }
  .nav-toggle span {
    position: relative;
    display: block;
    width: 20px;
    height: 1.5px;
    background: currentColor;
    transition: background-color var(--dur-fast) var(--ease-snap);
  }
  .nav-toggle span::before,
  .nav-toggle span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 20px;
    height: 1.5px;
    background: currentColor;
    transition: translate var(--dur-base) var(--ease-brand), rotate var(--dur-base) var(--ease-brand);
  }
  .nav-toggle span::before { translate: 0 -6px; }
  .nav-toggle span::after  { translate: 0 6px; }

  .nav-toggle[aria-expanded='true'] span { background: transparent; }
  .nav-toggle[aria-expanded='true'] span::before { translate: 0 0; rotate: 45deg; }
  .nav-toggle[aria-expanded='true'] span::after  { translate: 0 0; rotate: -45deg; }

  .mobile-nav {
    position: fixed;
    inset: 92px 0 0;
    z-index: 90;
    background: var(--sand);
    color: var(--ink);
    padding: var(--sp-3xl) var(--gutter) var(--sp-6xl);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overscroll-behavior: contain;
    translate: 0 -8px;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity var(--dur-base) var(--ease-brand),
      translate var(--dur-base) var(--ease-brand),
      visibility var(--dur-base) var(--ease-brand);
  }
  .mobile-nav[data-open='true'] {
    opacity: 1;
    translate: 0 0;
    visibility: visible;
  }
  .mobile-nav a {
    font-family: var(--font-display);
    font-size: var(--t-h4);
    font-weight: 500;
    letter-spacing: var(--ls-display);
    color: var(--ink);
    padding-block: var(--sp-xl);
    border-bottom: 1px solid var(--border);
  }
  .mobile-nav__actions {
    display: flex;
    flex-direction: column;
    gap: var(--sp-lg);
    margin-top: var(--sp-4xl);
  }
  .mobile-nav__actions a { border-bottom: 0; font-family: var(--font-body); font-size: var(--t-sm); }
  .mobile-nav .btn { justify-content: center; }

  .proof,
  .steps,
  .pillars,
  .pills,
  .benefit-list { grid-template-columns: 1fr; }

  .pillar { padding: var(--sp-2xl); }
  .pill { min-height: 60px; padding: var(--sp-lg) var(--sp-2xl); }
  /* O corpo NÃO encolhe: 19px/700 é o piso do "texto grande" do WCAG, e é
     ele que sustenta o 3:1 do branco sobre a terracota. */
  .pill--emph { grid-column: auto; }

  .section-head { align-items: flex-start; }

  .frame-dark,
  .media-band__frame { border-radius: var(--r-xl); }
  .media-band__frame { aspect-ratio: 4 / 3; }

  .about__detail { right: -12px; bottom: -20px; width: 44%; border-width: 5px; }

  .recognize__item { font-size: var(--t-lead); }

  .cta__wing--l { left: -4%; top: 6%; }
  .cta__wing--r { right: -4%; bottom: 6%; }

  .footer__top { grid-template-columns: 1fr; }
  .footer__legal { gap: var(--sp-lg); }
}

/* ---------------------------------------------------------------
   19. prefers-reduced-motion — estado final, nada invisível
   --------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js-motion [data-reveal],
  .js-motion [data-hero-line],
  .js-motion .sky__cloud,
  .js-motion .butterfly {
    opacity: 1 !important;
    transform: none !important;
  }
}
