/* =========================================================
   CONVERSE COM DEUS — LANDING PAGE
   Identidade "Santuário de Luz": violeta espiritual + dourado sagrado
   Tipografia: Cormorant Garamond (voz divina) + Raleway (interface)
   ========================================================= */

:root {
  /* Superfícies — pergaminho / amanhecer */
  --ivory:        #FBF6EC;
  --ivory-2:      #F4EAD6;
  --parchment:    #EFE3CB;

  /* Tinta — índigo/violeta profundo (legível, WCAG AA) */
  --ink:          #2A2350;
  --ink-soft:     #5B5380;
  --ink-faint:    #8A82A8;

  /* Dourado sagrado */
  --gold:         #B8902F;
  --gold-bright:  #D9B45A;
  --gold-soft:    #EAD9A8;
  --gold-glow:    rgba(184, 144, 47, 0.22);

  /* Violeta espiritual */
  --violet:       #6D4AA7;
  --violet-deep:  #4C1D95;
  --violet-soft:  rgba(109, 74, 167, 0.10);

  --radius:      22px;
  --radius-lg:   30px;
  --shadow-sm:   0 2px 10px rgba(60, 46, 20, 0.06);
  --shadow:      0 18px 50px rgba(74, 58, 24, 0.12);
  --shadow-xl:   0 30px 80px rgba(42, 35, 80, 0.20);
  --ring:        0 0 0 4px var(--gold-glow);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-ui: "Raleway", system-ui, sans-serif;

  --maxw: 1080px;
  --maxw-narrow: 720px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { width: 100%; overflow-x: hidden; }

body {
  font-family: var(--font-ui);
  color: var(--ink);
  background:
    radial-gradient(120% 70% at 50% -8%, #FFFBF2 0%, var(--ivory) 38%, var(--ivory-2) 100%);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ===================== FUNDO ===================== */
/* Fundo escopado ao hero (absolute): cobre a ALTURA INTEIRA do hero,
   garantindo o véu escuro atrás de todo o texto claro, em qualquer tela. */
.bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none;
  background: #14101e url("hero-poster.jpg") center 28% / cover no-repeat; }
.bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 28%;
  opacity: 0.96;
}
/* Véu cinematográfico: índigo escurecido no topo/baixo (texto claro legível),
   transparente no meio (mostra Jesus + raios dourados do vídeo). Só aparece no hero. */
.bg-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(20,15,36,0.62) 0%,
      rgba(20,15,36,0.30) 22%,
      rgba(20,15,36,0.04) 44%,
      rgba(20,15,36,0.04) 58%,
      rgba(20,15,36,0.34) 78%,
      rgba(20,15,36,0.68) 100%);
}
/* Raios de luz suaves saindo do topo */
.bg-rays {
  position: absolute; top: -10%; left: 50%; transform: translateX(-50%);
  width: 120vw; height: 70vh;
  background: conic-gradient(from 180deg at 50% 0%,
    transparent 0deg, rgba(217,180,90,0.10) 20deg, transparent 40deg,
    rgba(217,180,90,0.08) 70deg, transparent 95deg,
    rgba(109,74,167,0.07) 130deg, transparent 160deg);
  filter: blur(6px);
  opacity: 0.35;
}

/* Desktop: troca o vídeo vertical (9:16) por uma imagem landscape dedicada (16:9).
   Mobile baixa só o vídeo; desktop baixa só a imagem (graças ao media query). */
@media (min-width: 861px) {
  .bg { background-image: url("hero-desktop.webp"); background-position: center center; }
  .bg-video { display: none; }
}

/* Partículas de luz flutuantes */
.motes { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.mote {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,180,90,0.9), rgba(217,180,90,0) 70%);
  animation: floatUp linear infinite;
  opacity: 0;
}
@keyframes floatUp {
  0%   { transform: translateY(20px) scale(0.6); opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.5; }
  100% { transform: translateY(-110vh) scale(1); opacity: 0; }
}

