/* ============================================================
   NutriPath — styles.css
   Mobile-first, minimalist landing page
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* ---------- Rampa tipográfica (7 papéis) ----------
     Cada passo existe para um trabalho diferente. Valores fora
     desta rampa precisam de justificativa, não de conveniência. */
  --fs-display: clamp(2.6rem, 9.5vw, 6rem);   /* título de abertura */
  --fs-headline: clamp(2rem, 6vw, 3.2rem);    /* título de seção */
  --fs-title: 1.35rem;                        /* nome de cartão, pergunta */
  --fs-lead: 1.15rem;                         /* parágrafo de entrada */
  --fs-body: 1.05rem;                         /* texto corrido (piso 40+) */
  --fs-small: 0.94rem;                        /* nota, legenda */
  --fs-label: 0.78rem;
  --fs-subhead: clamp(1.2rem, 3.2vw, 1.7rem);  /* frase de apoio do título */
  --fs-figure: clamp(3rem, 11vw, 5.5rem);      /* numeral em destaque (preço) */
                        /* micro em caixa alta */

  /* Entrelinha por papel: ajustada à face e ao tamanho, não a uma razão única */
  --lh-display: 1.02;
  --lh-headline: 1.05;
  --lh-title: 1.2;
  --lh-body: 1.55;
  --lh-tight: 1.35;

  /* Medida de leitura: uma para texto corrido, uma para entrada */
  --measure: 62ch;
  --measure-lead: 52ch;

  --bg: #efefef;          /* page background — very light grey */
  --ink: #2b2b2b;         /* primary dark text */
  --ink-soft: #5f5f5f;    /* secondary text (>=4.5:1 sobre perola) */
  --accent: #c4e86b;      /* soft lime green */
  --accent-dark: #a9d24a; /* lime hover, so em FUNDO, nunca em texto */
  --accent-text: #4e6a0f; /* verde de texto sobre fundo claro (>=4.5:1) */
  --white: #ffffff;       /* cards & overlays */
  --line: #dcdcdc;        /* hairline borders */

  --radius: 18px;
  --radius-lg: 28px;
  --maxw: 1200px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ---------- Shared utilities ---------- */
.badge {
  display: inline-block;
  background: var(--accent);
  color: var(--ink);
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.45em 1em;
  border-radius: 999px;
}

/* Badge usada sobre fundos escuros */
.badge--invert {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section-title {
  font-size: var(--fs-headline);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0.4em 0 0.6em;
}

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 0.85em;
  --pad-x: 1.6em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: inherit;
  font-weight: 700;
  font-size: var(--fs-body);
  line-height: var(--lh-title);
  padding: var(--pad-y) var(--pad-x);
  min-height: 44px; /* alvo de toque confortável: 40+ no celular, uma mão só */
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    box-shadow 0.25s var(--ease), color 0.25s var(--ease);
  will-change: transform;
}

.btn--accent {
  background: var(--accent);
  color: var(--ink);
}

.btn--accent:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(169, 210, 74, 0.4);
}

.btn--lg {
  --pad-y: 1.1em;
  --pad-x: 2.2em;
  font-size: var(--fs-lead);
}

.btn--sm {
  --pad-y: 0.7em;
  --pad-x: 1.3em;
  font-size: var(--fs-small);
}

/* Secondary underlined link button */
.btn--link {
  background: transparent;
  color: var(--ink);
  padding-left: 0.4em;
  padding-right: 0.4em;
  border-radius: 0;
  position: relative;
}

