/* ============================================================
   MÉTODO FPC — 21 dias · resistência à insulina
   Arquitetura herdada da versão final da /tg.
   Display: Manrope · Corpo: Inter · Labels: IBM Plex Mono
   Cores da marca preservadas: #990A0A / #660000 (vermelho), #007852 (verde)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400..800&family=Inter:wght@400..700&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root {
  --paper: #FBF8F3;
  --paper-2: #F4EEE4;
  --white: #FFFFFF;
  --ink: #1C1412;
  --ink-soft: #58504A;
  --line: #E4DACB;
  --line-dark: rgba(255, 244, 230, 0.14);

  --red: #990A0A;
  --red-deep: #660000;
  --red-bright: #C21818;
  --red-glow: #FF2226;
  --red-tint: #F7E8E4;

  --green: #007852;
  --green-deep: #045f40;
  --green-tint: #E7F2EC;

  --gold: #D9A62E;

  --dark: #171010;
  --dark-2: #211715;

  --font-display: 'Manrope', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  --shadow-sm: 0 1px 2px rgba(28, 20, 18, 0.06), 0 4px 12px rgba(28, 20, 18, 0.05);
  --shadow-md: 0 2px 6px rgba(28, 20, 18, 0.07), 0 16px 40px rgba(28, 20, 18, 0.10);
  --shadow-lg: 0 8px 24px rgba(28, 20, 18, 0.12), 0 32px 80px rgba(102, 0, 0, 0.14);

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

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  /* Inter tem altura-x maior que a Source Serif 4 da /tg:
     1.15rem aqui equivale opticamente ao 1.24rem de lá */
  font-size: 1.15rem;
  line-height: 1.66;
  letter-spacing: -0.006em;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
/* o navegador dá 40px de margem lateral a <figure> por padrão:
   isso encolhia as imagens sem motivo */
figure { margin: 0; }
ul, ol { margin: 0; }

.container { width: min(100%, 1240px); margin: 0 auto; padding: 0 28px; }

/* página mais curta: é low ticket, o scroll precisa ser rápido */
section { padding: clamp(38px, 2.4vw + 24px, 58px) 0; position: relative; }

/* títulos: text-wrap balance evita palavra órfã na última linha.
   Manrope é geométrica, pede tracking mais fechado que a Bricolage */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.028em;
  margin: 0 0 0.55em;
  text-wrap: balance;
}
h2 { font-size: clamp(1.9rem, 1.25rem + 2.5vw, 2.85rem); }
h3 { font-size: clamp(1.35rem, 1.08rem + 0.95vw, 1.75rem); }
p  { margin: 0 0 1.1em; }
em { font-style: italic; }
strong { font-weight: 600; }

.txt-red { color: var(--red); }
.serif-i { font-style: italic; font-weight: 700; }

.section-head { max-width: 820px; margin: 0 auto 32px; text-align: center; }
.section-head p { color: var(--ink-soft); font-size: 1.06rem; max-width: 660px; margin-left: auto; margin-right: auto; }

/* referência científica (superscript) */
.ref {
  font-family: var(--font-mono);
  font-size: 0.58em;
  font-weight: 600;
  vertical-align: super;
  color: var(--red);
  text-decoration: none;
  padding: 0 1px;
}
.ref:hover { text-decoration: underline; }

/* granulado sutil (papel) */
.grain::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.05'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- animações de entrada ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(4px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out), filter 0.65s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 80ms);
  will-change: opacity, transform, filter;
}
.js .reveal.is-visible { opacity: 1; transform: none; filter: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .sym-track { animation: none !important; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---------- barra de progresso ---------- */
.progress { position: fixed; top: 0; left: 0; width: 100%; max-width: 100vw; height: 3px; z-index: 90; }
.progress span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--red-deep), var(--red-bright));
  transform-origin: 0 50%;
  transform: scaleX(0);
}