/* ===================== LAYOUT ===================== */
main { position: relative; z-index: 2; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.container.narrow { max-width: var(--maxw-narrow); }
.center { text-align: center; }

.section { padding: clamp(64px, 11vw, 120px) 0; position: relative; }

/* ===================== NAV ===================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 14px clamp(16px, 4vw, 34px);
  padding-top: max(14px, env(safe-area-inset-top));
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease, backdrop-filter 0.35s ease;
}
.nav.scrolled {
  background: rgba(251, 246, 236, 0.82);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
}
.nav-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 1.22rem; color: var(--ink); }
.nav-name { white-space: nowrap; }
.nav-cta {
  background: transparent; color: var(--gold);
  border: 1px solid rgba(184,144,47,0.5);
  border-radius: 999px; padding: 9px 18px;
  font-weight: 600; font-size: 0.86rem; letter-spacing: 0.2px;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
}
.nav-cta:hover { background: rgba(184,144,47,0.10); box-shadow: var(--shadow-sm); }
.nav-cta:active { transform: scale(0.97); }
/* No topo (sobre o hero escurecido): texto claro. Ao rolar: volta ao escuro. */
.nav:not(.scrolled) .nav-brand { color: #FBF6EC; text-shadow: 0 1px 10px rgba(18,12,30,0.5); }
.nav:not(.scrolled) .nav-cta { color: #FBF6EC; border-color: rgba(255,250,242,0.55); }
.nav:not(.scrolled) .nav-cta:hover { background: rgba(255,255,255,0.12); }

/* ===================== BRASÃO / SIGIL ===================== */
.sigil {
  display: grid; place-items: center; color: var(--gold);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, #FFFDF6 0%, #FBF1D8 70%, #F4E6C4 100%);
  box-shadow: 0 0 0 1px rgba(184,144,47,0.25), 0 0 26px var(--gold-glow), inset 0 0 14px rgba(255,255,255,0.7);
  flex-shrink: 0;
}
.sigil-xs { width: 26px; height: 26px; box-shadow: 0 0 0 1px rgba(184,144,47,0.25), inset 0 0 8px rgba(255,255,255,0.7); }
.sigil-sm { width: 38px; height: 38px; }
.sigil-md { width: 60px; height: 60px; margin: 0 auto 20px; }
.sigil-lg { width: 86px; height: 86px; margin: 0 auto 26px; }
.fx-halo { animation: halo 5s ease-in-out infinite; }
.fx-halo svg { animation: rotate 60s linear infinite; }
@keyframes halo { 50% { box-shadow: 0 0 0 1px rgba(184,144,47,0.4), 0 0 48px var(--gold-glow), inset 0 0 14px rgba(255,255,255,0.85); } }
@keyframes rotate { to { transform: rotate(360deg); } }

/* ===================== BOTÕES ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-ui); font-weight: 700; letter-spacing: 0.2px;
  border: none; border-radius: 999px; cursor: pointer;
  padding: 14px 28px; font-size: 0.96rem;
  transition: transform 0.15s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
.btn-primary {
  color: #3a2e0c;
  background: radial-gradient(circle at 35% 25%, var(--gold-bright), var(--gold) 82%);
  box-shadow: 0 8px 22px var(--gold-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px var(--gold-glow); }
.btn-primary:active { transform: translateY(0) scale(0.98); }
.btn-primary:focus-visible { outline: none; box-shadow: var(--ring), 0 8px 22px var(--gold-glow); }
.btn-lg { padding: 17px 36px; font-size: 1.05rem; }
.btn-block { display: flex; width: 100%; }
.btn svg { flex-shrink: 0; }

.btn-text {
  color: var(--ink-soft); font-weight: 600; font-size: 0.95rem;
  padding: 10px 6px; border-bottom: 1px solid transparent; border-radius: 0;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.btn-text:hover { color: var(--gold); border-color: var(--gold); }
.hero .btn-text { color: rgba(255,250,242,0.9); text-shadow: 0 1px 8px rgba(18,12,30,0.6); }
.hero .btn-text:hover { color: var(--gold-bright); border-color: var(--gold-bright); }

/* Brilho dourado que percorre o CTA */
.fx-shimmer { position: relative; overflow: hidden; }
.fx-shimmer::after {
  content: ""; position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-18deg);
  animation: shimmer 4.5s ease-in-out infinite;
}
@keyframes shimmer { 0%, 60% { left: -120%; } 85%, 100% { left: 160%; } }

/* ===================== HERO ===================== */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: clamp(96px, 16vh, 150px) 22px 90px;
  position: relative;
  overflow: hidden; /* recorta o vídeo/partículas à altura do hero */
}
.hero-inner { max-width: 780px; position: relative; z-index: 2; }
.eyebrow {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.05rem, 3vw, 1.3rem);
  color: var(--gold-bright); letter-spacing: 0.3px; margin-bottom: 14px;
  text-shadow: 0 2px 14px rgba(18,12,30,0.55);
}
.hero-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.1rem, 6.2vw, 4rem);
  line-height: 1.08; color: #FBF6EC; letter-spacing: 0.2px;
  text-shadow: 0 2px 22px rgba(18,12,30,0.6), 0 1px 3px rgba(18,12,30,0.5);
}
.hero-title em { font-style: italic; color: var(--gold-bright); }
.hero-sub {
  max-width: 600px; margin: 22px auto 0;
  font-size: clamp(1.02rem, 2.4vw, 1.18rem);
  color: rgba(255,250,242,0.94); line-height: 1.7;
  text-shadow: 0 1px 12px rgba(18,12,30,0.55);
}
.hero-actions {
  margin-top: 34px;
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: center;
}
.hero-trust {
  list-style: none; margin: 34px auto 0;
  display: flex; flex-wrap: wrap; gap: 14px 26px; justify-content: center;
  font-size: 0.86rem; font-weight: 600; color: var(--ink-soft);
}
.hero-trust { color: rgba(255,250,242,0.92); text-shadow: 0 1px 8px rgba(18,12,30,0.6); }
.hero-trust li { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust svg { color: var(--gold-bright); }
.hero-microcopy { margin-top: 16px; font-size: 0.84rem; font-weight: 600; color: rgba(255,250,242,0.9); letter-spacing: 0.2px; text-shadow: 0 1px 8px rgba(18,12,30,0.6); }

.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(184,144,47,0.5);
  border-radius: 14px; display: grid; place-items: start center; padding-top: 7px;
  z-index: 2;
}
.scroll-cue span {
  width: 4px; height: 9px; border-radius: 3px; background: var(--gold);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(-4px); } 40% { opacity: 1; } 80%,100% { opacity: 0; transform: translateY(12px); } }

