/* ============================================================
   Atlas Clínico dos Vícios — Landing Page
   Design system: editorial claro, serif azul-marinho, aquarela terrosa
   Mobile-first. Sem dependências externas.
   ============================================================ */

:root {
  /* Paleta herdada do produto real */
  --cream: #faf6ee;
  --cream-2: #f3ecdc;
  --paper: #fffdf8;
  --navy: #1c2b4a;
  --navy-2: #2a3f66;
  --ink: #2b2620;
  --ink-soft: #5c5346;
  --gold: #c8952f;
  --gold-soft: #e4b95c;
  --terracotta: #c1683f;
  --terracotta-soft: #e8d3c4;
  --line: #e4dac4;
  --success: #3f6b4f;

  --dark-bg: #16213a;
  --dark-bg-2: #1f2e4d;
  --dark-ink: #f3ecdc;

  --font-serif: "Iowan Old Style", "Palatino Linotype", Georgia, "Times New Roman", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 8px 30px rgba(28, 43, 74, 0.10);
  --shadow-lift: 0 16px 40px rgba(28, 43, 74, 0.16);

  --container: 1120px;
  color-scheme: light;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  /* clip (não hidden): corta overflow acidental da página sem quebrar o
     scroll horizontal por touch dos carrosséis internos — overflow-x:
     hidden num ancestral impede o iOS Safari de delegar o gesto de swipe
     horizontal para filhos com seu próprio overflow-x: auto. */
  overflow-x: clip;
}

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

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

section { position: relative; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

h1, h2, h3, .serif {
  font-family: var(--font-serif);
  color: var(--navy);
  font-weight: 400;
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.9rem, 5.5vw, 2.7rem);
  margin-bottom: 14px;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 36px;
}

.section-head p {
  color: var(--ink-soft);
  font-size: 1.14rem;
}

.lede {
  color: var(--ink-soft);
  font-size: 1.1rem;
}

/* ---------- reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 17px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-align: center;
  line-height: 1.2;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--navy);
  color: var(--cream);
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--navy-2); box-shadow: var(--shadow-lift); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(200, 149, 47, 0.35);
}
.btn-gold:hover { background: var(--gold-soft); }

.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover { background: rgba(28, 43, 74, 0.06); }

.btn-block { width: 100%; }
.btn small { display: block; font-weight: 500; font-size: 0.78rem; opacity: 0.8; margin-top: 2px; }

.btn-arrow { font-size: 1.1em; }

/* ============ PROMO BAR (sticky, "somente até hoje") ============ */
.promo-bar {
  background: var(--terracotta);
  color: #fff8ee;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 9px 14px;
}

/* ============ HERO ============ */
.hero {
  padding: 32px 0 40px;
  background:
    radial-gradient(ellipse 600px 400px at 85% -10%, rgba(200,149,47,0.14), transparent),
    var(--cream);
}
.hero .container {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.hero-copy { text-align: center; }
.hero-copy h1 {
  font-size: clamp(1.7rem, 6vw, 2.5rem);
  margin-bottom: 4px;
}
.hero-copy h1 strong {
  font-weight: 400;
  font-size: 1.5em;
  color: var(--navy);
  display: block;
  margin-bottom: 2px;
}
.hero-copy h1 .h1-rest {
  font-size: 0.72em;
  color: var(--ink-soft);
  font-family: var(--font-sans);
  font-weight: 500;
  line-height: 1.4;
  display: block;
}
.hero-copy h1 em {
  font-style: normal;
  color: var(--terracotta);
}

/* mockup logo abaixo da headline, antes do resto da copy */
.hero-visual { display: flex; justify-content: center; margin: 0 0 8px; }
.hero-visual img {
  max-width: 420px;
  filter: drop-shadow(0 24px 40px rgba(28,43,74,0.20));
}

.hero-sub {
  color: var(--ink-soft);
  font-size: 1.16rem;
  max-width: 46ch;
  margin: 0 auto 18px;
}
.hero-hook {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--navy-2);
  font-size: 1.28rem;
  max-width: 40ch;
  margin: 0 auto 26px;
  position: relative;
  padding: 0 8px;
}
.hero-actions { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.hero-actions .btn { width: 100%; max-width: 380px; }
.hero-link-secondary {
  font-size: 0.98rem;
  color: var(--navy-2);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.trust-strip {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  font-size: 0.86rem;
  color: var(--ink-soft);
}
.trust-strip span { display: flex; align-items: center; gap: 6px; }

.stat-strip {
  background: var(--navy);
  color: var(--cream);
  padding: 20px 0;
}
.stat-strip .container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  text-align: center;
}
.stat-strip .stat b {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--gold-soft);
}
.stat-strip .stat span {
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ============ SECTION: generic light ============ */
.section { padding: 60px 0; }
.section-alt { background: var(--paper); }

/* ============================================================
   INFINITE MARQUEE CAROUSEL (auto-scroll, sensação de borda
   infinita, com suporte a arrasto manual em mobile e desktop)
   ------------------------------------------------------------
   Estrutura esperada:
   <div class="marquee" data-marquee>
     <div class="marquee-track" data-track>
       ...items (duplicados via JS para o loop)...
     </div>
   </div>
   ============================================================ */
.marquee {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%);
}
.marquee::-webkit-scrollbar { display: none; }
.marquee.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 6px 0 20px;
}

