:root {
  --navy: #0b1830;
  --navy-2: #122849;
  --navy-3: #1a365e;
  --gold: #d5ad55;
  --gold-soft: #f1dfb1;
  --cream: #fffaf0;
  --paper: #fffdf8;
  --warm: #f7f0e4;
  --green: #176b4d;
  --green-dark: #0d5039;
  --red: #a43e3e;
  --ink: #152033;
  --muted: #5e6878;
  --line: rgba(18, 40, 73, .16);
  --shadow: 0 24px 70px rgba(5, 15, 32, .18);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  transform: translateY(-150%);
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.section { padding: 96px 0; position: relative; overflow: hidden; }
.section--light { background: var(--paper); }
.section--warm { background: var(--warm); }
.section--navy { background: var(--navy); color: #fff; }

h1, h2, h3 { font-family: Georgia, 'Times New Roman', serif; line-height: 1.12; margin: 0 0 20px; letter-spacing: -.02em; }
h1 { font-size: clamp(2.25rem, 4.35vw, 3.95rem); color: #fff; }
h1 em { color: var(--gold-soft); font-style: normal; }
h2 { font-size: clamp(2.05rem, 4vw, 3.6rem); }
h3 { font-size: 1.55rem; }
p { margin: 0 0 20px; }
.lead { font-size: 1.2rem; }
.section-kicker, .eyebrow {
  color: #9a711f;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-kicker--gold { color: var(--gold); }
.section-heading { max-width: 820px; text-align: center; margin: 0 auto 54px; }
.section-heading p { font-size: 1.12rem; color: var(--muted); }
.section-heading--light p { color: rgba(255,255,255,.75); }

.promo-bar { background: #8b3232; color: #fff; font-size: .92rem; position: relative; z-index: 30; }
.promo-bar__inner { min-height: 48px; display: flex; align-items: center; justify-content: center; gap: 8px; text-align: center; flex-wrap: wrap; padding-block: 8px; }
.promo-bar__icon { color: #ffd98b; }
.promo-bar__deadline { border-left: 1px solid rgba(255,255,255,.35); padding-left: 12px; margin-left: 4px; }

.hero { background: radial-gradient(circle at 78% 20%, #234672 0, #112846 30%, var(--navy) 66%); color: #fff; padding: 78px 0 34px; position: relative; overflow: hidden; }
.hero:before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(213,173,85,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(213,173,85,.04) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, #000, transparent 80%); pointer-events: none; }
.hero__glow { position: absolute; border: 1px solid rgba(213,173,85,.22); border-radius: 50%; pointer-events: none; }
.hero__glow--one { width: 470px; height: 470px; right: -180px; top: 30px; box-shadow: inset 0 0 0 60px rgba(213,173,85,.025), inset 0 0 0 120px rgba(213,173,85,.02); }
.hero__glow--two { width: 260px; height: 260px; left: -120px; bottom: 80px; }
.hero__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 70px; align-items: center; position: relative; z-index: 2; }
.eyebrow { color: var(--gold-soft); max-width: 720px; }
.hero__lead { color: rgba(255,255,255,.86); font-size: 1.18rem; max-width: 720px; }
.hero__bullets { margin: 22px 0 0; max-width: 720px; }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding-left: 34px; margin: 12px 0; }
.check-list li:before { content: '✓'; position: absolute; left: 0; top: 1px; width: 23px; height: 23px; display: grid; place-items: center; border-radius: 50%; background: rgba(213,173,85,.16); color: var(--gold-soft); font-weight: 900; line-height: 1; }
.hero__offer { display: flex; align-items: flex-end; gap: 16px; flex-wrap: wrap; margin: 24px 0 18px; }
.price-line { color: rgba(255,255,255,.72); min-width: 100%; }
.price { font-family: Georgia, serif; font-weight: 700; color: var(--gold-soft); font-size: 4.2rem; line-height: .9; }
.price small { font-size: 1.4rem; }
.price span { font-size: 2.2rem; }
.price-note { font-size: .9rem; color: rgba(255,255,255,.7); padding-bottom: 5px; }

.cta-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(100%, 650px);
  min-height: 70px;
  padding: 15px 24px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  background: linear-gradient(180deg, #20805d, var(--green));
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-weight: 900;
  line-height: 1.25;
  box-shadow: 0 14px 30px rgba(23,107,77,.3), inset 0 1px 0 rgba(255,255,255,.2);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.cta-button:hover { transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 18px 38px rgba(23,107,77,.4), inset 0 1px 0 rgba(255,255,255,.2); }
.cta-button:focus-visible { outline: 4px solid rgba(213,173,85,.55); outline-offset: 4px; }
.cta-button span { font-size: 1.05rem; letter-spacing: .015em; }
.cta-button small { font-size: .8rem; font-weight: 500; opacity: .85; margin-top: 5px; }
.cta-button--gold { background: linear-gradient(180deg, #e0b858, #b98b2d); color: #0b1830; box-shadow: 0 14px 34px rgba(213,173,85,.28); }
.trust-microcopy { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 13px; font-size: .8rem; color: rgba(255,255,255,.66); }

.hero__visual { min-height: 650px; position: relative; display: grid; place-items: center; }
.halo { position: absolute; width: 530px; height: 530px; border-radius: 50%; border: 1px solid rgba(213,173,85,.25); box-shadow: inset 0 0 0 65px rgba(213,173,85,.025), inset 0 0 0 130px rgba(213,173,85,.02); }
.book-stack { position: relative; width: 500px; height: 590px; perspective: 1200px; }
.book { position: absolute; margin: 0; transform-style: preserve-3d; filter: drop-shadow(0 28px 24px rgba(0,0,0,.36)); }
.book img { border-radius: 4px 9px 9px 4px; box-shadow: inset -8px 0 0 rgba(255,255,255,.08); }
.book:after { content: ''; position: absolute; top: 2%; right: -9px; width: 10px; height: 96%; background: linear-gradient(90deg, #bea05a, #f2dfaa); transform: skewY(36deg); transform-origin: left; border-radius: 0 4px 4px 0; opacity: .65; }
.book--main { z-index: 3; width: 275px; left: 112px; top: 12px; transform: rotateY(-8deg) rotateZ(-1deg); animation: float 5.5s ease-in-out infinite; }
.book--bonus { width: 205px; top: 185px; }
.book--bonus-one { z-index: 2; left: 5px; transform: rotateY(12deg) rotateZ(-7deg); }
.book--bonus-two { z-index: 1; right: 0; transform: rotateY(-12deg) rotateZ(7deg); }
.hero__badge { position: absolute; right: 12px; bottom: 60px; width: 154px; height: 154px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: #fff8e8; color: var(--navy); border: 7px double var(--gold); box-shadow: var(--shadow); transform: rotate(6deg); }
.hero__badge strong { font-family: Georgia, serif; font-size: 1.7rem; }
.hero__badge span { font-size: .72rem; line-height: 1.3; padding: 0 14px; }
@keyframes float { 0%,100% { transform: rotateY(-8deg) rotateZ(-1deg) translateY(0); } 50% { transform: rotateY(-8deg) rotateZ(-1deg) translateY(-10px); } }

.trust-strip { position: relative; z-index: 3; margin-top: 38px; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; background: rgba(255,255,255,.06); backdrop-filter: blur(10px); }
.trust-strip > div { padding: 18px 20px; display: grid; grid-template-columns: auto 1fr; column-gap: 12px; align-items: center; }
.trust-strip > div + div { border-left: 1px solid rgba(255,255,255,.1); }
.trust-strip > div > span { grid-row: 1 / 3; color: var(--gold); font-size: 1.5rem; }
.trust-strip strong { font-size: .92rem; }
.trust-strip small { color: rgba(255,255,255,.62); font-size: .72rem; line-height: 1.35; }

.recognition blockquote { margin: 30px auto; padding: 28px 35px; font-family: Georgia, serif; font-size: clamp(1.35rem, 3vw, 2rem); line-height: 1.35; text-align: center; border-left: 5px solid var(--gold); background: #fff; box-shadow: 0 12px 40px rgba(11,24,48,.08); }
.symptom-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 55px; }
.symptom-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 30px; box-shadow: 0 12px 34px rgba(11,24,48,.05); }
.symptom-card > span { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 50%; background: var(--navy); color: var(--gold-soft); font-weight: 800; font-size: .8rem; margin-bottom: 18px; }
.symptom-card h3 { font-size: 1.35rem; }
.symptom-card p { color: var(--muted); font-size: .95rem; margin: 0; }
.pastoral-box { margin-top: 55px; display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start; padding: 28px 30px; background: #edf7f2; border: 1px solid rgba(23,107,77,.28); border-radius: 15px; }
.pastoral-box__icon { width: 50px; height: 50px; display: grid; place-items: center; background: var(--green); color: #fff; border-radius: 50%; }
.pastoral-box strong { font-family: Georgia, serif; font-size: 1.3rem; }
.pastoral-box p { margin: 6px 0 0; }

.split { display: grid; grid-template-columns: 1.12fr .88fr; gap: 70px; align-items: center; }
.split--reverse { grid-template-columns: .72fr 1.28fr; }

.code-word { max-width: 950px; margin: 0 auto; display: grid; gap: 14px; }
.code-word article { display: grid; grid-template-columns: 70px 1fr; gap: 22px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px 28px; box-shadow: 0 8px 28px rgba(11,24,48,.05); }
.code-word .letter { width: 62px; height: 62px; display: grid; place-items: center; border-radius: 50%; background: var(--navy); color: var(--gold-soft); font-family: Georgia, serif; font-size: 1.8rem; font-weight: 700; box-shadow: inset 0 0 0 4px rgba(213,173,85,.15); }
.code-word h3 { margin: 0 0 5px; font-size: 1.35rem; }
.code-word p { margin: 0; color: var(--muted); font-size: .95rem; }
.mechanism-note { max-width: 900px; margin: 30px auto; padding: 24px 28px; text-align: center; background: #fff6df; border: 1px solid rgba(213,173,85,.5); border-radius: 14px; font-family: Georgia, serif; font-size: 1.15rem; }
.centered-cta { display: flex; justify-content: center; margin-top: 32px; }

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit-grid article { background: rgba(255,255,255,.78); border: 1px solid rgba(213,173,85,.25); padding: 28px; border-radius: 16px; }
.benefit-grid article > span { color: #9a711f; font-size: 2rem; }
.benefit-grid h3 { font-size: 1.3rem; margin: 10px 0; }
.benefit-grid p { margin: 0; color: var(--muted); font-size: .92rem; }
.transformation-strip { margin-top: 34px; display: grid; grid-template-columns: repeat(4, 1fr); background: var(--navy); color: #fff; border-radius: 15px; overflow: hidden; }
.transformation-strip span { padding: 22px; text-align: center; font-size: .86rem; }
.transformation-strip span + span { border-left: 1px solid rgba(255,255,255,.12); }
.transformation-strip strong { display: block; color: var(--gold-soft); font-family: Georgia, serif; font-size: 1rem; }

.product-feature { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; padding: 55px; background: linear-gradient(145deg, #f9f3e8, #fff); border: 1px solid rgba(213,173,85,.34); border-radius: var(--radius); box-shadow: var(--shadow); }
.product-feature__visual { display: grid; place-items: center; min-height: 500px; }
.single-book { width: 300px; filter: drop-shadow(0 30px 30px rgba(11,24,48,.28)); transform: perspective(900px) rotateY(8deg) rotateZ(-1deg); }
.single-book img { border-radius: 4px 10px 10px 4px; }
.product-label { color: #9a711f; font-size: .76rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 10px; }
.product-feature h3, .bonus-card h3 { font-size: clamp(2rem, 4vw, 3rem); }
.product-subtitle { font-family: Georgia, serif; color: var(--muted); font-size: 1.08rem; }
.product-feature .check-list li:before { background: var(--navy); color: var(--gold-soft); }
.individual-value { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 24px; padding: 16px 18px; border-radius: 10px; background: var(--navy); color: #fff; }
.individual-value span { font-size: .84rem; text-transform: uppercase; letter-spacing: .08em; }
.individual-value strong { font-family: Georgia, serif; color: var(--gold-soft); font-size: 1.25rem; }
.bonus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 34px; }
.bonus-card { display: grid; grid-template-columns: 190px 1fr; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 18px 52px rgba(11,24,48,.08); }
.bonus-card__cover { background: var(--navy); display: grid; align-items: center; padding: 24px 0 24px 22px; overflow: hidden; }
.bonus-card__cover img { width: 175px; border-radius: 3px; filter: drop-shadow(0 20px 16px rgba(0,0,0,.34)); transform: perspective(800px) rotateY(12deg); }
.bonus-card__copy { padding: 34px 30px; }
.bonus-card h3 { font-size: 1.8rem; }
.bonus-card p { font-size: .92rem; color: var(--muted); }
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.pill-row span { display: inline-flex; padding: 7px 10px; border-radius: 99px; background: #f2ead9; color: #72531a; font-size: .74rem; font-weight: 700; }


.authority-seal { width: 310px; height: 310px; margin: auto; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: var(--navy); color: #fff; border: 9px double var(--gold); box-shadow: var(--shadow); }
.authority-seal > span { color: var(--gold); font-size: 2rem; }
.authority-seal strong { font-family: Georgia, serif; font-size: 1.9rem; line-height: 1.15; color: var(--gold-soft); }
.authority-seal small { text-transform: uppercase; letter-spacing: .12em; margin-top: 10px; opacity: .7; }
.plain-checks { list-style: none; padding: 0; }
.plain-checks li { position: relative; padding: 9px 0 9px 32px; }
.plain-checks li:before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.editorial-note { margin-top: 22px; padding: 20px 22px; background: #edf3fa; border-left: 5px solid var(--navy-3); border-radius: 8px; font-size: .9rem; }

.comparison-table { max-width: 980px; margin: auto; border: 1px solid rgba(11,24,48,.14); border-radius: 15px; overflow: hidden; background: #fff; }
.comparison-row { display: grid; grid-template-columns: 1fr 1fr; }
.comparison-row > div { padding: 18px 22px; }
.comparison-row > div + div { border-left: 1px solid rgba(11,24,48,.12); }
.comparison-row + .comparison-row { border-top: 1px solid rgba(11,24,48,.1); }
.comparison-row:not(.comparison-row--head) > div:first-child { color: #765355; background: #fff8f7; }
.comparison-row:not(.comparison-row--head) > div:last-child { color: #24543f; background: #f4fbf7; }
.comparison-row--head { background: var(--navy); color: #fff; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; }
.comparison-note { max-width: 760px; margin: 30px auto 0; text-align: center; font-family: Georgia, serif; font-size: 1.25rem; }

.offer { background: linear-gradient(150deg, #0b1830, #142c4e); color: #fff; }
.offer__grid { display: grid; grid-template-columns: 1fr .82fr; gap: 60px; align-items: center; }
.offer__summary p { color: rgba(255,255,255,.75); }
.value-stack { border: 1px solid rgba(255,255,255,.14); border-radius: 14px; overflow: hidden; margin: 28px 0; }
.value-stack > div { display: flex; justify-content: space-between; gap: 20px; padding: 16px 20px; background: rgba(255,255,255,.04); }
.value-stack > div + div { border-top: 1px solid rgba(255,255,255,.1); }
.value-stack strong { color: var(--gold-soft); }
.value-stack__total { background: rgba(213,173,85,.13) !important; font-weight: 800; }
.checkout-card { background: var(--paper); color: var(--ink); padding: 38px; border-radius: var(--radius); box-shadow: 0 30px 90px rgba(0,0,0,.35); text-align: center; border: 2px solid var(--gold); }
.checkout-card__top { color: #795815; font-size: .76rem; font-weight: 900; letter-spacing: .12em; }
.checkout-card__old { color: var(--muted); margin-top: 18px; }
.checkout-card__price { font-family: Georgia, serif; color: var(--green); font-weight: 800; font-size: 5rem; line-height: 1; margin: 5px 0 14px; }
.checkout-card__price small { font-size: 1.6rem; }
.checkout-card__price span { font-size: 2.4rem; }
.checkout-card > p { color: var(--muted); font-size: .9rem; }
.checkout-card .cta-button { width: 100%; }
.checkout-list { list-style: none; padding: 0; margin: 22px 0 0; text-align: left; color: var(--muted); font-size: .84rem; }
.checkout-list li { padding: 7px 0; }
.checkout-card__deadline { margin-top: 18px; padding: 10px; border-radius: 8px; background: #fff0ef; color: var(--red); font-size: .82rem; font-weight: 700; }

.guarantee { background: #eef6f1; }
.guarantee__box { display: grid; grid-template-columns: 260px 1fr; gap: 55px; align-items: center; background: #fff; border: 1px solid rgba(23,107,77,.23); border-radius: var(--radius); padding: 55px; box-shadow: 0 20px 60px rgba(11,24,48,.08); }
.guarantee__seal { width: 230px; height: 230px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--green); color: #fff; border: 8px double #b9dfcd; box-shadow: 0 18px 45px rgba(23,107,77,.22); }
.guarantee__seal span { font-family: Georgia, serif; font-size: 5rem; line-height: .8; }
.guarantee__seal strong { font-size: 1.5rem; }
.guarantee__seal small { letter-spacing: .12em; }
.guarantee .cta-button { margin-top: 26px; }

.faq-list { display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; box-shadow: 0 6px 18px rgba(11,24,48,.04); }
.faq summary { list-style: none; padding: 20px 54px 20px 22px; cursor: pointer; font-weight: 800; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:after { content: '+'; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: var(--navy); color: #fff; }
.faq details[open] summary:after { content: '−'; }
.faq details p { margin: 0; padding: 0 22px 22px; color: var(--muted); font-size: .95rem; }

.final-cta { position: relative; overflow: hidden; background: var(--navy); color: #fff; text-align: center; padding: 100px 0 115px; }
.final-cta__glow { position: absolute; inset: auto 50% -420px auto; transform: translateX(50%); width: 900px; height: 900px; border-radius: 50%; border: 1px solid rgba(213,173,85,.18); box-shadow: inset 0 0 0 100px rgba(213,173,85,.02), inset 0 0 0 200px rgba(213,173,85,.015); }
.final-cta .container { position: relative; z-index: 2; }
.final-cta p { color: rgba(255,255,255,.77); font-size: 1.08rem; }
.final-products { display: flex; justify-content: center; align-items: flex-end; height: 260px; margin: 36px 0 22px; }
.final-products img { width: 145px; max-height: 230px; object-fit: cover; object-position: top; border-radius: 3px; filter: drop-shadow(0 18px 18px rgba(0,0,0,.42)); }
.final-products img:first-child { width: 170px; z-index: 2; transform: translateY(-14px); }
.final-products img:nth-child(2) { transform: rotate(-7deg) translateX(18px); }
.final-products img:nth-child(3) { transform: rotate(7deg) translateX(-18px); }
.final-price { margin: 12px 0 24px; display: flex; flex-direction: column; }
.final-price span { color: rgba(255,255,255,.6); }
.final-price strong { color: var(--gold-soft); font-family: Georgia, serif; font-size: 2.5rem; }
.final-cta .cta-button { margin-inline: auto; }
.final-deadline { margin-top: 16px; color: #ffd7d7; font-size: .84rem; }

.footer { background: #071222; color: rgba(255,255,255,.72); padding: 45px 0 24px; font-size: .82rem; }
.footer__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }
.footer strong { color: #fff; font-family: Georgia, serif; font-size: 1.15rem; }
.footer p { margin: 5px 0; }
.footer nav { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 10px 22px; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--gold-soft); }
.footer__bottom { margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.09); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.45); font-size: .72rem; }

.mobile-cta { position: fixed; left: 10px; right: 10px; bottom: 10px; z-index: 100; display: none; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 10px 10px 16px; border-radius: 14px; background: rgba(7,18,34,.96); color: #fff; box-shadow: 0 16px 50px rgba(0,0,0,.35); border: 1px solid rgba(213,173,85,.35); transform: translateY(130%); transition: transform .25s ease; }
.mobile-cta.is-visible { transform: translateY(0); }
.mobile-cta div { display: flex; flex-direction: column; line-height: 1.1; }
.mobile-cta small { font-size: .62rem; color: rgba(255,255,255,.6); }
.mobile-cta strong { color: var(--gold-soft); font-size: 1.25rem; }
.mobile-cta a { background: var(--green); color: #fff; text-decoration: none; font-weight: 900; padding: 14px 18px; border-radius: 9px; font-size: .82rem; }
.noscript { position: fixed; bottom: 0; left: 0; right: 0; background: #fff3cd; color: #664d03; padding: 14px; z-index: 999; text-align: center; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  body { font-size: 17px; }
  .hero { padding-top: 60px; }
  .hero__grid, .split, .split--reverse, .offer__grid { grid-template-columns: 1fr; }
  .hero__grid { gap: 15px; }
  .hero__copy { text-align: center; }
  .hero__lead, .hero__bullets, .cta-button { margin-inline: auto; }
  .hero__bullets { text-align: left; }
  .hero__offer, .trust-microcopy { justify-content: center; }
  .hero__visual { min-height: 580px; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-strip > div:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255,255,255,.1); }
  .trust-strip > div:nth-child(4) { border-top: 1px solid rgba(255,255,255,.1); }
  .symptom-grid, .benefit-grid { grid-template-columns: 1fr 1fr; }
  .transformation-strip { grid-template-columns: 1fr 1fr; }
  .transformation-strip span:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255,255,255,.12); }
  .transformation-strip span:nth-child(4) { border-top: 1px solid rgba(255,255,255,.12); }
  .product-feature { grid-template-columns: 1fr; gap: 30px; }
  .product-feature__visual { min-height: auto; }
  .bonus-grid { grid-template-columns: 1fr; }
  .authority-seal { margin-bottom: 10px; }
  .offer__summary { text-align: center; }
  .value-stack { text-align: left; }
  .guarantee__box { grid-template-columns: 1fr; text-align: center; }
  .guarantee__seal { margin: auto; }
  .guarantee .cta-button { margin-inline: auto; }
}

@media (max-width: 680px) {
  body { font-size: 17px; line-height: 1.6; padding-bottom: 76px; }
  .container, .narrow { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  h1 { font-size: clamp(2.05rem, 9.4vw, 2.8rem); }
  h2 { font-size: clamp(1.9rem, 9vw, 2.65rem); }
  .promo-bar { font-size: .72rem; }
  .promo-bar__inner { line-height: 1.3; }
  .promo-bar__deadline { width: 100%; border-left: 0; padding-left: 0; }
  .hero { padding-top: 48px; }
  .hero__lead { font-size: 1.03rem; }
  .hero__bullets li { margin: 10px 0; }
  .price { font-size: 3.7rem; }
  .cta-button { min-height: 64px; padding: 14px 16px; border-radius: 10px; }
  .cta-button span { font-size: .9rem; }
  .cta-button small { font-size: .7rem; }
  .trust-microcopy { gap: 6px 10px; font-size: .7rem; }
  .hero__visual { min-height: 400px; }
  .halo { width: 360px; height: 360px; }
  .book-stack { width: 340px; height: 420px; }
  .book--main { width: 190px; left: 75px; }
  .book--bonus { width: 135px; top: 140px; }
  .book--bonus-one { left: 8px; }
  .hero__badge { width: 110px; height: 110px; right: 8px; bottom: 22px; border-width: 5px; }
  .hero__badge strong { font-size: 1.2rem; }
  .hero__badge span { font-size: .58rem; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip > div + div { border-left: 0; border-top: 1px solid rgba(255,255,255,.1); }
  .symptom-grid, .benefit-grid { grid-template-columns: 1fr; }
  .symptom-card { padding: 24px; }
  .pastoral-box { grid-template-columns: 1fr; text-align: center; }
  .pastoral-box__icon { margin: auto; }
  .code-word article { grid-template-columns: 54px 1fr; gap: 14px; padding: 18px; }
  .code-word .letter { width: 50px; height: 50px; font-size: 1.45rem; }
  .transformation-strip { grid-template-columns: 1fr; }
  .transformation-strip span + span { border-left: 0; border-top: 1px solid rgba(255,255,255,.12); }
  .product-feature { padding: 28px 20px; }
  .single-book { width: 230px; }
  .bonus-card { grid-template-columns: 120px 1fr; }
  .bonus-card__cover { padding-left: 10px; }
  .bonus-card__cover img { width: 115px; }
  .bonus-card__copy { padding: 24px 18px; }
  .bonus-card h3 { font-size: 1.4rem; }
  .bonus-card p { font-size: .84rem; }
  .individual-value { flex-direction: column; align-items: flex-start; gap: 2px; }
  .authority-seal { width: 240px; height: 240px; }
  .authority-seal strong { font-size: 1.45rem; }
  .comparison-table { background: transparent; border: 0; overflow: visible; }
  .comparison-row { grid-template-columns: 1fr; margin-bottom: 14px; border-radius: 12px; overflow: hidden; border: 1px solid rgba(11,24,48,.1); }
  .comparison-row > div + div { border-left: 0; border-top: 1px solid rgba(11,24,48,.1); }
  .comparison-row + .comparison-row { border-top: 1px solid rgba(11,24,48,.1); }
  .comparison-row--head { display: none; }
  .comparison-row:not(.comparison-row--head) > div:first-child:before { content: 'ANTES'; display: block; font-size: .64rem; letter-spacing: .12em; font-weight: 900; margin-bottom: 5px; }
  .comparison-row:not(.comparison-row--head) > div:last-child:before { content: 'DEPOIS'; display: block; font-size: .64rem; letter-spacing: .12em; font-weight: 900; margin-bottom: 5px; }
  .checkout-card { padding: 28px 18px; }
  .checkout-card__price { font-size: 4.4rem; }
  .guarantee__box { padding: 32px 20px; gap: 30px; }
  .guarantee__seal { width: 190px; height: 190px; }
  .final-products { height: 210px; }
  .final-products img { width: 108px; max-height: 180px; }
  .final-products img:first-child { width: 125px; }
  .final-price strong { font-size: 2rem; }
  .footer__grid { grid-template-columns: 1fr; text-align: center; }
  .footer nav { justify-content: center; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .mobile-cta { display: flex; }
}

@media (max-width: 410px) {
  .book-stack { transform: scale(.9); }
  .bonus-card { grid-template-columns: 1fr; }
  .bonus-card__cover { padding: 24px; }
  .bonus-card__cover img { width: 180px; margin: auto; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *:before, *:after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================
   V2 — NOVAS CAPAS E EXPOSIÇÃO PREMIUM DOS 3 LIVROS
   ========================================================== */
.hero {
  padding: 56px 0 28px;
  background:
    radial-gradient(circle at 76% 30%, rgba(59, 102, 157, .62) 0, rgba(17, 40, 70, .9) 31%, var(--navy) 68%),
    var(--navy);
}
.hero__grid {
  grid-template-columns: minmax(0, .94fr) minmax(520px, 1.06fr);
  gap: 34px;
}
.hero__copy { padding-block: 14px; }
.hero__visual {
  min-height: 565px;
  isolation: isolate;
}
.hero__visual:before {
  content: '';
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(213,173,85,.15) 0 1px, transparent 2px),
    repeating-radial-gradient(circle, transparent 0 55px, rgba(213,173,85,.12) 56px 57px, transparent 58px 88px);
  opacity: .72;
  z-index: -3;
}
.hero__visual:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 38px;
  width: 570px;
  height: 105px;
  transform: translateX(-50%);
  border: 1px solid rgba(213,173,85,.32);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(213,173,85,.16), rgba(13,34,61,.18) 54%, transparent 72%);
  box-shadow:
    inset 0 0 0 22px rgba(213,173,85,.025),
    0 28px 48px rgba(0,0,0,.26);
  z-index: -2;
}
.halo {
  width: 520px;
  height: 520px;
  opacity: .8;
  transform: translateY(-8px);
  box-shadow:
    inset 0 0 0 62px rgba(213,173,85,.022),
    inset 0 0 0 124px rgba(213,173,85,.016);
}
.book-stack {
  width: 620px;
  height: 525px;
  perspective: none;
}
.book {
  filter: drop-shadow(0 27px 23px rgba(0,0,0,.44));
  transform-style: flat;
}
.book img {
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}
.book:after { display: none; }
.book--main {
  z-index: 4;
  width: 338px;
  left: 141px;
  top: -2px;
  transform: translateY(0);
  animation: none;
}
.book--bonus {
  width: 238px;
  top: 137px;
}
.book--bonus-one {
  z-index: 2;
  left: -5px;
  transform: rotate(-4deg) translateY(16px);
}
.book--bonus-two {
  z-index: 2;
  right: -5px;
  transform: rotate(4deg) translateY(16px);
}
.book--bonus:before {
  position: absolute;
  top: -18px;
  z-index: 6;
  padding: 6px 12px;
  border: 1px solid rgba(213,173,85,.56);
  border-radius: 999px;
  background: rgba(7,18,34,.92);
  color: var(--gold-soft);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .14em;
  box-shadow: 0 8px 22px rgba(0,0,0,.28);
}
.book--bonus-one:before { content: 'BÔNUS 1'; left: 54px; }
.book--bonus-two:before { content: 'BÔNUS 2'; right: 54px; }
.hero__badge {
  right: 19px;
  bottom: 53px;
  width: 142px;
  height: 142px;
  z-index: 8;
  transform: rotate(4deg);
}
.showcase-caption {
  position: absolute;
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  color: rgba(255,255,255,.68);
  font-size: .64rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  z-index: 7;
}
.showcase-caption b { color: var(--gold-soft); }

/* As novas imagens já são mockups 3D: nenhuma deformação adicional. */
.single-book {
  width: min(100%, 320px);
  transform: none;
}
.single-book img { border-radius: 0; }
.bonus-card__cover {
  justify-items: center;
  padding: 24px 8px;
  background:
    radial-gradient(circle at 50% 48%, rgba(213,173,85,.14), transparent 48%),
    var(--navy);
}
.bonus-card__cover img {
  width: 176px;
  transform: none;
  border-radius: 0;
}

/* Fechamento: conjunto compacto e proporcional, sem livros esticados. */
.final-cta { padding: 78px 0 88px; }
.final-products {
  position: relative;
  width: min(100%, 570px);
  height: 300px;
  margin: 28px auto 18px;
}
.final-products:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 470px;
  height: 62px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(213,173,85,.15), transparent 70%);
  border: 1px solid rgba(213,173,85,.18);
  z-index: 0;
}
.final-products img {
  position: absolute;
  display: block;
  height: auto;
  max-height: none;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 20px 18px rgba(0,0,0,.48));
}
.final-products img:first-child {
  width: 205px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 3;
}
.final-products img:nth-child(2) {
  width: 154px;
  left: 65px;
  top: 66px;
  transform: rotate(-5deg);
  z-index: 2;
}
.final-products img:nth-child(3) {
  width: 154px;
  right: 65px;
  top: 66px;
  transform: rotate(5deg);
  z-index: 2;
}

@media (max-width: 1100px) and (min-width: 981px) {
  .hero__grid { grid-template-columns: .96fr 1.04fr; gap: 18px; }
  .book-stack { transform: scale(.89); }
}

@media (max-width: 980px) {
  .hero { padding-top: 48px; }
  .hero__grid { grid-template-columns: 1fr; gap: 4px; }
  .hero__visual { min-height: 530px; }
  .book-stack { transform: scale(.94); }
}

@media (max-width: 680px) {
  .hero { padding-top: 38px; padding-bottom: 22px; }
  .hero__visual { min-height: 390px; }
  .hero__visual:before { width: 350px; height: 350px; }
  .hero__visual:after { width: 350px; height: 70px; bottom: 31px; }
  .halo { width: 340px; height: 340px; }
  .book-stack {
    width: 360px;
    height: 345px;
    transform: none;
  }
  .book--main { width: 205px; left: 78px; top: 0; }
  .book--bonus { width: 142px; top: 105px; }
  .book--bonus-one { left: 0; transform: rotate(-4deg) translateY(9px); }
  .book--bonus-two { right: 0; transform: rotate(4deg) translateY(9px); }
  .book--bonus:before { top: -13px; padding: 4px 8px; font-size: .48rem; }
  .book--bonus-one:before { left: 31px; }
  .book--bonus-two:before { right: 31px; }
  .hero__badge { width: 96px; height: 96px; right: 3px; bottom: 42px; border-width: 4px; }
  .hero__badge strong { font-size: 1.05rem; }
  .hero__badge span { font-size: .5rem; padding: 0 8px; }
  .showcase-caption { bottom: 3px; font-size: .48rem; gap: 5px; }
  .single-book { width: 220px; }
  .bonus-card__cover img { width: 112px; }
  .final-cta { padding: 68px 0 76px; }
  .final-products { height: 215px; width: 350px; margin-top: 24px; }
  .final-products:after { width: 310px; height: 45px; }
  .final-products img:first-child { width: 142px; }
  .final-products img:nth-child(2) { width: 105px; left: 18px; top: 49px; }
  .final-products img:nth-child(3) { width: 105px; right: 18px; top: 49px; }
}

@media (max-width: 410px) {
  .book-stack { transform: scale(.94); }
  .showcase-caption { white-space: normal; width: 260px; justify-content: center; text-align: center; }
}

.mobile-book-showcase { display: none; }

@media (max-width: 680px) {
  .mobile-book-showcase {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: min(100%, 340px);
    height: 182px;
    margin: 14px auto 24px;
    padding-bottom: 28px;
  }
  .mobile-book-showcase:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 24px;
    width: 300px;
    height: 44px;
    transform: translateX(-50%);
    border-radius: 50%;
    border: 1px solid rgba(213,173,85,.24);
    background: radial-gradient(ellipse, rgba(213,173,85,.15), transparent 72%);
  }
  .mobile-book-showcase img {
    position: relative;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 12px rgba(0,0,0,.48));
  }
  .mobile-book-showcase img:first-child {
    width: 92px;
    margin-right: -22px;
    transform: rotate(-5deg) translateY(12px);
    z-index: 1;
  }
  .mobile-book-showcase img:nth-child(2) {
    width: 128px;
    z-index: 3;
  }
  .mobile-book-showcase img:nth-child(3) {
    width: 92px;
    margin-left: -22px;
    transform: rotate(5deg) translateY(12px);
    z-index: 1;
  }
  .mobile-book-showcase span {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    color: rgba(255,255,255,.72);
    font-size: .61rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .mobile-book-showcase b { color: var(--gold-soft); }
  .hero__visual { display: none; }
}


/* ==========================================================
   V3 — CORREÇÃO DAS CAPAS + BORDA REATIVA NOS CARDS
   ========================================================== */

/* Garante que nenhuma capa seja esticada ou cortada. */
.products img,
.product-feature img,
.bonus-card img {
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}

.product-feature {
  grid-template-columns: minmax(300px, 390px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(38px, 5vw, 72px);
  padding: clamp(34px, 5vw, 58px);
  overflow: visible;
}

.product-feature__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
  padding: 14px;
  overflow: visible;
}

.single-book {
  width: min(100%, 330px);
  aspect-ratio: 1001 / 1448;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transform: none !important;
  filter: drop-shadow(0 28px 28px rgba(11,24,48,.24));
}

.single-book img {
  width: 100%;
  height: auto !important;
  max-height: 470px;
  object-fit: contain !important;
  border-radius: 0;
}

.bonus-grid {
  align-items: stretch;
}

.bonus-card {
  grid-template-columns: minmax(220px, 42%) minmax(0, 1fr);
  min-height: 430px;
  align-items: stretch;
  overflow: hidden;
}

.bonus-card__cover {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 430px;
  padding: 28px 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 42%, rgba(213,173,85,.16), transparent 50%),
    linear-gradient(145deg, #fffaf0, #f1e7d5);
}

.bonus-card__cover img {
  width: auto !important;
  height: auto !important;
  max-width: 100%;
  max-height: 370px;
  object-fit: contain !important;
  object-position: center !important;
  transform: none !important;
  border-radius: 0;
  filter: drop-shadow(0 22px 20px rgba(11,24,48,.24));
  flex: 0 0 auto;
}

.bonus-card__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bonus-card__copy .individual-value {
  margin-top: 22px;
}

/* Adaptação do BorderGlow para esta landing page estática. */
.border-glow-card {
  --edge-proximity: 0;
  --edge-glow: 0;
  --cursor-angle: 45deg;
  position: relative;
  isolation: isolate;
  overflow: visible;
  border-color: rgba(18,40,73,.14);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.border-glow-card::before,
.border-glow-card::after {
  content: '';
  position: absolute;
  pointer-events: none;
  border-radius: inherit;
  transition: opacity .22s ease-out;
}

/* Arco luminoso que acompanha o cursor próximo da borda. */
.border-glow-card::before {
  inset: -1px;
  padding: 1.5px;
  z-index: 3;
  background:
    conic-gradient(
      from var(--cursor-angle),
      transparent 0 39%,
      rgba(78,145,207,.92) 45%,
      rgba(241,223,177,1) 49%,
      rgba(213,173,85,1) 52%,
      rgba(67,128,188,.9) 56%,
      transparent 62% 100%
    );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: var(--edge-proximity);
}

/* Brilho externo difuso. */
.border-glow-card::after {
  inset: -18px;
  z-index: -1;
  background:
    conic-gradient(
      from var(--cursor-angle),
      transparent 0 39%,
      rgba(66,135,202,.16) 44%,
      rgba(241,223,177,.42) 50%,
      rgba(213,173,85,.32) 54%,
      transparent 62% 100%
    );
  filter: blur(16px);
  opacity: var(--edge-glow);
}

.border-glow-card:hover {
  transform: translateY(-4px);
  border-color: rgba(213,173,85,.36);
  box-shadow: 0 20px 48px rgba(11,24,48,.11);
}

.border-glow-card:focus-within {
  --edge-proximity: .88;
  --edge-glow: .64;
  --cursor-angle: 135deg;
}

@media (hover: none) {
  .border-glow-card {
    border-color: rgba(213,173,85,.30);
    box-shadow: 0 14px 34px rgba(11,24,48,.07);
  }
  .border-glow-card::before { opacity: .34; }
  .border-glow-card::after { opacity: .16; }
}

@media (max-width: 980px) {
  .product-feature {
    grid-template-columns: 1fr;
  }
  .product-feature__visual {
    min-height: auto;
    padding: 0 0 8px;
  }
  .single-book {
    width: min(100%, 285px);
  }
  .bonus-card {
    grid-template-columns: minmax(185px, 36%) minmax(0, 1fr);
    min-height: 390px;
  }
  .bonus-card__cover {
    min-height: 390px;
    padding: 24px 16px;
  }
  .bonus-card__cover img {
    max-height: 335px;
  }
}

@media (max-width: 680px) {
  .product-feature {
    padding: 28px 20px;
  }
  .single-book {
    width: min(100%, 235px);
  }
  .single-book img {
    max-height: 355px;
  }
  .bonus-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .bonus-card__cover {
    min-height: 330px;
    padding: 24px;
  }
  .bonus-card__cover img {
    width: auto !important;
    max-width: min(100%, 245px);
    max-height: 300px;
  }
  .bonus-card__copy {
    padding: 26px 22px 30px;
  }
  .border-glow-card:hover {
    transform: none;
  }
}


/* ==========================================================
   V4 — GLOW NOS BENEFÍCIOS, PREÇOS RISCADOS E OFERTA ELÉTRICA
   ========================================================== */

/* O mesmo BorderGlow usado nos cards de identificação agora também
   aparece nos seis cards "Uma direção para cada momento". */
.benefit-grid .border-glow-card {
  background: rgba(255, 255, 255, .88);
  border-color: rgba(213, 173, 85, .26);
  box-shadow: 0 12px 34px rgba(11, 24, 48, .055);
}

.benefit-grid .border-glow-card:hover {
  border-color: rgba(213, 173, 85, .55);
  box-shadow: 0 22px 52px rgba(11, 24, 48, .12);
}

/* Valores individuais dos bônus: deixam claro que já estão incluídos. */
.individual-value--bonus .bonus-old-price,
.individual-value--bonus .bonus-old-price s {
  color: #d84343 !important;
  text-decoration-color: #d84343;
  text-decoration-thickness: 2.5px;
  text-decoration-line: line-through;
}

.individual-value--bonus .bonus-old-price {
  text-shadow: 0 0 18px rgba(216, 67, 67, .16);
}

/* Preço antigo da oferta principal, riscado em vermelho. */
.checkout-card__old .old-total-price {
  color: #d84343;
  text-decoration-color: #d84343;
  text-decoration-thickness: 2.5px;
  text-decoration-line: line-through;
  font-weight: 700;
}

/* Pulso chamativo, mas legível, no valor principal. */
.checkout-card__price.price-attention {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  transform-origin: center;
  animation: priceAttentionPulse 1.75s ease-in-out infinite;
  filter: drop-shadow(0 0 0 rgba(23,107,77,0));
}

.checkout-card__price.price-attention::after {
  content: '';
  position: absolute;
  inset: -10px -18px;
  border-radius: 999px;
  border: 1px solid rgba(213,173,85,.0);
  box-shadow: 0 0 0 rgba(213,173,85,0);
  pointer-events: none;
  animation: priceAttentionRing 1.75s ease-out infinite;
}

@keyframes priceAttentionPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(23,107,77,0));
  }
  42% {
    transform: scale(1.055);
    filter: drop-shadow(0 0 15px rgba(23,107,77,.34));
  }
  58% {
    transform: scale(1.025);
    filter: drop-shadow(0 0 8px rgba(213,173,85,.26));
  }
}

@keyframes priceAttentionRing {
  0% {
    opacity: 0;
    transform: scale(.84);
    border-color: rgba(213,173,85,0);
  }
  35% {
    opacity: .9;
    border-color: rgba(213,173,85,.62);
    box-shadow: 0 0 24px rgba(213,173,85,.24);
  }
  100% {
    opacity: 0;
    transform: scale(1.15);
    border-color: rgba(213,173,85,0);
    box-shadow: 0 0 38px rgba(213,173,85,0);
  }
}

/* SplitText em HTML/CSS/JS puro, adaptado para esta landing estática. */
.js-split-text {
  overflow: hidden;
}

.js-split-text .split-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(34px) rotateX(18deg);
  filter: blur(3px);
  transition:
    opacity .62s cubic-bezier(.22,.8,.25,1),
    transform .62s cubic-bezier(.22,.8,.25,1),
    filter .62s ease;
  transition-delay: calc(var(--split-index, 0) * 58ms);
  will-change: transform, opacity, filter;
}

.js-split-text.is-split-visible .split-word {
  opacity: 1;
  transform: translateY(0) rotateX(0);
  filter: blur(0);
}

/* ElectricBorder adaptado para HTML estático. */
.electric-border-card {
  --electric-color: #e8b84f;
  position: relative;
  isolation: isolate;
  overflow: visible;
  border-color: rgba(232,184,79,.78);
  box-shadow:
    0 30px 90px rgba(0,0,0,.35),
    0 0 0 1px rgba(255,225,142,.22),
    0 0 34px rgba(232,184,79,.16);
}

.electric-border-card::before,
.electric-border-card::after {
  content: '';
  position: absolute;
  pointer-events: none;
  border-radius: inherit;
  z-index: -1;
}

.electric-border-card::before {
  inset: -7px;
  border: 1px solid rgba(255,222,130,.42);
  filter: blur(2px);
  animation: electricGlowBreath 2.4s ease-in-out infinite;
}

.electric-border-card::after {
  inset: -18px;
  background: conic-gradient(
    from 0deg,
    rgba(232,184,79,.02),
    rgba(255,226,139,.28),
    rgba(82,139,210,.13),
    rgba(232,184,79,.02),
    rgba(255,226,139,.25),
    rgba(232,184,79,.02)
  );
  filter: blur(22px);
  opacity: .42;
  animation: electricAuraSpin 8s linear infinite;
}

.electric-border-canvas {
  position: absolute;
  pointer-events: none;
  z-index: 6;
  overflow: visible;
}

.electric-border-card.is-scroll-focus {
  animation: electricFocusPop .9s cubic-bezier(.2,.8,.2,1);
}

@keyframes electricGlowBreath {
  0%, 100% { opacity: .38; box-shadow: 0 0 10px rgba(232,184,79,.12); }
  50% { opacity: .9; box-shadow: 0 0 24px rgba(232,184,79,.36); }
}

@keyframes electricAuraSpin {
  to { transform: rotate(360deg); }
}

@keyframes electricFocusPop {
  0% { transform: scale(.975); }
  45% { transform: scale(1.018); }
  100% { transform: scale(1); }
}

@media (max-width: 680px) {
  .checkout-card__price.price-attention::after {
    inset: -7px -12px;
  }

  .electric-border-card::after {
    inset: -11px;
    filter: blur(15px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .checkout-card__price.price-attention,
  .checkout-card__price.price-attention::after,
  .electric-border-card::before,
  .electric-border-card::after,
  .electric-border-card.is-scroll-focus {
    animation: none !important;
  }

  .js-split-text .split-word {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* ==========================================================
   V5 — NOVA APRESENTAÇÃO DE PREÇOS, BÔNUS GRÁTIS E ÓRBITA
   ========================================================== */

.product-desire-copy {
  margin: 2px 0 18px;
  padding: 15px 18px;
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  background: linear-gradient(90deg, rgba(213,173,85,.13), rgba(213,173,85,.025));
  color: #3f4b5d;
  font-size: .98rem;
  line-height: 1.58;
}

.individual-value--offer,
.individual-value--bonus {
  min-height: 78px;
}

.price-transition {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 1px;
  line-height: 1.04;
}

.old-individual-price,
.old-individual-price s,
.bonus-old-price,
.bonus-old-price s {
  color: #ef4d4d !important;
  text-decoration-line: line-through;
  text-decoration-color: #ff5a5a;
  text-decoration-thickness: 3px;
  text-shadow: 0 0 14px rgba(239,77,77,.18);
  font-size: 1.02rem !important;
}

.current-individual-price,
.bonus-free-price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: #59e59f !important;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.58rem !important;
  text-shadow: 0 0 18px rgba(54,211,140,.25);
}

.current-individual-price small,
.bonus-free-price small {
  color: #b9f6d7;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.bonus-free-price {
  animation: freePriceGlow 2.1s ease-in-out infinite;
}

@keyframes freePriceGlow {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.035); filter: brightness(1.18); }
}

/* Chamada entre o produto principal e os dois bônus. */
.bonus-unlock-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: min(100%, 920px);
  margin: 34px auto 30px;
  padding: 22px 32px 20px;
  border: 1px solid rgba(255,215,109,.72);
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 50%, rgba(35,128,89,.42), transparent 38%),
    linear-gradient(115deg, #07172c, #102f4b 52%, #0c3b2d);
  color: #fff;
  text-align: center;
  box-shadow:
    0 18px 48px rgba(7,18,34,.2),
    inset 0 1px 0 rgba(255,255,255,.09),
    0 0 0 1px rgba(213,173,85,.12);
}

.bonus-unlock-banner::before {
  content: '';
  position: absolute;
  inset: -80% -15%;
  z-index: -1;
  background: conic-gradient(
    from 0deg,
    transparent 0 30%,
    rgba(255,221,126,.26) 37%,
    transparent 44% 70%,
    rgba(70,228,159,.17) 78%,
    transparent 86%
  );
  animation: bonusBannerOrbit 7s linear infinite;
}

.bonus-unlock-banner::after {
  content: '';
  position: absolute;
  inset: 2px;
  z-index: -1;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,.07);
  pointer-events: none;
}

.bonus-unlock-kicker,
.bonus-unlock-title {
  display: block;
  margin-inline: auto;
  width: fit-content;
}

.bonus-unlock-kicker {
  color: #8ff0c1;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.bonus-unlock-title {
  margin-top: 3px;
  color: #ffe29a;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.35rem, 3vw, 2.18rem);
  line-height: 1.15;
  text-shadow: 0 0 22px rgba(255,207,85,.25);
}

.bonus-unlock-banner small {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.72);
  font-size: .78rem;
}

@keyframes bonusBannerOrbit {
  to { transform: rotate(360deg); }
}

/* SplitText específico da chamada: entrada mais energética. */
.bonus-unlock-banner .js-split-text .split-word {
  transform: translateY(30px) scale(.82) rotate(-2deg);
  filter: blur(5px);
  transition-duration: .72s;
  transition-delay: calc(var(--split-index, 0) * 72ms);
}

.bonus-unlock-banner .js-split-text.is-split-visible .split-word {
  transform: translateY(0) scale(1) rotate(0);
  filter: blur(0);
}

/* Órbita visual dos três livros no hero. */
.book-stack {
  isolation: isolate;
}

.book-stack::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 66%;
  width: 535px;
  height: 155px;
  transform: translate(-50%, -50%) rotate(-7deg);
  border: 1px solid rgba(241,223,177,.27);
  border-radius: 50%;
  box-shadow:
    inset 0 0 28px rgba(213,173,85,.04),
    0 0 28px rgba(213,173,85,.07);
  z-index: 0;
  animation: orbitTrackPulse 3.8s ease-in-out infinite;
}

.book-stack::after {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  color: #ffe7a4;
  font-size: 14px;
  text-shadow: 0 0 14px #f4c95c;
  offset-path: ellipse(267px 77px at 310px 347px);
  offset-rotate: 0deg;
  animation: orbitSpark 8.5s linear infinite;
  z-index: 6;
  pointer-events: none;
}

.book--main {
  animation: mainBookOrbit 8.8s ease-in-out infinite !important;
  will-change: transform;
}

.book--bonus-one {
  animation: bonusOneOrbit 10.8s ease-in-out infinite !important;
  will-change: transform;
}

.book--bonus-two {
  animation: bonusTwoOrbit 10.8s ease-in-out infinite !important;
  will-change: transform;
}

@keyframes mainBookOrbit {
  0%, 100% { transform: translate(0, 0) rotate(-.4deg); }
  25% { transform: translate(8px, -9px) rotate(.2deg); }
  50% { transform: translate(0, -16px) rotate(.7deg); }
  75% { transform: translate(-8px, -8px) rotate(-.8deg); }
}

@keyframes bonusOneOrbit {
  0%, 100% { transform: translate(0, 16px) rotate(-4deg); }
  25% { transform: translate(8px, 7px) rotate(-2.8deg); }
  50% { transform: translate(14px, 14px) rotate(-3.5deg); }
  75% { transform: translate(5px, 24px) rotate(-5deg); }
}

@keyframes bonusTwoOrbit {
  0%, 100% { transform: translate(0, 16px) rotate(4deg); }
  25% { transform: translate(-8px, 24px) rotate(5deg); }
  50% { transform: translate(-14px, 14px) rotate(3.5deg); }
  75% { transform: translate(-5px, 7px) rotate(2.8deg); }
}

@keyframes orbitTrackPulse {
  0%, 100% { opacity: .42; filter: brightness(.9); }
  50% { opacity: .92; filter: brightness(1.25); }
}

@keyframes orbitSpark {
  from { offset-distance: 0%; }
  to { offset-distance: 100%; }
}

.showcase-caption {
  animation: showcaseCaptionGlow 2.8s ease-in-out infinite;
}

@keyframes showcaseCaptionGlow {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(213,173,85,0)); }
  50% { filter: drop-shadow(0 0 8px rgba(213,173,85,.4)); }
}

/* A versão móvel também mantém uma órbita suave. */
@media (max-width: 680px) {
  .individual-value--offer,
  .individual-value--bonus {
    flex-direction: row;
    align-items: center;
  }

  .price-transition {
    align-items: flex-end;
  }

  .current-individual-price,
  .bonus-free-price {
    font-size: 1.34rem !important;
  }

  .bonus-unlock-banner {
    margin: 26px auto 24px;
    padding: 20px 18px 18px;
  }

  .bonus-unlock-banner small {
    font-size: .7rem;
    line-height: 1.45;
  }

  .book-stack::before {
    width: 320px;
    height: 94px;
  }

  .book-stack::after {
    offset-path: ellipse(160px 47px at 180px 228px);
  }

  .mobile-book-showcase img:first-child {
    animation: mobileBonusLeftOrbit 7.5s ease-in-out infinite;
  }

  .mobile-book-showcase img:nth-child(2) {
    animation: mobileMainOrbit 6.8s ease-in-out infinite;
  }

  .mobile-book-showcase img:nth-child(3) {
    animation: mobileBonusRightOrbit 7.5s ease-in-out infinite;
  }
}

@keyframes mobileMainOrbit {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(0, -9px); }
}

@keyframes mobileBonusLeftOrbit {
  0%, 100% { transform: rotate(-5deg) translate(-2px, 12px); }
  50% { transform: rotate(-3deg) translate(7px, 4px); }
}

@keyframes mobileBonusRightOrbit {
  0%, 100% { transform: rotate(5deg) translate(2px, 12px); }
  50% { transform: rotate(3deg) translate(-7px, 4px); }
}

@media (prefers-reduced-motion: reduce) {
  .bonus-free-price,
  .bonus-unlock-banner::before,
  .book-stack::before,
  .book-stack::after,
  .book--main,
  .book--bonus-one,
  .book--bonus-two,
  .showcase-caption,
  .mobile-book-showcase img {
    animation: none !important;
  }
}


/* ==========================================================
   VERSÃO FINAL — SEQUÊNCIA INTERATIVA + PERFIL DO PASTOR
   ========================================================== */

/* A sequência começa compacta e se abre quando o visitante arrasta para baixo. */
.code-stack-hint {
  width: max-content;
  max-width: 100%;
  margin: -18px auto 24px;
  display: grid;
  grid-template-columns: 36px auto;
  column-gap: 10px;
  align-items: center;
  padding: 10px 17px 10px 11px;
  border: 1px solid rgba(213,173,85,.42);
  border-radius: 999px;
  background: #fff9ec;
  color: var(--navy);
  box-shadow: 0 10px 28px rgba(11,24,48,.07);
  cursor: ns-resize;
  user-select: none;
}
.code-stack-hint > span {
  grid-row: 1 / 3;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold-soft);
  background: var(--navy);
  font-size: 1.3rem;
  animation: codeHintMove 1.8s ease-in-out infinite;
}
.code-stack-hint strong { font-size: .82rem; line-height: 1.1; }
.code-stack-hint small { color: var(--muted); font-size: .66rem; line-height: 1.15; }
@keyframes codeHintMove { 0%,100% { transform: translateY(-2px); } 50% { transform: translateY(3px); } }

.code-word--interactive {
  --stack-progress: .18;
  display: block;
  position: relative;
  max-width: 950px;
  padding: 10px 0 4px;
  cursor: ns-resize;
  touch-action: pan-x;
  user-select: none;
  outline: none;
}
.code-word--interactive:focus-visible {
  outline: 3px solid rgba(213,173,85,.52);
  outline-offset: 10px;
  border-radius: 18px;
}
.code-word--interactive article {
  position: relative;
  margin-top: calc(-52px + (66px * var(--stack-progress)));
  transform: translateY(calc((1 - var(--stack-progress)) * var(--stack-index) * -1.6px)) scale(calc(.986 + (var(--stack-progress) * .014)));
  transform-origin: center top;
  box-shadow:
    0 calc(7px + (var(--stack-progress) * 7px)) calc(18px + (var(--stack-progress) * 15px)) rgba(11,24,48,calc(.075 + (var(--stack-progress) * .025))),
    0 0 0 1px rgba(255,255,255,.75) inset;
  transition: margin-top .26s ease, transform .26s ease, box-shadow .26s ease;
  z-index: calc(20 - var(--stack-index));
}
.code-word--interactive article:first-child { margin-top: 0; }
.code-word--interactive.is-dragging article { transition: none; }
.code-word--interactive.is-dragging { cursor: grabbing; }
.code-word--interactive article:hover {
  z-index: 30;
  border-color: rgba(213,173,85,.55);
}

/* Seção de autoria — ocupa o lugar da antiga galeria de páginas. */
.pastor-author {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 18% 46%, rgba(213,173,85,.13), transparent 28%),
    linear-gradient(145deg, #071426 0%, #0b1d36 54%, #102a4b 100%);
}
.pastor-author:before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(213,173,85,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(213,173,85,.025) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to right, #000, transparent 75%);
}
.pastor-author__glow {
  position: absolute;
  border: 1px solid rgba(213,173,85,.16);
  border-radius: 50%;
  pointer-events: none;
}
.pastor-author__glow--one { width: 520px; height: 520px; right: -210px; top: -190px; box-shadow: inset 0 0 0 80px rgba(213,173,85,.018), inset 0 0 0 160px rgba(213,173,85,.014); }
.pastor-author__glow--two { width: 320px; height: 320px; left: -170px; bottom: -120px; }
.pastor-author__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px,.82fr) minmax(0,1.18fr);
  gap: 74px;
  align-items: center;
}
.pastor-author__copy h2 { color: #fff; max-width: 780px; }
.pastor-author__copy > p { color: rgba(255,255,255,.76); }
.pastor-author__lead { font-size: 1.08rem; }
.pastor-author__method {
  margin: 28px 0;
  padding: 22px 24px;
  border: 1px solid rgba(213,173,85,.32);
  border-radius: 16px;
  background: rgba(255,255,255,.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.pastor-author__method > span { display: block; color: rgba(255,255,255,.57); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.pastor-author__method > strong { display: block; margin: 5px 0 9px; color: var(--gold-soft); font-family: Georgia,serif; font-size: 1.55rem; }
.pastor-author__method p { margin: 0; color: rgba(255,255,255,.72); font-size: .9rem; }
.pastor-author__pillars { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.pastor-author__pillars li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 15px;
  align-items: center;
  padding: 13px 15px;
  border-radius: 13px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
}
.pastor-author__pillars li > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(213,173,85,.14); color: var(--gold-soft); font-weight: 900; font-size: .72rem; }
.pastor-author__pillars strong { display: block; color: #fff; font-size: .92rem; }
.pastor-author__pillars small { display: block; margin-top: 2px; color: rgba(255,255,255,.61); line-height: 1.45; }
.pastor-author__copy blockquote {
  margin: 24px 0 0;
  padding: 17px 20px;
  border-left: 4px solid var(--gold);
  background: rgba(213,173,85,.08);
  color: var(--gold-soft);
  font-family: Georgia,serif;
  font-size: 1.12rem;
}

/* ProfileCard adaptado para HTML/CSS/JS puro. */
.pastor-profile-wrap {
  --pointer-x: 50%;
  --pointer-y: 50%;
  --rotate-x: 0deg;
  --rotate-y: 0deg;
  position: relative;
  width: min(100%, 430px);
  margin: auto;
  perspective: 900px;
  touch-action: pan-y;
}
.pastor-profile-behind {
  position: absolute;
  inset: 10%;
  border-radius: 36px;
  pointer-events: none;
  background: radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(226,183,86,.7), transparent 48%);
  filter: blur(54px) saturate(1.2);
  opacity: .36;
  transform: scale(1.08);
  transition: opacity .3s ease;
}
.pastor-profile-wrap.is-active .pastor-profile-behind { opacity: .72; }
.pastor-profile-shell { position: relative; z-index: 2; transform-style: preserve-3d; }
.pastor-profile-card {
  position: relative;
  aspect-ratio: .82;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(241,223,177,.55);
  background: #071222;
  box-shadow: 0 32px 80px rgba(0,0,0,.48), inset 0 0 0 1px rgba(255,255,255,.07);
  transform: rotateX(var(--rotate-y)) rotateY(var(--rotate-x));
  transform-style: preserve-3d;
  transition: transform .55s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease;
}
.pastor-profile-wrap.is-active .pastor-profile-card { transition: transform .08s linear; box-shadow: 0 38px 95px rgba(0,0,0,.55), 0 0 42px rgba(213,173,85,.12); }
.pastor-profile-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; transform: scale(1.015); }
.pastor-profile-gradient { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(5,13,26,.02) 35%, rgba(5,13,26,.34) 58%, rgba(5,13,26,.96) 100%); }
.pastor-profile-shine {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: .27;
  mix-blend-mode: screen;
  background:
    linear-gradient(115deg, transparent 18%, rgba(255,241,199,.65) 42%, transparent 60%),
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255,232,167,.7), transparent 25%);
  background-size: 240% 240%, 100% 100%;
  background-position: calc(100% - var(--pointer-x)) var(--pointer-y), center;
}
.pastor-profile-glare { position: absolute; inset: 0; z-index: 5; pointer-events: none; background: radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255,255,255,.34), transparent 31%); mix-blend-mode: overlay; opacity: .46; }
.pastor-profile-heading { position: absolute; z-index: 6; left: 28px; right: 28px; bottom: 102px; text-shadow: 0 3px 18px rgba(0,0,0,.8); }
.pastor-profile-heading > span { color: var(--gold-soft); font-size: .65rem; font-weight: 900; letter-spacing: .16em; }
.pastor-profile-heading h3 { color: #fff; margin: 5px 0 4px; font-size: clamp(1.8rem,3.2vw,2.6rem); }
.pastor-profile-heading p { margin: 0; color: rgba(255,255,255,.78); font-size: .84rem; }
.pastor-profile-info {
  position: absolute;
  z-index: 7;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 11px;
  align-items: center;
  padding: 11px 13px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  background: rgba(5,13,26,.54);
  backdrop-filter: blur(18px);
}
.pastor-profile-mini { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; border: 1px solid rgba(241,223,177,.5); }
.pastor-profile-mini img { width: 100%; height: 100%; object-fit: cover; }
.pastor-profile-info strong { display: block; color: #fff; font-size: .76rem; }
.pastor-profile-info small { display: block; color: rgba(255,255,255,.58); font-size: .62rem; }
.pastor-profile-status { padding: 7px 9px; border-radius: 999px; background: rgba(213,173,85,.14); color: var(--gold-soft); font-size: .58rem; font-weight: 800; white-space: nowrap; }

@media (max-width: 980px) {
  .pastor-author__grid { grid-template-columns: 1fr; gap: 48px; }
  .pastor-author__copy { max-width: 760px; margin: auto; }
  .pastor-profile-wrap { width: min(100%, 390px); }
}
@media (max-width: 680px) {
  .code-stack-hint { margin-top: -8px; grid-template-columns: 32px auto; }
  .code-stack-hint > span { width: 32px; height: 32px; }
  .code-word--interactive { --stack-progress: .5; touch-action: none; }
  .code-word--interactive article { margin-top: calc(-34px + (48px * var(--stack-progress))); }
  .pastor-author__grid { gap: 38px; }
  .pastor-author__copy { text-align: left; }
  .pastor-author__lead { font-size: 1rem; }
  .pastor-profile-wrap { width: min(100%, 350px); }
  .pastor-profile-heading { left: 20px; right: 20px; bottom: 94px; }
  .pastor-profile-info { left: 12px; right: 12px; bottom: 12px; grid-template-columns: 42px 1fr; }
  .pastor-profile-status { display: none; }
  .pastor-profile-mini { width: 40px; height: 40px; }
}
@media (prefers-reduced-motion: reduce) {
  .code-stack-hint > span { animation: none; }
  .code-word--interactive { --stack-progress: 1 !important; }
  .pastor-profile-card { transform: none !important; transition: none !important; }
}


/* ==========================================================
   AJUSTE FINAL 40+ — SEQUÊNCIA GUIADA, SEM ARRASTAR
   ========================================================== */
.code-stack-hint { display: none !important; }
.code-sequence-intro {
  width: min(100%, 950px);
  margin: -12px auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}
.code-sequence-intro span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--gold-soft);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.code-sequence-intro small {
  color: var(--muted);
  font-size: .82rem;
}
.code-word--guided {
  position: relative;
  max-width: 950px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
  padding-left: 22px;
}
.code-word--guided::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(to bottom, rgba(213,173,85,.12), rgba(213,173,85,.72), rgba(213,173,85,.12));
}
.code-word--guided article {
  position: relative;
  margin: 0 !important;
  transform: translateY(16px);
  opacity: 0;
  cursor: default;
  user-select: text;
  transition:
    opacity .55s ease,
    transform .55s ease,
    border-color .35s ease,
    box-shadow .35s ease,
    background-color .35s ease;
}
.code-word--guided article::before {
  content: '';
  position: absolute;
  left: -19px;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--paper);
  border: 3px solid rgba(213,173,85,.48);
  box-shadow: 0 0 0 4px var(--paper);
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.code-word--guided.is-visible article {
  opacity: 1;
  transform: translateY(0);
}
.code-word--guided.is-visible article:nth-child(1) { transition-delay: .04s; }
.code-word--guided.is-visible article:nth-child(2) { transition-delay: .12s; }
.code-word--guided.is-visible article:nth-child(3) { transition-delay: .20s; }
.code-word--guided.is-visible article:nth-child(4) { transition-delay: .28s; }
.code-word--guided.is-visible article:nth-child(5) { transition-delay: .36s; }
.code-word--guided.is-visible article:nth-child(6) { transition-delay: .44s; }
.code-word--guided article.is-current {
  border-color: rgba(213,173,85,.72);
  background: linear-gradient(105deg, #fff 0%, #fffaf0 100%);
  box-shadow: 0 16px 42px rgba(11,24,48,.11), 0 0 0 3px rgba(213,173,85,.10);
  transform: translateX(7px);
}
.code-word--guided article.is-current::before {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 5px rgba(213,173,85,.16), 0 0 18px rgba(213,173,85,.38);
}
.code-word--guided article.is-current .letter {
  box-shadow: inset 0 0 0 4px rgba(213,173,85,.24), 0 0 0 5px rgba(213,173,85,.10);
}
.code-word--guided article:hover,
.code-word--guided article:focus-within {
  border-color: rgba(213,173,85,.52);
}

/* Informação do perfil mais limpa e legível. */
.pastor-profile-info > div:nth-child(2) strong { font-size: .74rem; }
.pastor-profile-info > div:nth-child(2) small { max-width: 190px; line-height: 1.25; }

@media (max-width: 680px) {
  .code-sequence-intro { flex-direction: column; gap: 6px; margin-bottom: 20px; }
  .code-word--guided { padding-left: 14px; gap: 12px; }
  .code-word--guided::before { left: 4px; }
  .code-word--guided article::before { left: -14px; width: 10px; height: 10px; }
  .code-word--guided article.is-current { transform: translateX(3px); }
  .pastor-profile-info { grid-template-columns: 42px 1fr; }
  .pastor-profile-info > div:nth-child(2) small { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  .code-word--guided article {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .code-word--guided article.is-current { transform: none !important; }
}

/* ==========================================================
   URGÊNCIA VISUAL NO TOPO — PRODUTO DIGITAL
   ========================================================== */
.promo-bar--urgent {
  position: sticky;
  top: 0;
  z-index: 120;
  overflow: hidden;
  background:
    linear-gradient(90deg, #7a1717 0%, #b52b27 38%, #d2442e 50%, #b52b27 62%, #7a1717 100%);
  background-size: 220% 100%;
  border-bottom: 2px solid #ffd77f;
  box-shadow: 0 8px 28px rgba(80, 7, 7, .34);
  animation: urgentBannerFlow 4.8s linear infinite;
}
.promo-bar--urgent::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.22) 45%, transparent 70%);
  transform: translateX(-130%);
  animation: urgentBannerShine 3.6s ease-in-out infinite;
}
.promo-bar__inner--urgent {
  position: relative;
  z-index: 2;
  min-height: 62px;
  gap: 14px;
  padding: 8px 12px;
}
.promo-bar__message {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.15;
}
.promo-bar__message strong {
  color: #fff7da;
  font-size: clamp(.88rem, 1.7vw, 1.2rem);
  letter-spacing: .07em;
  text-transform: uppercase;
  text-shadow: 0 2px 9px rgba(0,0,0,.42);
  animation: urgentTextPulse 1.45s ease-in-out infinite;
}
.promo-bar__message span {
  margin-top: 4px;
  color: rgba(255,255,255,.92);
  font-size: clamp(.7rem, 1.2vw, .88rem);
}
.promo-bar__message b {
  color: #ffe08e;
  font-size: 1.08em;
}
.promo-bar__fire {
  display: inline-grid;
  place-items: center;
  font-size: 1.45rem;
  filter: drop-shadow(0 3px 5px rgba(0,0,0,.28));
  animation: urgentFire 1s ease-in-out infinite alternate;
}
.promo-bar__fire--right { animation-delay: .35s; }

.hero-urgency {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 6px 0 2px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 216, 130, .62);
  border-radius: 999px;
  background: rgba(126, 24, 24, .78);
  color: #fff4d0;
  box-shadow: 0 10px 25px rgba(0,0,0,.19), inset 0 1px 0 rgba(255,255,255,.13);
  font-size: .72rem;
  letter-spacing: .055em;
  line-height: 1.25;
  text-transform: uppercase;
}
.hero-urgency__dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #ffcf61;
  box-shadow: 0 0 0 0 rgba(255, 207, 97, .65);
  animation: urgentDot 1.35s ease-out infinite;
}
.hero-urgency strong { font-weight: 900; }

@keyframes urgentBannerFlow {
  to { background-position: -220% 0; }
}
@keyframes urgentBannerShine {
  0%, 56% { transform: translateX(-130%); }
  78%, 100% { transform: translateX(130%); }
}
@keyframes urgentTextPulse {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.025); filter: brightness(1.15); }
}
@keyframes urgentFire {
  from { transform: translateY(1px) rotate(-3deg) scale(.95); }
  to { transform: translateY(-2px) rotate(3deg) scale(1.08); }
}
@keyframes urgentDot {
  0% { box-shadow: 0 0 0 0 rgba(255, 207, 97, .65); }
  100% { box-shadow: 0 0 0 9px rgba(255, 207, 97, 0); }
}

@media (max-width: 680px) {
  .promo-bar__inner--urgent { min-height: 58px; gap: 8px; padding-inline: 8px; }
  .promo-bar__fire { font-size: 1.12rem; }
  .promo-bar__message strong { font-size: .79rem; letter-spacing: .045em; }
  .promo-bar__message span { font-size: .66rem; }
  .hero-urgency {
    margin-inline: auto;
    padding: 7px 10px;
    font-size: .62rem;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .promo-bar--urgent,
  .promo-bar--urgent::after,
  .promo-bar__message strong,
  .promo-bar__fire,
  .hero-urgency__dot { animation: none !important; }
}