/* ===================== TÍTULOS DE SEÇÃO ===================== */
.kicker {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.15rem; color: var(--gold); margin-bottom: 10px;
}
.kicker.center { text-align: center; }
.section-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.8rem, 4.8vw, 2.9rem);
  line-height: 1.15; color: var(--ink); letter-spacing: 0.2px;
}
.section-title em { font-style: italic; color: var(--violet); }
.section-title.center { text-align: center; margin-bottom: 14px; }
.lead { font-size: clamp(1rem, 2.2vw, 1.14rem); color: var(--ink-soft); line-height: 1.75; margin-top: 16px; }

/* ===================== DOR ===================== */
.section-pain .container { text-align: center; }
.pain-list { margin-top: 30px; display: flex; flex-direction: column; gap: 16px; }
.pain-list p {
  font-family: var(--font-display); font-size: clamp(1.2rem, 3vw, 1.55rem);
  color: var(--ink-soft); line-height: 1.5;
}
.pain-turn { color: var(--ink) !important; margin-top: 8px; }
.pain-turn strong { color: var(--violet); font-weight: 600; }

/* ===================== SOLUÇÃO / SPLIT ===================== */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 72px);
  align-items: center;
}
.split-copy .btn { margin-top: 26px; }
.split-visual { display: flex; align-items: center; justify-content: center; position: relative; }

