/* ============================================================
   LP Bíblia 120 Anos · IPP / Editora Heziom
   Sistema visual — paleta, tipografia, tokens, componentes
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Paleta (briefing) */
  --navy:        #11151C;
  --navy-deep:   #0B0E13;
  --navy-soft:   #1A2029;
  --gold:        #E5B875;   /* foil */
  --gold-base:   #C9A24B;
  --gold-deep:   #A8843A;
  --terracotta:  #8E3D1F;
  --cream:       #F0E9DB;
  --paper:       #F7F2E8;
  --white:       #FFFFFF;
  --ink:         #171A1F;
  --ink-soft:    #4A4F57;
  --on-dark:     #ECE6D8;
  --on-dark-mut: #BAB7A8;

  /* Fontes */
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body:    "Manrope", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  /* Espaçamento de seção (controlável via Tweaks) */
  --section-pad: 120px;
  --container: 1200px;

  /* Linhas / sombras douradas */
  --hairline-dark: rgba(229,184,117,0.22);
  --hairline-light: rgba(23,26,31,0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

::selection { background: var(--gold); color: var(--navy); }

/* ---------- Tipografia utilitária ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-base);
  margin: 0;
}
.eyebrow--ondark { color: var(--gold); }

.display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}
.display em { font-style: italic; font-weight: 500; }

h1.display { font-size: clamp(44px, 6.4vw, 88px); }
h2.display { font-size: clamp(36px, 4.6vw, 62px); }
h3.display { font-size: clamp(26px, 3vw, 38px); }

.lead {
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.6;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.on-dark .lead, .lead--ondark { color: var(--on-dark-mut); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: 32px;
}
section { position: relative; }

.sec-dark {
  background:
    radial-gradient(120% 80% at 80% -10%, rgba(229,184,117,0.07), transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--on-dark);
}
.sec-light { background: var(--paper); color: var(--ink); }
.sec-white { background: var(--white); color: var(--ink); }
.sec-cream { background: var(--cream); color: var(--ink); }

.pad-y { padding-block: var(--section-pad); }

.on-dark { color: var(--on-dark); }

/* Marca d'água da gravura nas seções escuras */
.woodcut-bg {
  position: absolute;
  inset: 0;
  background-image: var(--woodcut, none);
  background-repeat: no-repeat;
  background-position: right -60px bottom -40px;
  background-size: clamp(360px, 38vw, 560px);
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}
.container { position: relative; z-index: 1; }

/* divisor de tulipa */
.tulip-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto;
}
.tulip-divider .rule {
  height: 1px; width: clamp(40px, 12vw, 120px);
  background: linear-gradient(90deg, transparent, var(--gold-base));
}
.tulip-divider .rule.r { background: linear-gradient(90deg, var(--gold-base), transparent); }
.tulip-divider img { width: 30px; height: auto; opacity: 0.9; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: 0.01em;
  padding: 15px 28px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), background .25s, color .25s, border-color .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-gold {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-base) 100%);
  color: var(--navy);
  box-shadow: 0 10px 30px -12px rgba(229,184,117,0.6);
}
.btn-gold:hover { box-shadow: 0 14px 38px -10px rgba(229,184,117,0.75); transform: translateY(-2px); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--hairline-dark);
}
.btn-outline-gold:hover { border-color: var(--gold); background: rgba(229,184,117,0.06); }

.btn-navy {
  background: var(--navy);
  color: var(--on-dark);
}
.btn-navy:hover { background: var(--navy-soft); transform: translateY(-2px); }

.btn-outline-navy {
  background: transparent;
  color: var(--ink);
  border-color: var(--hairline-light);
}
.btn-outline-navy:hover { border-color: var(--navy); }

.btn-lg { padding: 18px 38px; font-size: 16.5px; }
.btn-block { width: 100%; }

