/* ============================================================
   21 DIAS COM DEUS — Audiobook · Landing Page
   Devotional system: cream / dark brown / gold
   Type: Cormorant Garamond (display serif) + Mulish (sans body)
   Structure & scale informed by Lucid DS (spacing/radii/components)
   ============================================================ */

:root {
  /* Surfaces */
  --cream:    #FAF5EC;
  --cream-2:  #F4EAD6;
  --paper:    #FFFDF8;
  --brown:    #281A10;
  --brown-2:  #34241A;

  /* Ink */
  --ink:      #3A2A1E;
  --ink-2:    #6E5B49;
  --ink-3:    #9C8B76;

  /* Gold accent */
  --gold:       #B0884E;
  --gold-deep:  #8C6A36;
  --gold-bright:#C7A05C;
  --gold-soft:  #E6D3A8;
  --gold-faint: #F1E6CC;

  /* Lines & shadow */
  --border:    #E8DBC3;
  --border-2:  #DECDAC;
  --hair:      rgba(176,136,78,.30);

  --sh-1: 0 1px 2px rgba(58,42,30,.05), 0 4px 14px rgba(58,42,30,.06);
  --sh-2: 0 4px 12px rgba(58,42,30,.08), 0 14px 34px rgba(58,42,30,.10);
  --sh-3: 0 10px 30px rgba(40,26,16,.16), 0 30px 70px rgba(40,26,16,.20);
  --sh-gold: 0 8px 22px rgba(140,106,54,.30);

  /* Type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Mulish", system-ui, -apple-system, sans-serif;

  --maxw: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 18px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* faint paper warmth */
  background-image:
    radial-gradient(1200px 600px at 80% -10%, rgba(176,136,78,.07), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(176,136,78,.05), transparent 55%);
  background-attachment: fixed;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 760px; }
section { position: relative; }
.band { padding: clamp(64px, 9vw, 120px) 0; }
.band-tight { padding: clamp(48px, 6vw, 84px) 0; }

.band-cream2 { background: var(--cream-2); }
.band-dark {
  background:
    radial-gradient(900px 500px at 80% -20%, rgba(176,136,78,.18), transparent 60%),
    radial-gradient(700px 600px at 0% 120%, rgba(176,136,78,.10), transparent 55%),
    var(--brown);
  color: #F3EAD9;
}
.band-dark .eyebrow { color: var(--gold-bright); }
.band-dark .lede, .band-dark p { color: rgba(243,234,217,.82); }

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: 12px;
  margin: 0 0 22px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--gold);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: ""; width: 26px; height: 1px; background: var(--gold);
  display: inline-block;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 600; color: var(--ink); margin: 0; }
.band-dark h1, .band-dark h2, .band-dark h3 { color: #FBF4E6; }

h1.display {
  font-size: clamp(40px, 6.4vw, 74px);
  line-height: 1.02;
  letter-spacing: -.01em;
  font-weight: 600;
}
h2.title {
  font-size: clamp(31px, 4.6vw, 54px);
  line-height: 1.06;
  letter-spacing: -.005em;
}
h3.sub {
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.2;
}
.serif-accent { font-style: italic; color: var(--gold-deep); }
.band-dark .serif-accent { color: var(--gold-bright); }

.lede {
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.62;
  color: var(--ink-2);
  font-weight: 400;
}
p { margin: 0 0 18px; }
p:last-child { margin-bottom: 0; }
.prose p { color: var(--ink-2); }
.prose strong { color: var(--ink); font-weight: 700; }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-family: var(--sans); font-weight: 800; font-size: 18px;
  letter-spacing: .01em;
  padding: 19px 34px;
  border: none; border-radius: 16px;
  cursor: pointer;
  text-align: center;
  transition: transform .16s ease, box-shadow .2s ease, background .2s ease;
  line-height: 1.2;
}
.btn-cta {
  color: #fff;
  background: linear-gradient(177deg, var(--gold-bright) 0%, var(--gold) 52%, var(--gold-deep) 100%);
  box-shadow: var(--sh-gold);
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(140,106,54,.42); }
.btn-cta:active { transform: translateY(0); }
.btn-lg { font-size: clamp(16px, 1.5vw, 20px); padding: clamp(15px,1.8vw,20px) clamp(22px,3vw,36px); border-radius: 16px; }
.btn-block { display: flex; width: 100%; }
.btn .ico { width: 22px; height: 22px; flex-shrink: 0; }