.btn--link::after {
  content: "";
  position: absolute;
  left: 0.4em;
  right: 0.4em;
  bottom: 0.4em;
  height: 2px;
  background: var(--ink);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.btn--link:hover {
  color: var(--accent-dark);
}

.btn--link:hover::after {
  background: var(--accent-dark);
  transform: scaleX(0.7);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: rgba(239, 239, 239, 0.8);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}

.nav.is-scrolled {
  box-shadow: 0 1px 0 var(--line);
  background: rgba(239, 239, 239, 0.92);
}

.nav__logo {
  font-weight: 800;
  font-size: var(--fs-title);
  letter-spacing: -0.02em;
}

.nav__logo span {
  color: var(--accent-text);
}

.nav__links {
  display: none;
  gap: 1.75rem;
  font-weight: 600;
  font-size: var(--fs-small);
}

.nav__links a {
  position: relative;
  color: var(--ink-soft);
  transition: color 0.2s var(--ease);
}

.nav__links a:hover {
  color: var(--ink);
}

/* O CTA do cabecalho fica visivel em toda largura: a pagina e longa e
   sem ele o mobile ficava sem nenhuma conversao persistente. */
.nav__cta {
  display: inline-flex;
  font-size: var(--fs-small);
  padding: 0.7em 1.1em;
}

@media (min-width: 860px) {
  .nav {
    padding: 1.1rem 2.5rem;
  }
  .nav__links {
    display: inline-flex;
  }
  .nav__cta {
    font-size: var(--fs-body);
    padding: 0.85em 1.6em;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* conteúdo no topo: título inteiro aparece */
  text-align: center;
  padding: clamp(7rem, 13vh, 9.5rem) 1.25rem 2.5rem;
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  /* Empilha tudo como blocos: evita o botão (inline-flex) transbordar a
     linha e sobrepor o texto-nota quando o rótulo quebra em 2 linhas. */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Scrim radial: clareia o fundo logo atrás do texto para que o título
   sempre tenha contraste, mesmo com as fotos passando por trás. */
.hero__content::before {
  content: "";
  position: absolute;
  inset: -10% -14%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    ellipse 70% 65% at 50% 50%,
    rgba(239, 239, 239, 0.97) 0%,
    rgba(239, 239, 239, 0.9) 40%,
    rgba(239, 239, 239, 0.55) 68%,
    rgba(239, 239, 239, 0) 85%
  );
}

.hero__title {
  font-size: var(--fs-display);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0.85rem 0 1rem;
}

.hero__sub {
  max-width: 540px;
  margin: 0 auto 2rem;
  color: var(--ink-soft);
  font-size: var(--fs-subhead);
}

/* Fanned-out hero photos */
.hero__photos {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero__photo {
  position: absolute;
  width: clamp(104px, 16vw, 196px);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);
  opacity: 0.72;
}

/* Em leque, mas empurradas para os cantos extremos para liberar o
   centro onde fica o título. O scrim cuida do contraste. */
.hero__photo--1 {
  top: 9%;
  left: -1%;
  transform: rotate(-12deg);
}
.hero__photo--2 {
  top: 6%;
  right: -1%;
  transform: rotate(10deg);
}
.hero__photo--3 {
  bottom: 6%;
  left: 1%;
  transform: rotate(8deg);
}
.hero__photo--4 {
  bottom: 8%;
  right: 0%;
  transform: rotate(-9deg);
}

/* Em telas estreitas, mantém só duas fotos (cantos de baixo) bem
   discretas para não competir com o texto. */
@media (max-width: 620px) {
  .hero__photo--1,
  .hero__photo--2 {
    display: none;
  }
  .hero__photo {
    width: 34vw;
    opacity: 0.5;
  }
}

.hero__scroll {
  position: relative;
  z-index: 3;
  margin-top: auto; /* empurra para o fundo quando há espaço sobrando */
  padding-top: 2.5rem; /* respiro mínimo: nunca encosta no conteúdo acima */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--fs-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.hero__scroll-arrow {
  font-size: var(--fs-lead);
  animation: bob 1.8s var(--ease) infinite;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ============================================================
   BANNER
   ============================================================ */
.banner {
  position: relative;
  height: clamp(340px, 60vh, 620px);
  overflow: hidden;
}

.banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform; /* parallax target */
}

.banner__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
  background: rgba(28, 28, 28, 0.68);
}

.banner__quote {
  color: var(--white);
  font-weight: 700;
  font-size: var(--fs-headline);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: center;
  max-width: 18ch;
}

.banner__quote span {
  color: var(--accent);
}

.banner__logo {
  color: var(--white);
  font-weight: 800;
  font-size: var(--fs-figure);
  letter-spacing: -0.04em;
}

.banner__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(46px, 9vw, 84px);
  height: clamp(46px, 9vw, 84px);
  background: var(--accent);
  color: var(--ink);
  border-radius: 50%;
  font-size: var(--fs-subhead);
  font-weight: 700;
  align-self: flex-start;
  margin-top: clamp(1rem, 8vh, 5rem);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 12vw, 8rem) 1.25rem;
  display: grid;
  gap: 3rem;
}

.about__text p {
  color: var(--ink-soft);
  font-size: var(--fs-lead);
  margin-bottom: 1.1rem;
  max-width: var(--measure);
}

.about__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.about__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

@media (min-width: 860px) {
  .about {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 4rem;
  }
}

/* ============================================================
   SERVICES — pinned scroll section
   ============================================================ */
.services {
  position: relative;
  /* Tall scroll track gives ScrollTrigger room to scrub.
     The inner .services__sticky is pinned by GSAP. */
  background: var(--ink);
  color: var(--white);
}

.services__sticky {
  position: relative;
  height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 2rem 1.25rem;
}

.services__eyebrow {
  position: absolute;
  top: clamp(2rem, 8vh, 4rem);
  left: 50%;
  transform: translateX(-50%);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: var(--fs-label);
  color: rgba(255, 255, 255, 0.6);
}

/* Stacked panels — only one visible at a time, swapped via GSAP */
.services__panels {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 900px;
  height: clamp(200px, 40vh, 360px);
}

.services__panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
}

.services__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(56px, 10vw, 84px);
  height: clamp(56px, 10vw, 84px);
  background: var(--accent);
  color: var(--ink);
  border-radius: 50%;
  font-weight: 800;
  font-size: var(--fs-subhead);
}

