/* ════════════════════════════════════════════════════════
   MÉTODO VERIFICA — CSS limpo do zero
   ════════════════════════════════════════════════════════ */

/* Proteção de conteúdo */
img { -webkit-user-drag: none; user-drag: none; pointer-events: none; }
a img, button img { pointer-events: auto; }
::selection { background: transparent; }

:root {
  --navy   : #14273F;
  --navy-2 : #1C3455;
  --tint   : #EAF0F6;
  --cream  : #F7F4EC;
  --orange : #E2711D;
  --orange-d: #B85A15;
  --amber  : #F0A93A;
  --green  : #2E9F5B;
  --green-d: #227A45;
  --red    : #C6373C;
  --ink    : #16191E;
  --muted  : #555C66;
  --quiet  : #97A0AA;
  --line   : #E1E4E8;
  --white  : #FFFFFF;

  --display: 'Oswald', 'Arial Narrow', sans-serif;
  --sans   : 'Inter', system-ui, sans-serif;

  --w      : 1160px;
  --wn     : 720px;
  --gap    : 24px;
}

/* BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
b { font-weight: 700; }

/* CONTAINER */
.container {
  max-width: var(--w);
  margin: 0 auto;
  padding: 96px var(--gap);
}
.container.narrow { max-width: var(--wn); }
.container.center { text-align: center; }

/* LABELS */
.label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.label.light { color: rgba(255,255,255,.55); }

/* HEADINGS */
h2 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--navy);
  text-wrap: balance;
}
h2.white { color: #fff; }
h2 em { font-style: normal; font-weight: 500; color: var(--orange); }

/* BOTÃO PRIMÁRIO */
.btn-primary {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--green);
  color: #fff;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 18px 36px;
  border-radius: 10px;
  min-height: 70px;
  box-shadow: 0 6px 24px rgba(46,159,91,.32);
  transition: transform .15s, box-shadow .15s;
  cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(46,159,91,.4); background: var(--green-d); }
.btn-primary span { font-size: 12px; font-weight: 400; opacity: .85; }

/* ─────────────────── NAV ─────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 60px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gap);
  box-shadow: 0 2px 16px rgba(0,0,0,.14);
}
.nav-logo { color: #fff; }
.nl-main {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.nav-cta {
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 9px 18px;
  border-radius: 6px;
  transition: background .15s;
}
.nav-cta:hover { background: var(--green-d); }

/* ─────────────────── HERO ─────────────────── */
.hero {
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  position: relative;
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
  padding: 80px 56px 80px var(--gap);
  max-width: 560px;
  margin-left: auto;
}
.hero-left .label { color: var(--amber); margin-bottom: 0; }
.hero-left h1 {
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: #fff;
}
.hero-left h1 em { font-style: normal; font-weight: 500; color: var(--orange); }
.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  max-width: 420px;
}
.hero-checks {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.hero-checks li {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  background: rgba(255,255,255,.92);
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 7px;
  max-width: 100%;
}
.hero-checks li::before {
  content: "✓";
  font-size: 11px;
  font-weight: 900;
  background: var(--green);
  color: #fff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-right { position: relative; overflow: hidden; }
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, transparent 25%);
  pointer-events: none;
}

/* ─────────────────── DOR / COMPARATIVO ─────────────────── */
.pain { background: var(--white); }
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.pain-left h2 { margin-bottom: 28px; }
.pain-note {
  font-size: 17px;
  font-style: italic;
  color: var(--navy);
  font-weight: 600;
  border-left: 3px solid var(--orange);
  padding-left: 16px;
  line-height: 1.6;
}
.pain-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 48px;
}
blockquote {
  background: var(--cream);
  border-left: 3px solid var(--orange);
  border-radius: 0 12px 12px 0;
  padding: 16px 18px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* Comparativo de solução (mercado x solução) */
.solution-compare .pain-right.compare-cols {
  padding-top: 0;
  flex-direction: row;
  gap: 16px;
}
.compare-col {
  flex: 1;
  border-radius: 14px;
  padding: 22px 20px;
  border: 1px solid var(--line);
}
.compare-col h4 {
  font-family: var(--display);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 14px;
}
.compare-col ul { display: flex; flex-direction: column; gap: 10px; }
.compare-col li {
  font-size: 14px;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
  color: var(--muted);
}
.compare-col-bad { background: rgba(198,55,60,.06); }
.compare-col-bad h4 { color: var(--red); }
.compare-col-bad li::before { content: '✕'; position: absolute; left: 0; color: var(--red); font-weight: 900; font-size: 12px; }
.compare-col-good { background: rgba(46,159,91,.08); }
.compare-col-good h4 { color: var(--green-d); }
.compare-col-good li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 900; font-size: 12px; }