/* Mockup de celular */
.phone {
  position: relative; z-index: 2;
  width: clamp(260px, 78vw, 320px); aspect-ratio: 320 / 660;
  background: linear-gradient(160deg, #322a5e, #211b40);
  border-radius: 42px; padding: 12px;
  box-shadow: var(--shadow-xl), inset 0 0 0 2px rgba(217,180,90,0.25);
}
.fx-float { animation: floatPhone 6s ease-in-out infinite; }
@keyframes floatPhone { 50% { transform: translateY(-12px); } }
.phone-notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 38%; height: 22px; background: #1b1636; border-radius: 0 0 14px 14px; z-index: 3;
}
.phone-screen {
  width: 100%; height: 100%; border-radius: 32px; overflow: hidden;
  background:
    linear-gradient(180deg, rgba(24,18,44,0.25), transparent 30%),
    radial-gradient(120% 80% at 50% 0%, #FFFBF2, var(--ivory) 60%, var(--ivory-2));
  display: flex; flex-direction: column;
}
.phone-top {
  display: flex; align-items: center; gap: 8px;
  padding: 22px 16px 12px;
  background: rgba(251,246,236,0.7);
  border-bottom: 1px solid rgba(184,144,47,0.22);
  font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 0.95rem;
}
/* Container das duas "telas" do mockup (afiliação + conversa) */
.phone-body { position: relative; flex: 1; overflow: hidden; }
.phone-view { position: absolute; inset: 0; transition: opacity 0.55s ease; }
.phone-view.is-hidden { opacity: 0; pointer-events: none; }
.phone-chat {
  padding: 16px 14px; display: flex; flex-direction: column; gap: 12px; overflow: hidden;
}
/* TAKE 1 — Afiliação Religiosa */
.phone-aff { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 20px 16px; }
.pa-q { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; color: var(--ink); }
.pa-opt { font-size: 0.72rem; color: var(--ink-faint); margin: 2px 0 14px; }
.pa-chips { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; }
.pa-chip {
  font-size: 0.74rem; padding: 7px 12px; border-radius: 999px;
  border: 1px solid rgba(184,144,47,0.32); background: rgba(255,253,247,0.85); color: var(--ink);
  transition: background 0.4s ease, color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}
.pa-chip.sel {
  background: radial-gradient(circle at 35% 30%, var(--gold-bright), var(--gold) 85%);
  border-color: var(--gold); color: #3a2e0c; font-weight: 700;
  box-shadow: 0 4px 12px var(--gold-glow); transform: translateY(-1px);
}
.pa-note { font-family: var(--font-display); font-style: italic; font-size: 0.95rem; color: var(--violet); margin-top: 16px; }
.pm {
  max-width: 86%; padding: 11px 14px; border-radius: 16px; font-size: 0.82rem; line-height: 1.5;
  box-shadow: var(--shadow-sm);
  opacity: 0; transform: translateY(10px);
}
.pm.in { animation: pmIn 0.5s cubic-bezier(0.2,0.85,0.25,1) forwards; }
@keyframes pmIn { to { opacity: 1; transform: translateY(0); } }
.pm-user {
  align-self: flex-end; background: linear-gradient(180deg, #F3EFFB, #EBE4F8);
  border: 1px solid rgba(109,74,167,0.30); border-bottom-right-radius: 5px; color: var(--ink);
}
.pm-god {
  align-self: flex-start; position: relative;
  background: linear-gradient(180deg, rgba(255,253,247,0.96), rgba(251,243,223,0.92));
  border: 1px solid rgba(184,144,47,0.45); border-bottom-left-radius: 5px;
  padding-left: 16px; font-family: var(--font-display); font-size: 0.95rem; color: var(--ink);
}
.pm-god::before { content: ""; position: absolute; left: 0; top: 9px; bottom: 9px; width: 3px; border-radius: 3px; background: linear-gradient(180deg, var(--gold-bright), var(--gold)); }
.pm-typing { align-self: flex-start; display: inline-flex; gap: 5px; padding: 13px 16px; background: rgba(255,253,247,0.9); border: 1px solid rgba(184,144,47,0.35); border-radius: 16px; }
.pm-typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: blink 1.3s infinite ease-in-out; }
.pm-typing span:nth-child(2) { animation-delay: 0.18s; }
.pm-typing span:nth-child(3) { animation-delay: 0.36s; }
@keyframes blink { 0%,80%,100% { opacity: 0.25; transform: scale(0.85); } 40% { opacity: 1; transform: scale(1); } }

.phone-glow {
  position: absolute; inset: -10% -10% -20%; z-index: 1;
  background: radial-gradient(50% 45% at 50% 45%, var(--gold-glow), transparent 70%);
  filter: blur(20px);
}

/* ===================== CARTA DO CRIADOR ===================== */
.creator-card {
  display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(28px, 5vw, 56px);
  align-items: center;
  background: rgba(255, 253, 247, 0.72);
  border: 1px solid rgba(184,144,47,0.28);
  border-radius: var(--radius-lg); padding: clamp(22px, 4vw, 44px);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
}
.creator-photo {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); aspect-ratio: 4 / 3;
}
.creator-photo img { width: 100%; height: 100%; object-fit: cover; }
.creator-photo::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow: inset 0 0 0 3px rgba(217,180,90,0.30);
  background: linear-gradient(180deg, transparent 60%, rgba(42,35,80,0.12) 100%);
}
.creator-body { margin-top: 14px; display: flex; flex-direction: column; gap: 12px; }
.creator-body p {
  font-family: var(--font-display); font-size: clamp(1.06rem, 2.4vw, 1.24rem);
  color: var(--ink-soft); line-height: 1.7;
}
.creator-body p strong { color: var(--ink); font-weight: 600; }
.creator-sign { margin-top: 24px; display: flex; flex-direction: column; gap: 2px; }
.creator-name { font-family: var(--font-display); font-style: italic; font-size: 1.55rem; color: var(--violet); line-height: 1.1; }
.creator-role { font-size: 0.78rem; letter-spacing: 0.8px; text-transform: uppercase; color: var(--gold); font-weight: 700; }