/* ---------- Barra de anúncio ---------- */
.announce {
  background: var(--navy-deep);
  color: var(--on-dark);
  border-bottom: 1px solid var(--hairline-dark);
  font-size: 13px;
}
.announce .container {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  padding-block: 11px; flex-wrap: wrap;
}
.announce .tag {
  font-family: var(--font-mono);
  letter-spacing: 0.22em; text-transform: uppercase; font-size: 11.5px;
  color: var(--gold);
}
.countdown { display: inline-flex; gap: 10px; align-items: baseline; }
.countdown .unit { display: inline-flex; align-items: baseline; gap: 4px; font-variant-numeric: tabular-nums; }
.countdown .num {
  font-family: var(--font-mono); font-weight: 600; font-size: 14px; color: var(--on-dark);
}
.countdown .lbl { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--on-dark-mut); }
.announce.hide-countdown .countdown { display: none; }

/* ---------- Navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11,14,19,0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--hairline-dark);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; padding-block: 16px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 30px; width: auto; }
.nav-logo-word {
  font-family: var(--font-display); font-weight: 600; font-size: 25px; line-height: 1;
  letter-spacing: 0.26em; color: var(--on-dark); padding-left: 2px;
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 14px; color: var(--on-dark-mut); transition: color .2s; font-weight: 500;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-price { font-family: var(--font-mono); font-size: 12px; color: var(--on-dark-mut); letter-spacing: 0.06em; }

/* ---------- HERO ---------- */
.hero { overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: 48px;
  align-items: center;
  padding-block: clamp(70px, 8vw, 120px) clamp(70px, 8vw, 116px);
}
.hero-seal {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 16px 8px 10px;
  border: 1px solid var(--hairline-dark);
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-seal img { width: 26px; }
.hero-seal span { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }

.hero h1 { color: #F4EEDF; margin-bottom: 24px; }
.hero h1 em { color: var(--gold); }
.hero .lead { max-width: 30em; margin-bottom: 30px; color: rgba(236,230,216,0.86); }
.hero .lead strong { color: #F4EEDF; }

.hero-bullets { list-style: none; padding: 0; margin: 0 0 36px; display: grid; gap: 12px; }
.hero-bullets li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15.5px; color: var(--on-dark); line-height: 1.45;
}
.hero-bullets .tick {
  flex: none; width: 18px; height: 18px; margin-top: 2px;
  border: 1px solid var(--gold-base); border-radius: 50%;
  display: grid; place-items: center;
}
.hero-bullets .tick::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* bloco de oferta no hero */
.hero-offer {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 18px 0 0;
  border-top: 1px solid var(--hairline-dark);
}
.price { display: flex; flex-direction: column; line-height: 1.15; }
.price .from { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-mut); margin-bottom: 4px; }
.price .from s { text-decoration: line-through; opacity: 0.7; }
.price b { font-family: var(--font-display); font-weight: 600; font-size: 44px; color: var(--gold); }
.price .cond { font-size: 12.5px; color: var(--on-dark-mut); margin-top: 2px; }
.price--promo b { color: var(--gold); font-size: 50px; line-height: 1; }
.price--promo .price-row { display: flex; align-items: center; gap: 10px; margin: 2px 0 3px; }
.price--promo .was {
  font-family: var(--font-display); font-size: 28px; line-height: 1; color: var(--on-dark-mut);
  text-decoration: line-through; text-decoration-color: #C8462E; text-decoration-thickness: 2px;
}
.price--promo .off {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--navy); background: var(--gold); padding: 3px 9px; border-radius: 100px;
}
.price--light .from { color: var(--ink-soft); }
.price--light.price--promo b { color: var(--gold-deep); }
.price--light.price--promo .was { color: var(--ink-soft); text-decoration-color: #C8462E; }
.variant-price .o s { text-decoration: line-through; text-decoration-color: #C8462E; text-decoration-thickness: 1.5px; opacity: 0.85; }
.hero-stock {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); padding: 8px 14px; border: 1px solid var(--hairline-dark); border-radius: 100px;
  align-self: center;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-trust { margin-top: 22px; font-size: 13px; color: var(--on-dark-mut); display: flex; gap: 18px; flex-wrap: wrap; }
.hero-trust span { display: inline-flex; gap: 7px; align-items: center; }
.hero-trust b { color: var(--on-dark); font-weight: 600; }

/* visual do hero */
.hero-visual { position: relative; display: grid; place-items: center; }
.hero-glow {
  position: absolute; width: 94%; aspect-ratio: 1; border-radius: 50%;
  background:
    radial-gradient(46% 40% at 50% 64%, rgba(229,184,117,0.26), transparent 72%),
    radial-gradient(54% 54% at 50% 44%, #3E4C60 0%, #232C39 48%, rgba(15,19,25,0) 75%);
  filter: blur(3px); opacity: 0.96; z-index: 0;
}
.hero-book {
  position: relative; z-index: 2;
  width: min(90%, 460px);
  filter: drop-shadow(0 40px 55px rgba(0,0,0,0.5));
  transform: rotate(-3deg);
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
}
.hero-visual:hover .hero-book { transform: rotate(-1deg) translateY(-6px); }
.hero-badge {
  position: absolute; z-index: 3;
  right: 2%; top: 4%;
  width: 152px; height: 152px; border-radius: 50%;
  background: radial-gradient(circle at 34% 26%, #F6DEAE 0%, #E9BF80 38%, #D0A954 70%, #A8843A 100%);
  color: #2A2008;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  box-shadow:
    0 24px 52px -12px rgba(0,0,0,0.62),
    inset 0 2px 3px rgba(255,255,255,0.6),
    inset 0 -10px 20px rgba(120,88,28,0.4);
  border: 1px solid rgba(255,255,255,0.3);
}
.hero-badge::after {
  content: ""; position: absolute; inset: 9px; border-radius: 50%;
  border: 1px solid rgba(90,62,18,0.4);
  box-shadow: inset 0 0 12px rgba(120,88,28,0.25);
}
.hero-badge .hb-rule {
  width: 30px; height: 1px; background: rgba(90,62,18,0.5); margin: 8px 0 6px;
}
.hero-badge .n {
  font-family: var(--font-display); font-weight: 600; font-size: 52px; line-height: 0.78; letter-spacing: 0.01em;
}
.hero-badge .hb-anos {
  font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 22px; line-height: 1;
}
.hero-badge .hb-years {
  font-family: var(--font-mono); font-size: 8.5px; letter-spacing: 0.12em;
  color: rgba(42,32,8,0.78); white-space: nowrap;
}

/* ---------- Faixa de benefícios ---------- */
.benefits {
  border-top: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
  background: var(--navy-deep);
}
.benefits .container {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding-block: 30px;
}
.benefit {
  display: flex; gap: 14px; align-items: center;
  padding-inline: 26px;
  border-left: 1px solid var(--hairline-dark);
}
.benefit:first-child { border-left: none; padding-left: 0; }
.benefit .ico {
  flex: none; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--gold-base); display: grid; place-items: center;
  color: var(--gold);
}
.benefit .ico svg { width: 19px; height: 19px; }
.benefit b { display: block; font-size: 14.5px; color: var(--on-dark); font-weight: 600; }
.benefit small { font-size: 12.5px; color: var(--on-dark-mut); }

/* ---------- DESTAQUE DO PRODUTO ---------- */
.showcase-grid {
  display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 64px; align-items: center;
}
.showcase-visual {
  position: relative; display: grid; place-items: center;
  padding: 30px 0;
}
.showcase-pedestal {
  position: absolute; z-index: 0; width: 66%; aspect-ratio: 1.6 / 1; bottom: 8%; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(23,26,31,0.16), transparent 78%);
  filter: blur(14px);
}
.showcase-book {
  position: relative; z-index: 2; width: min(80%, 380px);
  transform: rotate(2deg);
  filter: drop-shadow(0 40px 56px rgba(23,26,31,0.4));
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
}
.showcase-visual:hover .showcase-book { transform: rotate(0deg) translateY(-6px); }
.showcase-tag {
  position: absolute; z-index: 3; bottom: 8px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--navy); background: var(--white); padding: 9px 18px; border-radius: 100px;
  box-shadow: 0 14px 30px -14px rgba(23,26,31,0.4); border: 1px solid var(--hairline-light);
}
.showcase-copy .eyebrow { margin-bottom: 16px; }
.showcase-copy h2 { margin-bottom: 20px; }
.showcase-copy .lead { margin-bottom: 32px; max-width: 34em; }

.feature-list { list-style: none; padding: 0; margin: 0 0 36px; display: grid; gap: 20px; }
.feature-list li { display: flex; gap: 16px; align-items: flex-start; }
.feature-list .f-ico {
  flex: none; width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--gold-base); display: grid; place-items: center; color: var(--gold-deep);
  background: rgba(201,162,75,0.08);
}
.feature-list .f-ico svg { width: 20px; height: 20px; }
.feature-list b { display: block; font-size: 16px; color: var(--ink); font-weight: 600; margin-bottom: 2px; }
.feature-list small { font-size: 14px; color: var(--ink-soft); line-height: 1.45; }