.cta-support {
  display: flex; flex-direction: column; gap: 7px;
  margin-top: 18px;
  font-size: 14.5px; color: var(--ink-2); font-weight: 600;
}
.cta-support .row { display: flex; flex-wrap: wrap; gap: 8px 22px; align-items: center; }
.cta-support .ck { display: inline-flex; align-items: center; gap: 8px; }
.cta-support .ck svg { width: 17px; height: 17px; color: var(--gold-deep); flex-shrink: 0; }
.band-dark .cta-support { color: rgba(243,234,217,.78); }
.band-dark .cta-support .ck svg { color: var(--gold-bright); }
.cta-support.center .row { justify-content: center; }

/* ---------- Sticky top bar ---------- */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: rgba(250,245,236,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transform: translateY(-100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1), border-color .35s;
}
.topbar.show { transform: translateY(0); border-bottom-color: var(--border); }
.topbar .inner {
  max-width: var(--maxw); margin: 0 auto; padding: 11px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand .seal {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
  background: radial-gradient(circle at 35% 30%, var(--gold-bright), var(--gold-deep));
  color: #FFF8E8; box-shadow: inset 0 0 0 1px rgba(255,255,255,.25), var(--sh-1);
}
.brand .seal svg { width: 20px; height: 20px; }
.brand .bname { font-family: var(--serif); font-size: 21px; font-weight: 600; line-height: 1; white-space: nowrap; }
.brand .bsub { font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); font-weight: 700; margin-top: 3px; }
.topbar .btn { padding: 12px 22px; font-size: 15px; border-radius: 12px; }
@media (max-width: 640px){ .topbar .btn { padding: 11px 18px; font-size: 14px; } .brand .bsub{ display:none; } }

/* ---------- HERO ---------- */
.hero { padding: clamp(120px, 16vw, 168px) 0 clamp(60px, 8vw, 104px); overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 76px);
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--gold-faint); color: var(--gold-deep);
  border: 1px solid var(--gold-soft);
  padding: 8px 16px 8px 12px; border-radius: 999px;
  font-size: 13px; font-weight: 800; letter-spacing: .02em;
  margin-bottom: 26px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(176,136,78,.18); }
.hero h1 { margin-bottom: 26px; }
.hero .lede { max-width: 540px; margin-bottom: 34px; }
.hero .lede em { font-family: var(--serif); font-style: italic; font-size: 1.12em; color: var(--ink); }