/* ===================== CARDS / BENEFÍCIOS ===================== */
.cards { margin-top: 46px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: rgba(255, 253, 247, 0.72);
  border: 1px solid rgba(184,144,47,0.28);
  border-radius: var(--radius); padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px) saturate(1.1);
  -webkit-backdrop-filter: blur(8px) saturate(1.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--gold); }
.card-icon {
  display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 18px;
  border-radius: 16px; color: var(--gold);
  background: radial-gradient(circle at 40% 30%, #FFFDF6, #FBF0D6 75%, #F2E3BF);
  box-shadow: 0 0 0 1px rgba(184,144,47,0.22), 0 0 22px var(--gold-glow);
}
.card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.45rem; color: var(--ink); margin-bottom: 8px; }
.card p { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.65; }

/* CTA-fantasma entre seções */
.ghost-cta { margin-top: 44px; text-align: center; }

/* ===================== COMO FUNCIONA ===================== */
.steps { list-style: none; margin-top: 44px; display: flex; flex-direction: column; gap: 22px; }
.steps li {
  display: flex; gap: 20px; align-items: flex-start;
  background: rgba(255,253,247,0.6); border: 1px solid rgba(184,144,47,0.22);
  border-radius: var(--radius); padding: 24px 26px; box-shadow: var(--shadow-sm);
}
.step-num {
  flex-shrink: 0; width: 46px; height: 46px; display: grid; place-items: center;
  border-radius: 50%; font-family: var(--font-display); font-weight: 700; font-size: 1.4rem;
  color: #3a2e0c; background: radial-gradient(circle at 35% 30%, var(--gold-bright), var(--gold));
  box-shadow: 0 6px 16px var(--gold-glow);
}
.steps h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; color: var(--ink); margin-bottom: 4px; }
.steps p { color: var(--ink-soft); font-size: 0.98rem; }