/* produto real — "veja antes de comprar" */
.marquee-product .marquee-track > figure {
  flex: 0 0 auto;
  width: min(78vw, 340px);
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.marquee-product img { width: 100%; }
.marquee-product figcaption {
  font-size: 0.8rem;
  color: var(--ink-soft);
  padding: 10px 14px;
  text-align: center;
}

/* módulos — capas reais */
.marquee-modules .marquee-track > .module-card {
  flex: 0 0 auto;
  width: min(60vw, 240px);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--paper);
}
.module-card img { width: 100%; }
.module-card .ph {
  aspect-ratio: 3 / 4;
  min-height: 0;
}

/* prova social — prints */
.marquee-proof .marquee-track > .proof-shot {
  flex: 0 0 auto;
  width: min(72vw, 300px);
}

.carousel-hint {
  text-align: center;
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* ============================================================
   BULLET CAROUSEL (mobile) — listas longas viram esteira
   horizontal com snap em telas pequenas; em desktop viram grid
   normal via media query mais abaixo.
   ============================================================ */
.bullet-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 4px 16px;
  scrollbar-width: none;
}
.bullet-carousel::-webkit-scrollbar { display: none; }
.bullet-carousel > * {
  flex: 0 0 82%;
  scroll-snap-align: center;
}

/* ============ ANTES / DEPOIS ============ */
.transform {
  display: grid;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}
.transform-card {
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid var(--line);
}
.transform-before {
  background: var(--cream-2);
}
.transform-after {
  background: var(--navy);
  color: var(--cream);
}
.transform-after h3, .transform-after .serif { color: var(--gold-soft); }
.transform-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.transform-before .transform-label { color: var(--terracotta); }
.transform-after .transform-label { color: var(--gold-soft); }
.transform-quote {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  line-height: 1.4;
}
.transform-arrow {
  text-align: center;
  font-size: 1.8rem;
  color: var(--gold);
}

/* ============ MECHANISM (dark contrast block) ============ */
.mechanism {
  background: var(--dark-bg);
  background-image: radial-gradient(ellipse 700px 500px at 10% 10%, rgba(200,149,47,0.10), transparent);
  color: var(--dark-ink);
  padding: 60px 0;
}
.mechanism .section-head p { color: rgba(243,236,220,0.72); }
.mechanism h2 { color: var(--cream); }
.mechanism .eyebrow { color: var(--gold-soft); }

.mech-visual { margin-bottom: 30px; }
.mech-visual .ph { min-height: 220px; }
.mech-visual img {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
}

.mech-example {
  display: grid;
  gap: 16px;
  margin-bottom: 44px;
}
.mech-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(243,236,220,0.14);
  border-radius: var(--radius);
  padding: 24px;
}
.mech-card h4 {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  color: var(--gold-soft);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.mech-card blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.22rem;
  line-height: 1.4;
}
.mech-card ul { margin-top: 12px; padding-left: 18px; font-size: 1rem; color: rgba(243,236,220,0.85); }
.mech-card li { margin-bottom: 6px; }

/* ============ O QUE VOCÊ RECEBE ============ */
.receive-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 44px;
}
.receive-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.receive-card .ph {
  min-height: 130px;
  margin-bottom: 14px;
}
.receive-icon {
  width: 92px;
  height: 92px;
  margin: 0 auto 14px;
  object-fit: contain;
}
.receive-card .num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.receive-card h3 { font-size: 1.14rem; margin-bottom: 6px; }
.receive-card p { font-size: 0.98rem; color: var(--ink-soft); }