/* ─────────────────── DEMONSTRATIVO (POR DENTRO) ─────────────────── */
.inside { background: var(--cream); padding: 72px 0; overflow: hidden; }
.inside-header { padding: 0 var(--gap) 44px; }
.inside-sub { color: var(--muted); font-size: 15px; margin-top: 14px; }
.inside-frame {
  width: min(100% - 2 * var(--gap), var(--w));
  margin-inline: auto;
  padding: 32px 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(20,39,63,.08);
}
.inside-marquee {
  display: flex;
  flex-direction: column;
  gap: 18px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.inside-row { overflow: hidden; width: 100%; }
.inside-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: inside-scroll-left 20s linear infinite;
}
.inside-track-reverse { animation-name: inside-scroll-right; animation-duration: 23s; }
.inside-track img {
  width: 300px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
  flex-shrink: 0;
  display: block;
}
.inside-row:hover .inside-track { animation-play-state: paused; }
.inside-note-wrap { padding: 40px var(--gap) 0; }
.inside-note { color: var(--muted); font-size: 15px; line-height: 1.6; max-width: 560px; margin: 0 auto; }
.inside-note strong { color: var(--navy); font-weight: 700; }

/* ─────────────────── PROVA SOCIAL ─────────────────── */
.social-proof { background: var(--white); }
.social-proof-img {
  max-width: 480px;
  margin: 40px auto 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 16px 48px rgba(20,39,63,.12);
}
.social-proof-img img { width: 100%; height: auto; display: block; }

@keyframes inside-scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes inside-scroll-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@media (prefers-reduced-motion: reduce) { .inside-track { animation: none; } }
@media (max-width: 800px) {
  .inside { padding: 56px 0; }
  .inside-frame { padding: 20px 0; border-radius: 18px; }
  .inside-track img { width: 200px; }
}

/* ─────────────────── BENEFÍCIOS (feat-list) ─────────────────── */
.benefits { background: var(--navy); }
.benefits-header { margin-bottom: 48px; }
.feat-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-radius: 14px;
  padding: 22px 22px 24px;
}
.feat-list li:nth-child(3n+1) { background: var(--tint); }
.feat-list li:nth-child(3n+2) { background: var(--white); }
.feat-list li:nth-child(3n+3) { background: #FBEAEA; }
.feat-num {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
  color: #fff;
}
.feat-list li:nth-child(3n+1) .feat-num { background: var(--green); }
.feat-list li:nth-child(3n+2) .feat-num { background: var(--navy); }
.feat-list li:nth-child(3n+3) .feat-num { background: var(--red); }
.feat-tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.feat-body h3 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 6px;
}
.feat-body p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ─────────────────── COMPARATIVO DE VIDA (SECRET) ─────────────────── */
.secret { background: var(--tint); }
.secret-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.secret-text { display: flex; flex-direction: column; gap: 20px; }
.secret-text h2 { margin: 0; }
.secret-lead {
  font-size: 18px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.55;
  font-weight: 500;
}
.secret-body { font-size: 16px; color: var(--muted); line-height: 1.75; }
.secret-quote {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  border-left: 3px solid var(--orange);
  padding-left: 16px;
  margin: 4px 0 8px;
  line-height: 1.4;
  text-transform: uppercase;
}
.secret-visual { position: relative; }
.secret-jar { border-radius: 20px; overflow: hidden; position: relative; box-shadow: 0 20px 56px rgba(20,39,63,.18); }
.secret-jar img { width: 100%; height: auto; display: block; }

/* ─────────────────── HEADLINE DE URGÊNCIA (BLOCO 04) ─────────────────── */
.bonus-urgency-simple { background: var(--navy); }
.bonus-urgency-simple .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.bonus-urgency-simple h2 { margin: 0; }