.showcase-cta {
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
  padding-top: 28px; border-top: 1px solid var(--hairline-light);
}
.price--light b { color: var(--ink); }
.price--light .cond { color: var(--ink-soft); }

/* ---------- HISTÓRIA ---------- */
.history-head { max-width: 720px; margin-bottom: 64px; }
.history-head .eyebrow { margin-bottom: 18px; }
.history-head h2 { margin-bottom: 22px; }
.history-quote {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(20px, 2.1vw, 27px); line-height: 1.45; color: var(--ink);
  border-left: 2px solid var(--gold-base); padding-left: 24px; max-width: 40em;
}

.timeline-h {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px;
  position: relative; padding-top: 6px;
}
.timeline-h::before {
  content: ""; position: absolute; top: 6px; left: 7px; right: 7px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-base) 6%, var(--gold-base) 94%, transparent);
}
.tl-col { display: flex; flex-direction: column; }
.tl-dot {
  width: 13px; height: 13px; border-radius: 50%; background: var(--gold-base);
  border: 2px solid var(--paper); position: relative; z-index: 2; margin-bottom: 20px;
  box-shadow: 0 0 0 4px rgba(201,162,75,0.12);
}
.tl-year {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.2em;
  color: var(--gold-deep); margin-bottom: 16px; display: block;
}
.tl-col .tl-media { position: relative; margin-bottom: 20px; }
.tl-col .tl-media img {
  width: 100%; aspect-ratio: 4 / 3.2; object-fit: cover; border-radius: 3px;
  filter: saturate(0.92);
  box-shadow: 0 22px 44px -26px rgba(23,26,31,0.5);
}
.tl-col .tl-media figcaption {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.06em;
  color: var(--ink-soft); margin-top: 10px; text-transform: uppercase;
}
.tl-col h3 { font-size: clamp(20px, 1.7vw, 24px); margin: 0 0 10px; line-height: 1.12; }
.tl-col p { color: var(--ink-soft); margin: 0; font-size: 14.5px; line-height: 1.5; }