/* ---------- módulos: agora carrossel de capas ---------- */
.modules-head { text-align: center; margin-bottom: 24px; }
.modules-head h3 { font-size: clamp(1.7rem, 4.5vw, 2.2rem); color: var(--navy); }

/* ============ PRICING ============ */
.pricing-grid {
  display: grid;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.price-card {
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px;
  position: relative;
  box-shadow: var(--shadow);
}
.price-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-lift);
}
.price-mockup {
  margin: 6px 0 18px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.price-mockup img { width: 100%; }
.price-mockup.ph { min-height: 200px; margin-top: 6px; }
.price-card.featured .price-mockup { margin-top: 20px; }

/* mockup do básico usa uma imagem com muito espaço negativo ao redor —
   recorta com object-fit em vez de mostrar a imagem inteira, pra ficar
   com altura parecida à do mockup do plano completo (que já é "cheio") */
.price-mockup-basic {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
}
.price-mockup-basic img {
  width: auto;
  height: 100%;
  object-fit: contain;
}
.price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(200,149,47,0.4);
}
.price-card h3 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.price-card .plan-tag {
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.price-list {
  list-style: none;
  display: grid;
  gap: 9px;
  margin: 16px 0 20px;
  font-size: 0.98rem;
}
.price-list li { display: flex; gap: 8px; align-items: flex-start; }
.price-list .check { color: var(--success); flex-shrink: 0; font-weight: 700; }

/* ---------- bloco de bônus (plano completo) ---------- */
.bonus-block {
  background: var(--cream-2);
  border: 1px dashed var(--gold);
  border-radius: var(--radius);
  padding: 16px;
  margin: 16px 0 8px;
  display: grid;
  gap: 10px;
}
.bonus-block-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 2px;
}
.bonus-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}
.bonus-item-text { display: flex; flex-direction: column; gap: 1px; }
.bonus-title { font-weight: 700; color: var(--navy); font-size: 0.94rem; }
.bonus-desc { font-size: 0.82rem; color: var(--ink-soft); }
.bonus-price {
  flex-shrink: 0;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--success);
  white-space: nowrap;
}
.bonus-price s { color: var(--ink-soft); font-weight: 400; margin-right: 3px; }

.price-tag {
  margin: 18px 0 6px;
}
.price-was { font-size: 0.88rem; color: var(--ink-soft); text-decoration: line-through; }
.price-now { display: flex; align-items: baseline; gap: 4px; }
.price-now .currency { font-size: 1.2rem; color: var(--navy); font-family: var(--font-serif); }
.price-now .amount { font-size: 2.6rem; font-family: var(--font-serif); color: var(--navy); }
.price-save { font-size: 0.86rem; color: var(--success); font-weight: 600; margin-bottom: 16px; }

.price-card .btn { margin-top: 6px; }

.upsell-nudge {
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--terracotta);
  margin-top: 14px;
}

/* ============ GUARANTEE ============ */
.guarantee {
  background: var(--cream-2);
}
.guarantee-box {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 44px 30px;
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.guarantee-seal {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--font-serif);
}
.guarantee-seal b { font-size: 1.6rem; line-height: 1; }
.guarantee-seal span { font-size: 0.6rem; letter-spacing: 0.06em; text-transform: uppercase; }
.guarantee-box h2 { font-size: 1.6rem; }
.guarantee-box p { color: var(--ink-soft); font-size: 1.05rem; }

