:root {
  --bg: #071023;
  --panel: rgba(18, 28, 52, .78);
  --panel2: rgba(30, 42, 70, .74);
  --gold: #f4d47d;
  --gold2: #b77924;
  --text: #f8eed2;
  --muted: #cdbf94;
  --line: rgba(244, 212, 125, .28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7,16,35,.72), #071023 55%, #050912),
    url("./assets/jesus-ceu-DMedomCK.jpg") center/cover;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  margin: 0;
  color: #fff2c8;
  line-height: 1.05;
}

p { line-height: 1.65; }

.hero, .section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 46px;
  padding: 54px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .22em;
  font-weight: 800;
  text-transform: uppercase;
}
.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--gold2);
  box-shadow: 0 0 18px var(--gold);
}
.center { justify-content: center; }

.hero h1 { font-size: clamp(42px, 6vw, 72px); }
.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.hero__ticks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}
.hero__ticks span {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: 999px;
  padding: 10px 13px;
  color: #eadba8;
  font-size: 13px;
}

.price-block small {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 11px;
}
.price-block strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(64px, 9vw, 94px);
  line-height: .9;
  color: var(--gold);
  text-shadow: 0 0 24px rgba(244, 212, 125, .28);
}

.cta {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  width: min(100%, 440px);
  padding: 18px 24px;
  color: #231506;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  background: linear-gradient(135deg, #fff2a8, #d19a31 58%, #f9d66b);
  box-shadow: 0 18px 40px rgba(177, 114, 24, .32);
}
.cta:hover { transform: translateY(-1px); }
.cta--center { display: block; margin: 34px auto 0; }
.safe { color: #a89660; font-size: 12px; }

.hero__media img, .offer-card img, .gallery img, .visual img {
  width: 100%;
  display: block;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: 0 34px 90px rgba(0,0,0,.45);
}

.section { padding: 72px 0; }
.section-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}
.section-head h2 { font-size: clamp(34px, 5vw, 52px); }
.section-head p { color: var(--muted); }