/* hero phone / player visual */
.hero-visual { position: relative; display: grid; place-items: center; }
.hero-glow {
  position: absolute; z-index: 0; pointer-events: none;
  width: 132%; height: 124%;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  background: radial-gradient(closest-side at 50% 47%, rgba(199,160,92,.42), rgba(199,160,92,.13) 46%, transparent 72%);
}
.hero-glow::before, .hero-glow::after {
  content: ""; position: absolute; left: 50%; top: 47%;
  transform: translate(-50%, -50%);
  border-radius: 50%; aspect-ratio: 1 / 1;
}
.hero-glow::before {
  width: min(360px, 70%);
  border: 1px solid rgba(176,136,78,.30);
  box-shadow: inset 0 0 70px rgba(199,160,92,.20);
}
.hero-glow::after {
  width: min(520px, 102%);
  border: 1px solid rgba(176,136,78,.15);
}
.phone {
  position: relative; z-index: 2;
  width: min(300px, 78vw);
  background: var(--brown);
  border-radius: 42px;
  padding: 13px;
  box-shadow: var(--sh-3), inset 0 0 0 1.5px rgba(255,255,255,.06);
}
.phone-screen {
  background: linear-gradient(180deg, #2E1F14, #1C120A);
  border-radius: 32px; overflow: hidden;
  padding: 26px 22px 24px;
  color: #F4EAD9;
  position: relative;
}
.phone-screen .notch {
  width: 110px; height: 26px; background: var(--brown); border-radius: 0 0 16px 16px;
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
}
.player-top { display: flex; align-items: center; justify-content: space-between; margin: 18px 0 22px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-bright); font-weight: 700; }
.player-cover {
  aspect-ratio: 1/1; width: 100%;
  border-radius: 18px; overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(199,160,92,.45), transparent 60%),
    linear-gradient(160deg, #4A3526 0%, #2A1C12 100%);
  background-color: #3a2a1c;
  box-shadow: var(--sh-2), inset 0 0 0 1px rgba(255,255,255,.06);
  display: grid; place-items: center; position: relative;
  margin-bottom: 20px;
}
.player-cover .cross { color: rgba(230,211,168,.85); width: 56px; height: 56px; }
.player-cover .cap { position: absolute; bottom: 12px; left: 14px; right: 14px; font-family: var(--serif); font-size: 19px; font-weight: 600; line-height: 1.05; color: #F6EEDD; text-shadow: 0 1px 8px rgba(0,0,0,.5); }
.player-cover .cap small { display:block; font-family: var(--sans); font-size: 10.5px; letter-spacing:.16em; text-transform: uppercase; color: var(--gold-bright); font-weight: 800; margin-bottom: 4px; }
.player-meta .t { font-family: var(--serif); font-size: 21px; font-weight: 600; line-height: 1.1; }
.player-meta .s { font-size: 12.5px; color: rgba(244,234,217,.6); margin-top: 2px; }

/* waveform */
.wave { display: flex; align-items: center; gap: 3px; height: 40px; margin: 18px 0 14px; }
.wave .bar { flex: 1; background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep)); border-radius: 3px; height: 30%; opacity: .55; }
.wave.playing .bar { animation: eq 1.1s ease-in-out infinite; opacity: 1; }
@keyframes eq { 0%,100%{ transform: scaleY(.32);} 50%{ transform: scaleY(1);} }
.wave .bar { transform-origin: center; }
.player-scrub { height: 4px; background: rgba(255,255,255,.14); border-radius: 99px; overflow: hidden; }
.player-scrub i { display:block; height:100%; width: 0; background: var(--gold-bright); border-radius: 99px; }
.player-time { display:flex; justify-content: space-between; font-size: 11px; color: rgba(244,234,217,.5); margin-top: 7px; font-variant-numeric: tabular-nums; }
.player-ctrls { display: flex; align-items: center; justify-content: center; gap: 26px; margin-top: 18px; }
.player-ctrls .ic { color: rgba(244,234,217,.7); width: 22px; height: 22px; }
.play-btn {
  width: 62px; height: 62px; border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(170deg, var(--gold-bright), var(--gold-deep));
  color: #2A1C12; display: grid; place-items: center;
  box-shadow: var(--sh-gold);
  transition: transform .15s;
}
.play-btn:hover { transform: scale(1.05); }
.play-btn svg { width: 26px; height: 26px; }

/* demo prompt under phone */
.demo-tag {
  position: absolute; z-index: 3; right: -8px; bottom: 30px;
  background: var(--paper); color: var(--ink);
  border: 1px solid var(--border-2); border-radius: 14px;
  padding: 11px 16px; box-shadow: var(--sh-2);
  font-size: 13px; font-weight: 700; max-width: 180px; line-height: 1.35;
  display: flex; align-items: center; gap: 10px;
}
.demo-tag svg { width: 26px; height: 26px; color: var(--gold-deep); flex-shrink: 0; }

/* ---------- Section header ---------- */
.sec-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 { margin-bottom: 20px; }
.sec-head .lede { margin: 0; }

/* ---------- Dor (pain) block ---------- */
.pain-list { display: grid; gap: 14px; margin: 0 0 30px; padding: 0; list-style: none; }
.pain-list li {
  display: flex; gap: 16px; align-items: flex-start;
  font-size: 18.5px; color: var(--ink-2);
}
.pain-list li .dotline { margin-top: 13px; width: 22px; height: 1px; background: var(--gold); flex-shrink: 0; }
.pull {
  font-family: var(--serif); font-size: clamp(24px, 3vw, 34px); line-height: 1.25;
  color: var(--ink); font-weight: 600;
  border-left: 3px solid var(--gold); padding-left: 26px; margin: 34px 0;
}
.pull em { font-style: italic; color: var(--gold-deep); }

/* ---------- Scenario chips (só áudio) ---------- */
.audio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,52px); align-items: center; }
.scenes { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 8px; }
.scene {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(230,211,168,.16);
  border-radius: 14px; padding: 16px 18px;
  font-size: 16px; font-weight: 600; color: #F0E6D5;
}
.scene svg { width: 24px; height: 24px; color: var(--gold-bright); flex-shrink: 0; }