/* ============ SOCIAL PROOF ============ */
.proof-shot {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.proof-shot img { width: 100%; }
.proof-shot .ph { min-height: 260px; border-radius: 0; border-width: 0 0 1px; }
.proof-shot figcaption {
  padding: 12px 16px;
  font-size: 0.86rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}

/* ---------- placeholder blocks ---------- */
.ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  background: repeating-linear-gradient(135deg, var(--cream-2), var(--cream-2) 10px, #ece2c9 10px, #ece2c9 20px);
  border: 2px dashed var(--gold);
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 0.84rem;
  padding: 24px 14px;
  min-height: 180px;
}
.ph b { color: var(--navy); font-size: 0.92rem; }
.ph-icon { font-size: 1.8rem; }

/* ============ FAQ ============ */
.faq-list { max-width: 720px; margin: 0 auto; display: grid; gap: 10px; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 600;
  font-size: 1.04rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a {
  padding: 0 20px 18px;
  font-size: 0.98rem;
  color: var(--ink-soft);
}

/* ============ FINAL CTA ============ */
.final-cta {
  background: var(--navy);
  color: var(--cream);
  text-align: center;
  padding: 60px 0 52px;
}
.final-cta h2 { color: var(--cream); }
.final-cta p { color: rgba(250,246,238,0.78); max-width: 46ch; margin: 0 auto 26px; font-size: 1.1rem; }
.final-cta .btn { max-width: 380px; margin: 0 auto; }
.final-cta .trust-strip { color: rgba(250,246,238,0.65); margin-top: 22px; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--ink);
  color: rgba(250,246,238,0.6);
  padding: 30px 0;
  text-align: center;
  font-size: 0.82rem;
}
.site-footer p { margin-top: 6px; }

/* ============ STICKY MOBILE CTA ============ */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 24px rgba(28,43,74,0.12);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .btn { width: 100%; padding: 15px 20px; font-size: 1rem; }

/* ============ MODAL (upsell) ============ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,43,74,0.55);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.is-open { opacity: 1; pointer-events: auto; }
.modal-box {
  background: var(--paper);
  width: 100%;
  max-width: 460px;
  border-radius: 20px 20px 0 0;
  padding: 28px 22px 24px;
  transform: translateY(30px);
  transition: transform 0.3s ease;
  max-height: 92vh;
  overflow-y: auto;
}
.modal-overlay.is-open .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--ink-soft);
  cursor: pointer;
  line-height: 1;
}
.modal-box { position: relative; }
.modal-badge {
  display: inline-block;
  background: var(--terracotta-soft);
  color: var(--terracotta);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.modal-box h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}
.modal-highlight {
  color: var(--terracotta);
  font-weight: 700;
  font-style: normal;
}
.modal-box p { color: var(--ink-soft); font-size: 1rem; margin-bottom: 16px; }
.modal-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.modal-price-row .was { text-decoration: line-through; color: var(--ink-soft); font-size: 0.98rem; }
.modal-price-row .now { font-family: var(--font-serif); font-size: 2.05rem; color: var(--navy); }
.modal-diff {
  background: var(--terracotta-soft);
  color: var(--terracotta);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  margin-left: 4px;
}
.modal-actions { display: grid; gap: 10px; justify-items: center; }
.modal-actions .btn { width: 100%; }
.modal-decline {
  font-size: 0.86rem;
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  padding: 4px;
}
.modal-list { list-style: none; display: grid; gap: 6px; margin-bottom: 18px; font-size: 0.96rem; }
.modal-list li { display: flex; gap: 8px; }
.modal-list .check { color: var(--gold); font-weight: 700; }

body.modal-open { overflow: hidden; }

/* ============================================================
   DESKTOP / TABLET
   ============================================================ */
@media (min-width: 720px) {
  .hero-copy { text-align: center; max-width: 680px; margin: 0 auto; }
  .hero-copy h1 { max-width: none; }
  .hero-visual { margin: 16px 0 30px; }
  .hero-visual img { max-width: 380px; }
  .hero-sub, .hero-hook { margin-left: auto; margin-right: auto; }
  .hero-actions { align-items: center; }
  .hero-actions .btn { width: auto; min-width: 300px; }
  .trust-strip { justify-content: center; }

  .receive-grid { grid-template-columns: repeat(2, 1fr); }
  .mech-example { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }

  .transform { grid-template-columns: 1fr auto 1fr; align-items: center; }
  .transform-arrow { transform: rotate(0deg); }

  .modal-overlay { align-items: center; }
  .modal-box { border-radius: 20px; }

  .sticky-cta .container { display: flex; justify-content: center; }
  .sticky-cta .btn { max-width: 420px; }

  /* bullets em grid no desktop (o "carrossel" é só uma dinâmica mobile) */
  .bullet-carousel {
    display: grid;
    grid-template-columns: repeat(var(--bullet-cols, 3), 1fr);
    overflow: visible;
    padding: 0;
  }
  .bullet-carousel > * { flex: unset; scroll-snap-align: unset; }
}

@media (min-width: 1000px) {
  .section { padding: 84px 0; }
  h2 { font-size: 2.8rem; }
  .hero-visual img { max-width: 440px; }
}