.services__heading {
  font-size: var(--fs-headline);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

/* Corner photos — each tilted at a distinct angle, parallax + rotate on scroll */
.services__photos {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.services__photo {
  position: absolute;
  width: clamp(110px, 18vw, 230px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.services__photo--tl { top: 6%;  left: 3%;  transform: rotate(-8deg); }
.services__photo--tr { top: 9%;  right: 4%; transform: rotate(12deg); }
.services__photo--bl { bottom: 8%; left: 5%; transform: rotate(6deg); }
.services__photo--br { bottom: 6%; right: 3%; transform: rotate(-14deg); }

@media (max-width: 640px) {
  .services__photo {
    width: 33vw;
    opacity: 0.7;
  }
}

.services__progress {
  position: absolute;
  bottom: clamp(2rem, 8vh, 4rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.6rem;
}

.services__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.services__dot.is-active {
  background: var(--accent);
  transform: scale(1.35);
}

/* ============================================================
   SUCCESS STORIES
   ============================================================ */
.stories {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 12vw, 8rem) 1.25rem;
}

.stories__head {
  max-width: 640px;
  margin-bottom: 3rem;
}

.stories__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 760px) {
  .stories__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   RESOURCES
   ============================================================ */
.resources {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4rem) 1.25rem clamp(4rem, 12vw, 8rem);
}

.resources__head {
  max-width: 640px;
  margin-bottom: 3rem;
}

.resources__grid {
  display: grid;
  gap: 1.5rem;
}

.resource-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.resource-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.1);
}

.resource-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.resource-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.resource-card__body h3 {
  font-size: var(--fs-title);
  font-weight: 800;
}

.resource-card__body p {
  color: var(--ink-soft);
}

.resource-card__body .btn {
  margin-top: 0.5rem;
}

@media (min-width: 760px) {
  .resources__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   MYTHS BUSTED
   ============================================================ */
.myths {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 12vw, 8rem) 1.25rem;
}

.myths__head {
  max-width: 640px;
  margin-bottom: 3rem;
}

.myths__list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.myth {
  background: var(--bg);
  display: flex;
  gap: 1.5rem;
  padding: 2rem clamp(1.25rem, 4vw, 2.5rem);
  align-items: flex-start;
  transition: background 0.3s var(--ease);
}

.myth:hover {
  background: var(--white);
}

.myth__num {
  font-size: var(--fs-headline);
  font-weight: 800;
  color: var(--accent-dark);
  line-height: 1;
  flex-shrink: 0;
}

.myth__title {
  font-size: var(--fs-subhead);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.myth__body p {
  color: var(--ink-soft);
  max-width: var(--measure);
}

@media (min-width: 760px) {
  .myths__list {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--white);
}

.footer__cta {
  text-align: center;
  padding: clamp(4rem, 12vw, 8rem) 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer__title {
  font-size: var(--fs-headline);
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: 16ch;
}

.footer__meta {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-small);
}

.footer__logo {
  font-weight: 800;
  font-size: var(--fs-title);
  color: var(--white);
}

@media (min-width: 760px) {
  .footer__meta {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ============================================================
   Reveal-on-scroll base state (JS adds .is-visible)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

/* If JS/GSAP fails to load, content must still be visible */
.no-js .reveal,
.no-gsap .reveal {
  opacity: 1;
  transform: none;
}

/* ---------- Respect reduced-motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .hero__scroll-arrow {
    animation: none;
  }
}

/* ============================================================
   HERO — extras da copy Viver Leve 360
   ============================================================ */
.hero__highlight {
  font-size: var(--fs-subhead);
  font-weight: 700;
  color: var(--ink);
  max-width: 26ch;
  margin: 0 auto 1.25rem;
}

.hero__highlight,
.hero__pills,
.hero__note {
  position: relative;
}

.hero__pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin: 0 auto 2rem;
  max-width: 620px;
}

.hero__pills li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5em 1.1em;
  font-size: var(--fs-small);
  font-weight: 600;
}

.hero__note {
  margin-top: 1rem;
  font-size: var(--fs-small);
  color: var(--ink-soft);
}

/* ============================================================
   IDENTIFICAÇÃO (dores)
   ============================================================ */
.dores {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(4rem, 12vw, 8rem) 1.25rem;
}

.dores__head {
  margin-bottom: 2.5rem;
}

.dores__intro {
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  max-width: var(--measure);
}

.dores__list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

/* Dor não recebe acento: o limão marca decisão, não sofrimento.
   Definição vem do cartão branco com fio, sobre o fundo pérola. */
.dores__list li {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.25rem 1rem 2.6rem;
  font-weight: 600;
  font-size: var(--fs-body);
}

.dores__list li::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 1.45em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink-soft);
}

.dores__cycle {
  font-size: var(--fs-subhead);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}

.dores__calc {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 5vw, 2.75rem);
  margin-bottom: 2.5rem;
}

.dores__calc p {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
}

.dores__calc-q {
  font-size: var(--fs-lead);
  font-weight: 700;
  color: var(--white) !important;
}

.dores__calc-value {
  font-size: var(--fs-headline);
  font-weight: 800;
  color: var(--accent) !important;
  letter-spacing: -0.02em;
  margin: 0.5rem 0 !important;
}

.dores__truth p {
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.dores__truth strong {
  color: var(--ink);
}

.dores__truth-key {
  font-size: var(--fs-subhead) !important;
  font-weight: 700;
  color: var(--ink) !important;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

/* ============================================================
   A CONTA QUE NINGUÉM FAZ
   ============================================================ */
.conta {
  background: var(--ink);
  color: var(--white);
}

.conta__head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 12vw, 8rem) 1.25rem 2rem;
}

.conta__head .section-title {
  color: var(--white);
}

.conta__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat {
  background: var(--ink);
  padding: 2rem 1.5rem;
  text-align: center;
}

.stat__num {
  display: block;
  font-size: var(--fs-headline);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat__label {
  display: block;
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-small);
}

.conta__total,
.conta__note {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.25rem;
  font-size: var(--fs-lead);
  color: rgba(255, 255, 255, 0.85);
}

.conta__total {
  padding-top: 2.5rem;
}

.conta__total strong {
  color: var(--accent);
}

.conta__note {
  padding-top: 1rem;
  padding-bottom: clamp(4rem, 12vw, 8rem);
}

@media (min-width: 760px) {
  .conta__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================================
   A VERDADE QUE NINGUÉM CONTA
   ============================================================ */
.verdade {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(4rem, 12vw, 8rem) 1.25rem;
}

.verdade__lead {
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  margin-top: 1rem;
}

.verdade__highlight {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--accent);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 5vw, 2.5rem);
  margin: 2.5rem 0;
}

.verdade__pct {
  font-size: var(--fs-figure);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}

.verdade__highlight p {
  font-size: var(--fs-subhead);
  font-weight: 700;
}

