/* ==========================================================
   Cris Meira — Constelação Familiar
   Paleta: pérola / verde-oliva / dourado
   ========================================================== */
:root {
  --bg: #FAF7F1;
  --bg-alt: #F2EDE3;
  --ink: #2E2B26;
  --ink-soft: #5A554C;
  --olive: #4A5540;
  --olive-deep: #37402F;
  --olive-soft: #6B7859;
  --gold: #C2A15E;
  --gold-soft: #E4D3AC;
  --white: #FFFDF9;
  --whats: #25D366;
  /* botões em tons pastéis (texto escuro p/ legibilidade) */
  --btn-green: #AEB994;
  --btn-green-h: #9FAC82;
  --btn-green-ink: #363E2C;
  --btn-terra: #E0AC8B;
  --btn-terra-h: #D49B76;
  --btn-terra-ink: #6E3B26;
  --radius: 18px;
  --shadow: 0 18px 50px -18px rgba(55, 64, 47, .25);
  --font-title: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 17.5px; }
/* compensa o header fixo ao rolar até seções via âncora */
section[id], [id="agendamento"] { scroll-margin-top: 100px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

.container { width: min(1200px, 92%); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 110px) 0; }

h1, h2, h3 { font-family: var(--font-title); font-weight: 600; line-height: 1.15; color: var(--olive-deep); }
h1 em, h2 em { font-style: italic; color: var(--gold); }
p + p { margin-top: 1em; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 500; font-size: 1rem;
  padding: 14px 28px; border-radius: 999px; text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  cursor: pointer; border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 17px 36px; font-size: 1.05rem; }
.btn-primary { background: var(--btn-green); color: var(--btn-green-ink); box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--btn-green-h); }
.btn-gold { background: var(--gold); color: var(--olive-deep); box-shadow: 0 14px 40px -14px rgba(194, 161, 94, .55); }
.btn-gold:hover { background: #D4B476; }
.btn-ghost { background: transparent; color: var(--olive); border: 1.5px solid var(--olive-soft); }
.btn-ghost:hover { background: rgba(74, 85, 64, .07); }
.btn-nav { background: var(--btn-green); color: var(--btn-green-ink); padding: 10px 22px; font-size: .92rem; }
.btn-nav:hover { background: var(--btn-green-h); }
/* selo de preço dentro dos botões de compra */
.btn-price {
  display: inline-flex; align-items: center; margin-left: 4px; padding: 3px 11px;
  border-radius: 999px; font-size: .82em; font-weight: 600; line-height: 1;
  background: rgba(255, 253, 249, .22); color: inherit;
}
.btn-price-dark { background: rgba(55, 64, 47, .16); }
/* links de "tirar dúvidas" abaixo dos CTAs de compra */
.agendamento-duvidas, .footer-duvidas { margin-top: 18px; }
.agendamento-duvidas a { color: var(--ink-soft); text-decoration: none; font-size: .95rem; border-bottom: 1px solid rgba(74, 85, 64, .3); padding-bottom: 2px; transition: color .2s; }
.agendamento-duvidas a:hover { color: var(--olive); }
.footer-duvidas a { color: rgba(237, 233, 221, .8); text-decoration: none; font-size: .95rem; border-bottom: 1px solid rgba(228, 211, 172, .4); padding-bottom: 2px; transition: color .2s; }
.footer-duvidas a:hover { color: var(--gold-soft); }
.faq-cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 241, .88); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74, 85, 64, .1);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--olive-deep); }
.logo-mark { color: var(--gold); font-size: 1.4rem; }
.logo-text { font-family: var(--font-title); font-size: 1.35rem; line-height: 1.05; display: flex; flex-direction: column; }
.logo-text strong { font-weight: 700; }
.logo-text small { font-family: var(--font-body); font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft); font-weight: 400; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a:not(.btn) { text-decoration: none; color: var(--ink-soft); font-size: .95rem; font-weight: 400; transition: color .2s; }
.main-nav a:not(.btn):hover { color: var(--olive); }
.nav-toggle { display: none; background: none; border: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--olive-deep); transition: .3s; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(90px, 13vw, 160px) 0 clamp(80px, 11vw, 140px); text-align: center; }
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 60% 50% at 15% 10%, rgba(194, 161, 94, .16), transparent 60%),
    radial-gradient(ellipse 55% 45% at 88% 85%, rgba(107, 120, 89, .18), transparent 60%),
    linear-gradient(180deg, #F6F1E7 0%, var(--bg) 100%);
}
.hero-bg::before, .hero-bg::after {
  content: "✦"; position: absolute; color: rgba(194, 161, 94, .35); font-size: 1.3rem;
}
.hero-bg::before { top: 22%; left: 12%; }
.hero-bg::after { bottom: 25%; right: 10%; font-size: 1rem; }