/* ─────────────────── IDEAL PARA VOCÊ ─────────────────── */
.for-you { background: var(--ink); }
.for-you .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.for-you h2 { margin-bottom: 0; }
.check-list { display: flex; flex-direction: column; gap: 10px; max-width: 520px; width: 100%; text-align: left; }
.check-list li {
  font-size: 16px;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 15px 18px 15px 50px;
  position: relative;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  width: 22px; height: 22px;
  background: var(--orange);
  color: #fff;
  font-size: 11px; font-weight: 900;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ─────────────────── PRODUTO PRINCIPAL ─────────────────── */
.recipes { background: var(--white); padding-top: 0; }
.recipes-header { background: var(--navy); text-align: center; padding: 88px var(--gap) 80px; }
.recipes-header h2 { margin-bottom: 20px; }
.recipes-sub { font-size: 17px; color: rgba(255,255,255,.6); max-width: 560px; margin: 0 auto; line-height: 1.65; }
.recipes > .container { padding-top: 56px; }

.salads-featured.product-featured {
  display: block;
  margin-bottom: 0;
}
.sf-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.sf-card-wide {
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: stretch;
}
.sf-img { position: relative; background: var(--cream); overflow: hidden; }
.sf-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sf-body { padding: 32px 36px; display: flex; flex-direction: column; gap: 12px; justify-content: center; }
.sf-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(226,113,29,.1);
  padding: 3px 9px;
  border-radius: 4px;
  width: fit-content;
}
.sf-body h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.15;
}
.sf-body p { font-size: 15px; color: var(--muted); line-height: 1.65; }

.recipes-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 44px;
  text-align: center;
}
.recipes-cta-note { font-size: 15px; color: var(--muted); line-height: 1.65; max-width: 540px; }
.recipes-cta-note strong { color: var(--navy); font-weight: 700; }