.verdade__sub {
  font-size: var(--fs-lead);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.verdade__close {
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}

.verdade__close p {
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.verdade__close strong {
  color: var(--ink);
}

/* Checklist reutilizável (itens com ✓ verde) */
.checklist {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.checklist li {
  position: relative;
  padding-left: 2.25rem;
  font-size: var(--fs-body);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 1.6rem;
  height: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--ink);
  border-radius: 50%;
  font-size: var(--fs-small);
  font-weight: 800;
}

.checklist--lg li {
  font-size: var(--fs-subhead);
  font-weight: 600;
}

/* ============================================================
   O MÉTODO + comparação (reutilizada em "Pra quem é")
   ============================================================ */
.metodo {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 12vw, 8rem) 1.25rem;
}

.metodo__lead {
  font-size: var(--fs-subhead);
  font-weight: 700;
  color: var(--accent-text);
  margin-bottom: 1.25rem;
}

.metodo__intro {
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  max-width: var(--measure);
}

.compare {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

.compare__col {
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 5vw, 2.5rem);
}

.compare__col h3 {
  font-size: var(--fs-title);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.compare__col ul {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.compare__col li {
  position: relative;
  padding-left: 1.9rem;
  font-size: var(--fs-body);
}

.compare__col--bad {
  background: var(--white);
  color: var(--ink-soft);
}

.compare__col--bad li::before {
  content: "✕";
  position: absolute;
  left: 0;
  font-weight: 800;
  color: #c25b5b;
}

.compare__col--good {
  background: var(--ink);
  color: var(--white);
}

.compare__col--good li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 800;
  color: var(--accent);
}

@media (min-width: 760px) {
  .compare {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   QUEM TE ACOMPANHA (Sabrina)
   ============================================================ */
.sabrina {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 12vw, 8rem) 1.25rem;
  display: grid;
  gap: 3rem;
}

.sabrina__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 28%; /* mantém o rosto da Sabrina no quadro */
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.sabrina__role {
  font-weight: 700;
  margin: 0.5rem 0;
}

.sabrina__meta {
  font-size: var(--fs-label);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.sabrina__text p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
  max-width: var(--measure);
}

/* A voz da Sabrina vira painel próprio, não filete lateral. */
.sabrina__knows {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.sabrina__knows li {
  font-weight: 700;
  color: var(--ink);
}

.sabrina__key {
  font-size: var(--fs-lead) !important;
  font-weight: 700;
  color: var(--ink) !important;
}

@media (min-width: 860px) {
  .sabrina {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 4rem;
  }
}

/* ============================================================
   SERVICES / ENTREGÁVEIS — extras (descrição + valor)
   ============================================================ */
.services__panels {
  height: clamp(280px, 52vh, 440px);
}

.services__heading {
  font-size: var(--fs-headline);
}

.services__desc {
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--fs-subhead);
  line-height: 1.5;
}

.services__valor {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(196, 232, 107, 0.4);
  border-radius: 999px;
  padding: 0.4em 1em;
}

/* ============================================================
   INVESTIMENTO / COMPARAÇÃO DE VALOR
   ============================================================ */
.invest {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(4rem, 12vw, 8rem) 1.25rem;
  text-align: center;
}

.invest__strike {
  font-size: var(--fs-small);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.invest__total {
  font-size: var(--fs-figure);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  text-decoration: line-through;
  text-decoration-color: var(--accent-dark);
  margin: 0.5rem 0 1.5rem;
}

.invest__real {
  max-width: var(--measure);
  margin: 0 auto 3rem;
  font-size: var(--fs-lead);
  color: var(--ink-soft);
}

.invest__real strong {
  color: var(--ink);
}

.invest__table {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: left;
  margin-bottom: 3rem;
}

.invest__row {
  background: var(--white);
  display: grid;
  gap: 0.25rem;
  padding: 1.5rem;
}

.invest__opt {
  font-weight: 700;
}

.invest__price {
  font-size: var(--fs-title);
  font-weight: 800;
  color: var(--ink);
}

.invest__desc {
  color: var(--ink-soft);
  font-size: var(--fs-small);
}

.invest__row--highlight {
  background: var(--accent);
}

.invest__row--highlight .invest__price,
.invest__row--highlight .invest__desc {
  color: var(--ink);
}

@media (min-width: 720px) {
  .invest__row {
    grid-template-columns: 1.4fr 1fr 1.2fr;
    align-items: center;
    gap: 1.5rem;
  }
  .invest__price {
    text-align: center;
  }
  .invest__desc {
    text-align: right;
  }
}

.stories__seals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.stories__seals span {
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.6em 1.1em;
}

/* ============================================================
   PRA QUEM É
   ============================================================ */
.fit {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 12vw, 8rem) 1.25rem;
}

.fit__head {
  max-width: 640px;
  margin-bottom: 3rem;
}

.fit__cols {
  display: grid;
  gap: 1.5rem;
}

.fit__col {
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 5vw, 2.5rem);
}

.fit__col h3 {
  font-size: var(--fs-title);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.fit__col ul {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.fit__col li {
  position: relative;
  padding-left: 1.9rem;
  font-size: var(--fs-body);
}

.fit__col--yes {
  background: var(--ink);
  color: var(--white);
}

.fit__col--yes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 800;
  color: var(--accent);
}

.fit__col--no {
  background: var(--white);
  color: var(--ink-soft);
}

.fit__col--no li::before {
  content: "✕";
  position: absolute;
  left: 0;
  font-weight: 800;
  color: #c25b5b;
}

.fit__note {
  margin-top: 2.5rem;
  font-size: var(--fs-lead);
  font-weight: 600;
  text-align: center;
  max-width: var(--measure);
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 760px) {
  .fit__cols {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

/* ============================================================
   SEM RISCO (passos)
   ============================================================ */
.risco {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(4rem, 12vw, 8rem) 1.25rem;
}

.risco__lead {
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  margin-top: 1rem;
}

.steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 1.25rem;
  margin: 2.5rem 0;
}

.step {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.step__num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--ink);
  border-radius: 50%;
  font-weight: 800;
  font-size: var(--fs-title);
}

.step p {
  font-size: var(--fs-lead);
  font-weight: 600;
}

.risco__close {
  font-size: var(--fs-lead);
  color: var(--ink-soft);
}

.risco__close strong {
  color: var(--ink);
}

/* ============================================================
   DÚVIDAS FREQUENTES (accordion nativo)
   ============================================================ */
.faq {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(4rem, 12vw, 8rem) 1.25rem;
}

.faq__head {
  margin-bottom: 2.5rem;
}

.faq__list {
  display: grid;
  gap: 1rem;
}

.faq__item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.5rem 1.5rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  font-size: var(--fs-lead);
  font-weight: 700;
  padding: 1.1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--ink);
  border-radius: 50%;
  font-size: var(--fs-title);
  font-weight: 700;
  transition: transform 0.3s var(--ease);
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

.faq__item p {
  color: var(--ink-soft);
  padding: 0 0 1.25rem;
  max-width: var(--measure);
}

/* ============================================================
   IMAGINE
   ============================================================ */
.imagine {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(4rem, 12vw, 8rem) 1.25rem;
  text-align: center;
}

.imagine__head {
  margin-bottom: 2.5rem;
}

.imagine .checklist {
  text-align: left;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.imagine__close {
  font-size: var(--fs-subhead);
  font-weight: 700;
  max-width: 28ch;
  margin: 0 auto 2rem;
}

.imagine__note {
  margin-top: 1rem;
  font-size: var(--fs-small);
  color: var(--ink-soft);
}

/* ============================================================
   SUA DECISÃO
   ============================================================ */
.decisao {
  background: var(--ink);
  color: var(--white);
}

.decisao__head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 12vw, 8rem) 1.25rem 2rem;
}

.decisao__head .section-title {
  color: var(--white);
}

.decisao__cols {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.25rem clamp(4rem, 12vw, 8rem);
  display: grid;
  gap: 1.5rem;
}

.decisao__col {
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 5vw, 2.5rem);
}