.cards, .steps-grid, .gallery {
  display: grid;
  gap: 18px;
}
.three { grid-template-columns: repeat(3, 1fr); }
.cards article, .steps-grid article, .checkout-card, .offer-card {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 24px;
  padding: 24px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.cards b { color: #fff2c8; display: block; margin: 10px 0; }
.cards p, .steps-grid p { color: var(--muted); margin-bottom: 0; }

.steps-grid { grid-template-columns: repeat(4, 1fr); }
.steps-grid span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #231506;
  font-weight: 900;
  background: linear-gradient(135deg, #fff2a8, #c58224);
}

.gallery { grid-template-columns: repeat(3, 1fr); }
.gallery figure { margin: 0; }
.gallery figcaption {
  text-align: center;
  color: var(--muted);
  margin-top: 10px;
  font-size: 14px;
}

.offer-card {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 34px;
  align-items: center;
}
.offer-card h2, .checkout-card h2 { font-size: clamp(34px, 5vw, 52px); }
.offer-card p { color: var(--muted); }
.checklist {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
}
.checklist li {
  color: #eadba8;
  display: flex;
  gap: 10px;
}
.checklist li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 900;
}

.visual article { text-align: center; }
.visual img {
  width: min(100%, 230px);
  margin: 0 auto 16px;
}

.final-offer { padding-bottom: 110px; }
.checkout-card {
  position: relative;
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  border-color: var(--line);
}
.checkout-card .checklist {
  max-width: 460px;
  margin-inline: auto;
  text-align: left;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}
.modal.is-open { display: block; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 14, .76);
}
.modal__card {
  position: relative;
  width: min(540px, calc(100% - 24px));
  max-height: calc(100vh - 28px);
  overflow: auto;
  margin: 14px auto;
  border-radius: 24px;
  padding: 26px;
  background: #fff7ee;
  color: #1d1720;
  box-shadow: 0 40px 120px rgba(0,0,0,.5);
}
.modal__card h2 {
  color: #231506;
  font-size: 34px;
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: #f7e4dc;
  color: #9e3650;
  font-weight: 900;
  cursor: pointer;
}
.modal-lead { color: #664c3b; margin-top: 8px; }
.form {
  display: grid;
  gap: 13px;
  margin-top: 18px;
}
.form label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 800;
  color: #5f2b3b;
}
.form input {
  height: 48px;
  border: 1px solid #edbad0;
  border-radius: 12px;
  padding: 0 13px;
  font: inherit;
  background: #fff;
}
.modal-product, .total-line, .bump {
  border: 1px solid #d8b161;
  border-radius: 14px;
  background: linear-gradient(135deg, #fffaf0, #fff1d7);
}
.modal-product, .total-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
}
.modal-product strong, .total-line strong { color: #3b2406; }
.modal-product span {
  display: block;
  margin-top: 3px;
  color: #7a6035;
  font-size: 12px;
}
.order-bumps { display: grid; gap: 10px; }
.bumps-title {
  margin: 2px 0 0;
  color: #5f2b3b;
  font-size: 13px;
  font-weight: 900;
}
.bump {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 13px;
  cursor: pointer;
}
.bump:hover {
  box-shadow: 0 10px 24px rgba(177, 114, 24, .14);
  transform: translateY(-1px);
}
.bump input {
  width: 18px;
  height: 18px;
  accent-color: #0ba548;
}
.bump b {
  display: block;
  color: #3b2406;
  line-height: 1.25;
}
.bump small {
  display: block;
  color: #705734;
  line-height: 1.35;
  margin-top: 3px;
}
.bump > strong {
  color: #05823d;
  white-space: nowrap;
}
.total-line {
  background: #fff0d6;
  color: #5f2b3b;
  font-weight: 900;
}
.phone-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
}
.pix-result {
  display: grid;
  gap: 14px;
  justify-items: center;
}
.pix-result[hidden] {
  display: none !important;
}
.pix-summary {
  width: 100%;
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid #d8b161;
  border-radius: 14px;
  background: #fffaf0;
}
.pix-summary div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #4c351c;
  font-size: 13px;
}
.pix-summary-total {
  border-top: 1px solid #ecd2a0;
  padding-top: 8px;
  font-weight: 900;
  color: #1d1720 !important;
}
.pix-result img {
  width: min(260px, 100%);
  border-radius: 16px;
  border: 1px solid #edbad0;
  background: #fff;
  padding: 10px;
}
.pix-short {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  background: #ffeaf2;
  color: #7a1434;
  font-weight: 800;
  text-align: center;
  word-break: break-all;
}
.status {
  color: #6d4b32;
  font-size: 13px;
  margin: 0;
}
.payment-confirmed {
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
}
.payment-confirmed[hidden] {
  display: none !important;
}
.confirmed-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #12aa5c;
  color: #fff;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}
.payment-confirmed h2 {
  margin: 0;
  color: #231506;
  font-size: clamp(28px, 7vw, 36px);
  line-height: 1.05;
}
.confirmed-lead {
  margin: -6px 0 2px;
  color: #664c3b;
}
.confirmed-card {
  width: 100%;
  padding: 16px;
  border: 1px solid #d8b161;
  border-radius: 16px;
  background: #fffaf0;
  text-align: left;
}
.confirmed-card span {
  display: block;
  margin-bottom: 5px;
  color: #7a1434;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.confirmed-card strong {
  color: #3b2406;
  font-size: 16px;
}
.confirmed-card p {
  margin: 5px 0 0;
  color: #355c45;
  font-size: 13px;
  line-height: 1.45;
}
.confirmed-card p b {
  color: #0c6b3d;
  font-size: 14px;
  word-break: break-word;
}
.confirmed-card--whatsapp,
.confirmed-card--email {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
}
.confirmed-card--whatsapp {
  background: #eefbf4;
  border-color: #81d4a4;
}
.confirmed-card--email {
  background: #fffaf0;
}
.confirmed-card--email p {
  color: #6d4b32;
}
.confirmed-card--email p b {
  color: #5c3810;
}
.confirmed-mini-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #12aa5c;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}
.confirmed-card--email .confirmed-mini-icon {
  background: #d99b2e;
}
.confirmed-access {
  width: 100%;
  text-decoration: none;
}

@media (max-width: 840px) {
  .hero, .offer-card { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 34px; }
  .hero__media { order: -1; }
  .three, .steps-grid, .gallery { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .hero, .section { width: min(100% - 22px, 1120px); }
  .hero h1 { font-size: 38px; }
  .gallery { gap: 12px; }
  .modal__card { padding: 22px 16px; }
}