/* ─────────────────── BÔNUS ─────────────────── */
.bonuses { background: var(--tint); }
.bonuses-top { max-width: 560px; margin-bottom: 52px; display: flex; flex-direction: column; gap: 12px; }
.bonuses-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 8px 18px;
  border-radius: 100px;
  width: fit-content;
}
.bonuses-top h2 { margin: 0; }
.bonuses-sub { font-size: 16px; color: var(--muted); line-height: 1.65; }
.bonuses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bonus-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .2s, box-shadow .2s;
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(20,39,63,.14); }
.bonus-img { position: relative; background: var(--cream); overflow: hidden; }
.bonus-img img { width: 100%; height: auto; display: block; transition: transform .4s; }
.bonus-card:hover .bonus-img img { transform: scale(1.03); }
.bonus-tag {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--orange);
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.bonus-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; }
.bonus-body h4 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.25;
}
.bonus-body p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ─────────────────── OFERTA ─────────────────── */
.offer { background: var(--cream); }
.offer-card {
  background: var(--white);
  border-radius: 20px;
  padding: 56px 52px;
  box-shadow: 0 16px 52px rgba(20,39,63,.12);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.offer-card h2 { margin-top: 4px; }
.offer-bundle { width: 100%; max-width: 680px; margin: -8px auto 0; }
.offer-bundle img { width: 100%; height: auto; display: block; border-radius: 14px; }
.offer-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.offer-list li { font-size: 15px; color: var(--muted); display: flex; align-items: center; gap: 12px; }
.ck {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  font-size: 10px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.ck-bonus {
  flex-shrink: 0;
  background: rgba(240,169,58,.2);
  color: #8A5A0E;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
.price-block { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.price-block small { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--quiet); }
.price-old { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 4px; }
.p-was { font-size: 13px; color: var(--quiet); font-weight: 500; }
.p-strike {
  font-size: 18px;
  font-weight: 700;
  color: var(--quiet);
  text-decoration: line-through;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
}
.price-save {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange-d);
  background: rgba(226,113,29,.08);
  border: 1px solid rgba(226,113,29,.2);
  border-radius: 6px;
  padding: 5px 14px;
}
.price-num { display: flex; align-items: flex-start; gap: 4px; }
.p-curr { font-family: var(--display); font-size: 22px; font-weight: 700; color: var(--quiet); margin-top: 14px; }
.p-val {
  font-family: var(--display);
  font-size: 92px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -.02em;
}
.p-val sup { font-size: 36px; vertical-align: super; }
.price-sub { font-size: 13px; color: var(--quiet); }
.btn-offer { width: 100%; max-width: 100%; font-size: 17px; min-height: 76px; border-radius: 12px; }
.offer-trust { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; font-size: 13px; color: var(--muted); }
.offer-timer { text-align: center; font-size: 14px; font-weight: 700; color: var(--orange-d); margin: 8px 0 0; }
.offer-timer .countdown-timer { font-variant-numeric: tabular-nums; }
.guarantee {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--tint);
  border-radius: 12px;
  padding: 20px 24px;
}
.guarantee-badge-icon { flex-shrink: 0; font-size: 44px; line-height: 1; }
.guarantee p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.guarantee strong { color: var(--navy); }

/* ─────────────────── COMO É O ACESSO (EASE) ─────────────────── */
.ease { background: var(--white); }
.ease-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.ease-photo { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 56px rgba(20,39,63,.16); }
.ease-photo img { width: 100%; height: auto; display: block; }
.ease-text h2 { margin-bottom: 16px; }
.ease-text > p { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 32px; }
.ease-list { display: flex; flex-direction: column; gap: 18px; }
.ease-list li { display: flex; align-items: flex-start; gap: 14px; }
.ease-list li > span {
  font-size: 22px;
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--tint);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.ease-list li div { padding-top: 2px; }
.ease-list b { display: block; font-size: 15px; color: var(--navy); margin-bottom: 2px; }
.ease-list small { font-size: 13px; color: var(--quiet); }

/* ─────────────────── FAQ ─────────────────── */
.faq { background: var(--white); }
.faq-title {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 0 0 40px;
  text-align: center;
}
details { border-bottom: 1px solid var(--line); padding: 20px 0; }
details:first-of-type { border-top: 1px solid var(--line); }
summary {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform .2s;
}
details[open] summary::after { transform: rotate(45deg); }
details p { font-size: 15px; color: var(--muted); line-height: 1.7; padding-top: 14px; }

/* ─────────────────── FECHAMENTO ─────────────────── */
.closing { background: var(--navy); }
.closing .container { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.closing h2 { margin-bottom: 0; }
.closing-sub { font-size: 17px; color: rgba(255,255,255,.65); max-width: 440px; line-height: 1.65; }
.closing-lock { font-size: 12px; color: rgba(255,255,255,.4); }

/* ─────────────────── FOOTER ─────────────────── */
footer {
  background: var(--ink);
  text-align: center;
  padding: 32px var(--gap);
  font-size: 12px;
  color: rgba(255,255,255,.36);
  line-height: 1.75;
}
footer b { display: block; color: rgba(255,255,255,.65); font-size: 13px; margin-bottom: 6px; }
.footer-cta {
  display: inline-block;
  margin-top: 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(226,113,29,.4);
  padding-bottom: 1px;
  transition: color .15s;
}
.footer-cta:hover { color: var(--amber); }

/* ─────────────────── STICKY MOBILE ─────────────────── */
.sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--ink);
  padding: 12px 16px;
  z-index: 200;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 24px rgba(0,0,0,.2);
}
.sticky span { font-size: 13px; color: rgba(255,255,255,.7); }
.sticky b { color: #fff; }
.sticky a {
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 8px;
  letter-spacing: .04em;
  white-space: nowrap;
}

/* ══════════════ RESPONSIVO ══════════════ */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 64px var(--gap) 48px; max-width: 100%; margin: 0; }
  .hero-right { height: auto; }
  .hero-img { height: auto; object-fit: initial; }
  .hero-right::after { background: linear-gradient(to bottom, var(--navy) 0%, transparent 20%); }

  .pain-grid { grid-template-columns: 1fr; gap: 40px; }
  .pain-right { padding-top: 0; }
  .solution-compare .pain-right.compare-cols { flex-direction: column; }

  .secret-grid { grid-template-columns: 1fr; gap: 40px; }

  .feat-list { grid-template-columns: 1fr; }

  .sf-card-wide { grid-template-columns: 1fr; }
  .sf-img img { max-height: 360px; }

  .bonuses-grid { grid-template-columns: 1fr; }
  .bonuses-top { max-width: 100%; align-items: center; text-align: center; }

  .ease-grid { grid-template-columns: 1fr; gap: 40px; }
  .ease-photo { order: -1; max-width: 320px; margin: 0 auto; }
}

@media (max-width: 600px) {
  .container { padding: 64px 16px; }

  .hero-left { padding: 48px 16px 36px; gap: 20px; }
  .hero-left h1 { font-size: clamp(32px, 10vw, 48px); }
  .hero-desc { font-size: 16px; }

  .offer-card { padding: 32px 16px; }
  .p-val { font-size: 68px; }
  .p-val sup { font-size: 28px; }

  h2 { text-align: center !important; }
  .label { text-align: center !important; }

  .hero-left { text-align: center; align-items: center; }
  .hero-checks { justify-content: center; width: 100%; }
  .hero-desc { text-align: center; }

  .pain-left h2 { text-align: center !important; }
  .pain-note { text-align: left !important; }

  .secret-text { align-items: center; }
  .secret-text h2 { text-align: center !important; }
  .secret-lead { text-align: center; }
  .secret-body { text-align: left; }
  .secret-text .btn-primary { align-self: stretch; text-align: center; }

  .ease-text h2 { text-align: center !important; }
  .ease-text > p { text-align: center; }
  .ease-list li { text-align: left; }

  .check-list li { font-size: 14px; padding: 13px 14px 13px 44px; }

  .sticky { display: flex; }
  body { padding-bottom: 60px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
}