/* vídeo de fundo do hero */
.hero-media {
  position: absolute; inset: 0; z-index: -2; overflow: hidden;
  background: #F6F1E7 url("../img/hero-poster.jpg") center/cover no-repeat;
}
.hero-video { width: 100%; height: 100%; object-fit: cover; display: block; }
/* quando há vídeo, o .hero-bg passa a ser um véu pérola translúcido (mantém o texto legível) */
.hero.has-video .hero-bg {
  background:
    radial-gradient(ellipse 60% 50% at 15% 10%, rgba(194, 161, 94, .12), transparent 60%),
    radial-gradient(ellipse 55% 45% at 88% 85%, rgba(107, 120, 89, .14), transparent 60%),
    linear-gradient(180deg, rgba(246, 241, 231, .74) 0%, rgba(250, 247, 241, .82) 100%);
}
/* acessibilidade: sem animação, mostra apenas o poster */
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}
.hero-eyebrow, .section-eyebrow {
  display: inline-block; letter-spacing: .26em; text-transform: uppercase;
  font-size: .74rem; font-weight: 500; color: var(--olive-soft); margin-bottom: 18px;
}
.section-eyebrow.light { color: var(--gold-soft); }
.hero h1 { font-size: clamp(2.3rem, 5.2vw, 4rem); max-width: 20ch; margin-inline: auto; }
.hero-sub { max-width: 58ch; margin: 24px auto 0; font-size: 1.13rem; color: var(--ink-soft); }
.hero-actions { margin-top: 40px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Sobre ---------- */
.sobre { background: var(--white); }
.sobre-grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
.foto-frame {
  position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 4 / 5; background: var(--bg-alt);
}
.foto-frame::after {
  content: ""; position: absolute; inset: 14px; border: 1px solid rgba(255, 253, 249, .55);
  border-radius: calc(var(--radius) - 8px); pointer-events: none;
}
.foto-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.foto-frame.foto-placeholder { display: flex; align-items: center; justify-content: center; }
.foto-frame.foto-placeholder::before {
  content: "✦"; font-size: 3rem; color: var(--gold);
  opacity: .5;
}
.sobre-texto h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 22px; }
.sobre-texto p { color: var(--ink-soft); }