/* ===================== DEPOIMENTOS ===================== */
.testimonial blockquote { font-family: var(--font-display); font-size: 1.25rem; font-style: italic; color: var(--ink); line-height: 1.5; }
.testimonial figcaption { margin-top: 14px; font-weight: 600; font-size: 0.9rem; color: var(--gold); }

/* ===================== OFERTA ===================== */
.section-offer { scroll-margin-top: 80px; }
.offer-card {
  background: linear-gradient(180deg, #FFFDF7 0%, #F6ECD6 100%);
  border: 1px solid rgba(184,144,47,0.42);
  border-radius: var(--radius-lg); padding: clamp(30px, 5vw, 52px);
  box-shadow: var(--shadow-xl); text-align: center; position: relative; overflow: hidden;
}
.offer-card::before {
  content: ""; position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 140%; height: 80%;
  background: radial-gradient(50% 60% at 50% 50%, var(--gold-glow), transparent 70%);
  pointer-events: none;
}
.offer-title { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.7rem, 4.5vw, 2.5rem); color: var(--ink); margin: 6px 0 14px; }
.offer-desc { color: var(--ink-soft); max-width: 520px; margin: 0 auto; font-size: 1.02rem; }
.offer-includes {
  list-style: none; max-width: 420px; margin: 28px auto; text-align: left;
  display: flex; flex-direction: column; gap: 13px;
}
.offer-includes li { display: flex; align-items: flex-start; gap: 12px; color: var(--ink); font-size: 1rem; font-weight: 500; }
.offer-includes svg { flex-shrink: 0; margin-top: 3px; color: var(--gold); }

.price { margin: 28px 0 8px; display: flex; flex-direction: column; align-items: center; gap: 2px; }
.price-from { font-size: 0.95rem; color: var(--ink-soft); }
.price-from s { color: var(--ink-faint); }
.price-now {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(3.4rem, 11vw, 5rem); line-height: 1; color: var(--violet);
  display: inline-flex; align-items: flex-start; gap: 4px;
}
.price-cents { font-size: 0.4em; margin-top: 0.5em; color: var(--gold); }
.price-note { font-size: 0.9rem; font-weight: 600; color: var(--gold); letter-spacing: 0.3px; text-transform: uppercase; }

/* Stack de valor (ancoragem) */
.value-stack { list-style: none; max-width: 460px; margin: 26px auto 0; display: flex; flex-direction: column; gap: 10px; text-align: left; position: relative; z-index: 1; }
.value-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; padding: 12px 0; border-bottom: 1px dashed rgba(184,144,47,0.3); }
.value-row:last-child { border-bottom: none; }
.v-label { display: flex; align-items: flex-start; gap: 10px; color: var(--ink); font-size: 0.98rem; line-height: 1.4; }
.v-label svg { flex-shrink: 0; margin-top: 3px; color: var(--gold); }
.v-label strong { font-weight: 700; }
.v-label small { display: block; font-size: 0.8rem; color: var(--ink-faint); font-weight: 400; margin-top: 2px; }
.v-price { flex-shrink: 0; font-weight: 600; color: var(--ink-faint); font-variant-numeric: tabular-nums; white-space: nowrap; text-decoration: line-through; text-decoration-color: rgba(138, 130, 168, 0.7); text-decoration-thickness: 1.5px; }
.value-total { position: relative; z-index: 1; text-align: center; margin-top: 16px; font-size: 1rem; font-weight: 600; color: var(--ink-soft); }
.value-total s { color: var(--ink-faint); }