.decisao__label {
  display: inline-block;
  font-size: var(--fs-label);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.decisao__col--a {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
}

.decisao__col--b {
  background: var(--accent);
  color: var(--ink);
}

.decisao__col--b .btn {
  margin-top: 1.5rem;
  background: var(--ink);
  color: var(--white);
}

.decisao__col--b .btn:hover {
  background: #000;
}

@media (min-width: 760px) {
  .decisao__cols {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   VAGAS LIMITADAS
   ============================================================ */
.vagas {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(4rem, 12vw, 8rem) 1.25rem;
  text-align: center;
}

.vagas__lead {
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  max-width: var(--measure);
  margin: 1rem auto 0;
}

.vagas__counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 3rem 0 1.5rem;
}

.vagas__big {
  font-size: clamp(5rem, 22vw, 11rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--accent-text);
}

.vagas__small {
  font-size: var(--fs-lead);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.vagas__window {
  font-size: var(--fs-lead);
  font-weight: 600;
  max-width: 40ch;
  margin: 0 auto 2.5rem;
}

.vagas__open {
  max-width: 560px;
  margin: 0 auto 2.5rem;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem clamp(1.5rem, 5vw, 2.5rem);
  text-align: center;
}

.vagas__open-label {
  display: block;
  font-size: var(--fs-label);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.vagas__open-text {
  font-size: var(--fs-body);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.vagas__note {
  margin-top: 1rem;
  font-size: var(--fs-small);
  color: var(--ink-soft);
}

/* ============================================================
   ENTREGÁVEIS no MOBILE/TABLET — cards empilhados (sem pin)
   Casa com o gsap.matchMedia("(max-width: 859px)") do script.js
   ============================================================ */
@media (max-width: 859px) {
  .services__sticky {
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: clamp(3.5rem, 12vw, 5rem) 1.25rem;
  }

  /* Fotos dos cantos sairiam do fluxo e sobreporiam os cards: ocultar. */
  .services__photos {
    display: none;
  }

  .services__eyebrow {
    position: static;
    transform: none;
    margin-bottom: 2rem;
  }

  .services__panels {
    height: auto;
    max-width: 540px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .services__panel {
    position: static;
    inset: auto;
    opacity: 1;
    align-items: flex-start;
    text-align: left;
    gap: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-lg);
    padding: 1.6rem;
  }

  .services__badge {
    width: 52px;
    height: 52px;
    font-size: var(--fs-lead);
  }

  .services__heading {
    font-size: var(--fs-subhead);
    max-width: none;
  }

  .services__desc {
    max-width: none;
  }

  /* Dots de progresso não fazem sentido na lista estática. */
  .services__progress {
    display: none;
  }
}

/* ============================================================
   BÔNUS (value stack)
   ============================================================ */
.bonus {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 12vw, 8rem) 1.25rem;
}

.bonus__head {
  max-width: 720px;
  margin-bottom: 3rem;
}

.bonus__lead {
  font-size: var(--fs-lead);
  font-weight: 600;
  color: var(--accent-text);
  margin-top: 1rem;
}

.bonus__grid {
  display: grid;
  gap: 1.25rem;
}

.bonus-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2rem);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.bonus-card__tag {
  background: var(--accent);
  color: var(--ink);
  font-size: var(--fs-label);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4em 0.9em;
  border-radius: 999px;
}

.bonus-card h3 {
  font-size: var(--fs-title);
  font-weight: 800;
  line-height: 1.15;
}

.bonus-card p {
  color: var(--ink-soft);
  flex-grow: 1;
}

.bonus-card__valor {
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--ink);
  text-decoration: line-through;
  text-decoration-color: var(--accent-dark);
}

.bonus__total {
  margin-top: 2.5rem;
  text-align: center;
  font-size: var(--fs-subhead);
  font-weight: 800;
  letter-spacing: -0.02em;
}

@media (min-width: 680px) {
  .bonus__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 980px) {
  .bonus__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================================
   GARANTIA / REVERSÃO DE RISCO
   ============================================================ */
.garantia {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4rem) 1.25rem clamp(4rem, 12vw, 7rem);
}

.garantia__card {
  position: relative;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 6vw, 3.5rem);
  text-align: center;
  overflow: hidden;
}

.garantia__card::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 2px dashed rgba(196, 232, 107, 0.4);
  border-radius: calc(var(--radius-lg) - 4px);
  pointer-events: none;
}