/* ---------- Projeto Social ---------- */
.projeto-social { background: linear-gradient(160deg, var(--olive-deep), var(--olive) 80%); }
.social-card { max-width: 780px; margin-inline: auto; text-align: center; color: #EDE9DD; position: relative; padding: 10px 0; }
.social-badge {
  display: inline-block; background: rgba(194, 161, 94, .16); border: 1px solid var(--gold);
  color: var(--gold-soft); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  padding: 8px 20px; border-radius: 999px; margin-bottom: 26px; font-weight: 500;
}
.projeto-social h2 { color: var(--white); font-size: clamp(2.1rem, 4.4vw, 3.2rem); margin-bottom: 22px; }
.projeto-social h2 em { color: var(--gold); }
.social-card > p { color: rgba(237, 233, 221, .88); }
.social-card strong { color: var(--gold-soft); font-weight: 500; }
.social-atencao {
  margin: 30px 0 34px; padding: 20px 26px; border-radius: 14px; text-align: left;
  background: rgba(0, 0, 0, .18); border-left: 3px solid var(--gold);
  font-size: .98rem; color: rgba(237, 233, 221, .92);
}
.social-atencao strong { color: var(--gold); }

/* ---------- Como funciona ---------- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 6vw, 64px); }
.section-head h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); }
.section-sub { margin-top: 18px; color: var(--ink-soft); }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--white); border-radius: var(--radius); padding: 38px 30px;
  box-shadow: 0 10px 34px -18px rgba(55, 64, 47, .18); border: 1px solid rgba(74, 85, 64, .07);
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-icon {
  width: 58px; height: 58px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  background: var(--bg-alt); color: var(--olive); margin-bottom: 22px;
}
.card h3 { font-size: 1.45rem; margin-bottom: 12px; }
.card p { color: var(--ink-soft); font-size: .98rem; }

/* ---------- Temas ---------- */
.temas { background: var(--bg-alt); }
.temas-lista { list-style: none; max-width: 820px; margin-inline: auto; display: grid; gap: 18px; }
.temas-lista li {
  background: var(--white); border-radius: 16px; padding: 26px 30px 26px 58px; position: relative;
  border: 1px solid rgba(74, 85, 64, .08); box-shadow: 0 8px 26px -16px rgba(55, 64, 47, .16);
}
.temas-lista li::before {
  content: "✦"; position: absolute; left: 26px; top: 28px; color: var(--gold); font-size: 1rem;
}
.temas-lista h3 { font-size: 1.35rem; margin-bottom: 6px; }
.temas-lista p { color: var(--ink-soft); font-size: .97rem; }

/* ---------- Agendamento ---------- */
.passos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: passo; }
.passo { text-align: center; padding: 0 12px; }
.passo-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%; margin-bottom: 18px;
  background: var(--olive); color: var(--white); font-family: var(--font-title);
  font-size: 1.5rem; font-weight: 600;
}
.passo h3 { font-size: 1.35rem; margin-bottom: 8px; }
.passo p { color: var(--ink-soft); font-size: .96rem; }
.agendamento-cta { text-align: center; margin-top: clamp(40px, 6vw, 60px); }

/* caixa premium de preço */
.preco-box {
  max-width: 440px; margin: 0 auto; padding: 40px 36px 34px; position: relative;
  background: var(--white); border: 1px solid rgba(194, 161, 94, .4);
  border-radius: var(--radius); box-shadow: 0 24px 60px -24px rgba(55, 64, 47, .3);
  overflow: hidden;
}
.preco-box::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold), var(--gold-soft));
}
.preco-eyebrow {
  display: block; letter-spacing: .22em; text-transform: uppercase;
  font-size: .72rem; font-weight: 500; color: var(--olive-soft); margin-bottom: 14px;
}
.preco-valor {
  font-family: var(--font-title); font-weight: 700; color: var(--olive-deep);
  font-size: clamp(3rem, 8vw, 3.8rem); line-height: 1; display: flex;
  align-items: baseline; justify-content: center; gap: 10px;
}
.preco-avista {
  font-family: var(--font-body); font-weight: 400; font-size: .9rem; letter-spacing: .04em;
  text-transform: uppercase; color: var(--ink-soft);
}
.preco-parcelas { margin-top: 10px; font-size: 1.05rem; color: var(--ink-soft); }
.preco-parcelas strong { color: var(--olive); font-weight: 600; }
.preco-btn { width: 100%; justify-content: center; margin-top: 26px; }
.preco-seguranca {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  margin-top: 18px; font-size: .82rem; color: var(--ink-soft);
}
.preco-seguranca svg { color: var(--olive-soft); flex: 0 0 auto; }
/* realce ao chegar na caixa pelos CTAs (#agendamento) */
@keyframes precoPulse {
  0%, 100% { box-shadow: 0 24px 60px -24px rgba(55, 64, 47, .3); }
  35%      { box-shadow: 0 0 0 4px rgba(194, 161, 94, .4), 0 24px 60px -24px rgba(55, 64, 47, .3); }
}
.preco-box.pulse { animation: precoPulse 1.8s ease 1; }

