/* ============================================================
   PROTOCOLO 7 DIAS
   Display: Bricolage Grotesque · Corpo: Source Serif 4 · Labels: IBM Plex Mono
   Cores da marca preservadas: #990A0A / #660000 (vermelho), #007852 (verde)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wdth,wght@12..96,75..100,400..800&family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,600;1,8..60,400&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: 'Bricolage Grotesque', 'Segoe UI', sans-serif;
  --font-body: 'Source Serif 4', Georgia, 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);
  font-size: 1.24rem;
  line-height: 1.68;
  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 hero, depoimentos e a imagem da dor 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 */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 0.55em;
  text-wrap: balance;
}
h2 { font-size: clamp(2rem, 1.3rem + 2.6vw, 3rem); }
h3 { font-size: clamp(1.4rem, 1.1rem + 1vw, 1.85rem); }
p  { margin: 0 0 1.1em; }
em { font-style: italic; }

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

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

/* 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; }
  * { 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.16rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  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.5rem, 1.5rem + 4vw, 4.4rem);
  font-weight: 800;
  max-width: 1000px;
  margin: 0 auto 24px;
}
.hero h1 .accent { color: var(--red); }
.hero .sub {
  font-size: clamp(1.2rem, 1.06rem + 0.6vw, 1.45rem);
  color: var(--ink-soft);
  max-width: 820px;
  margin: 0 auto 30px;
}
.hero .sub strong { color: var(--ink); }

.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: 600;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 9px;
}
.hero-chips svg { color: var(--green); flex-shrink: 0; }

/* 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); }
}

/* ---------- PROVA SOCIAL ---------- */
.proof { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; align-items: start; max-width: 1240px; margin: 0 auto; }
/* imagem crua: sem card, sem borda, sem legenda */
.proof-card img {
  width: 100%;
  transition: transform 0.35s var(--ease-out);
}
.proof-card:hover img { transform: translateY(-6px) scale(1.02); }

/* ---------- DOR ---------- */
.pain { text-align: center; }
.pain .container { max-width: 1000px; }
.pain .lead { color: var(--ink-soft); max-width: 640px; margin: 0 auto 26px; }
.pain .thought-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 1.2rem + 1vw, 1.9rem);
  margin: 26px 0 22px;
}
/* imagem crua, grande */
.pain-figure { max-width: 860px; margin: 0 auto 30px; }
.pain-figure img { width: 100%; }
.pullquote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 760px;
  margin: 0 auto 26px;
  text-wrap: balance;
}
.pain .risk { max-width: 700px; margin: 0 auto; color: var(--ink-soft); }
.pain .risk .vitima { color: var(--red); font-weight: 600; }

/* ---------- SINTOMAS ---------- */
.symptoms { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.symptoms .container { max-width: 760px; }
.symptoms-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  margin: 0 auto 26px;
  overflow: hidden;
}
.symptoms-card ul { list-style: none; margin: 0; padding: 0; }
.symptoms-card li {
  display: flex; align-items: center; gap: 18px;
  padding: 16px 30px;
  font-size: 1.2rem;
}
.symptoms-card li + li { border-top: 1px solid var(--line); }
.symptoms-card .sym-ico {
  width: 40px; height: 40px; border-radius: 12px;
  background: #FDF3E3; color: #B97909;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.symptoms .ask {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.2rem + 1.3vw, 2.1rem);
  font-weight: 700;
  line-height: 1.22;
  margin: 0;
  text-wrap: balance;
}
.symptoms .ask .yes { color: var(--red); }