/* ---------- botões ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  padding: 24px 52px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.btn-primary {
  background: linear-gradient(180deg, #008B5F 0%, var(--green-deep) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 96, 66, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0, 96, 66, 0.4), inset 0 1px 0 rgba(255,255,255,0.22); }
.btn-primary:active { transform: translateY(0); }
.btn-primary::after {
  content: "";
  position: absolute; top: 0; bottom: 0; left: -80%;
  width: 50%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  animation: sheen 4.5s var(--ease-out) infinite;
}
@keyframes sheen {
  0%, 55% { left: -80%; }
  75%, 100% { left: 130%; }
}
.btn svg { flex-shrink: 0; }

/* ---------- HERO ---------- */
.hero {
  background:
    radial-gradient(52% 44% at 50% 0%, rgba(153, 10, 10, 0.07), transparent 70%),
    radial-gradient(40% 34% at 88% 20%, rgba(217, 166, 46, 0.08), transparent 70%),
    var(--paper);
  padding: clamp(44px, 3.4vw + 24px, 68px) 0 clamp(34px, 2.6vw + 20px, 52px);
  text-align: center;
}
.hero h1 {
  font-size: clamp(2.35rem, 1.4rem + 3.8vw, 4.1rem);
  font-weight: 800;
  max-width: 1000px;
  margin: 0 auto 24px;
}
.hero h1 .accent { color: var(--red); }
.hero .sub {
  font-size: clamp(1.16rem, 1.02rem + 0.6vw, 1.38rem);
  color: var(--ink-soft);
  max-width: 820px;
  margin: 0 auto 16px;
}
.hero .sub strong { color: var(--ink); font-weight: 600; }
.hero .promise {
  font-size: clamp(1.06rem, 0.98rem + 0.4vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 760px;
  margin: 0 auto 28px;
}

/* imagem do hero: crua, proporcional ao texto, badges vêm depois */
.hero-figure {
  position: relative;
  max-width: 820px;
  margin: 0 auto 26px;
  padding: 0;
}
.hero-figure img {
  width: 100%;
  animation: heroRise 1.1s var(--ease-out) both, heroFloat 7s ease-in-out 1.1s infinite alternate;
}
@keyframes heroRise {
  from { opacity: 0; transform: translateY(38px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}
@keyframes heroFloat {
  from { transform: translateY(0); }
  to   { transform: translateY(-12px); }
}

.hero-chips {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px 34px;
  margin: 0 0 8px;
  padding-bottom: 4px;
}
.hero-chips span {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 9px;
}
.hero-chips svg { color: var(--green); flex-shrink: 0; }

/* ---------- SINAIS NO CORPO — carrossel em loop infinito ---------- */
.symptoms-gallery {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
/* a viewport sangra até a borda da tela: o loop fica mais natural
   do que preso na largura do container */
/* rola sozinho, mas quem quiser adiantar pode arrastar.
   Fica preso à largura do container: em tela larga, sangrando até a
   borda, o set inteiro (2148px) cabia na viewport e o mesmo sintoma
   aparecia duas vezes ao mesmo tempo. */
.sym-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}
.sym-viewport::-webkit-scrollbar { display: none; }
.sym-track {
  display: flex;
  width: max-content;
  animation: symLoop 46s linear infinite;
}
/* o padding-right do set repõe o gap depois do último card,
   assim translateX(-50%) fecha o ciclo sem salto */
.sym-set {
  display: flex;
  gap: 18px;
  padding-right: 18px;
}
@keyframes symLoop {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
/* pausa ao passar o mouse ou enquanto a pessoa arrasta */
.sym-viewport:hover .sym-track,
.sym-viewport:active .sym-track,
.sym-viewport:focus-within .sym-track { animation-play-state: paused; }
.sym-card {
  flex: 0 0 340px;
  width: 340px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

/* ---------- PROVA SOCIAL ---------- */
.proof { background: var(--white); }
/* duas colunas: em três os depoimentos ficavam pequenos demais para ler */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}
.proof-grid img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.35s var(--ease-out);
}
.proof-grid img:hover { transform: translateY(-5px); }

/* ---------- FRASES / PENSAMENTOS (dor) ---------- */
.thoughts { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.thoughts .container { max-width: 1000px; }
.thoughts-figure { max-width: 860px; margin: 0 auto 30px; }
.thoughts-figure img { width: 100%; }
.verdict {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.15rem + 1.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.028em;
  max-width: 780px;
  margin: 0 auto;
  text-wrap: balance;
}
.verdict .hl { color: var(--red); }

/* ---------- SINTOMAS EXPLICADOS ---------- */
.explained { background: var(--white); }
.explained .intro { max-width: 900px; margin: 0 auto 38px; text-align: center; }
/* afirmação de abertura: deliberadamente menor que o H2 que vem depois */
.explained .affirm {
  font-family: var(--font-display);
  font-size: clamp(1rem, 0.94rem + 0.3vw, 1.14rem);
  font-weight: 600;
  color: var(--ink-soft);
  border-left: 3px solid var(--red);
  padding-left: 14px;
  text-align: left;
  display: inline-block;
  margin: 0 0 18px;
}
/* e o H2 é maior que o padrão da página: é a virada do argumento */
.explained .intro h2 {
  font-size: clamp(2.05rem, 1.32rem + 2.75vw, 3.1rem);
  margin-bottom: 0.5em;
}
.explained .intro .lead {
  color: var(--ink-soft);
  font-size: 1.1rem;
  margin: 0;
}

/* cada sinal é uma foto com a frase logo abaixo */
.signs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto 38px;
}
.sign {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.sign:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
/* proporção exata do arquivo (1755x2194): reserva a altura e evita
   salto de layout sem cortar nada. O 4/3 anterior comia justamente
   a barriga, o braço e o pescoço que as fotos mostram. */
.sign img { width: 100%; aspect-ratio: 1755 / 2194; object-fit: cover; }
.sign figcaption {
  position: relative;
  padding: 22px 22px 24px;
  font-size: 1.02rem;
  line-height: 1.45;
  font-weight: 500;
  color: var(--ink);
  text-align: center;
}
/* tracinho vermelho separando a foto da frase */
.sign figcaption::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 34px; height: 3px;
  border-radius: 999px;
  background: var(--red);
}

.verdict-box {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--line);
  outline: 1px solid var(--line);
  outline-offset: 6px;
  border-radius: 18px;
  padding: 30px 34px;
  box-shadow: var(--shadow-sm);
}
.verdict-box .big {
  font-family: var(--font-display);
  font-size: clamp(1.34rem, 1.06rem + 1.2vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.24;
  margin: 0 0 12px;
  text-wrap: balance;
}
.verdict-box .warn { color: var(--red); }
.verdict-box .small { color: var(--ink-soft); font-size: 1.02rem; margin: 0; }

/* ---------- URGÊNCIA (escuro) ---------- */
.urgency { background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%); color: #F4E9DC; text-align: center; }
.urgency h2 { color: #FFF8EE; max-width: 860px; margin-left: auto; margin-right: auto; }
.urgency .lead { max-width: 700px; margin: 0 auto 0.9em; color: rgba(244, 233, 220, 0.88); font-size: 1.12rem; }
.urgency .lead strong { color: #FFF8EE; }
.cost-list { list-style: none; padding: 0; max-width: 460px; margin: 22px auto 26px; text-align: left; }
.cost-list li {
  display: flex; align-items: center; gap: 16px;
  padding: 11px 0;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--line-dark);
}
.cost-list li:last-child { border-bottom: none; }
.cost-list .x {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(194, 24, 24, 0.18); color: #FF8B7A;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.urgency .good {
  background: var(--paper);
  color: var(--ink);
  border: 2px dashed var(--green);
  border-radius: 16px;
  padding: 24px 32px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  font-size: 1.06rem;
}
.urgency .good strong { color: var(--green); }

/* ---------- SOLUÇÃO (coluna única, imagem centralizada) ---------- */
/* branca porque a arte do antes/depois tem fundo branco:
   em fundo bege aparecia o retângulo da imagem */
.solution { background: var(--white); }
.solution-inner { max-width: 880px; margin: 0 auto; }
.solution-figure { margin: 0 auto 30px; max-width: 760px; }
/* a sombra já vinha embutida no arquivo e foi removida da arte;
   aqui fica só a imagem, sem caixa nem sombra por baixo */
.solution-figure img { width: 100%; border-radius: 16px; }
.solution-note { color: var(--ink-soft); text-align: center; max-width: 760px; margin: 0 auto 24px; }

.science-box {
  display: flex; align-items: center; gap: 24px;
  /* base própria: em cima do branco da seção precisa se destacar */
  background: var(--green-tint);
  border: 1px solid rgba(0, 120, 82, 0.28);
  border-left: 5px solid var(--green);
  border-radius: 14px;
  padding: 22px 26px;
  margin: 0 auto 24px;
  max-width: 760px;
  box-shadow: var(--shadow-sm);
}
.science-box .stat {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.45rem + 1.7vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--green);
  line-height: 1;
  flex-shrink: 0;
}
.science-box p { margin: 0; font-size: 1rem; color: var(--ink-soft); }

.remember {
  background: var(--red-tint);
  border-radius: 14px;
  padding: 22px 26px;
  border-left: 5px solid var(--red);
  max-width: 760px;
  margin: 0 auto;
}
.remember strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.06rem;
  color: var(--red);
  margin-bottom: 6px;
}
.remember p { margin: 0; font-size: 1rem; color: var(--ink-soft); }

/* ---------- FAIXA DE TRANSIÇÃO ---------- */
.band {
  background: linear-gradient(120deg, var(--red-deep) 0%, var(--red) 55%, #7A0606 100%);
  color: #FFF4E6;
  text-align: center;
  padding: clamp(40px, 3vw + 24px, 62px) 0;
  position: relative;
}
.band h2 { color: #FFF4E6; max-width: 900px; margin: 0 auto; }
.band .hl { color: #FFD34D; }

/* ---------- OS 8 PASSOS ---------- */
.method { background: var(--white); }
.steps-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.step {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 28px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s;
  display: flex;
  flex-direction: column;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(153, 10, 10, 0.28); }
.step-ico {
  width: 50px; height: 50px;
  border-radius: 15px;
  background: var(--red-tint);
  color: var(--red);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 15px;
  transition: background-color 0.35s var(--ease-out), color 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.step:hover .step-ico { background: var(--red); color: #fff; transform: translateY(-3px); }
.step-n {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.64rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 7px;
}
.step h3 { font-weight: 800; font-size: 1.28rem; margin-bottom: 10px; }
.step > p { color: var(--ink-soft); font-size: 1.02rem; margin: 0 0 16px; }
.step .outcome {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--green-tint);
  border-radius: 12px;
  padding: 13px 16px;
  margin-top: auto;
  font-size: 0.97rem;
  line-height: 1.45;
  color: var(--green-deep);
}
.step .outcome svg { color: var(--green); flex-shrink: 0; margin-top: 3px; }

/* ---------- ENTREGÁVEIS / BÔNUS ---------- */
.deliverables { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.bonus { background: var(--dark); color: #F4E9DC; }
.bonus h2 { color: #FFF8EE; }
.bonus .section-head p { color: rgba(244, 233, 220, 0.78); }

/* 4 entregáveis numa linha só */
.item-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 1180px; margin: 0 auto; }
/* 6 bônus em duas linhas de 3: em 6 colunas o card fica estreito demais */
.bonus .item-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
.item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 20px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  display: flex; flex-direction: column;
}
.item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.item .tag {
  font-family: var(--font-mono);
  font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--green);
  background: var(--green-tint);
  border-radius: 999px;
  padding: 5px 12px;
  align-self: flex-start;
  margin-bottom: 14px;
}
.item .tag--bonus { color: var(--red); background: var(--red-tint); }
/* mockup sem base bege: a própria imagem arredondada, com sombra
   dando o destaque que o fundo dava antes */
.item .mock { margin-bottom: 16px; }
.item .mock img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(28, 20, 18, 0.20);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.item:hover .mock img { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(28, 20, 18, 0.26); }
.item h3 { font-size: 1.18rem; font-weight: 800; line-height: 1.22; margin: 0 0 9px; }
.item p { color: var(--ink-soft); font-size: 0.99rem; line-height: 1.52; margin: 0; }

/* nos bônus o card é escuro; a base do mockup é branca porque
   duas artes vieram com fundo branco em vez de transparente */
.bonus .item {
  background: rgba(255, 248, 238, 0.05);
  border-color: var(--line-dark);
  box-shadow: none;
}
.bonus .item:hover { background: rgba(255, 248, 238, 0.09); }
.bonus .item h3 { color: #FFF8EE; }
.bonus .item p { color: rgba(244, 233, 220, 0.74); }
.bonus .item .tag { background: rgba(217, 166, 46, 0.16); color: var(--gold); }
.bonus .item .mock {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 14px;
}
.bonus .item .mock img { border-radius: 8px; box-shadow: none; }
.bonus .item:hover .mock img { box-shadow: none; }

/* ---------- É PARA VOCÊ QUE ---------- */
.fit { background: var(--white); }
.fit-card {
  max-width: 840px;
  margin: 0 auto 30px;
  border: 1px solid var(--line);
  outline: 1px solid var(--line);
  outline-offset: 6px;
  border-radius: 18px;
  background: var(--paper);
  padding: 30px 38px;
  box-shadow: var(--shadow-sm);
}
.fit-card ul { list-style: none; margin: 0; padding: 0; }
.fit-card li {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 12px 0;
  font-size: 1.08rem;
}
.fit-card li + li { border-top: 1px solid var(--line); }
.fit-card .ok {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--green-tint); color: var(--green);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 3px;
}
.fit .closing {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.32rem, 1.1rem + 1vw, 1.75rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.025em;
  max-width: 720px;
  margin: 0 auto;
  text-wrap: balance;
}

/* ---------- RECAP ---------- */
.recap { background: var(--paper-2); border-top: 1px solid var(--line); }
.recap-table {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  max-width: 780px;
  margin: 0 auto 34px;
  overflow: hidden;
}
.recap-table table { width: 100%; border-collapse: collapse; }
.recap-table td { padding: 12px 24px; font-size: 1.04rem; border-bottom: 1px solid var(--line); }
.recap-table tr:last-child td { border-bottom: none; }
.recap-table .ico { width: 32px; padding-right: 0; color: var(--green); }
.recap-table .ico--gift { color: var(--red); }
.recap-table .val {
  text-align: right;
  font-family: var(--font-mono);
  font-size: 0.92rem;
  color: var(--ink-soft);
  text-decoration: line-through;
  text-decoration-color: rgba(153, 10, 10, 0.6);
  white-space: nowrap;
}
.recap .sum {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 1.15rem + 1.2vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  text-wrap: balance;
}
.recap .sum .strike { color: var(--red); text-decoration: line-through; text-decoration-thickness: 3px; }
.recap .after { text-align: center; color: var(--ink-soft); max-width: 620px; margin: 0 auto; }

/* ---------- OFERTA (fundo claro, para a logo compor) ---------- */
.offer { background: var(--paper); padding: clamp(54px, 4vw + 30px, 84px) 0; position: relative; }
.offer--alt { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
/* vertical: logo -> bundle -> bullets -> preço -> botão */
.offer-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  max-width: 620px;
  margin: 0 auto;
  padding: clamp(30px, 3vw, 46px) clamp(24px, 3vw, 44px) clamp(34px, 3vw, 48px);
  text-align: center;
  box-shadow: 0 26px 70px rgba(28, 20, 18, 0.14);
}
.offer-card .logo { width: 250px; max-width: 78%; margin: 0 auto 18px; }
.offer-card .bundle { margin: 0 0 20px; }
.offer-card .bundle img {
  width: 100%;
  filter: drop-shadow(0 18px 30px rgba(28, 20, 18, 0.22));
}
.offer-card .rule { border: none; border-top: 1px dashed var(--line); margin: 0 0 20px; }

.offer-bullets {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  text-align: left;
  display: inline-block;
}
.offer-bullets li {
  position: relative;
  padding: 4px 0 4px 26px;
  font-size: 0.99rem;
  color: var(--ink);
  line-height: 1.34;
}
.offer-bullets li::before {
  content: "";
  position: absolute;
  left: 4px; top: 12px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.price-label { font-family: var(--font-display); font-size: 1.06rem; font-weight: 700; color: var(--ink-soft); }
.price-label .de {
  color: var(--ink-soft);
  text-decoration: line-through;
  text-decoration-color: rgba(153, 10, 10, 0.55);
  font-weight: 700;
}
.price-value {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 2.6rem + 3.4vw, 5rem);
  font-weight: 800;
  line-height: 1.02;
  color: var(--green);
  letter-spacing: -0.04em;
  margin: 4px 0 2px;
}
.price-alt { font-family: var(--font-display); font-size: 1.12rem; font-weight: 700; color: var(--red); margin-bottom: 24px; }
.offer-card .btn { width: 100%; max-width: 400px; }

.pay-safe {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 14px 0 0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: center;
  line-height: 1.4;
}
.pay-safe svg { color: var(--green); flex-shrink: 0; }

.pay-badges {
  width: 100%;
  max-width: 290px;
  margin: 10px auto 0;
  opacity: 0.72;
}

/* ---------- PÓS-COMPRA ---------- */
.post-purchase { background: var(--white); }
.post-purchase h2 { text-align: center; }
.post-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px; counter-reset: pstep; }
.post-step {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-sm);
}
.post-step::before {
  counter-increment: pstep;
  content: "0" counter(pstep);
  font-family: var(--font-display);
  font-size: 0.88rem; font-weight: 800;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
  padding: 7px 15px;
  position: absolute;
  top: -16px; left: 26px;
}
.post-step h3 { font-size: 1.16rem; font-weight: 800; margin: 4px 0 8px; }
.post-step p { color: var(--ink-soft); font-size: 1rem; margin: 0; }

/* ---------- GARANTIA ---------- */
.guarantee { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.guarantee-card {
  max-width: 940px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  outline: 1px solid var(--line);
  outline-offset: 6px;
  border-radius: 20px;
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  gap: clamp(26px, 3.4vw, 48px);
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.guarantee-card img { width: 210px; flex-shrink: 0; }
.guarantee-card h2 { margin-bottom: 12px; }
.guarantee-card h2 .dias { color: var(--red); }
.guarantee-card p { color: var(--ink-soft); font-size: 1.06rem; }
.guarantee-card .punch {
  font-family: var(--font-display);
  font-size: 1.26rem; font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--red);
  margin: 0;
}

/* ---------- AUTORIDADE ---------- */
.authority {
  background:
    radial-gradient(46% 60% at 88% 12%, rgba(255, 211, 77, 0.1), transparent 60%),
    linear-gradient(135deg, #7A0606 0%, var(--red-deep) 100%);
  color: #FFF4E6;
}
.authority-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(30px, 4vw, 64px); align-items: center; max-width: 1000px; margin: 0 auto; }
.authority-grid h2 { color: #FFF4E6; margin-bottom: 6px; }
.authority-grid .role { font-family: var(--font-display); font-size: 1.18rem; font-weight: 700; color: #FFD34D; margin-bottom: 22px; }
.authority-grid p { color: rgba(255, 244, 230, 0.9); font-size: 1.06rem; }
.authority-grid .photo img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

/* ---------- RECADO DA DOUTORA (imagem no meio do texto) ---------- */
.letter { background: var(--white); }
.letter-body { max-width: 840px; margin: 0 auto; }
.letter-body h2 { text-align: center; margin-bottom: 0.7em; }
.letter-body > p { color: var(--ink-soft); }
.letter-figure { margin: 30px auto 32px; max-width: 660px; }
.letter-figure img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}
.letter .final {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: 14px;
  padding: 24px 28px;
}
.letter .final p { font-size: 1.02rem; color: var(--ink-soft); }
.letter .final p:last-child { margin-bottom: 0; }
.letter .final strong { color: var(--green); font-weight: 700; }
.letter .strong-red { color: var(--red); font-weight: 600; }

/* ---------- OPÇÕES ---------- */
.options { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.options-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 900px; margin: 0 auto 40px; }
.option { border-radius: 18px; padding: 34px 32px; border: 1px solid var(--line); background: var(--white); position: relative; box-shadow: var(--shadow-sm); }
.option .op-tag {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 800;
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.option--bad .op-tag { color: var(--red); }
.option--good .op-tag { color: var(--green); }
.option .op-ico { width: 32px; height: 32px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }
.option--bad .op-ico { background: var(--red-tint); color: var(--red); }
.option--good .op-ico { background: var(--green-tint); color: var(--green); }
.option--good { border-color: rgba(0, 120, 82, 0.4); background: linear-gradient(180deg, #FDFFFE 0%, var(--green-tint) 150%); }
.option--good .rec {
  position: absolute; top: -14px; right: 24px;
  font-family: var(--font-mono);
  font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--green); color: #fff;
  border-radius: 999px;
  padding: 7px 14px;
}
.option p { margin: 0; color: var(--ink-soft); font-size: 1.04rem; }
.options-close {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.36rem, 1.12rem + 1.1vw, 1.85rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.025em;
  max-width: 720px;
  margin: 0 auto;
  text-wrap: balance;
}
.options-close .destaque { color: var(--red); }
.options-cta {
  text-align: center;
  max-width: 640px;
  margin: 22px auto 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

/* ---------- FAQ ---------- */
.faq { background: var(--white); }
.faq h2 { text-align: center; margin-bottom: 26px; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 9px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 19px 26px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.14rem;
  line-height: 1.28;
  letter-spacing: -0.02em;
  transition: color 0.2s;
}
.faq-item summary:hover { color: var(--red); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--red);
  transition: transform 0.3s var(--ease-out), background-color 0.3s;
}
.faq-item[open] summary .plus { transform: rotate(45deg); background: var(--red-tint); }
.faq-item p {
  margin: 0;
  padding: 0 26px 21px;
  color: var(--ink-soft);
  font-size: 1.04rem;
  animation: faqIn 0.35s var(--ease-out);
}
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

/* ---------- RODAPÉ ---------- */
.footer { background: var(--dark); color: rgba(244, 233, 220, 0.6); padding: 44px 0 54px; font-size: 0.9rem; line-height: 1.7; }
.footer .container { max-width: 880px; }
/* texto justificado ponta a ponta, como na /tg */
.footer .legal p { margin-bottom: 14px; text-align: justify; text-justify: inter-word; hyphens: auto; }
.footer .brand {
  font-family: var(--font-display);
  font-size: 1.02rem; font-weight: 800;
  color: #F4E9DC;
  text-align: center;
  margin-bottom: 22px;
}
.footer strong { color: rgba(244, 233, 220, 0.82); }

.footer .refs { border-bottom: 1px solid var(--line-dark); padding-bottom: 26px; margin-bottom: 30px; }
.footer .refs h3 {
  font-family: var(--font-mono);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(244, 233, 220, 0.55);
  margin-bottom: 14px;
}
.footer .refs ol { padding-left: 20px; margin: 0; }
.footer .refs li { margin-bottom: 9px; font-size: 0.82rem; line-height: 1.6; }
.footer .refs li:target { color: #FFD34D; }
.footer .refs em { font-style: italic; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1100px) {
  .item-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus .item-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1000px) {
  .item-grid, .bonus .item-grid { grid-template-columns: repeat(2, 1fr); }
  .post-steps { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .authority-grid { grid-template-columns: 1fr; }
  .authority-grid .photo { max-width: 340px; margin: 0 auto; }
  .signs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  body {
    font-size: 1.02rem;
    line-height: 1.62;
    letter-spacing: -0.003em;
  }
  .container { padding: 0 20px; }
  section { padding: 34px 0; }

  /* headline: estava grande demais no celular */
  .hero { padding: 28px 0 30px; }
  .hero h1 {
    font-size: 1.72rem;
    line-height: 1.16;
    letter-spacing: -0.024em;
    margin-bottom: 16px;
  }
  .hero .sub { font-size: 1.02rem; line-height: 1.55; margin-bottom: 14px; }
  .hero .promise { font-size: 0.99rem; margin-bottom: 22px; }
  .hero-figure { margin-bottom: 20px; }
  .hero-chips { gap: 9px 20px; }
  .hero-chips span { font-size: 0.9rem; }

  h2 { font-size: 1.56rem; line-height: 1.18; }
  h3 { font-size: 1.2rem; line-height: 1.22; }
  .section-head { margin-bottom: 24px; }
  .section-head p { font-size: 0.99rem; }

  .verdict { font-size: 1.36rem; line-height: 1.26; }
  .fit .closing { font-size: 1.24rem; }
  .options-close { font-size: 1.26rem; }
  .options-cta { font-size: 0.99rem; }
  .recap .sum { font-size: 1.28rem; }

  /* carrossel: cards menores, loop um pouco mais rápido */
  .sym-card { flex-basis: 250px; width: 250px; border-radius: 14px; }
  .sym-set { gap: 12px; padding-right: 12px; }
  .sym-track { animation-duration: 34s; }

  /* depoimentos: uma coluna, ocupando a largura toda */
  .proof-grid { grid-template-columns: 1fr; gap: 12px; max-width: 100%; }

  /* sinais: duas colunas, tudo centralizado */
  .signs-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 26px; }
  .sign { border-radius: 14px; }
  .sign figcaption { padding: 16px 12px 18px; font-size: 0.88rem; line-height: 1.38; }
  .sign figcaption::before { width: 26px; }
  .explained .intro { margin-bottom: 26px; }
  .explained .intro h2 { font-size: 1.68rem; }
  .explained .affirm { font-size: 0.98rem; margin-bottom: 14px; }
  .explained .intro .lead { font-size: 0.99rem; }
  .verdict-box { padding: 24px 20px; }
  .verdict-box .big { font-size: 1.24rem; }
  .verdict-box .small { font-size: 0.97rem; }

  /* listas e cards */
  .fit-card { padding: 26px 22px; }
  .fit-card li { font-size: 1rem; gap: 14px; padding: 10px 0; }
  .guarantee-card { flex-direction: column; text-align: center; padding: 26px 22px; }
  .guarantee-card img { width: 170px; }
  .science-box { flex-direction: column; align-items: center; text-align: center; gap: 10px; padding: 20px; }
  .solution-note { font-size: 0.99rem; }
  .urgency .good { padding: 22px 20px; font-size: 1rem; }
  .cost-list li { font-size: 1.02rem; }
  .letter-figure { margin: 24px auto 26px; }
  .letter .final { padding: 20px 22px; }
  .recap-table td { padding: 11px 16px; font-size: 0.96rem; }
  .options-grid { grid-template-columns: 1fr; }
  .option { padding: 28px 24px; }
  .post-steps { gap: 16px; }

  /* PASSOS: uma coluna, com ícone e rótulo centralizados */
  .steps-grid { grid-template-columns: 1fr; gap: 14px; }
  .step { padding: 22px 20px 24px; align-items: center; text-align: center; }
  .step-ico { width: 46px; height: 46px; margin-bottom: 12px; }
  .step h3 { font-size: 1.16rem; margin-bottom: 8px; }
  .step > p { font-size: 0.99rem; }
  .step .outcome { font-size: 0.93rem; padding: 12px 14px; text-align: left; }

  /* ENTREGÁVEIS e BÔNUS: uma coluna e tudo centralizado */
  .item-grid, .bonus .item-grid { grid-template-columns: 1fr; gap: 12px; }
  .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 20px 24px;
    gap: 0;
  }
  .item .tag { align-self: center; margin-bottom: 14px; font-size: 0.64rem; padding: 5px 12px; }
  .item .mock { width: 100%; max-width: 300px; margin: 0 auto 16px; }
  .item h3 { font-size: 1.12rem; line-height: 1.2; margin-bottom: 8px; }
  .item p { font-size: 0.97rem; line-height: 1.52; }

  /* oferta */
  .offer { padding: 40px 0; }
  .offer-card { padding: 26px 20px 30px; border-radius: 20px; }
  .offer-card .logo { width: 200px; }
  .offer-bullets li { font-size: 0.95rem; padding-left: 24px; }
  .price-value { font-size: 3.2rem; }
  .price-label { font-size: 0.98rem; }
  .price-alt { font-size: 1.02rem; margin-bottom: 20px; }
  .btn { font-size: 0.96rem; padding: 19px 26px; width: 100%; }
  .pay-safe { font-size: 0.62rem; }
  .pay-badges { max-width: 240px; }

  /* faq e rodapé */
  .faq-item summary { font-size: 1.04rem; padding: 17px 20px; gap: 16px; }
  .faq-item summary .plus { width: 30px; height: 30px; }
  .faq-item p { font-size: 0.99rem; padding: 0 20px 18px; }
  .footer { padding: 34px 0 44px; }
  .footer .legal p { text-align: left; font-size: 0.86rem; }
  .footer .refs li { font-size: 0.78rem; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 1.54rem; }
  .price-value { font-size: 2.8rem; }
  .sign figcaption { font-size: 0.83rem; padding: 14px 10px 16px; }
}