/* ---------- Divórcio Energético (produto 2) — identidade terracota ---------- */
.divorcio {
  --terra: #B15B3C;       /* terracota */
  --terra-deep: #8A4429;
  --terra-soft: #DDA07E;
  background: var(--bg-alt);
  padding: 0;
}
/* hero próprio do serviço — faixa terracota (com vídeo de fundo) */
.divorcio-hero {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(70px, 10vw, 120px) 0;
  background: linear-gradient(155deg, var(--terra-deep) 0%, var(--terra) 78%);
  color: #FBEEE7;
}
.divorcio-hero-media {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
  background: var(--terra-deep) url("../img/divorcio-poster.jpg") center/cover no-repeat;
}
.divorcio-hero-video { width: 100%; height: 100%; object-fit: cover; display: block; }
/* véu terracota translúcido sobre o vídeo — mantém o texto legível */
.divorcio-hero-veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(155deg, rgba(138, 68, 41, .92) 0%, rgba(177, 91, 60, .86) 78%);
}
.divorcio-hero > .container { position: relative; z-index: 2; }
.divorcio-hero::before, .divorcio-hero::after {
  content: "✦"; position: absolute; z-index: 2; color: rgba(251, 238, 231, .3); font-size: 1.2rem;
}
.divorcio-hero::before { top: 20%; left: 12%; }
.divorcio-hero::after { bottom: 22%; right: 11%; font-size: .95rem; }
@media (prefers-reduced-motion: reduce) { .divorcio-hero-video { display: none; } }
.divorcio-hero-eyebrow {
  display: inline-block; letter-spacing: .24em; text-transform: uppercase;
  font-size: .74rem; font-weight: 500; color: rgba(251, 238, 231, .78); margin-bottom: 16px;
}
.divorcio-hero h2 {
  color: #FEF9F5; font-size: clamp(2.1rem, 4.8vw, 3.5rem); line-height: 1.12;
  max-width: 18ch; margin: 0 auto;
}
.divorcio-hero h2 em { color: #F6E7C4; font-style: italic; }
.divorcio-hero-quote {
  max-width: 58ch; margin: 24px auto 0; font-family: var(--font-title); font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem); line-height: 1.5; color: rgba(251, 238, 231, .92);
}
.divorcio-body { padding: clamp(56px, 8vw, 92px) 0; }
/* acentos em terracota, escopados só a esta seção */
.divorcio .section-eyebrow { color: var(--terra); }
.divorcio .divorcio-conteudo strong { color: var(--terra-deep); }
.divorcio .divorcio-num { background: var(--terra); }
.divorcio .divorcio-passos strong { color: var(--terra-deep); }
.divorcio .divorcio-obs svg { color: var(--terra); }
/* caixa de preço em terracota */
.divorcio .preco-box { border-color: rgba(177, 91, 60, .4); }
.divorcio .preco-box::before { background: linear-gradient(90deg, var(--terra-soft), var(--terra), var(--terra-soft)); }
.divorcio .preco-eyebrow { color: var(--terra); }
.divorcio .preco-valor { color: var(--terra-deep); }
.divorcio .preco-parcelas strong { color: var(--terra); }
.divorcio .preco-seguranca svg { color: var(--terra); }
/* botão principal em terracota pastel */
.divorcio .btn-primary { background: var(--btn-terra); color: var(--btn-terra-ink); }
.divorcio .btn-primary:hover { background: var(--btn-terra-h); }