.price-day { font-size: 0.82rem; color: var(--ink-soft); margin-top: 6px; }
.pay-methods { position: relative; z-index: 1; margin-top: 14px; font-size: 0.86rem; color: var(--ink-soft); }
.offer-urgency { position: relative; z-index: 1; margin-top: 16px; padding: 12px 18px; border-radius: 14px; background: rgba(184,144,47,0.12); border: 1px solid rgba(184,144,47,0.32); color: var(--ink); font-size: 0.9rem; font-weight: 500; }
.offer-urgency strong { color: var(--gold); }

.offer-card .btn { margin-top: 18px; position: relative; z-index: 1; }
.offer-guarantee {
  margin-top: 26px; display: flex; align-items: center; gap: 14px; justify-content: center;
  text-align: left; max-width: 460px; margin-left: auto; margin-right: auto;
  background: var(--violet-soft); border: 1px solid rgba(109,74,167,0.22);
  border-radius: 16px; padding: 16px 20px;
}
.offer-guarantee svg { flex-shrink: 0; color: var(--violet); }
.offer-guarantee p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.5; }
.offer-guarantee strong { color: var(--ink); }
.offer-secure { margin-top: 16px; font-size: 0.84rem; color: var(--ink-faint); }

/* ===================== FAQ ===================== */
.faq { margin-top: 40px; display: flex; flex-direction: column; gap: 14px; }
.faq details {
  background: rgba(255,253,247,0.7); border: 1px solid rgba(184,144,47,0.26);
  border-radius: 16px; padding: 4px 22px; box-shadow: var(--shadow-sm);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq details[open] { border-color: var(--gold); box-shadow: var(--shadow-sm), 0 0 22px rgba(184,144,47,0.08); }
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 30px 18px 0; position: relative;
  font-family: var(--font-display); font-size: 1.22rem; font-weight: 600; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; font-weight: 300; color: var(--gold); transition: transform 0.25s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 0 20px; color: var(--ink-soft); line-height: 1.7; font-size: 0.98rem; }

/* ===================== CTA FINAL ===================== */
.section-final { padding-bottom: clamp(80px, 12vw, 140px); }
.final-title { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 5.5vw, 3.2rem); color: var(--ink); line-height: 1.15; }
.final-sub { color: var(--ink-soft); font-size: 1.1rem; margin: 14px auto 30px; max-width: 520px; }
.final-ps { max-width: 540px; margin: 26px auto 0; font-size: 0.92rem; color: var(--ink-soft); line-height: 1.65; }
.final-ps strong { color: var(--ink); }

/* ===================== RODAPÉ ===================== */
.footer {
  position: relative; z-index: 2;
  background: linear-gradient(180deg, transparent, rgba(42,35,80,0.04));
  border-top: 1px solid rgba(184,144,47,0.22);
  padding: 48px 0 calc(36px + env(safe-area-inset-bottom));
  text-align: center;
}
.footer-brand { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; color: var(--ink); margin-bottom: 16px; }
.footer-care { max-width: 540px; margin: 0 auto 20px; font-size: 0.9rem; color: var(--ink-soft); line-height: 1.6; }
.footer-care a { color: var(--gold); font-weight: 600; text-decoration: underline; }
.footer-care strong { color: var(--ink); }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: center; margin-bottom: 18px; }
.footer-links a { font-size: 0.88rem; font-weight: 600; color: var(--ink-soft); transition: color 0.2s ease; }
.footer-links a:hover { color: var(--gold); }
.footer-fine { max-width: 520px; margin: 0 auto 12px; font-size: 0.78rem; color: var(--ink-faint); line-height: 1.5; }
.footer-copy { font-size: 0.8rem; color: var(--ink-faint); }