.garantia__seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 1.25rem;
  background: var(--accent);
  color: var(--ink);
  border-radius: 50%;
  font-size: var(--fs-title);
  font-weight: 800;
}

.garantia__title {
  font-size: var(--fs-headline);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0.75rem 0 1.25rem;
}

.garantia__text {
  font-size: var(--fs-lead);
  color: rgba(255, 255, 255, 0.85);
  max-width: var(--measure);
  margin: 0 auto 1rem;
}

.garantia__text strong {
  color: var(--accent);
}

.garantia__note {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.6);
  max-width: var(--measure);
  margin: 0 auto;
}

/* ============================================================
   PROVA DO MECANISMO — texto + mockup de WhatsApp
   ============================================================ */
.prova {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 12vw, 8rem) 1.25rem;
  display: grid;
  gap: 3rem;
}

.prova__text p {
  color: var(--ink-soft);
  font-size: var(--fs-lead);
  margin: 1rem 0 1.5rem;
  max-width: var(--measure-lead);
}

@media (min-width: 860px) {
  .prova {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 4rem;
  }
}

/* --- Phone mockup --- */
.phone {
  width: 100%;
  max-width: 330px;
  margin: 0 auto;
  background: #0b0b0b;
  border-radius: 38px;
  padding: 14px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
  position: relative;
}

.phone__notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 22px;
  background: #0b0b0b;
  border-radius: 0 0 14px 14px;
  z-index: 3;
}

.phone__bar {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--ink);
  color: var(--white);
  border-radius: 26px 26px 0 0;
  padding: 1.4rem 1rem 0.8rem;
}

.phone__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: var(--fs-label);
}

.phone__bar strong {
  display: block;
  font-size: var(--fs-small);
}

.phone__bar small {
  color: var(--accent);
  font-size: var(--fs-label);
}

.phone__chat {
  background: #ece5dd;
  padding: 1rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.bubble {
  max-width: 82%;
  padding: 0.6rem 0.8rem;
  border-radius: 14px;
  font-size: var(--fs-small);
  line-height: 1.35;
  color: var(--ink);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}

.bubble--in {
  align-self: flex-start;
  background: var(--white);
  border-top-left-radius: 4px;
}

.bubble--out {
  align-self: flex-end;
  background: var(--accent);
  border-top-right-radius: 4px;
}

.phone__caption {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  font-size: var(--fs-label);
  padding: 0.7rem;
  border-radius: 0 0 26px 26px;
}

/* ============================================================
   DEPOIMENTOS EM VÍDEO (fachada: player carrega só no clique)
   ============================================================ */
.depo__intro {
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.depo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.depo {
  margin: 0;
  min-width: 0;
}

/* O gatilho é o próprio cartão: capa + botão de play sobreposto */
.depo__trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.depo__trigger:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.1);
}

.depo__trigger:focus-visible {
  outline: 3px solid var(--accent-dark);
  outline-offset: 3px;
}

.depo__trigger img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
}

/* Véu suave: uniformiza capas de frames diferentes */
.depo__trigger::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0) 45%,
    rgba(0, 0, 0, 0.35) 100%
  );
  pointer-events: none;
}

.depo__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: clamp(52px, 13vw, 68px);
  height: clamp(52px, 13vw, 68px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.depo__trigger:hover .depo__play {
  background: var(--accent-dark);
  transform: translate(-50%, -50%) scale(1.08);
}

.depo__play svg {
  width: 45%;
  height: 45%;
  fill: var(--ink);
  margin-left: 8%; /* centro óptico do triângulo */
}

/* Player injetado no lugar da capa */
.depo__trigger video,
.depo video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  background: #000;
}

.depo figcaption {
  margin-top: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  text-align: center;
}

.depo figcaption strong {
  font-size: var(--fs-body);
  font-weight: 800;
}

@media (min-width: 860px) {
  .depo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ============================================================
   RODAPÉ (simplificado)
   ============================================================ */
.footer {
  /* espaço extra para a barra fixa não cobrir o © no mobile */
  padding-bottom: 4.5rem;
}

.footer__logo span {
  color: var(--accent);
}

@media (min-width: 860px) {
  .footer {
    padding-bottom: 0;
  }
}

/* ============================================================
   BOTÃO OUTLINE (planos secundários)
   ============================================================ */
.btn--outline {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--ink);
}

.btn--outline:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-3px);
}

/* ============================================================
   PLANOS / INVESTIMENTO (preço aberto)
   ============================================================ */
.precos {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 12vw, 8rem) 1.25rem;
}

.precos__head {
  max-width: 720px;
  margin-bottom: 3.5rem;
}

.precos__anchor {
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  margin-top: 1rem;
}

.precos__anchor s {
  color: var(--ink);
  font-weight: 700;
  text-decoration-color: var(--accent-dark);
}

.precos__grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

.plano {
  position: relative;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.plano--destaque {
  border-color: var(--accent);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.plano__selo {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--ink);
  font-size: var(--fs-label);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0.45em 1em;
  border-radius: 999px;
}

.plano__selo--alt {
  background: var(--ink);
  color: var(--white);
}

.plano__nome {
  font-size: var(--fs-title);
  font-weight: 800;
  margin-top: 0.6rem;
}

.plano__desc {
  color: var(--ink-soft);
  min-height: 3em;
}

.plano__preco {
  font-size: var(--fs-headline);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 0.75rem;
}

.plano__cifrao {
  font-size: 0.42em;
  font-weight: 700;
  vertical-align: super;
  margin-right: 0.15em;
  color: var(--ink-soft);
}

.plano__parc {
  color: var(--accent-text);
  font-weight: 700;
  margin-bottom: 1rem;
}

.plano__lista {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  margin: 0.5rem 0 1.75rem;
}

.plano__lista li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--ink-soft);
  font-size: var(--fs-small);
}