.divorcio-grid {
  display: grid; grid-template-columns: 5fr 7fr; gap: clamp(34px, 5vw, 60px);
  align-items: start; margin-bottom: clamp(38px, 6vw, 56px);
}
.foto-frame-tall { aspect-ratio: 1024 / 1536; }
.divorcio-foto { max-width: 440px; width: 100%; }
.divorcio-conteudo h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 14px; }
.divorcio-subtitulo { margin-top: 32px; }
.divorcio-conteudo p { color: var(--ink-soft); }
.divorcio-conteudo strong { color: var(--olive-deep); font-weight: 600; }
.divorcio-passos { list-style: none; display: grid; gap: 16px; margin-top: 18px; }
.divorcio-passos li { display: flex; gap: 16px; align-items: flex-start; }
.divorcio-num {
  flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%;
  background: var(--olive); color: var(--white); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-title); font-size: 1.2rem; font-weight: 600;
}
.divorcio-passos strong { display: block; color: var(--olive-deep); font-family: var(--font-title); font-size: 1.2rem; font-weight: 600; }
.divorcio-passos p { margin-top: 2px; font-size: .96rem; }
.divorcio-obs {
  display: flex; gap: 8px; align-items: center; margin-top: 24px;
  font-size: .9rem; color: var(--ink-soft); font-style: italic;
}
.divorcio-obs svg { color: var(--olive-soft); flex: 0 0 auto; }
.divorcio-cta { text-align: center; }

/* botão terracota genérico */
.btn-terra { background: var(--btn-terra); color: var(--btn-terra-ink); }
.btn-terra:hover { background: var(--btn-terra-h); }

/* menu ativo no header */
.main-nav a.ativo { color: var(--olive); font-weight: 500; }

/* ---------- Submenu (navegação interna da Constelação) ---------- */
.subnav {
  position: sticky; top: 90px; z-index: 90;
  background: rgba(250, 247, 241, .94); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(74, 85, 64, .12);
}
.subnav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 11px 0; flex-wrap: wrap; }
.subnav-titulo { font-family: var(--font-title); font-weight: 600; color: var(--olive-deep); font-size: 1.15rem; }
.subnav-links { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.subnav-links a:not(.subnav-cta) { color: var(--ink-soft); font-size: .92rem; text-decoration: none; transition: color .2s; }
.subnav-links a:not(.subnav-cta):hover { color: var(--olive); }
.subnav-cta { background: var(--olive); color: var(--white); padding: 8px 18px; border-radius: 999px; font-size: .88rem; text-decoration: none; transition: background .2s; }
.subnav-cta:hover { background: var(--olive-deep); }

/* ---------- Banners de produto (home) ---------- */
.prod-banner { padding: clamp(48px, 7vw, 82px) 0; }
.banner-constelacao { background: var(--white); }
.banner-divorcio { background: #F6EDE7; }
.prod-banner-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 66px); align-items: center;
}
.prod-banner-inner.reverse .prod-banner-text { order: 2; }
.prod-banner-eyebrow {
  display: inline-block; letter-spacing: .22em; text-transform: uppercase;
  font-size: .74rem; font-weight: 500; margin-bottom: 14px;
}
.banner-constelacao .prod-banner-eyebrow { color: var(--olive-soft); }
.banner-divorcio .prod-banner-eyebrow { color: #B15B3C; }
.prod-banner-text h2 { font-size: clamp(2rem, 4.6vw, 3.3rem); margin-bottom: 16px; }
.banner-divorcio .prod-banner-text h2 { color: #8A4429; }
.prod-banner-text p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 28px; max-width: 42ch; }
.prod-banner-visual { display: block; text-decoration: none; }
.prod-banner-visual .foto-frame { aspect-ratio: 4 / 3; transition: transform .4s ease; }
.banner-divorcio .prod-banner-visual .foto-frame { aspect-ratio: 1024 / 1536; max-width: 400px; margin-inline: auto; }
.prod-banner-visual:hover .foto-frame { transform: translateY(-5px); }

/* ---------- Footer ---------- */
.footer-cta { background: linear-gradient(160deg, var(--olive-deep), var(--olive)); text-align: center; padding: clamp(64px, 9vw, 100px) 0; }
.fechamento-eyebrow {
  display: inline-block; letter-spacing: .24em; text-transform: uppercase;
  font-size: .74rem; font-weight: 500; color: var(--gold-soft); margin-bottom: 18px;
}
.footer-frase {
  font-family: var(--font-title); font-style: italic; font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--gold-soft); max-width: 30ch; margin: 0 auto 4px; line-height: 1.4;
}