/* ---------- MECANISMO (escuro) ---------- */
.mechanism { background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%); color: #F4E9DC; }
.mechanism h2 { color: #FFF8EE; max-width: 860px; margin-left: auto; margin-right: auto; }
.mechanism .center { text-align: center; }
.mech-denials { list-style: none; padding: 0; max-width: 480px; margin: 24px auto; }
.mech-denials li {
  display: flex; align-items: center; gap: 16px;
  padding: 11px 0;
  font-size: 1.16rem;
  border-bottom: 1px solid var(--line-dark);
}
.mech-denials li:last-child { border-bottom: none; }
.mech-denials .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;
}
.mechanism .narr { max-width: 700px; margin: 0 auto 0.75em; text-align: center; color: rgba(244, 233, 220, 0.88); }
.mechanism .narr strong { color: #FFF8EE; }

.stock-box {
  background: var(--paper);
  color: var(--ink);
  border: 2px dashed var(--red);
  border-radius: 16px;
  padding: 24px 32px;
  max-width: 680px;
  margin: 24px auto;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.stock-box h3 { color: var(--red); font-weight: 800; }
.stock-box p:last-child { margin-bottom: 0; }

.alert-card {
  display: flex; gap: 30px; align-items: center;
  background: linear-gradient(135deg, #6E0505 0%, #3D0202 100%);
  border: 1px solid rgba(255, 204, 0, 0.25);
  border-radius: 18px;
  padding: 26px 32px;
  max-width: 780px;
  margin: 24px auto;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
.alert-card img { width: 92px; flex-shrink: 0; filter: drop-shadow(0 8px 18px rgba(0,0,0,0.4)); }
.alert-card .titulo {
  color: #FFCC00;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  margin-bottom: 12px;
}
.alert-card p { color: rgba(255, 248, 238, 0.92); font-size: 1.1rem; }
.alert-card p:last-child { margin-bottom: 0; }
.alert-card strong { color: #FFCC00; }

/* ---------- 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;
}
.band h2 { color: #FFF4E6; max-width: 860px; margin: 0 auto; }
.band .hl { color: #FFD34D; }

/* ---------- PASSOS ----------
   Grade de 2 colunas em vez de 6 linhas alternadas: corta metade da altura
   sem perder nenhum passo. */
.steps-list {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.step-row {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  /* grid de 2 linhas: texto ocupa o que precisa, imagem preenche o resto.
     Com flex a imagem não encolhia (min-height:auto) e estourava o card. */
  display: grid;
  grid-template-rows: auto 1fr;
}
.step-row .step-media { min-height: 190px; overflow: hidden; }
.step-row .step-media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 42%;
}
.step-row:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step-media { overflow: hidden; display: block; }
.step-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center 42%;
  transition: transform 0.5s var(--ease-out);
}
.step-row:hover .step-media img { transform: scale(1.05); }
.step-text { padding: 20px 22px 24px; position: relative; }
.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.4rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(153, 10, 10, 0.24);
  position: absolute;
  top: 14px;
  right: 20px;
  pointer-events: none;
  user-select: none;
}
.step-text h3 { font-weight: 800; font-size: 1.32rem; max-width: 76%; margin-bottom: 10px; }
.step-text p { color: var(--ink-soft); font-size: 1.06rem; margin: 0; }

/* ---------- BENEFÍCIOS ---------- */
.benefits { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.benefits h2 { text-align: center; margin-bottom: 28px; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.benefit {
  display: flex; gap: 16px; align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 21px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s;
}
.benefit:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(153, 10, 10, 0.3);
}
.benefit img {
  width: 78px; flex-shrink: 0;
  transition: transform 0.45s var(--ease-out);
}
.benefit:hover img { transform: scale(1.14) rotate(-5deg); }
.benefit h3 { font-size: 1.16rem; font-weight: 800; margin: 0 0 6px; line-height: 1.2; }
.benefit p { color: var(--ink-soft); font-size: 0.99rem; margin: 0; }

/* ---------- ENTREGÁVEIS / BÔNUS ---------- */
.deliverables { background: var(--white); }
.bonus { background: var(--dark); color: #F4E9DC; }
.bonus h2 { color: #FFF8EE; }
.bonus .section-head p { color: rgba(244, 233, 220, 0.78); }

/* 4 colunas no desktop, numa linha só */
.deliv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 1180px; margin: 0 auto; }
/* os 5 bônus cabem numa linha só */
.bonus .deliv-grid { grid-template-columns: repeat(5, 1fr); gap: 14px; }
.deliv-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 18px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  display: flex; flex-direction: column;
}
.deliv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.deliv-card .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: 12px;
}
.deliv-card .tag--bonus { color: var(--red); background: var(--red-tint); }
/* mockup de fundo claro precisa de base própria para não sumir no card */
.deliv-card .mock {
  background: radial-gradient(circle at 50% 42%, #FFFFFF 0%, #EFE6D8 78%);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 14px;
}
.deliv-card .mock img {
  width: 100%;
  filter: drop-shadow(0 10px 18px rgba(28, 20, 18, 0.22));
  transition: transform 0.4s var(--ease-out);
}
.deliv-card:hover .mock img { transform: translateY(-4px) scale(1.04); }
.deliv-card h3 { font-size: 1.14rem; font-weight: 800; line-height: 1.22; margin: 0 0 8px; }
.deliv-card p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

/* nos bônus o card é escuro: o mockup ganha base clara para contrastar */
.bonus .deliv-card {
  background: rgba(255, 248, 238, 0.05);
  border-color: var(--line-dark);
  box-shadow: none;
}
.bonus .deliv-card:hover { background: rgba(255, 248, 238, 0.09); }
.bonus .deliv-card h3 { color: #FFF8EE; }
.bonus .deliv-card p { color: rgba(244, 233, 220, 0.74); }
.bonus .deliv-card .tag { background: rgba(217, 166, 46, 0.16); color: var(--gold); }
.bonus .deliv-card .mock { background: radial-gradient(circle at 50% 42%, #FFFFFF 0%, #E6DAC8 80%); }

/* ---------- É PARA VOCÊ QUE ---------- */
.audience { background: var(--paper-2); border-top: 1px solid var(--line); }
.audience-card {
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--line);
  outline: 1px solid var(--line);
  outline-offset: 6px;
  border-radius: 18px;
  background: var(--white);
  padding: 30px 38px;
  box-shadow: var(--shadow-sm);
}
.audience-card ul { list-style: none; margin: 0; padding: 0; }
.audience-card li {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 12px 0;
  font-size: 1.14rem;
}
.audience-card li + li { border-top: 1px solid var(--line); }
.audience-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;
}

/* ---------- RECAP ---------- */
.recap { background: var(--white); }
.recap-table {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  max-width: 760px;
  margin: 0 auto 34px;
  overflow: hidden;
}
.recap-table table { width: 100%; border-collapse: collapse; }
.recap-table td { padding: 12px 24px; font-size: 1.08rem; 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.95rem;
  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.5rem, 1.2rem + 1.2vw, 2rem);
  font-weight: 800;
  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: 600px; margin: 0 auto; }

/* ---------- OFERTA ---------- */
.offer {
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(255, 211, 77, 0.08), transparent 60%),
    linear-gradient(135deg, var(--red-deep) 0%, var(--red) 60%, #7A0606 100%);
  padding: clamp(54px, 4vw + 30px, 84px) 0;
}
.offer--dark { background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%); }
/* vertical: logo -> bundle -> preço -> botão */
.offer-card {
  background: var(--paper);
  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 40px 100px rgba(0, 0, 0, 0.4);
}
.offer-card .logo { width: 290px; max-width: 82%; 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; }
.price-label { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--ink-soft); }
.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.03em;
  margin: 4px 0 2px;
}
.price-alt { font-family: var(--font-display); font-size: 1.16rem; font-weight: 600; color: var(--red); margin-bottom: 24px; }
.offer-card .btn { width: 100%; max-width: 400px; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; margin-top: 20px; }
.trust-row span {
  font-family: var(--font-mono);
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 8px;
}
.trust-row svg { color: var(--green); }

/* ---------- PÓS-COMPRA ---------- */
.post-purchase { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.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(--white);
  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.9rem; font-weight: 700;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
  padding: 7px 15px;
  position: absolute;
  top: -16px; left: 26px;
}
.post-step h3 { font-size: 1.2rem; font-weight: 800; margin: 4px 0 8px; }
.post-step p { color: var(--ink-soft); font-size: 1.04rem; margin: 0; }

/* ---------- GARANTIA ---------- */
.guarantee { background: var(--white); }
.guarantee-cert {
  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-cert img { width: 210px; flex-shrink: 0; }
.guarantee-cert h2 { margin-bottom: 12px; }
.guarantee-cert h2 .dias { color: var(--red); }
.guarantee-cert p { color: var(--ink-soft); font-size: 1.1rem; }
.guarantee-cert .risco {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 800;
  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 .cargo { font-family: var(--font-display); font-size: 1.24rem; font-weight: 600; color: #FFD34D; margin-bottom: 22px; }
.authority-grid p { color: rgba(255, 244, 230, 0.9); font-size: 1.1rem; }
.authority-grid .photo img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

/* ---------- OPÇÕES ---------- */
.options { background: var(--white); }
.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(--paper); position: relative; box-shadow: var(--shadow-sm); }
.option .op-tag {
  font-family: var(--font-display);
  font-size: 1.14rem; 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.08rem; }
.options-close {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.15rem + 1.1vw, 1.9rem);
  font-weight: 700;
  line-height: 1.25;
  max-width: 720px;
  margin: 0 auto;
  text-wrap: balance;
}

/* ---------- FAQ ---------- */
.faq { background: var(--paper-2); border-top: 1px solid var(--line); }
.faq h2 { text-align: center; margin-bottom: 26px; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  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.2rem;
  line-height: 1.28;
  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.08rem;
  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.92rem; line-height: 1.7; }
.footer .container { max-width: 880px; }
/* texto justificado ponta a ponta, como pedido */
.footer p { margin-bottom: 14px; text-align: justify; text-justify: inter-word; hyphens: auto; }
.footer .brand {
  font-family: var(--font-display);
  font-size: 1.04rem; font-weight: 700;
  color: #F4E9DC;
  text-align: center;
  margin-bottom: 22px;
}
.footer strong { color: rgba(244, 233, 220, 0.82); }

/* ---------- RESPONSIVO ---------- */
@media (max-width: 1000px) {
  .deliv-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus .deliv-grid { grid-template-columns: repeat(3, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .post-steps { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .solution-grid, .authority-grid, .offer-card { grid-template-columns: 1fr; }
  .offer-card { text-align: center; }
  .authority-grid .photo { max-width: 340px; margin: 0 auto; }
}

@media (max-width: 767px) {
  body { font-size: 1.14rem; }
  section { padding: 40px 0; }
  .hero { padding-top: 34px; }
  .hero h1 { font-size: 2.15rem; }
  .hero .sub { font-size: 1.14rem; }
  .hero-chips { gap: 10px 18px; }
  .hero-chips span { font-size: 0.94rem; }
  .proof-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .benefits-grid, .deliv-grid, .options-grid { grid-template-columns: 1fr; }
  .bonus .deliv-grid { grid-template-columns: 1fr; }
  .benefit { padding: 22px; gap: 18px; }
  .benefit img { width: 74px; }
  .guarantee-cert { flex-direction: column; text-align: center; }
  .audience-card { padding: 26px 22px; }
  .alert-card { flex-direction: column; text-align: center; padding: 30px 24px; }
  .stock-box { padding: 28px 24px; }
  .symptoms-card li { padding: 16px 20px; font-size: 1.1rem; }
  .btn { font-size: 1.02rem; padding: 20px 32px; }
  .footer p { text-align: left; }
}

/* ============================================================
   LINHA DO TEMPO — dia 1 ao dia 7
   Conteúdo é placeholder; o layout já está pronto para o texto real.
   ============================================================ */
.timeline {
  max-width: 1180px;
  margin: clamp(34px, 3vw, 52px) auto 0;
  padding-top: clamp(30px, 2.6vw, 44px);
  border-top: 1px solid var(--line);
}
.timeline-title {
  text-align: center;
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.3rem);
  margin-bottom: 8px;
}
.timeline-title .accent { color: var(--red); }
.timeline-sub {
  text-align: center;
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 560px;
  margin: 0 auto 30px;
}
.timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  position: relative;
}
/* trilho que liga os sete dias */
.timeline-list::before {
  content: "";
  position: absolute;
  top: 21px; left: 6%; right: 6%;
  height: 2px;
  background: linear-gradient(90deg, var(--red-tint), var(--red), var(--green));
  border-radius: 2px;
}
.timeline-list li {
  position: relative;
  text-align: center;
  padding-top: 54px;
}
.timeline-list .dia {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--red);
  color: var(--red);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(153, 10, 10, 0.14);
  transition: transform 0.3s var(--ease-out), background-color 0.3s, color 0.3s;
}
.timeline-list li:hover .dia {
  transform: translateX(-50%) scale(1.12);
  background: var(--red);
  color: #fff;
}
.timeline-list li:last-child .dia { border-color: var(--green); color: var(--green); }
.timeline-list li:last-child:hover .dia { background: var(--green); color: #fff; }
.timeline-list p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.45;
}
/* pulso sequencial: o olho percorre do dia 1 ao 7 */
.js .timeline.is-visible .dia { animation: pulsoDia 0.5s var(--ease-out) both; animation-delay: calc(var(--d, 1) * 110ms); }
@keyframes pulsoDia {
  0%   { transform: translateX(-50%) scale(0.6); opacity: 0; }
  60%  { transform: translateX(-50%) scale(1.14); opacity: 1; }
  100% { transform: translateX(-50%) scale(1); opacity: 1; }
}

/* destaque no fechamento das opções */
.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.1rem;
}

/* ============================================================
   MOBILE — revisão completa de leitura
   ============================================================ */
@media (max-width: 767px) {
  body {
    font-size: 1.06rem;
    line-height: 1.62;
    letter-spacing: 0.005em;
  }
  .container { padding: 0 20px; }
  section { padding: 34px 0; }

  /* headline: estava grande demais no celular */
  .hero { padding: 28px 0 30px; }
  .hero h1 {
    font-size: 1.78rem;
    line-height: 1.14;
    letter-spacing: -0.015em;
    margin-bottom: 16px;
  }
  .hero .sub { font-size: 1.04rem; line-height: 1.55; margin-bottom: 22px; }
  .hero-figure { margin-bottom: 20px; }
  .hero-chips { gap: 9px 16px; }
  .hero-chips span { font-size: 0.86rem; }

  h2 { font-size: 1.62rem; line-height: 1.16; }
  h3 { font-size: 1.24rem; line-height: 1.2; }
  .section-head { margin-bottom: 24px; }
  .section-head p { font-size: 1.02rem; }

  .pullquote { font-size: 1.42rem; line-height: 1.24; }
  .symptoms .ask { font-size: 1.36rem; }
  .options-close { font-size: 1.3rem; }
  .options-cta { font-size: 1.02rem; }
  .recap .sum { font-size: 1.32rem; }

  /* listas e cards */
  .symptoms-card li { padding: 14px 18px; font-size: 1.02rem; gap: 14px; }
  .symptoms-card .sym-ico { width: 34px; height: 34px; }
  .audience-card li { font-size: 1.03rem; gap: 14px; }
  .benefit h3 { font-size: 1.1rem; }
  .benefit p { font-size: 0.97rem; }

  /* linha do tempo empilha em duas colunas */
  .timeline-list { grid-template-columns: repeat(2, 1fr); gap: 18px 10px; }
  .timeline-list::before { display: none; }
  .timeline-list li { padding-top: 48px; }
  .timeline-list .dia { width: 40px; height: 40px; font-size: 0.74rem; }
  .timeline-title { font-size: 1.42rem; }
  .timeline-sub { font-size: 1rem; margin-bottom: 22px; }

  /* oferta */
  .offer { padding: 40px 0; }
  .offer-card { padding: 26px 20px 30px; border-radius: 20px; }
  .offer-card .logo { width: 220px; }
  .price-value { font-size: 3.2rem; }
  .price-label { font-size: 1rem; }
  .price-alt { font-size: 1.04rem; margin-bottom: 20px; }
  .btn { font-size: 0.98rem; padding: 19px 26px; width: 100%; }

  /* faq e rodapé */
  .faq-item summary { font-size: 1.08rem; padding: 17px 20px; gap: 16px; }
  .faq-item summary .plus { width: 30px; height: 30px; }
  .faq-item p { font-size: 1.01rem; padding: 0 20px 18px; }
  .footer { padding: 34px 0 44px; }
  .footer p { text-align: left; font-size: 0.88rem; }

  .guarantee-cert { padding: 26px 22px; }
  .guarantee-cert img { width: 170px; }
  .timeline { padding-top: 26px; margin-top: 28px; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 1.58rem; }
  .price-value { font-size: 2.8rem; }
  .timeline-list { grid-template-columns: 1fr; }
}

/* ---- mobile: encurtar o scroll sem tirar conteúdo ---- */
@media (max-width: 767px) {
  /* passos: imagem mais baixa, 6 cards empilhados somavam 3200px */

  /* entregáveis e bônus: card horizontal, imagem ao lado do texto */
  .deliv-grid { gap: 12px; }

  /* benefícios: ícone menor ao lado do texto */
  .benefit { padding: 16px 18px; gap: 14px; }
  .benefit img { width: 60px; }

  .benefits-grid { gap: 12px; }
  .post-steps { gap: 16px; }
  .audience-card li { padding: 10px 0; }
  .recap-table td { padding: 11px 16px; font-size: 0.99rem; }
  .mechanism .narr { margin-bottom: 0.7em; }
}

/* ---------- oferta: bullets, ancoragem e selo de pagamento ---------- */
.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: 1rem;
  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 .de {
  color: var(--ink-soft);
  text-decoration: line-through;
  text-decoration-color: rgba(153, 10, 10, 0.55);
  font-weight: 600;
}
.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; }