.plano__lista li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-weight: 800;
}

.plano__cta {
  margin-top: auto;
  width: 100%;
}

.precos__nota {
  text-align: center;
  max-width: var(--measure);
  margin: 2.5rem auto 0;
  color: var(--ink-soft);
  font-size: var(--fs-small);
}

@media (min-width: 920px) {
  .precos__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  /* Destaca o plano principal elevando-o levemente. */
  .plano--destaque {
    transform: scale(1.04);
  }
}

/* ============================================================
   HERO — barra de confiança (prova social: 4.000+ / 7 anos / CRN)
   ============================================================ */
.hero__trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.4rem;
  margin-top: 1.75rem;
  font-size: var(--fs-small);
  color: var(--ink-soft);
}

.hero__trust li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__trust li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.hero__trust strong {
  color: var(--ink);
  font-weight: 800;
}

/* ============================================================
   HERO DIVIDIDO — texto + foto da Sabrina (substitui os pratos)
   ============================================================ */
.hero__inner {
  width: 100%;
  max-width: var(--maxw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* O scrim radial era para o texto sobre os pratos; não é mais preciso. */
.hero__content::before {
  display: none;
}

.hero__figure {
  margin: 0;
  position: relative;
  width: 100%;
  max-width: 220px;
  /* No mobile a promessa vem primeiro: quem chega do anuncio precisa ler
     o titulo e ver o botao antes de qualquer foto. */
  order: 1;
}

.hero__figure img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 20%;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

.hero__figure-cap {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  border-radius: 14px;
  padding: 0.55rem 0.9rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.hero__figure-cap strong {
  font-weight: 800;
  font-size: var(--fs-small);
}

.hero__figure-cap span {
  font-size: var(--fs-label);
  color: var(--ink-soft);
}

@media (min-width: 860px) {
  .hero__inner {
    flex-direction: row;
    align-items: center;
    gap: 3.5rem;
  }
  .hero__content {
    flex: 1;
    align-items: flex-start;
    text-align: left;
  }
  /* No layout dividido a coluna de texto é mais estreita: o título
     precisa de um teto menor para não virar um paredão de 6 linhas. */
  .hero__title {
    font-size: clamp(2.8rem, 4.8vw, 4.5rem);
    line-height: 1.02;
  }
  /* Aperto fino para o CTA caber na primeira dobra em telas ~900px. */
  .hero {
    padding-top: clamp(5.5rem, 9vh, 7.5rem);
  }
  .hero__title {
    margin: 0.7rem 0 0.8rem;
  }
  .hero__highlight {
    font-size: var(--fs-subhead);
    margin-bottom: 1rem;
  }
  .hero__sub {
    margin-bottom: 1.4rem;
  }
  .hero__pills {
    margin-bottom: 1.4rem;
  }
  /* No split, os textos deixam de ser centralizados. */
  .hero__highlight,
  .hero__sub,
  .hero__pills {
    margin-left: 0;
    margin-right: 0;
  }
  .hero__figure {
    order: 0;
    flex-shrink: 0;
    max-width: 420px;
  }
  .hero__figure img {
    aspect-ratio: 4 / 5;
  }
}

/* ============================================================
   GARANTIA — passos "como entrar" (fusão da antiga seção Sem risco)
   ============================================================ */
.garantia__como {
  margin-top: 3rem;
}

.garantia__como-title {
  font-size: var(--fs-subhead);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 1.75rem;
}

.garantia__como .steps {
  margin: 0 0 1.75rem;
}

.garantia__como-close {
  font-size: var(--fs-body);
  color: var(--ink-soft);
  text-align: center;
  max-width: var(--measure);
  margin: 0 auto;
}

.garantia__como-close strong {
  color: var(--ink);
}

/* Disclaimer honesto sob os depoimentos (desarma a leitora cética) */
.stories__disclaimer {
  text-align: center;
  font-size: var(--fs-small);
  color: var(--ink-soft);
  margin-top: 2rem;
  font-style: italic;
}

/* ============================================================
   ESCASSEZ — "apenas 5 vagas por mês" (hero + preços)
   ============================================================ */
.hero__scarcity {
  display: inline-block;
  margin-top: 1rem;
  background: var(--white);
  border: 1px solid var(--accent-dark);
  border-radius: 999px;
  padding: 0.5em 1.1em;
  font-size: var(--fs-small);
  color: var(--ink);
}

.hero__scarcity strong {
  color: var(--accent-text);
}

.precos__escassez {
  max-width: 620px;
  margin: 0 auto 2.5rem;
  text-align: center;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-size: var(--fs-body);
  line-height: 1.45;
}

.precos__escassez strong {
  color: var(--accent);
}

/* Links legais no rodapé */
.footer__meta a {
  color: var(--accent);
  text-decoration: underline;
}

/* ============================================================
   BARRA FIXA DE CONVERSÃO (mobile)
   A página é longa; sem isso o celular ficava sem conversão
   persistente depois que o herói saía da tela.
   ============================================================ */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(239, 239, 239, 0.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  padding: 0.7rem 1rem;
  transform: translateY(110%);
  transition: transform 0.35s var(--ease);
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta__info {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.sticky-cta__info strong {
  font-size: var(--fs-small);
}

.sticky-cta__info span {
  color: var(--accent-text);
  font-size: var(--fs-label);
  font-weight: 700;
}

@media (min-width: 860px) {
  .sticky-cta {
    display: none;
  }
}

/* ============================================================
   ALVOS DE TOQUE: mínimo confortável de 44px
   Público 40+ no celular, muitas vezes com uma mão só.
   O piso do .btn vive na própria regra base; aqui ficam só os
   links que não são botões.
   ============================================================ */
.footer__meta a,
.faq__item summary,
.nav__links a {
  display: inline-block;
  padding-block: 0.45em;
}

/* ============================================================
   HERO MOBILE: a promessa e o botão cabem na primeira tela.
   O parágrafo longo e as pílulas descem para depois do CTA,
   porque quem vem do anúncio decide pelo título, não pelo detalhe.
   ============================================================ */
@media (max-width: 899px) {
  .hero__content > .badge { order: 0; }
  .hero__title { order: 1; }
  .hero__highlight { order: 2; }
  .hero__cta { order: 3; margin-top: 0.5rem; }
  .hero__note { order: 4; }
  .hero__scarcity { order: 5; }
  .hero__sub { order: 6; margin-top: 1.5rem; margin-bottom: 1rem; }
  .hero__pills { order: 7; }
  .hero__trust { order: 8; }
  .hero__figure { order: 9; }

  .hero {
    padding-top: clamp(5.5rem, 11vh, 7rem);
  }
}

/* Links do rodapé com altura de toque confortável (público 40+) */
.footer__meta a {
  padding-block: 0.7em;
}

/* ============================================================
   RITMO DE LEITURA
   Entrelinha por papel, medida única para texto corrido.
   ============================================================ */
body {
  line-height: var(--lh-body);
}

.hero__title,
.banner__quote {
  line-height: var(--lh-display);
}

.section-title {
  line-height: var(--lh-headline);
}

/* Bloco escuro: mesma compensação do mundo Noite */
.conta p,
.decisao__col p,
.garantia__text,
.services__desc {
  line-height: 1.62;
  letter-spacing: 0.006em;
}

/* ============================================================
   MEDIDA DE LEITURA
   Linha longa demais faz o olho perder o começo da próxima.
   Estes blocos corriam soltos até 130 caracteres.
   ============================================================ */
.conta__total,
.conta__note,
.dores__truth p,
.verdade__close p,
.fit__note,
.hero__note {
  max-width: var(--measure);
}

.conta__total,
.conta__note,
.fit__note {
  margin-left: auto;
  margin-right: auto;
}

.footer__meta p {
  max-width: 70ch;
}

/* As duas últimas linhas que ainda corriam além do confortável */
.fit__note { max-width: 66ch; }
.footer__meta p { max-width: 62ch; }

/* O título maior abriu a hierarquia mas empurrou o botão para fora
   da dobra no desktop. O espaço cede antes do tamanho. */
@media (min-width: 900px) {
  .hero__title { margin: 0.5rem 0 0.6rem; }
  .hero__highlight { margin-bottom: 0.8rem; }
  .hero__sub { margin-bottom: 1.1rem; }
  .hero__pills { margin-bottom: 1.1rem; }
}

/* Desktop: as pílulas descem para depois do botão, como no mobile.
   Detalhe do produto não pode empurrar a ação para fora da dobra. */
@media (min-width: 900px) {
  .hero__content { display: flex; flex-direction: column; align-items: flex-start; }
  .hero__content > .badge { order: 0; }
  .hero__title { order: 1; }
  .hero__highlight { order: 2; }
  .hero__cta { order: 3; }
  .hero__note { order: 4; }
  .hero__scarcity { order: 5; }
  .hero__sub { order: 6; margin-top: 1.5rem; }
  .hero__pills { order: 7; }
  .hero__trust { order: 8; }
}

/* ============================================================
   FOCO VISÍVEL
   Quem navega por teclado precisa saber onde está. O anel padrão
   do navegador some sobre as pílulas de acento; este é explícito
   e usa o grafite da marca, que contrasta com lime e com branco.
   ============================================================ */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  border-radius: 4px;
}

.btn:focus-visible {
  outline-offset: 4px;
  border-radius: 999px;
}

/* Sobre os blocos escuros, o anel inverte para continuar visível */
.conta a:focus-visible,
.decisao a:focus-visible,
.services a:focus-visible,
.footer a:focus-visible,
.garantia__card a:focus-visible {
  outline-color: var(--accent);
}

/* ============================================================
   OUTROS CAMINHOS (escada de valor)
   A escada precisa descer, não só subir. Quem chega no 360 e
   trava no preço tinha, até aqui, apenas a saída de fechar a
   aba. Estes dois degraus são um convite, não um consolo:
   ficam depois do "pra quem é", já com a decisão informada.
   ============================================================ */
.degraus {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3.5rem, 9vh, 6rem) 1.25rem;
}

.degraus__head {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.degraus__lead {
  font-size: var(--fs-lead);
  line-height: var(--lh-body);
  color: var(--ink-soft);
  max-width: var(--measure-lead);
}

.degraus__grid {
  display: grid;
  gap: 1.25rem;
}

.degrau {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.degrau:hover {
  transform: translateY(-4px);
  border-color: var(--accent-dark);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.degrau__preco {
  font-size: var(--fs-title);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--accent-text);
}

.degrau__preco span {
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0;
}

.degrau__nome {
  font-size: var(--fs-title);
  font-weight: 800;
  line-height: var(--lh-title);
  letter-spacing: -0.02em;
}

.degrau__desc {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink-soft);
  max-width: var(--measure);
}

.degrau__link {
  margin-top: 0.4rem;
  font-size: var(--fs-small);
  font-weight: 800;
  color: var(--ink);
}

@media (min-width: 760px) {
  .degraus {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .degraus__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