/* ---------- 3 weeks ---------- */
.weeks { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.week-card {
  background: var(--paper); border: 1px solid var(--border);
  border-radius: 22px; padding: 38px 32px;
  box-shadow: var(--sh-1);
  position: relative; overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.week-card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.week-card .num {
  font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--gold-deep);
  letter-spacing: .04em; font-weight: 600;
}
.week-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--gold-faint); border: 1px solid var(--gold-soft);
  display: grid; place-items: center; margin: 6px 0 22px;
}
.week-icon svg { width: 32px; height: 32px; color: var(--gold-deep); }
.week-card h3 { font-size: 27px; margin-bottom: 6px; }
.week-card .tag { font-size: 14px; font-weight: 800; color: var(--gold-deep); letter-spacing: .02em; margin-bottom: 16px; }
.week-card p { font-size: 16px; color: var(--ink-2); margin: 0; }

/* ---------- O que recebe ---------- */
.incl-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(28px,4vw,52px); align-items: start; }
.incl-list { display: grid; gap: 18px; }
.incl-item {
  display: grid; grid-template-columns: 56px 1fr auto; gap: 18px; align-items: start;
  background: var(--paper); border: 1px solid var(--border); border-radius: 18px;
  padding: 22px 24px; box-shadow: var(--sh-1);
}
.incl-item.main { border-color: var(--gold-soft); box-shadow: var(--sh-2); background: linear-gradient(180deg, #FFFDF8, #FFF9EC); }
.incl-item .ic {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--gold-faint); border: 1px solid var(--gold-soft);
  display: grid; place-items: center;
}
.incl-item .ic svg { width: 28px; height: 28px; color: var(--gold-deep); }
.incl-item .kicker { font-size: 11.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 4px; }
.incl-item h4 { font-family: var(--serif); font-size: 22px; font-weight: 600; margin: 0 0 8px; color: var(--ink); line-height: 1.15; }
.incl-item ul { margin: 0; padding-left: 18px; color: var(--ink-2); font-size: 15px; }
.incl-item ul li { margin-bottom: 3px; }
.incl-item p { font-size: 15px; color: var(--ink-2); margin: 0; }
.incl-item .val { font-size: 13px; font-weight: 800; color: var(--ink-3); white-space: nowrap; align-self: center; }
.incl-item .val s { color: var(--ink-3); }

/* price card */
.price-card {
  position: sticky; top: 90px;
  background: var(--brown); color: #F4EAD9;
  border-radius: 24px; padding: 36px 32px;
  box-shadow: var(--sh-3);
  text-align: center;
  overflow: hidden;
}
.price-card::before { content:""; position:absolute; inset:0; background: radial-gradient(400px 200px at 50% -10%, rgba(199,160,92,.25), transparent 60%); pointer-events:none; }
.price-card .rel { position: relative; }
.price-card .totline { display:flex; align-items:center; justify-content: space-between; font-size: 15px; padding: 9px 0; border-bottom: 1px solid rgba(230,211,168,.14); color: rgba(244,234,217,.78); }
.price-card .totline:last-of-type { border-bottom: none; }
.price-card .totline .v { font-weight: 700; color: #F4EAD9; }
.price-card .totsum { display:flex; align-items:center; justify-content: space-between; margin: 14px 0 22px; padding-top: 14px; border-top: 1px dashed rgba(230,211,168,.3); }
.price-card .totsum .l { font-size: 14px; color: rgba(244,234,217,.7); }
.price-card .totsum .v { font-family: var(--serif); font-size: 26px; color: rgba(244,234,217,.55); text-decoration: line-through; }
.price-card .nowlabel { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-bright); font-weight: 800; }
.price-card .big {
  font-family: var(--serif); font-weight: 600; line-height: 1;
  font-size: 70px; margin: 8px 0 2px;
  display: inline-flex; align-items: baseline; justify-content: center;
}
.price-card .big .cur { font-size: 27px; margin-right: 7px; font-weight: 600; }
.price-card .big .cents { font-size: 30px; }
.price-card .inst { font-size: 15px; color: rgba(244,234,217,.72); margin-bottom: 24px; }
.price-card .deliver { font-size: 13px; color: rgba(244,234,217,.6); margin-top: 18px; display:flex; align-items:center; justify-content:center; gap: 8px; }
.price-card .btn { font-size: 18px; padding: 18px 18px; white-space: nowrap; letter-spacing: 0; gap: 10px; }
.price-card .btn .ico { width: 20px; height: 20px; }
@media (max-width: 400px){ .price-card .btn { font-size: 16px; } }
.price-card .deliver svg { width: 16px; height: 16px; color: var(--gold-bright); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; counter-reset: step; }
.step { text-align: center; position: relative; }
.step .ring {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 20px;
  background: var(--paper); border: 1px solid var(--border-2);
  display: grid; place-items: center; position: relative;
  box-shadow: var(--sh-1);
}
.step .ring svg { width: 36px; height: 36px; color: var(--gold-deep); }
.step .ring .n {
  position: absolute; top: -8px; right: -6px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold); color: #fff; font-weight: 800; font-size: 14px;
  display: grid; place-items: center; box-shadow: var(--sh-1);
  font-family: var(--sans);
}
.step h4 { font-family: var(--serif); font-size: 23px; font-weight: 600; margin: 0 0 8px; }
.step p { font-size: 15.5px; color: var(--ink-2); margin: 0; }
.steps-after {
  text-align: center; margin-top: 40px;
  font-family: var(--serif); font-size: clamp(20px,2.4vw,26px); color: var(--ink);
}
.steps-after b { color: var(--gold-deep); }

