/* ============================================================
   DA PRESCRIÇÃO AO DESMAME — landing da imersão
   Identidade: 50-marca/identidade-visual.md
   health #005C58 · hope #5DA99B · heat #F2724D (só CTA)
   light #FFE28C · balance #EAEAEA · Fraunces + Outfit
   ============================================================ */

:root {
  --health: #005C58;
  --hope: #5DA99B;
  --heat: #F2724D;
  --light: #FFE28C;
  --balance: #EAEAEA;
  --ink: #222826;            /* texto longo sobre claro */
  --paper: #FFFFFF;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --w-text: 46rem;
  --w-page: 72rem;
  --ease: cubic-bezier(.22,.8,.24,1);
  --health-deep: #00423F;        /* health rebaixado, só para profundidade */
  --hairline: rgba(0, 92, 88, .14);
  --shadow-soft: 0 10px 30px rgba(0, 92, 88, .07);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; height: auto; }
a { color: inherit; }
::selection { background: var(--light); color: var(--health); }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- botões (heat = única cor de ação) ---------- */
.btn {
  display: inline-block;
  background: linear-gradient(180deg, #F58261 0%, var(--heat) 55%);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .01em;
  padding: 1rem 2.2rem;
  border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 6px 22px rgba(242,114,77,.35);
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 12px 32px rgba(242,114,77,.45); }
.btn:active { transform: translateY(0); filter: brightness(.97); box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 4px 14px rgba(242,114,77,.35); }
.btn:focus-visible { outline: 3px solid var(--light); outline-offset: 3px; }
.btn--small { padding: .55rem 1.3rem; font-size: .9rem; box-shadow: none; }
.btn--big { font-size: 1.2rem; padding: 1.2rem 3rem; }

/* ---------- nav ---------- */
.nav { position: absolute; inset: 0 0 auto 0; z-index: 10; }
.nav__inner {
  max-width: var(--w-page); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 1.5rem;
}
.nav__brand { color: #fff; font-weight: 500; letter-spacing: .04em; font-size: 1.05rem; }
.nav__brand em, .footer__brand em {
  font-family: var(--font-display); font-style: normal; font-weight: 600;
  color: var(--heat); letter-spacing: .35em; font-size: .72em; margin-left: .35em;
}

@media (max-width: 520px) { .nav .btn { display: none; } }

/* ---------- hero ---------- */
.hero {
  /* luz suave vinda do alto esquerdo: o mesmo health, com profundidade */
  background:
    radial-gradient(130% 120% at 18% 0%, rgba(93, 169, 155, .22) 0%, transparent 52%),
    linear-gradient(160deg, var(--health) 55%, var(--health-deep) 100%);
  color: #fff;
  padding: 8.5rem 1.5rem 3.5rem;
  overflow: hidden;
  position: relative;
}
.hero__inner {
  max-width: var(--w-page); margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.hero__copy { text-align: left; }

/* entrada do hero em CSS puro: acima da dobra, nada depende de JS para aparecer */
.hero__copy > * { animation: heroRise .8s var(--ease) both; }
.hero__copy > *:nth-child(2) { animation-delay: .07s; }
.hero__copy > *:nth-child(3) { animation-delay: .14s; }
.hero__copy > *:nth-child(4) { animation-delay: .21s; }
.hero__copy > *:nth-child(5) { animation-delay: .28s; }
.hero__copy > *:nth-child(6) { animation-delay: .35s; }
.hero__foto { animation: heroLift .9s var(--ease) both; }
@keyframes heroRise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
/* a foto não anima opacidade: pinta imediatamente (LCP) e apenas assenta no lugar */
@keyframes heroLift {
  from { transform: translateY(26px); }
  to { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__copy > *, .hero__foto { animation: none; }
}
.hero__kicker {
  font-size: .82rem; font-weight: 600; letter-spacing: .36em; text-transform: uppercase;
  color: var(--balance); margin: 0 0 1.1rem;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--health); margin: 0 0 1.2rem;
}
.eyebrow::before {
  content: ""; flex: none; width: 1.7rem; height: 2px; border-radius: 1px;
  background: var(--hope);
}
.eyebrow--hero, .eyebrow--ondark { color: var(--light); }
.eyebrow--hero::before, .eyebrow--ondark::before { background: var(--light); opacity: .75; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 620;
  font-variation-settings: "opsz" 144;
  font-size: clamp(2.9rem, 6.3vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.015em;
  margin: 0 0 1.5rem;
  max-width: 20ch;
}
.hero__title em { font-style: italic; font-weight: 340; display: block; }
.hero__title strong { font-weight: 780; display: block; }
.hl-light {
  font-style: italic; font-weight: 480;
  background-image: linear-gradient(transparent 62%, rgba(255,226,140,.38) 62%);
}
.mark { font-weight: 500; }
.hero__sub {
  max-width: var(--w-text); margin: 0 0 2.2rem;
  font-size: 1.12rem; font-weight: 300; color: var(--balance);
}
.hero__sub em { font-style: italic; color: #fff; }
.hero__cta { display: flex; gap: 1.6rem; align-items: center; justify-content: flex-start; flex-wrap: wrap; }
.hero__ghost { color: var(--balance); text-decoration: none; font-size: .95rem; border-bottom: 1px dashed var(--hope); padding-bottom: 2px; }
.hero__ghost:hover { color: #fff; }

/* preço ao lado do CTA: responde a pergunta na hora em que ela nasce */
.hero__preco {
  margin: 0; padding-left: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, .28);
  line-height: 1.25;
}
.hero__preco strong {
  display: block;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144;
  font-weight: 700; font-size: 1.75rem;
  color: #fff;
}
.hero__preco span {
  display: block; margin-top: .1rem;
  font-size: .82rem; font-weight: 400; letter-spacing: .04em;
  color: var(--balance);
}
.hero__curve { max-width: 34rem; margin: 3.4rem 0 0; }

/* ---------- hero: fotografia dos fundadores ---------- */
.hero__foto { margin: 0; position: relative; justify-self: stretch; max-width: 30rem; }
.hero__foto::before {
  /* arco de contorno deslocado, eco discreto da moldura */
  content: ""; position: absolute; z-index: 0;
  top: -1rem; right: -1rem; bottom: 3.4rem; left: 1rem;
  border: 2px solid rgba(93, 169, 155, .45);
  border-radius: 999px 999px 34px 34px;
  pointer-events: none;
}
.hero__foto picture {
  position: relative; z-index: 1; display: block;
  border-radius: 999px 999px 28px 28px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(0, 0, 0, .3);
}
.hero__foto img { display: block; width: 100%; height: auto; }
.hero__legenda {
  margin-top: 1.15rem; text-align: center;
  font-size: .8rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--balance);
}
.hero__legenda span {
  display: block; margin-top: .3rem;
  font-size: .82rem; font-weight: 400; letter-spacing: .06em; text-transform: none;
  color: var(--light);
}
#curvaHero.is-armed { stroke-dasharray: var(--len); stroke-dashoffset: var(--len); animation: draw 2.2s var(--ease) .3s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
#bolaHero { opacity: 0; }
#bolaHero.is-landed { opacity: 1; transition: opacity .5s; }
@media (prefers-reduced-motion: reduce) {
  #curvaHero.is-armed { animation: none; stroke-dashoffset: 0 !important; }
  #bolaHero { opacity: 1 !important; }
}

@media (max-width: 900px) {
  .hero { padding-bottom: 3rem; }
  .hero__inner { grid-template-columns: 1fr; gap: 0; }
  .hero__foto { max-width: 21rem; margin: 3rem auto 0; }
  .hero__foto::before { top: -.8rem; right: -.8rem; bottom: 3.2rem; left: .8rem; }
  .hero__curve { max-width: 30rem; margin-top: 2.8rem; }
}

/* ---------- faixa de fatos ---------- */
.facts { background: var(--paper); border-bottom: 1px solid var(--hairline); }
.facts__list {
  max-width: var(--w-page); margin: 0 auto; padding: 1.2rem 1.5rem;
  display: flex; flex-wrap: wrap; gap: .6rem 0; justify-content: center;
  list-style: none; font-size: .95rem; color: var(--ink);
}
.facts__list li { padding: 0 1.6rem; }
.facts__list li + li { border-left: 1px solid var(--hairline); }
.facts__list strong { color: var(--health); font-weight: 700; margin-right: .45rem; }
@media (max-width: 700px) {
  .facts__list li { padding: 0 1rem; }
  .facts__list li + li { border-left: none; }
}
.facts__preco {
  background: var(--light);
  border-radius: 999px;
  padding: .12rem 1rem;
}

/* ---------- seções ---------- */
.section { padding: 6rem 1.5rem; }
.section--light { background: var(--paper); }
.section--light + .section--light { padding-top: 2rem; }
.section--dark {
  background:
    radial-gradient(110% 90% at 82% 100%, rgba(93, 169, 155, .16) 0%, transparent 55%),
    linear-gradient(200deg, var(--health) 60%, var(--health-deep) 100%);
  color: #fff;
}
.container { max-width: var(--w-page); margin: 0 auto; }
.container--narrow { max-width: 52rem; text-align: center; }
.container--wide { max-width: 78rem; }

.display {
  font-family: var(--font-display);
  font-weight: 560;
  font-variation-settings: "opsz" 120;
  font-size: clamp(1.9rem, 4.2vw, 3.1rem);
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--health);
  margin: 0 0 1.6rem;
  max-width: 24ch;
}
.display strong { font-weight: 750; }
.display em { font-style: italic; font-weight: 460; }
.display--ondark { color: #fff; }
.container--narrow .display { margin-left: auto; margin-right: auto; }

.lead { max-width: var(--w-text); font-size: 1.12rem; margin: 0 0 2.4rem; }
.lead--closer { margin: 2.6rem 0 0; }
.lead--ondark { color: var(--balance); margin-left: auto; margin-right: auto; }

/* ---------- cards do ponto cego ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 1.2rem; }
.card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 1.6rem 1.7rem 2.2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 420;
  font-size: 1.08rem;
  line-height: 1.5;
  color: var(--health);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0, 92, 88, .12); }
.card p { margin: 0; position: relative; z-index: 1; }
.card::before {
  content: ""; position: absolute; left: 1.7rem; top: 0;
  width: 2.6rem; height: 4px; border-radius: 0 0 2px 2px; background: var(--hope);
}
/* são dúvidas clínicas: a interrogação em marca d'água diz isso antes da leitura */
.card::after {
  content: "?"; position: absolute; right: .9rem; bottom: -1.4rem;
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 5.2rem; line-height: 1; color: rgba(93, 169, 155, .16);
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) { .card, .card:hover { transform: none; } }

/* ---------- mapa da manhã ---------- */
.mapa { margin: 3.4rem 0 1rem; }
.mapa__svg { display: block; width: 100%; }
#curvaMapa { stroke-dasharray: var(--len, 2000); stroke-dashoffset: var(--len, 2000); }
#curvaMapa.is-drawn { transition: stroke-dashoffset 2s var(--ease); stroke-dashoffset: 0; }
.mapa__dot { fill: var(--health); stroke: var(--hope); stroke-width: 3; opacity: 0; transition: opacity .4s var(--ease) var(--delay, 0s); }
.mapa__dot--pouso { fill: var(--light); stroke: none; }
.mapa__dot.is-on { opacity: 1; }
.mapa__dot--pouso.is-on {
  transform-box: fill-box; transform-origin: center;
  animation: pousoPulse 2.6s var(--ease) 1.4s infinite;
}
@keyframes pousoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}
@media (prefers-reduced-motion: reduce) { .mapa__dot--pouso.is-on { animation: none; } }
@media (prefers-reduced-motion: reduce) {
  #curvaMapa { stroke-dashoffset: 0 !important; }
  .mapa__dot { opacity: 1 !important; }
}
@media (max-width: 760px) { .mapa { display: none; } }

.mapa__cta { text-align: center; margin-top: 3.4rem; }

.blocos {
  list-style: none; margin: 2.5rem 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.2rem 2.4rem;
}
.bloco { border-top: 1px solid rgba(93,169,155,.32); padding-top: 1.1rem; position: relative; }
.bloco::before {
  /* marcador de estação sobre a linha do tempo */
  content: ""; position: absolute; left: 0; top: -1px;
  width: 2.6rem; height: 3px; border-radius: 0 0 2px 2px; background: var(--light);
}
.bloco__hora {
  font-size: .8rem; font-weight: 700; letter-spacing: .18em; color: var(--light);
  font-variant-numeric: tabular-nums;
}
.bloco__titulo {
  font-family: var(--font-display); font-weight: 600; font-size: 1.28rem;
  margin: .5rem 0 .5rem; line-height: 1.25;
}
.bloco p { margin: 0; font-size: .97rem; font-weight: 300; color: var(--balance); }
@media (max-width: 900px) { .blocos { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blocos { grid-template-columns: 1fr; } }

/* ---------- quem ensina ---------- */
.perfis { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; margin-top: 1rem; }
@media (max-width: 760px) { .perfis { grid-template-columns: 1fr; } }
.perfil {
  background: rgba(93, 169, 155, .09);
  border: 1px solid var(--hairline);
  border-radius: 24px; padding: 2.2rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.perfil:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
@media (prefers-reduced-motion: reduce) { .perfil, .perfil:hover { transform: none; } }
.perfil__foto {
  width: 8.5rem; height: 8.5rem; border-radius: 50% 50% 50% 14px; overflow: hidden;
  margin-bottom: 1.4rem; background: #fff;
  outline: 3px solid rgba(93, 169, 155, .35); outline-offset: 4px;
  box-shadow: 0 6px 20px rgba(0, 92, 88, .16);
}
.perfil__foto img { width: 100%; height: 100%; object-fit: cover; display: block; }
.perfil h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--health); margin: 0 0 .2rem; }
.perfil__cargo { font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 600; color: var(--hope); margin: 0 0 1rem; }
.perfil p:last-child { margin: 0; font-size: 1rem; }

.citacao { margin: 3.4rem auto 0; max-width: 40rem; text-align: center; }
.citacao p {
  font-family: var(--font-display); font-style: italic; font-weight: 460;
  font-size: clamp(1.25rem, 2.6vw, 1.6rem); line-height: 1.45; color: var(--health); margin: 0;
}

/* ---------- prova ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin: 2.2rem 0 3rem; }
@media (max-width: 700px) { .stats { grid-template-columns: 1fr; } }
.stat { text-align: center; }
.stat__num {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-variation-settings: "opsz" 144;
  font-size: clamp(2.6rem, 6vw, 4rem); color: #fff; line-height: 1;
}
.stat__label { display: block; margin-top: .6rem; font-size: .95rem; font-weight: 300; color: var(--balance); }
.tease {
  max-width: 42rem; margin: 0 auto; text-align: center;
  font-family: var(--font-display); font-style: italic; font-weight: 440;
  font-size: 1.3rem; line-height: 1.5;
}

/* ---------- o que você leva ---------- */
.leva {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
}
@media (max-width: 860px) { .leva { grid-template-columns: 1fr; } }
.leva li {
  background: rgba(93, 169, 155, .09);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 2rem 1.8rem 2.2rem; position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.leva li:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.leva li::before {
  content: ""; position: absolute; left: 1.8rem; top: 0;
  width: 2.6rem; height: 4px; border-radius: 0 0 2px 2px; background: var(--hope);
}
@media (prefers-reduced-motion: reduce) { .leva li, .leva li:hover { transform: none; } }
.leva strong {
  display: block; color: var(--health);
  font-family: var(--font-display); font-weight: 620; font-size: 1.2rem;
  line-height: 1.3; margin-bottom: .6rem;
}
.leva span { display: block; font-size: .96rem; line-height: 1.6; color: var(--ink); opacity: .82; }

/* ---------- declaração (banda de tese) ---------- */
.statement {
  background: var(--health);
  padding: 7rem 1.5rem;
  text-align: center;
}
.statement__text {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 120;
  color: #fff;
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  line-height: 1.35;
  font-weight: 420;
  max-width: 46rem;
  margin: 0 auto;
}
.statement__text em { font-style: italic; font-weight: 330; color: var(--balance); }
.statement__text strong { font-weight: 750; font-style: normal; }

/* marca-texto que se desenha ao entrar na tela */
.sweep, .mark {
  color: inherit;
  background-image: linear-gradient(transparent 58%, rgba(255,226,140,.55) 58%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size .9s var(--ease) .5s;
  padding: 0 .05em;
}
.is-in .sweep, .is-in .mark { background-size: 100% 100%; }
.is-in .mark:last-of-type { transition-delay: 1.1s; }
@media (prefers-reduced-motion: reduce) {
  .sweep, .mark { background-size: 100% 100% !important; transition: none !important; }
}

/* ---------- para quem é ---------- */
.quem { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem 4.5rem; }
@media (max-width: 860px) { .quem { grid-template-columns: 1fr; } }
.quem__head {
  font-family: var(--font-display); font-size: 1.55rem; font-weight: 640;
  margin: 0 0 2rem; display: flex; align-items: center;
}
.quem__head--sim { color: var(--health); }
.quem__head--nao { color: var(--heat); }
.quem__head::after {
  content: ""; flex: 1; height: 2px; border-radius: 1px;
  background: currentColor; opacity: .18; margin-left: .9rem;
}
.quem__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1.7rem; }
.quem__item { display: flex; gap: 1.1rem; align-items: flex-start; }
.quem__icon {
  flex: none; width: 2.1rem; height: 2.1rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-top: .1rem;
}
.quem__icon svg { width: 1rem; height: 1rem; }
.quem__icon--sim { background: rgba(93,169,155,.18); color: var(--health); }
.quem__icon--nao { background: rgba(242,114,77,.14); color: var(--heat); }
.quem__t {
  margin: 0 0 .3rem; font-family: var(--font-display); font-weight: 600;
  font-size: 1.12rem; line-height: 1.3; color: var(--health);
}
.quem__d { margin: 0; font-size: .95rem; line-height: 1.6; color: var(--ink); opacity: .78; }

/* ---------- revelação escalonada (grades e listas) ---------- */
.cards .card:nth-child(2), .blocos .bloco:nth-child(2), .quem__item:nth-child(2), .leva li:nth-child(2) { transition-delay: .08s; }
.cards .card:nth-child(3), .blocos .bloco:nth-child(3), .quem__item:nth-child(3), .leva li:nth-child(3) { transition-delay: .16s; }
.cards .card:nth-child(4), .blocos .bloco:nth-child(4), .quem__item:nth-child(4), .leva li:nth-child(4) { transition-delay: .24s; }
.blocos .bloco:nth-child(5), .quem__item:nth-child(5), .leva li:nth-child(5) { transition-delay: .32s; }
.blocos .bloco:nth-child(6), .quem__item:nth-child(6) { transition-delay: .4s; }

/* ---------- inscrição ---------- */
.section--cta { text-align: center; padding: 7rem 1.5rem; }
.section--cta .display em { color: var(--light); }
.preco { margin: 2.4rem 0 2rem; }
.preco__valor {
  display: block;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144;
  font-weight: 750;
  font-size: clamp(3.6rem, 9vw, 5.4rem);
  line-height: 1;
  color: #fff;
}
.preco__nota {
  display: block; margin-top: .7rem;
  font-size: .95rem; font-weight: 400; letter-spacing: .02em; color: var(--hope);
}
.preco__como {
  margin: 1.1rem auto 0; font-size: .92rem; font-weight: 300; color: var(--balance);
}

.escassez {
  margin: 1.3rem auto 0; max-width: 34rem;
  font-size: .95rem; font-weight: 500; color: var(--light);
  letter-spacing: .01em;
}
.garantia {
  max-width: 36rem; margin: 2.2rem auto 0; font-size: .93rem;
  font-weight: 300; color: var(--balance); line-height: 1.65;
}

/* ---------- faq ---------- */
.faq { text-align: left; }
.faq details {
  border-bottom: 1px solid var(--balance);
  padding: .4rem 0;
}
.faq summary {
  cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 600; font-size: 1.12rem;
  color: var(--health); padding: 1rem 2.4rem 1rem 0; position: relative;
  transition: color .25s var(--ease);
}
.faq summary:hover { color: var(--heat); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: .3rem; top: 50%; transform: translateY(-50%);
  font-family: var(--font-body); font-weight: 300; font-size: 1.6rem; color: var(--hope);
  transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { margin: 0 0 1.2rem; max-width: 60ch; }
.faq summary:focus-visible { outline: 3px solid var(--light); outline-offset: 3px; border-radius: 6px; }

/* ---------- footer ---------- */
.footer { background: var(--health); color: var(--balance); padding: 4rem 1.5rem 5rem; text-align: center; }
.footer__curva { max-width: 20rem; margin: 0 auto 1.6rem; display: block; }
.footer__brand { color: #fff; font-weight: 500; letter-spacing: .04em; font-size: 1.1rem; margin: 0 0 1rem; }
.footer__legal { font-size: .82rem; font-weight: 300; line-height: 1.8; margin: 0; }

/* ---------- ajustes finos mobile ---------- */
@media (max-width: 640px) {
  .section { padding: 4.25rem 1.25rem; }
  .section--cta { padding: 5rem 1.25rem; }
  .statement { padding: 5rem 1.25rem; }
  .hero { padding-top: 6.5rem; }
  .hero__title { font-size: clamp(2.6rem, 12.5vw, 3.4rem); }
  .hero__sub { font-size: 1.05rem; }
  .hero__curve { margin-top: 2rem; }
  .facts__list { gap: .5rem 1.6rem; font-size: .9rem; padding: 1rem 1.25rem; }
  .display { font-size: clamp(1.75rem, 7.5vw, 2.3rem); }
  .perfil { padding: 1.8rem; }
  .citacao { margin-top: 2.6rem; }
  .quem { gap: 3rem; }
  .footer { padding-bottom: 6.5rem; } /* respiro para a barra fixa não cobrir o legal */
}

/* ---------- barra fixa mobile ---------- */
.stickybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: none; align-items: center; justify-content: space-between; gap: 1rem;
  background: var(--health-deep); color: #fff;
  border-top: 1px solid rgba(93,169,155,.35);
  padding: .7rem 1.1rem;
  transform: translateY(110%);
  transition: transform .4s var(--ease);
  box-shadow: 0 -8px 30px rgba(0,0,0,.25);
  font-size: .88rem;
}
.stickybar.is-visible { transform: none; }
.stickybar strong { color: var(--light); font-weight: 700; }
@media (max-width: 760px) { .stickybar { display: flex; } }

/* ---------- topbar dinâmica ---------- */
.topbar { background: var(--heat); color: #fff; position: relative; z-index: 20; }
.topbar__inner {
  max-width: var(--w-page); margin: 0 auto; padding: .65rem 1.5rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .4rem .9rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
}
.topbar__sep { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.65); }
.topbar__count { font-weight: 700; }
@media (max-width: 520px) { .topbar__inner { letter-spacing: .12em; font-size: .7rem; } }

/* ---------- lista da oferta ---------- */
.oferta {
  list-style: none; margin: 2.4rem auto 0; padding: 0; max-width: 26rem;
  display: grid; gap: .85rem; text-align: left;
}
.oferta li {
  display: flex; align-items: flex-start; gap: .8rem;
  font-size: 1.02rem; font-weight: 300; color: var(--balance);
}
.oferta li::before {
  content: ""; flex: none; width: .55rem; height: .55rem; margin-top: .55rem;
  border-radius: 50%; background: var(--hope);
}

/* ---------- heading de lista dentro de seção clara ---------- */
#imersao .quem__head { margin-top: 3.4rem; }

/* ---------- fundo alternado entre seções ---------- */
.section--soft { background: var(--balance); }
.section--soft .card,
.section--soft .leva li,
.section--soft .perfil { background: var(--paper); }
.section--soft .faq details { border-bottom-color: rgba(0,92,88,.16); }
.lead--left { margin-left: 0; margin-right: 0; }

/* ---------- card do plano (inscrição) ---------- */
.plano {
  max-width: 26rem; margin: 2.8rem auto 0; text-align: center;
  background: linear-gradient(180deg, #024E4A 0%, var(--health-deep) 100%);
  border: 1px solid rgba(93,169,155,.45);
  border-radius: 28px; padding: 2.4rem 2rem 2.2rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 28px 70px rgba(0,0,0,.32);
}
.plano__badge {
  display: inline-block; background: var(--heat); color: #fff;
  border-radius: 999px; padding: .42rem 1rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
}
.plano__preco { margin: 1.6rem 0 0; }
.plano__preco strong {
  display: block; font-family: var(--font-display); font-variation-settings: "opsz" 144;
  font-weight: 750; font-size: clamp(3rem, 9vw, 4rem); line-height: 1; color: #fff;
}
.plano__preco span {
  display: block; margin-top: .5rem; font-size: .95rem; font-weight: 400;
  letter-spacing: .04em; color: var(--hope);
}
.plano__desc {
  margin: 1.4rem 0 0; font-size: .98rem; font-weight: 300; color: var(--balance);
}
.plano__itens {
  list-style: none; margin: 1.8rem 0 2rem; padding: 1.8rem 0 0;
  border-top: 1px solid rgba(93,169,155,.28);
  display: grid; gap: .95rem; text-align: left;
}
.plano__itens li {
  display: flex; align-items: center; gap: .8rem;
  font-size: 1rem; font-weight: 300; color: #fff;
}
.plano__check {
  flex: none; width: 1.5rem; height: 1.5rem; border-radius: 50%;
  background: var(--heat); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.plano__check svg { width: .9rem; height: .9rem; }
.plano__cta { display: block; }
.plano__nota { margin: 1.1rem 0 0; font-size: .88rem; font-weight: 300; color: var(--balance); }
@media (max-width: 640px) { .plano { padding: 2rem 1.4rem 1.8rem; } }

/* ---------- ajustes do card do plano ---------- */
.plano__exclusivo {
  margin: 1.2rem auto 0; padding: .55rem 1rem;
  border: 1px dashed rgba(93,169,155,.6); border-radius: 12px;
  font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--light);
}
.plano__itens { margin-bottom: 0; }
.plano__preco { margin: 1.8rem 0 1.8rem; padding-top: 1.8rem; border-top: 1px solid rgba(93,169,155,.28); }