.tl-hint {
  display: none;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-deep); text-align: center; margin: 18px 0 0;
  align-items: center; justify-content: center; gap: 10px;
}
.tl-hint-arrow { color: var(--gold-base); animation: tl-nudge 1.8s ease-in-out infinite; display: inline-block; }
.tl-hint-arrow:last-child { animation-delay: .9s; }
@keyframes tl-nudge { 0%,100% { transform: translateX(0); opacity: .5; } 50% { transform: translateX(3px); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .tl-hint-arrow { animation: none; } }

.history-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  margin-top: 48px; padding: 32px 36px;
  background: var(--white); border: 1px solid var(--hairline-light); border-radius: 5px;
}
.history-cta-text { display: flex; align-items: center; gap: 20px; max-width: 44em; }
.history-cta-text img { width: 40px; height: auto; flex: none; opacity: 0.85; }
.history-cta-text p { margin: 0; color: var(--ink-soft); font-size: 16px; }
.history-cta-text strong { color: var(--ink); font-weight: 600; }
@media (max-width: 720px) {
  .history-cta { flex-direction: column; align-items: flex-start; gap: 22px; padding: 26px; }
  .history-cta .btn { width: 100%; }
}

/* ---------- Citação pastor ---------- */
.pastor { text-align: center; }
.pastor .tulip { width: 44px; margin: 0 auto 30px; opacity: 0.95; }
.pastor blockquote {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(26px, 3.4vw, 44px); line-height: 1.28;
  color: #F4EEDF; max-width: 18em; margin: 0 auto 28px; text-wrap: balance;
}
.pastor blockquote em { color: var(--gold); font-style: italic; }
.pastor cite {
  font-style: normal; display: block;
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--on-dark-mut);
}
.pastor cite b { color: var(--gold); font-weight: 500; display: block; margin-bottom: 4px; letter-spacing: 0.16em; }