/* ===================== PÁGINAS LEGAIS ===================== */
.legal-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 22px; max-width: var(--maxw); margin: 0 auto;
}
.legal-topbar .nav-brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; }
.legal-topbar .sigil { color: var(--gold); }
.legal-back-top { font-size: 0.9rem; font-weight: 600; color: var(--violet); }
.legal-back-top:hover { color: var(--gold); }

.legal-main { max-width: 768px; margin: 0 auto; padding: 24px 22px 72px; }
.legal-main h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2rem, 6vw, 3rem); line-height: 1.12; color: var(--ink); letter-spacing: 0.2px;
}
.legal-updated { color: var(--ink-faint); font-size: 0.9rem; margin: 8px 0 28px; }
.legal-main h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.35rem, 4vw, 1.85rem); color: var(--violet);
  margin: 38px 0 10px; line-height: 1.2;
}
.legal-main h3 { font-size: 1.02rem; font-weight: 700; color: var(--ink); margin: 22px 0 6px; }
.legal-main p { color: var(--ink-soft); line-height: 1.78; margin-bottom: 14px; }
.legal-main ul { margin: 0 0 16px 1.25em; display: flex; flex-direction: column; gap: 7px; }
.legal-main li { color: var(--ink-soft); line-height: 1.7; }
.legal-main a { color: var(--gold); font-weight: 600; }
.legal-main a:hover { text-decoration: underline; }
.legal-main strong { color: var(--ink); }
.legal-note {
  background: rgba(255, 253, 247, 0.72);
  border: 1px solid rgba(184,144,47,0.28); border-left: 3px solid var(--gold);
  border-radius: 14px; padding: 16px 18px; margin: 22px 0;
}
.legal-note p:last-child { margin-bottom: 0; }
.legal-back {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 44px;
  font-weight: 600; color: var(--violet);
}
.legal-back:hover { color: var(--gold); }
.legal-foot {
  border-top: 1px solid rgba(184,144,47,0.22); margin-top: 56px; padding-top: 22px;
  font-size: 0.82rem; color: var(--ink-faint); line-height: 1.6;
}
.legal-foot a { color: var(--ink-soft); font-weight: 600; }
.legal-foot a:hover { color: var(--gold); }

/* ===================== STICKY CTA (mobile) ===================== */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(251,246,236,0.92);
  border-top: 1px solid rgba(184,144,47,0.3);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 -8px 30px rgba(42,35,80,0.12);
  transform: translateY(120%); transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; max-width: 560px; margin: 0 auto; }
.sticky-price { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--violet); }
.sticky-price s { color: var(--ink-faint); font-size: 0.8em; font-weight: 400; margin-right: 4px; }
.sticky-price small { font-size: 0.55em; font-weight: 600; color: var(--ink-soft); }
.sticky-cta .btn { padding: 12px 22px; font-size: 0.92rem; }

/* ===================== REVEAL (scroll animation) ===================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2,0.8,0.2,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }

/* ===================== RESPONSIVO ===================== */
.d-desk { display: inline; }

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 44px; }
  .split-copy { text-align: center; }
  .split-copy .kicker, .split-copy .section-title { text-align: center; }
  .cards { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .creator-card { grid-template-columns: 1fr; gap: 26px; max-width: 540px; margin: 0 auto; text-align: center; }
  .creator-body p { text-align: left; }
  .creator-sign { align-items: center; }
}

@media (max-width: 600px) {
  .d-desk { display: none; }
  .nav-name { display: none; }
  .section { padding: 60px 0; }
  .hero { padding-top: 120px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; }
  .btn-text { width: auto; }
  /* dá espaço para a barra fixa não cobrir o conteúdo final */
  body.has-sticky .footer { padding-bottom: calc(96px + env(safe-area-inset-bottom)); }
}

@media (min-width: 601px) {
  .sticky-cta { display: none; }
}

/* ===================== REDUÇÃO DE MOVIMENTO ===================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .bg-video { display: none; }
  .pm { opacity: 1; transform: none; }
}