/* ---------- Testimonials placeholder ---------- */
.soon {
  text-align: center; border: 1.5px dashed var(--border-2); border-radius: 22px;
  padding: 56px 32px; background: rgba(255,253,248,.6);
}
.soon .seal-lg {
  width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 20px;
  background: var(--gold-faint); border: 1px solid var(--gold-soft);
  display: grid; place-items: center;
}
.soon .seal-lg svg { width: 30px; height: 30px; color: var(--gold-deep); }
.soon h3 { font-size: 30px; margin-bottom: 12px; }
.soon p { color: var(--ink-2); max-width: 520px; margin: 0 auto; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 30px; }
.testi {
  background: var(--paper); border: 1px solid var(--border); border-radius: 18px;
  padding: 28px; box-shadow: var(--sh-1); position: relative;
}
.testi .stars { color: var(--gold); letter-spacing: 2px; font-size: 15px; margin-bottom: 14px; }
.testi p { font-family: var(--serif); font-size: 19px; font-style: italic; color: var(--ink); line-height: 1.4; margin-bottom: 20px; }
.testi .who { display: flex; align-items: center; gap: 11px; font-size: 13px; font-weight: 700; color: var(--ink-2); }
.testi .who .av { width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; background: var(--gold-faint); border: 1px solid var(--gold-soft); color: var(--gold-deep); font-family: var(--serif); font-weight: 700; font-size: 17px; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 4px; text-align: left;
  font-family: var(--serif); font-size: clamp(20px,2.2vw,24px); font-weight: 600; color: var(--ink);
}
.faq-q .pm { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--border-2); display: grid; place-items: center; transition: background .2s, transform .2s; color: var(--gold-deep); }
.faq-q .pm svg { width: 16px; height: 16px; transition: transform .25s; }
.faq-item.open .pm { background: var(--gold); color: #fff; border-color: var(--gold); }
.faq-item.open .pm svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a .inner { padding: 0 4px 26px; color: var(--ink-2); font-size: 17px; max-width: 680px; }

/* ---------- Garantia ---------- */
.guarantee-grid { display: grid; grid-template-columns: 200px 1fr; gap: clamp(28px,4vw,56px); align-items: center; }
.seal-badge {
  width: 188px; height: 188px; border-radius: 50%;
  display: grid; place-items: center; text-align: center;
  background: radial-gradient(circle at 50% 35%, var(--brown-2), var(--brown));
  border: 2px solid var(--gold); color: var(--gold-bright);
  box-shadow: var(--sh-3), inset 0 0 0 6px rgba(199,160,92,.12);
  position: relative;
}
.seal-badge::before { content:""; position:absolute; inset:10px; border-radius:50%; border:1px dashed rgba(199,160,92,.4); }
.seal-badge .big { font-family: var(--serif); font-size: 56px; font-weight: 600; line-height: .9; color: #F4EAD9; }
.seal-badge .lbl { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 800; margin-top: 4px; }
.seal-badge .days { font-size: 13px; color: rgba(244,234,217,.7); margin-top: 2px; }

/* ---------- CTA final ---------- */
.final-cta { text-align: center; }
.final-cta h2 { margin-bottom: 22px; }
.final-cta .lede { max-width: 600px; margin: 0 auto 14px; }
.signature {
  margin-top: 44px; font-family: var(--serif); font-style: italic;
  font-size: clamp(20px,2.4vw,26px); color: var(--gold-bright); line-height: 1.4;
}
.signature .name { display: block; font-style: normal; font-size: 15px; letter-spacing: .16em; text-transform: uppercase; color: rgba(243,234,217,.7); font-family: var(--sans); font-weight: 700; margin-top: 14px; }

/* ---------- Footer ---------- */
.foot { background: var(--brown); color: rgba(243,234,217,.55); padding: 48px 0 56px; font-size: 13px; }
.foot .brand .bname, .foot .brand .seal { }
.foot .brand .bname { color: #F4EAD9; }
.foot p { color: rgba(243,234,217,.5); margin: 0 0 8px; line-height: 1.6; }
.foot a.link { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 2px; }
.foot .legal { margin-top: 22px; padding-top: 22px; border-top: 1px solid rgba(230,211,168,.14); max-width: 720px; }
.foot-links { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 16px 0 14px; }
.foot-links a { color: var(--gold-bright); font-weight: 700; font-size: 14px; text-decoration: none; }
.foot-links a:hover { text-decoration: underline; text-underline-offset: 3px; }
.foot-links .sep { color: rgba(243,234,217,.3); }
.foot-copy { font-size: 12.5px; color: rgba(243,234,217,.4) !important; }

/* ---------- Sticky mobile CTA ---------- */
.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  background: rgba(40,26,16,.96); backdrop-filter: blur(8px);
  border-top: 1px solid rgba(199,160,92,.3);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  display: none; align-items: center; gap: 14px;
  transform: translateY(110%); transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.dock.show { transform: translateY(0); }
.dock .dprice { color: #F4EAD9; line-height: 1.1; flex-shrink: 0; }
.dock .dprice b { font-family: var(--serif); font-size: 24px; font-weight: 600; display: block; }
.dock .dprice small { font-size: 11px; color: var(--gold-bright); letter-spacing: .1em; text-transform: uppercase; font-weight: 700; }
.dock .btn { flex: 1; padding: 15px 18px; font-size: 16px; }

/* ---------- Responsive ---------- */
@media (max-width: 940px){
  .hero { padding-top: clamp(96px, 18vw, 140px); }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { order: -1; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow, .hero-badge { }
  .hero .lede { max-width: 600px; margin-left: auto; margin-right: auto; }
  .hero .cta-support { align-items: center; }
  .hero .cta-support .row { justify-content: center; }
  /* contain the backdrop photo so it never overflows */
  .hero-photo { inset: 4% 3% !important; height: auto !important; border-radius: 24px; }
  .demo-tag { right: 0; }
  .audio-grid { grid-template-columns: 1fr; gap: 32px; }
  .weeks { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .incl-grid { grid-template-columns: 1fr; }
  .price-card { position: static; max-width: 460px; margin: 0 auto; }
  .steps { grid-template-columns: repeat(2,1fr); gap: 40px 22px; }
  .testi-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .guarantee-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .scenes { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px){
  body { font-size: 17px; }
  .wrap { padding: 0 20px; }
  .band { padding: clamp(56px, 13vw, 80px) 0; }
  .scenes { grid-template-columns: 1fr; }
  .incl-item { grid-template-columns: 46px 1fr; row-gap: 8px; }
  .incl-item .ic { width: 46px; height: 46px; }
  .incl-item .val { grid-column: 2; justify-self: start; }
  .steps { grid-template-columns: 1fr; gap: 30px; max-width: 360px; margin-left: auto; margin-right: auto; }
  .dock { display: flex; }
  .btn { font-size: 16px; padding: 16px 22px; gap: 9px; }
  .btn .ico { width: 19px; height: 19px; }
  .pull { padding-left: 18px; margin: 28px 0; }
  .pain-list li { font-size: 17px; gap: 12px; }
  /* keep CTA above the sticky dock */
  .final-cta, .foot { padding-bottom: calc(96px + env(safe-area-inset-bottom)); }
}
@media (max-width: 400px){
  .wrap { padding: 0 16px; }
  .price-card { padding: 30px 22px; }
  .price-card .big { font-size: 58px; }
  .price-card .big .cur { font-size: 24px; }
  .price-card .big .cents { font-size: 26px; }
  .topbar .btn { padding: 10px 14px; font-size: 13.5px; }
  .topbar .inner { padding: 10px 16px; }
  .hero-badge { font-size: 12px; padding: 7px 13px 7px 11px; }
}