/* fechamento — dois produtos lado a lado */
.fechamento-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 840px; margin: 40px auto 0; text-align: left;
}
.fechamento-card {
  position: relative; overflow: hidden; display: flex; flex-direction: column;
  background: var(--white); border-radius: var(--radius); padding: 34px 30px 32px;
  box-shadow: 0 22px 55px -26px rgba(0, 0, 0, .5);
}
.fechamento-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.fc-constelacao::before { background: linear-gradient(90deg, var(--gold-soft), var(--gold), var(--gold-soft)); }
.fc-divorcio::before { background: linear-gradient(90deg, #DDA07E, #B15B3C, #DDA07E); }
.fc-tag {
  font-family: var(--font-title); font-size: 1.5rem; font-weight: 600; line-height: 1.15; margin-bottom: 10px;
}
.fc-constelacao .fc-tag { color: var(--olive-deep); }
.fc-divorcio .fc-tag { color: #8A4429; }
.fc-desc { color: var(--ink-soft); font-size: .96rem; margin-bottom: 20px; }
.fc-preco {
  font-family: var(--font-title); font-weight: 700; font-size: 2.2rem; line-height: 1;
  display: flex; align-items: baseline; gap: 8px;
}
.fc-constelacao .fc-preco { color: var(--olive-deep); }
.fc-divorcio .fc-preco { color: #8A4429; }
.fc-preco span { font-family: var(--font-body); font-weight: 400; font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-soft); }
.fc-parcelas { font-size: .92rem; color: var(--ink-soft); margin-top: 6px; margin-bottom: 24px; }
.fc-btn { width: 100%; justify-content: center; margin-top: auto; color: var(--white); }
.fc-btn-olive { background: var(--btn-green); color: var(--btn-green-ink); }
.fc-btn-olive:hover { background: var(--btn-green-h); }
.fc-btn-terra { background: var(--btn-terra); color: var(--btn-terra-ink); }
.fc-btn-terra:hover { background: var(--btn-terra-h); }

/* ---------- Página /links (bio Instagram) ---------- */
.links-page {
  background:
    radial-gradient(ellipse 60% 40% at 20% 0%, rgba(194, 161, 94, .16), transparent 60%),
    radial-gradient(ellipse 60% 45% at 85% 100%, rgba(177, 91, 60, .14), transparent 60%),
    var(--bg);
  min-height: 100vh;
}
.links-wrap { max-width: 480px; margin-inline: auto; padding: 52px 22px 60px; text-align: center; }
.links-avatar {
  width: 118px; height: 118px; border-radius: 50%; overflow: hidden; margin: 0 auto 18px;
  border: 3px solid var(--gold-soft); box-shadow: var(--shadow);
}
.links-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.links-head h1 { font-size: 2rem; color: var(--olive-deep); }
.links-role { color: var(--ink-soft); margin-top: 4px; }
.links-handle { color: var(--olive-soft); font-size: .88rem; letter-spacing: .06em; margin-top: 4px; }
.links-list { display: grid; gap: 16px; margin-top: 34px; }

/* cards premium de produto */
.link-card {
  position: relative; overflow: hidden; display: flex; align-items: center; gap: 16px;
  padding: 16px 18px; border-radius: 20px; text-decoration: none; text-align: left;
  background: var(--white); border: 1px solid rgba(74, 85, 64, .1);
  box-shadow: 0 16px 40px -22px rgba(55, 64, 47, .4);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.link-card::before { content: ""; position: absolute; top: 0; left: 0; bottom: 0; width: 5px; }
.lc-constelacao::before { background: linear-gradient(180deg, var(--gold-soft), var(--gold)); }
.lc-divorcio::before { background: linear-gradient(180deg, #DDA07E, #B15B3C); }
.link-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.lc-constelacao:hover { border-color: rgba(194, 161, 94, .5); }
.lc-divorcio:hover { border-color: rgba(177, 91, 60, .5); }
.lc-thumb {
  flex: 0 0 auto; width: 66px; height: 66px; border-radius: 14px; overflow: hidden; margin-left: 6px;
  box-shadow: 0 8px 20px -10px rgba(55, 64, 47, .5);
}
.lc-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lc-body { flex: 1; display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.lc-eyebrow { font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 500; }
.lc-constelacao .lc-eyebrow { color: var(--olive-soft); }
.lc-divorcio .lc-eyebrow { color: #B15B3C; }
.lc-body strong { font-family: var(--font-title); font-size: 1.32rem; font-weight: 600; line-height: 1.15; }
.lc-constelacao .lc-body strong { color: var(--olive-deep); }
.lc-divorcio .lc-body strong { color: #8A4429; }
.lc-desc { font-size: .86rem; color: var(--ink-soft); }
.lc-preco { font-size: .8rem; font-weight: 500; margin-top: 3px; }
.lc-constelacao .lc-preco { color: var(--gold); }
.lc-divorcio .lc-preco { color: #B15B3C; }
.lc-arrow { flex: 0 0 auto; font-size: 1.3rem; transition: transform .28s ease; }
.lc-constelacao .lc-arrow { color: var(--gold); }
.lc-divorcio .lc-arrow { color: #B15B3C; }
.link-card:hover .lc-arrow { transform: translateX(4px); }

.link-block {
  display: flex; gap: 12px; padding: 18px 24px; border-radius: 16px;
  text-decoration: none; text-align: left; background: var(--white);
  border: 1px solid rgba(74, 85, 64, .1); box-shadow: 0 10px 30px -18px rgba(55, 64, 47, .25);
  transition: transform .25s ease, box-shadow .25s ease;
}
.link-block:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.link-block strong { font-family: var(--font-title); font-size: 1.3rem; font-weight: 600; }
.lb-whats {
  flex-direction: row; align-items: center; justify-content: center; gap: 12px;
  background: var(--whats); border: none;
}
.lb-whats strong { color: #fff; font-family: var(--font-body); font-size: 1.05rem; font-weight: 500; }
.lb-whats svg { color: #fff; flex: 0 0 auto; }
.links-site { display: inline-block; margin-top: 30px; color: var(--olive-soft); font-size: .85rem; text-decoration: none; letter-spacing: .04em; }
.links-site:hover { color: var(--olive); }
.footer-bar { background: var(--olive-deep); border-top: 1px solid rgba(255, 253, 249, .08); padding: 20px 0; }
.footer-bar-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
  color: rgba(237, 233, 221, .6); font-size: .85rem;
}
.footer-bar a { color: rgba(237, 233, 221, .8); text-decoration: none; }
.footer-bar a:hover { color: var(--gold-soft); }

/* ---------- WhatsApp flutuante ---------- */
.whats-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--whats); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .55);
  transition: transform .25s ease;
}
.whats-float:hover { transform: scale(1.08); }

/* ---------- Como é a sessão (fluxo 01/02/03) ---------- */
.sessao-fluxo { background: var(--white); }
.fluxo-lista { list-style: none; max-width: 800px; margin-inline: auto; display: grid; gap: 22px; counter-reset: none; }
.fluxo-item {
  display: flex; align-items: flex-start; gap: 26px;
  background: var(--bg); border: 1px solid rgba(74, 85, 64, .08); border-radius: var(--radius);
  padding: 30px 32px; box-shadow: 0 8px 26px -16px rgba(55, 64, 47, .16);
}
.fluxo-num {
  flex: 0 0 auto; font-family: var(--font-title); font-size: 2.4rem; font-weight: 600;
  line-height: 1; color: var(--gold); min-width: 62px;
  border-right: 1px solid rgba(194, 161, 94, .4); padding-right: 22px;
}
.fluxo-txt h3 { font-size: 1.45rem; margin-bottom: 8px; }
.fluxo-txt p { color: var(--ink-soft); font-size: .98rem; }

/* ---------- Acolhimento (bloco emocional) ---------- */
.acolhimento { position: relative; overflow: hidden; }
.acolhimento::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 55% 55% at 18% 15%, rgba(194, 161, 94, .14), transparent 60%),
    radial-gradient(ellipse 55% 55% at 85% 90%, rgba(107, 120, 89, .16), transparent 60%),
    var(--bg-alt);
}
.acolhimento-card { max-width: 720px; margin-inline: auto; text-align: center; }
.acolhimento-card h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 22px; }
.acolhimento-card p { color: var(--ink-soft); font-size: 1.08rem; }
.acolhimento-card .btn { margin-top: 30px; }

/* ---------- FAQ ---------- */
.faq { background: var(--white); }
.faq-lista { max-width: 780px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--bg); border: 1px solid rgba(74, 85, 64, .1); border-radius: 14px;
  overflow: hidden; transition: box-shadow .3s ease, border-color .3s ease;
}
.faq-item[open] { box-shadow: 0 10px 30px -18px rgba(55, 64, 47, .22); border-color: rgba(194, 161, 94, .45); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 56px 22px 26px; position: relative;
  font-family: var(--font-title); font-size: 1.25rem; font-weight: 600; color: var(--olive-deep);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 24px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-body); font-size: 1.5rem; font-weight: 300; color: var(--gold);
  transition: transform .3s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-resposta { padding: 0 26px 24px; }
.faq-resposta p { color: var(--ink-soft); font-size: .99rem; }
.faq-resposta p + p { margin-top: 16px; }
.faq-resposta a:not(.btn) { color: var(--olive); text-decoration: underline; text-underline-offset: 2px; }
.faq-resposta .btn { margin-top: 6px; }

/* ---------- Cookie consent ---------- */
.cookie-consent {
  position: fixed; left: 50%; bottom: 22px; transform: translateX(-50%) translateY(24px);
  z-index: 120; width: min(940px, calc(100% - 32px));
  background: var(--white); border: 1px solid rgba(74, 85, 64, .14);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 22px 26px; opacity: 0; pointer-events: none;
  transition: opacity .45s ease, transform .45s ease;
}
.cookie-consent.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.cookie-inner { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.cookie-text { display: flex; align-items: flex-start; gap: 12px; flex: 1 1 380px; }
.cookie-icon { color: var(--gold); font-size: 1.15rem; line-height: 1.6; }
.cookie-text p { font-size: .92rem; color: var(--ink-soft); margin: 0; line-height: 1.55; }
.cookie-text a { color: var(--olive); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; gap: 12px; flex: 0 0 auto; }
.cookie-btn { padding: 11px 22px; font-size: .92rem; white-space: nowrap; }
/* enquanto o banner está visível, sobe o botão do WhatsApp para não sobrepor */
.cookie-open .whats-float { transform: translateY(-96px); }
@media (max-width: 620px) {
  .cookie-consent { bottom: 12px; padding: 20px; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; justify-content: center; }
  .cookie-open .whats-float { transform: translateY(-150px); }
}

/* ---------- Reveal on scroll (só esconde quando há JS) ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
.js .reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsivo ---------- */
@media (max-width: 900px) {
  .cards-grid, .passos { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .sobre-grid { grid-template-columns: 1fr; }
  .sobre-foto { max-width: 380px; margin-inline: auto; width: 100%; }
  .divorcio-grid { grid-template-columns: 1fr; }
  .divorcio-foto { max-width: 380px; margin-inline: auto; }
  .fechamento-cards { grid-template-columns: 1fr; max-width: 420px; }
  .prod-banner-inner { grid-template-columns: 1fr; gap: 30px; }
  .prod-banner-inner.reverse .prod-banner-text { order: 0; }
  .prod-banner-visual .foto-frame { max-width: 420px; margin-inline: auto; }
}
@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; inset: 62px 0 auto 0; background: var(--bg);
    flex-direction: column; padding: 28px 6%; gap: 20px; align-items: flex-start;
    border-bottom: 1px solid rgba(74, 85, 64, .12); box-shadow: var(--shadow);
    transform: translateY(-130%); transition: transform .35s ease; z-index: 99;
  }
  .main-nav.open { transform: none; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .fluxo-item { flex-direction: column; gap: 12px; padding: 26px; }
  .fluxo-num { border-right: none; padding-right: 0; padding-bottom: 6px; }
}