/* ============================================================
   MOBILE — correções pedidas a partir dos prints
   ============================================================ */
@media (max-width: 767px) {
  /* depoimentos: maiores e mais juntos */
  .proof-grid { grid-template-columns: 1fr; gap: 8px; max-width: 100%; }
  .proof-card img { width: 100%; }

  /* PASSOS: uma coluna só. Duas colunas espremiam o texto e cortavam a foto */
  /* número sai do topo e vira selo ao lado do título */

  /* ENTREGÁVEIS e BÔNUS: volta ao card vertical, como no desktop.
     O layout horizontal espremia o texto numa coluna estreitíssima. */

  /* oferta */
  .offer-bullets li { font-size: 0.96rem; padding-left: 24px; }
  .pay-safe { font-size: 0.62rem; }
}

/* selo de meios de pagamento, abaixo do botão */
.pay-badges {
  width: 100%;
  max-width: 290px;
  margin: 10px auto 0;
  opacity: 0.72;
}
@media (max-width: 767px) {
  .pay-badges { max-width: 240px; }
}

/* ============================================================
   MOBILE — passos e entregáveis (bloco único, substitui as
   regras espalhadas que se contradiziam)
   ============================================================ */
@media (max-width: 767px) {
  /* PASSOS: a imagem vira capa no topo com o número sobreposto.
     Antes a foto vinha depois do texto e o número ocupava uma faixa
     larga — card alto e desconexo. */
  .steps-list { grid-template-columns: 1fr; gap: 14px; }
  .step-row { grid-template-rows: auto auto; }
  .step-row .step-media {
    order: -1;
    min-height: 0;
    position: relative;
  }
  .step-row .step-media img {
    height: auto;
    aspect-ratio: 16 / 9;
    object-position: center 38%;
  }
  /* véu para o número ficar legível sobre qualquer foto */
  .step-row .step-media::after {
    content: "";
    position: absolute; inset: auto 0 0 0; height: 60%;
    background: linear-gradient(to top, rgba(23,16,16,.74), transparent);
    pointer-events: none;
  }
  .step-row .step-num {
    position: absolute;
    left: 16px; bottom: 10px; top: auto; right: auto;
    z-index: 2;
    display: block;
    font-size: 2.3rem;
    -webkit-text-stroke: 0;
    color: #fff;
    background: none;
    border: 0;
    border-radius: 0;
    padding: 0;
    margin: 0;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,.5);
  }
  .step-row .step-text { padding: 16px 18px 20px; }
  .step-row .step-text h3 { font-size: 1.18rem; max-width: 100%; margin-bottom: 7px; }
  .step-row .step-text p { font-size: 1rem; }

  /* ENTREGÁVEIS e BÔNUS: tudo centralizado */
  .deliv-grid { gap: 12px; }
  .deliv-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px 18px 22px;
    gap: 0;
  }
  .deliv-card .tag { align-self: center; margin-bottom: 14px; font-size: 0.64rem; padding: 5px 12px; }
  .deliv-card .mock { width: 100%; margin-bottom: 14px; padding: 14px; }
  .deliv-card .mock img { max-width: 200px; margin: 0 auto; }
  .deliv-card h3 { font-size: 1.1rem; line-height: 1.2; margin-bottom: 7px; }
  .deliv-card p { font-size: 0.99rem; line-height: 1.52; }
}