/* ---------- PRODUTO ---------- */
.product-head { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.product-head .eyebrow { margin-bottom: 16px; }
.product-head h2 { margin-bottom: 20px; }

.variants { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 64px; }
.variant {
  background: var(--white); border: 1px solid var(--hairline-light);
  border-radius: 4px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow .35s, transform .35s, border-color .35s;
}
.variant:hover { box-shadow: 0 30px 60px -30px rgba(23,26,31,0.35); transform: translateY(-4px); border-color: var(--gold-base); }
.variant-media {
  position: relative; padding: 44px; display: grid; place-items: center;
  background: radial-gradient(120% 100% at 50% 0%, #fbf8f1, #efe7d7);
}
.variant.dark .variant-media { background: radial-gradient(120% 100% at 50% 0%, #2a2f38, #14181f); }
.variant-media img { width: min(72%, 280px); filter: drop-shadow(0 26px 40px rgba(0,0,0,0.35)); }
.variant-chip {
  position: absolute; top: 20px; left: 20px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px; background: rgba(255,255,255,0.9); color: var(--navy);
}
.variant.dark .variant-chip { background: rgba(229,184,117,0.16); color: var(--gold); }
.variant-body { padding: 30px 30px 32px; display: flex; flex-direction: column; flex: 1; }
.variant-body h3 { margin: 0 0 8px; }
.variant-body p { color: var(--ink-soft); font-size: 15px; margin: 0 0 20px; flex: 1; }
.variant-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 6px; }
.variant-price .v { font-family: var(--font-display); font-size: 34px; font-weight: 600; color: var(--ink); }
.variant-price .o { font-family: var(--font-mono); font-size: 12px; color: var(--ink-soft); }
.variant-pay { font-size: 13px; color: var(--ink-soft); margin-bottom: 22px; }

/* Combo (bundle destacado, largura total) */
.combo {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 0;
  background: var(--white); border: 1.5px solid var(--gold-base);
  border-radius: 4px; overflow: hidden; margin: 0 0 64px;
  box-shadow: 0 30px 60px -34px rgba(23,26,31,0.30);
}
.combo-media {
  position: relative; display: grid; place-items: center; padding: 40px;
  background: radial-gradient(120% 100% at 50% 0%, #2a2f38, #14181f);
}
.combo-media img { width: min(88%, 460px); filter: drop-shadow(0 30px 46px rgba(0,0,0,0.45)); }
.combo-flag {
  position: absolute; top: 20px; left: 20px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px; background: var(--gold); color: var(--navy); font-weight: 500;
}
.combo-body { padding: 38px 40px; display: flex; flex-direction: column; justify-content: center; }
.combo-body h3 { margin: 6px 0 10px; }
.combo-body > p { color: var(--ink-soft); font-size: 15px; margin: 0 0 20px; }
.combo-body .variant-price { margin-bottom: 6px; }
@media (max-width: 760px) {
  .combo { grid-template-columns: 1fr; }
  .combo-media { padding: 32px; }
  .combo-body { padding: 28px 24px 30px; }
}

/* specs */
.specs {
  background: var(--white); border: 1px solid var(--hairline-light); border-radius: 4px;
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.spec { padding: 26px 28px; border-left: 1px solid var(--hairline-light); border-top: 1px solid var(--hairline-light); }
.specs .spec:nth-child(-n+3) { border-top: none; }
.specs .spec:nth-child(3n+1) { border-left: none; }
.spec .k { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 8px; }
.spec .val { font-size: 15.5px; color: var(--ink); font-weight: 500; }

/* ---------- CUPOM / LEAD ---------- */
.coupon-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.coupon-copy .eyebrow { margin-bottom: 16px; }
.coupon-copy h2 { color: #F4EEDF; margin-bottom: 18px; }
.coupon-copy p { color: var(--on-dark-mut); max-width: 32em; margin: 0; }
.coupon-card {
  background: linear-gradient(170deg, rgba(229,184,117,0.10), rgba(255,255,255,0.02));
  border: 1px solid var(--hairline-dark); border-radius: 6px; padding: 38px;
}
.coupon-form { display: flex; flex-direction: column; gap: 14px; }
.coupon-form label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.coupon-form input {
  width: 100%; padding: 15px 18px; border-radius: 3px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--hairline-dark);
  color: var(--on-dark); font-family: var(--font-body); font-size: 15px;
}
.coupon-form input::placeholder { color: var(--on-dark-mut); }
.coupon-form input:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.06); }
.coupon-reveal {
  display: none; text-align: center; padding: 8px 0 2px;
}
.coupon-reveal.show { display: block; animation: fade-up .5s ease; }
.coupon-reveal .code {
  font-family: var(--font-mono); font-size: 26px; letter-spacing: 0.22em; color: var(--gold);
  border: 1px dashed var(--gold-base); border-radius: 4px; padding: 14px; margin: 10px 0;
}
.coupon-reveal small { color: var(--on-dark-mut); font-size: 13px; }
.coupon-fine { font-size: 12px; color: var(--on-dark-mut); margin-top: 4px; text-align: center; }

@keyframes fade-up { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---------- TEMA BÍBLICO ---------- */
.scripture { text-align: center; }
.scripture .tulip { width: 40px; margin: 0 auto 26px; opacity: 0.8; }
.scripture h2 {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(38px, 5.4vw, 76px); color: var(--ink); margin: 0 0 22px; line-height: 1.05;
}
.scripture p { max-width: 36em; margin: 0 auto 18px; color: var(--ink-soft); }
.scripture .ref { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); }

/* ---------- FAQ ---------- */
.faq-head { text-align: center; margin-bottom: 50px; }
.faq-head .eyebrow { margin-bottom: 14px; }
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--hairline-light); }
.faq-item:first-child { border-top: 1px solid var(--hairline-light); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px; text-align: left;
  font-family: var(--font-display); font-size: 23px; font-weight: 500; color: var(--ink);
}
.faq-q .pm { flex: none; width: 22px; height: 22px; position: relative; }
.faq-q .pm::before, .faq-q .pm::after {
  content: ""; position: absolute; background: var(--gold-deep); transition: transform .3s;
}
.faq-q .pm::before { left: 0; top: 50%; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq-q .pm::after  { top: 0; left: 50%; width: 1.5px; height: 100%; transform: translateX(-50%); }
.faq-item.open .pm::after { transform: translateX(-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a p { margin: 0; padding: 0 4px 26px; color: var(--ink-soft); max-width: 60em; }

/* ---------- CTA FINAL ---------- */
.final-cta { text-align: center; overflow: hidden; }
.final-cta .tulip { width: 46px; margin: 0 auto 28px; }
.final-cta h2 { color: #F4EEDF; max-width: 16em; margin: 0 auto 22px; }
.final-cta p { color: var(--on-dark-mut); max-width: 34em; margin: 0 auto 36px; }
.final-cta .hero-actions { justify-content: center; }

/* ---------- FOOTER ---------- */
.footer { background: var(--navy-deep); color: var(--on-dark-mut); border-top: 1px solid var(--hairline-dark); }
.footer .container { padding-block: 70px 40px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--hairline-dark); }
.footer-brand .footer-logos {
  display: flex; align-items: center; gap: 26px; margin-bottom: 24px;
}
.footer-logos .fl-ipp { height: 104px; width: auto; }
.footer-logos-rule { width: 1px; height: 72px; background: var(--hairline-dark); }
.footer-logos .fl-heziom { display: inline-flex; flex-direction: column; align-items: center; gap: 9px; }
.footer-logos .fl-heziom img { height: 52px; width: auto; }
.footer-logos .fl-heziom-word {
  font-family: var(--font-display); font-weight: 600; font-size: 21px; line-height: 1;
  letter-spacing: 0.24em; color: var(--gold); padding-left: 4px;
}
.footer-brand p { font-size: 14px; max-width: 30em; margin: 0; }
.footer-col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin: 0 0 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-col a { font-size: 14px; color: var(--on-dark-mut); transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 30px; font-size: 12.5px; flex-wrap: wrap; }
.footer-bottom .mono { font-family: var(--font-mono); letter-spacing: 0.04em; }

/* ---------- Sticky CTA mobile ---------- */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  background: rgba(11,14,19,0.94); backdrop-filter: blur(12px);
  border-top: 1px solid var(--hairline-dark);
  display: none; align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px 18px; transform: translateY(120%); transition: transform .4s;
}
.sticky-cta.show { transform: none; }
.sticky-cta .s-price { font-family: var(--font-display); }
.sticky-cta .s-price b { font-size: 22px; color: var(--gold); font-weight: 600; }
.sticky-cta .s-price small { display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; color: var(--on-dark-mut); }

/* ---------- Modal exit-intent ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(8,10,14,0.78); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; transition: opacity .3s;
}
.modal-overlay.show { display: flex; opacity: 1; }
.modal {
  background: linear-gradient(170deg, var(--navy) 0%, var(--navy-deep) 100%);
  border: 1px solid var(--hairline-dark); border-radius: 8px;
  max-width: 460px; width: 100%; padding: 44px 40px; text-align: center; position: relative;
  transform: translateY(14px) scale(0.98); transition: transform .35s;
}
.modal-overlay.show .modal { transform: none; }
.modal .tulip { width: 44px; margin: 0 auto 22px; }
.modal h3 { color: #F4EEDF; margin: 0 0 14px; }
.modal p { color: var(--on-dark-mut); font-size: 15px; margin: 0 0 24px; }
.modal .coupon-form { text-align: left; }
.modal-close {
  position: absolute; top: 16px; right: 18px; background: none; border: none;
  color: var(--on-dark-mut); font-size: 24px; cursor: pointer; line-height: 1;
}
.modal-close:hover { color: var(--gold); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsivo ---------- */
@media (max-width: 940px) {
  :root { --section-pad: 84px; }
  .pad-y { padding-block: 84px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-book { width: min(62%, 300px); }
  .benefits .container { grid-template-columns: 1fr 1fr; gap: 24px 0; }
  .benefit:nth-child(3) { border-left: none; padding-left: 0; }
  .coupon-grid { grid-template-columns: 1fr; gap: 36px; }
  .nav-links { display: none; }
  .timeline-h { grid-template-columns: repeat(2, 1fr); gap: 36px 28px; }
  .timeline-h::before { display: none; }
  .tl-dot { display: none; }
  .showcase-grid { grid-template-columns: 1fr; gap: 40px; }
  .showcase-visual { order: -1; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .container { padding-inline: 22px; }
  .variants { grid-template-columns: 1fr; }
  /* Timeline vira carrossel horizontal */
  .timeline-h {
    display: flex; grid-template-columns: none; gap: 16px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin: 0 -22px; padding: 4px 22px 18px;
    scrollbar-width: none;
  }
  .timeline-h::-webkit-scrollbar { display: none; }
  .timeline-h::before { display: none; }
  .tl-col {
    flex: 0 0 78%; scroll-snap-align: center; max-width: 320px;
  }
  .tl-dot { display: none; }
  .tl-hint { display: flex; }
  .specs { grid-template-columns: 1fr; }
  .specs .spec { border-left: none; border-top: 1px solid var(--hairline-light); }
  .specs .spec:first-child { border-top: none; }
  .benefits .container { grid-template-columns: 1fr; gap: 18px; }
  .benefit, .benefit:nth-child(3) { border-left: none; padding-left: 0; }
  .nav-cta .nav-price { display: none; }
  .announce .container { gap: 10px 16px; }
  .sticky-cta { display: flex; }
  .hero-actions .btn { flex: 1; }
}

/* ---------- Mobile dedicado ---------- */
.cta-short { display: none; }

@media (max-width: 720px) {
  /* Navbar compacta */
  .nav .container { padding-block: 13px; }
  .nav-logo img { height: 26px; }
  .nav-logo-word { font-size: 21px; letter-spacing: 0.2em; }
  .nav-buy { padding: 11px 18px; font-size: 14px; }
  .nav-buy .cta-full { display: none; }
  .nav-buy .cta-short { display: inline; }

  /* Barra de anúncio */
  .announce { font-size: 12px; }
  .announce .tag { font-size: 10.5px; letter-spacing: 0.16em; }
  .countdown { gap: 8px; }
  .countdown .num { font-size: 13px; }

  /* Hero */
  .hero-grid { gap: 36px; padding-block: 40px 56px; }
  .hero-book { width: min(70%, 280px); }
  .hero-seal { margin-bottom: 20px; padding: 7px 14px 7px 9px; }
  .hero-seal span { font-size: 10.5px; letter-spacing: 0.18em; }
  .hero h1 { margin-bottom: 28px; }
  .hero .lead { margin-bottom: 24px; }
  .hero-bullets { margin-bottom: 28px; }
  .hero-offer { gap: 16px; }
  .hero-badge {
    width: 104px; height: 104px; right: 4%; top: -6px;
  }
  .hero-badge .n { font-size: 36px; }
  .hero-badge .hb-anos { font-size: 16px; }
  .hero-badge .hb-rule { width: 22px; margin: 5px 0 4px; }
  .hero-badge .hb-years { font-size: 7px; }
  .hero-badge::after { inset: 7px; }

  /* Preço com mais respiro */
  .price--promo b { font-size: 46px; }
  .price--promo .was { font-size: 25px; }

  /* CTAs em coluna, largura total */
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1 1 100%; }
  .hero-trust { gap: 8px 16px; margin-top: 18px; }

  /* Benefícios como lista enxuta */
  .benefits .container { padding-block: 24px; }

  /* História / timeline */
  .pad-y { padding-block: 54px; }
  .history-head { margin-bottom: 34px; }
  .history-head h2 { margin-bottom: 16px; }
  .history-head .lead { margin-top: 18px !important; }
  .history-quote { font-size: 19px; padding-left: 18px; }
  .history-cta { padding: 24px; margin-top: 28px; }
  .product-head { margin-bottom: 36px; }
  .variants { gap: 18px; margin-bottom: 36px; }
  .faq-head { margin-bottom: 30px; }
  .showcase-grid { gap: 28px !important; }

  /* Showcase */
  .showcase-book { width: min(66%, 260px); }
  .feature-list { gap: 16px; }
  .showcase-cta { gap: 18px; }
  .showcase-cta .btn { width: 100%; }

  /* Pastor / scripture */
  .pastor blockquote { font-size: 26px; }

  /* Footer logos: menores e com wrap */
  .footer .container { padding-block: 52px 36px; }
  .footer-logos { gap: 18px; flex-wrap: wrap; }
  .footer-logos .fl-ipp { height: 80px; }
  .footer-logos-rule { height: 56px; }
  .footer-logos .fl-heziom img { height: 42px; }
  .footer-logos .fl-heziom-word { font-size: 18px; }
  .footer-bottom { flex-direction: column; gap: 10px; }

  /* Sticky CTA: espaço pra não cobrir o final */
  body { padding-bottom: 72px; }
  .sticky-cta .btn { padding: 13px 22px; }
}

@media (max-width: 400px) {
  .container { padding-inline: 18px; }
  .nav-logo-word { font-size: 18px; letter-spacing: 0.16em; }
  .nav-buy { padding: 10px 15px; font-size: 13px; }
  .hero h1 { font-size: clamp(34px, 10vw, 44px); }
  .hero-badge { width: 88px; height: 88px; }
  .hero-badge .n { font-size: 30px; }
  .hero-badge .hb-anos { font-size: 14px; }
  .price--promo b { font-size: 42px; }
  .announce .container { flex-direction: column; gap: 6px; padding-block: 9px; }
}
