:root {
  --ouro:        #c9a227;
  --ouro-dark:   #a8881a;
  --ouro-light:  #e6c35a;
  --ouro-soft:   #f0e9d5;
  --ouro-softer: #f7f1de;
  --preto:       #1a1a1a;
  --preto-soft:  #2a2a2a;
  --creme:       #faf6ec;
  --branco:      #ffffff;
  --texto:       #2a2a2a;
  --texto-mute:  #6a6a6a;
  --borda:       #e6dfca;
  --radius:      8px;
  --max-w:       1180px;
  --shadow-sm:   0 2px 8px -4px rgba(0,0,0,.08);
  --shadow-md:   0 8px 24px -8px rgba(0,0,0,.12);
  --shadow-lg:   0 24px 56px -16px rgba(0,0,0,.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--texto);
  background: var(--creme);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 820px; }

/* Scrollbar discreto */
* { scrollbar-width: thin; scrollbar-color: rgba(0,0,0,.18) transparent; }
*::-webkit-scrollbar { width: 8px; height: 8px; }
*::-webkit-scrollbar-thumb { background: rgba(0,0,0,.18); border-radius: 8px; border: 2px solid transparent; background-clip: padding-box; }
*::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,.32); background-clip: padding-box; }

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(250, 246, 236, .85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.site-header.scrolled {
  border-color: var(--borda);
  box-shadow: var(--shadow-sm);
}
/* No topo, sobre o hero escuro: header transparente com texto claro */
.site-header:not(.scrolled) {
  background: transparent;
  backdrop-filter: none; -webkit-backdrop-filter: none;
}
.site-header:not(.scrolled) .site-logo { color: #fff; }
.site-header:not(.scrolled) .site-nav a { color: rgba(255,255,255,.78); }
.site-header:not(.scrolled) .site-nav a:hover { color: #fff; }
.site-header:not(.scrolled) .site-login { color: rgba(255,255,255,.82); }
.site-header:not(.scrolled) .site-login:hover { color: #fff; }
.site-header:not(.scrolled) .btn-primary {
  background: var(--ouro); border-color: var(--ouro); color: var(--preto);
}
.site-header:not(.scrolled) .btn-primary:hover { background: var(--ouro-light); border-color: var(--ouro-light); }
.site-header:not(.scrolled) .nav-toggle { border-color: rgba(255,255,255,.35); }
.site-header:not(.scrolled) .nav-toggle span { background: #fff; }
.site-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 1.5rem;
}
.site-logo { display: flex; align-items: center; gap: .6rem; font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 600; color: var(--preto); }
.site-logo img { width: 36px; height: 36px; object-fit: contain; }
.site-nav { display: flex; gap: 2rem; }
.site-nav a { font-size: .92rem; font-weight: 500; color: var(--texto-mute); transition: color .15s; }
.site-nav a:hover { color: var(--preto); }

.site-header-actions { display: flex; align-items: center; gap: 1.1rem; }
/* "Entrar" secundário (desktop); login e CTA do menu só aparecem no mobile */
.site-login { font-size: .92rem; font-weight: 500; color: var(--texto-mute); transition: color .15s; }
.site-login:hover { color: var(--preto); }
.site-nav-cta, .site-nav-login { display: none; }
/* Botão hambúrguer — só aparece no mobile (ver media query) */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0;
  background: transparent; border: 1px solid var(--borda); border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; margin: 0 auto;
  background: var(--preto); border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Foco de teclado visível e consistente com a marca */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--ouro-dark);
  outline-offset: 3px;
  border-radius: 4px;
}

.btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .75rem 1.4rem; border-radius: var(--radius);
  font-weight: 600; font-size: .92rem;
  cursor: pointer; transition: all .18s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--preto); color: #fff;
  border: 1px solid var(--preto);
}
.btn-primary:hover { background: var(--ouro); border-color: var(--ouro); color: var(--preto); }
.btn-ghost {
  background: transparent; color: var(--preto);
  border: 1px solid var(--preto);
}
.btn-ghost:hover { background: var(--preto); color: #fff; }
.btn-lg { padding: .95rem 1.8rem; font-size: 1rem; }

/* ===== Hero (escuro, editorial) ===== */
.hero {
  position: relative;
  padding: 9rem 0 6rem;            /* topo folgado: header transparente sobrepõe */
  background: radial-gradient(125% 120% at 82% 0%, #26211633 0%, transparent 55%), var(--preto);
  color: #f3ecd9;
  overflow: hidden;
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(440px 340px at 88% 16%, rgba(201,162,39,.22), transparent 70%),
    radial-gradient(560px 460px at 6% 96%, rgba(201,162,39,.07), transparent 72%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 4rem; align-items: center;
}
.hero .hero-tag {
  background: rgba(201,162,39,.12);
  border: 1px solid rgba(201,162,39,.4);
  color: var(--ouro-light);
  margin-bottom: 1.6rem;
}
.hero-tag {
  display: inline-block;
  background: var(--ouro-softer);
  color: var(--ouro-dark);
  padding: .35rem .9rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-tag--center { display: block; width: fit-content; margin: 0 auto 1rem; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.text-center { text-align: center; }
.preco-card .btn-lg { margin-top: 1.2rem; }
.preco-card .btn-primary,
.preco-card .btn-ghost { width: 100%; }
.preco-card .btn-ghost { margin-top: .75rem; }
.cta-final .hero-ctas { justify-content: center; }
.cta-final-hint { margin-top: .8rem; font-size: .85rem; color: #888; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5.4vw, 4rem);
  line-height: 1.04;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -.015em;
}
.hero h1 em { color: var(--ouro-light); font-style: italic; }
.hero-sub {
  font-size: 1.12rem;
  line-height: 1.65;
  color: #cdc5b2;
  margin-bottom: 2.2rem;
  max-width: 520px;
}
.hero-ctas { display: flex; gap: .8rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.hero-trust { font-size: .85rem; color: #9a937f; letter-spacing: .01em; }
.hero-trust a { color: var(--ouro-light); text-decoration: underline; }
.hero-trust a:hover { color: #fff; }

.btn-ghost--ondark { border-color: rgba(255,255,255,.45); color: #fff; }
.btn-ghost--ondark:hover { background: #fff; color: var(--preto); border-color: #fff; }

/* ----- Palco da assinatura: intimação chega -> prazo calculado ----- */
.hero-stage { position: relative; display: grid; gap: 1rem; }
.stage-card {
  background: var(--creme);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 32px 64px -28px rgba(0,0,0,.7);
}
.stage-intimacao { border-top: 3px solid var(--ouro); }
.sc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.sc-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  color: var(--ouro-dark); background: var(--ouro-softer);
  border: 1px solid var(--ouro-soft); padding: .3rem .6rem; border-radius: 999px;
}
.sc-badge .ic { width: .85em; height: .85em; }
.sc-live {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .72rem; font-weight: 600; color: #2a7d2e;
}
.sc-live::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: #2ecc71; animation: sc-pulse 2.2s infinite;
}
@keyframes sc-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(46,204,113,.55); }
  70%  { box-shadow: 0 0 0 8px rgba(46,204,113,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}
.sc-court { font-family: 'Playfair Display', serif; font-size: 1.08rem; font-weight: 600; color: var(--preto); }
.sc-proc { font-size: .8rem; color: var(--texto-mute); font-variant-numeric: tabular-nums; margin-top: .15rem; }
.sc-quote {
  font-size: .86rem; line-height: 1.55; color: #555; font-style: italic;
  margin-top: .9rem; padding-top: .9rem; border-top: 1px solid var(--borda);
}
.stage-prazo {
  background: var(--preto);
  border: 1px solid rgba(201,162,39,.3);
  display: flex; flex-direction: column; gap: .35rem;
  margin-left: 2.4rem;             /* degrau: sensação de pilha */
}
.sc-prazo-top {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ouro-light);
}
.sc-prazo-top .ic { width: .95em; height: .95em; }
.sc-prazo-num {
  font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: #fff;
  line-height: 1; display: flex; align-items: baseline; gap: .55rem;
}
.sc-prazo-num span { font-family: 'Inter', sans-serif; font-size: .95rem; font-weight: 500; color: #cdc5b2; }
.sc-prazo-foot { font-size: .82rem; color: #9a937f; }
.sc-prazo-foot strong { color: var(--ouro-light); }

/* ===== Faixa de confiança ===== */
.trust-band { background: var(--preto-soft); padding: 1.7rem 0; }
.trust-lead {
  text-align: center; color: #b9b09a; font-size: .82rem;
  letter-spacing: .03em; margin-bottom: 1.1rem;
}
.trust-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.6rem; }
.trust-list li { display: flex; flex-direction: column; align-items: center; gap: .1rem; text-align: center; }
.trust-list strong { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--ouro-light); font-weight: 600; }
.trust-list span { font-size: .74rem; color: #8b8470; }

/* ===== Section base ===== */
.section { padding: 5rem 0; }
.section-alt { background: #fff; border-top: 1px solid var(--borda); border-bottom: 1px solid var(--borda); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: var(--preto);
  text-align: center;
  margin-bottom: .6rem;
  letter-spacing: -.005em;
}
.section-sub {
  text-align: center;
  color: var(--texto-mute);
  font-size: 1.05rem;
  margin-bottom: 3rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Features ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}
.feature {
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: 12px;
  padding: 1.6rem;
  transition: all .2s;
}
.feature:hover {
  border-color: var(--ouro);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
/* Helper de ícones SVG */
.ic { width: 1em; height: 1em; vertical-align: -.18em; flex-shrink: 0; }
.ic-xs { width: .85em; height: .85em; }
.ic-sm { width: 1em; height: 1em; }
.ic-check { color: var(--ouro-dark); width: 1.05em; height: 1.05em; vertical-align: -.18em; }
.ic-green { color: #27ae60; }

.feature-ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--ouro-softer);
  border: 1px solid var(--ouro-soft);
  color: var(--ouro-dark);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  transition: background .2s, color .2s, transform .2s;
}
.feature-ico svg { width: 22px; height: 22px; }
.feature:hover .feature-ico {
  background: var(--ouro);
  color: var(--preto);
  transform: scale(1.05);
}
.feature h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 600;
  color: var(--preto);
  margin-bottom: .55rem;
}
.feature p { font-size: .92rem; color: var(--texto-mute); line-height: 1.6; }

/* ===== Integrações ===== */
.integ-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}
.integ-card {
  background: var(--creme);
  border: 1px solid var(--borda);
  border-radius: 12px;
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  transition: all .2s;
  position: relative;
}
.integ-card:hover {
  border-color: var(--ouro);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.integ-destaque {
  background: linear-gradient(135deg, #fff 0%, var(--ouro-softer) 100%);
  border-color: var(--ouro-soft);
}
.integ-destaque::before {
  content: 'destaque';
  position: absolute; top: 12px; right: 12px;
  font-size: .62rem; font-weight: 700; letter-spacing: .08em;
  color: var(--ouro-dark); text-transform: uppercase;
  background: var(--ouro-softer);
  border: 1px solid var(--ouro-soft);
  padding: .15rem .5rem; border-radius: 999px;
}
.integ-ico {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--preto); color: var(--ouro);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: .35rem;
}
.integ-ico svg { width: 20px; height: 20px; }
.integ-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--preto);
}
.integ-card p {
  font-size: .9rem;
  color: var(--texto-mute);
  line-height: 1.55;
  flex: 1;
}
.integ-fonte {
  font-size: .72rem; font-weight: 600;
  color: var(--ouro-dark);
  letter-spacing: .03em;
  margin-top: .3rem;
}

/* ===== Telas do sistema (screenshots reais dentro de molduras CSS) ===== */
.screens-band { background: var(--preto); padding: 5rem 0; }
.screens-band .section-title { color: #fff; }
.screens-band .section-sub { color: #b9b09a; }

.screens-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.6rem;
  align-items: start;
}
.screens-col { display: flex; flex-direction: column; gap: 1.6rem; min-width: 0; }

.mock-browser {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #fff;
  border: 1px solid rgba(255,255,255,.08);
}
.mock-bar {
  height: 40px;
  background: #2b2b2b;
  display: flex; align-items: center; gap: 7px;
  padding: 0 1rem;
}
.mock-dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.mock-dot--r { background: #ec6a5e; }
.mock-dot--y { background: #f4bf4f; }
.mock-dot--g { background: #61c454; }
.mock-url {
  margin: 0 auto;
  background: rgba(255,255,255,.08);
  border-radius: 6px;
  padding: .3rem .9rem;
  font-size: .72rem;
  color: #cfcfcf;
  max-width: 320px;
  width: 100%;
  text-align: center;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mock-body { display: flex; min-height: 320px; background: var(--creme); }
.mock-shot { display: block; width: 100%; height: auto; }

.mock-phone-stage {
  padding: 2rem 0;
  background: radial-gradient(60% 70% at 50% 50%, rgba(255,255,255,.06) 0%, rgba(255,255,255,.02) 45%, transparent 75%);
  border-radius: 24px;
}
.mock-phone {
  width: 320px; margin: 0 auto;
  border-radius: 40px;
  background: linear-gradient(160deg, #3a3a3a, #101010);
  padding: 14px 12px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 0 0 1px rgba(255,255,255,.06), 0 30px 70px -20px rgba(0,0,0,.7);
  position: relative;
}
.mock-phone-speaker {
  position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 46px; height: 6px; border-radius: 4px;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: flex-end;
}
.mock-phone-speaker::after {
  content: ''; position: absolute; right: -16px; top: -2px;
  width: 10px; height: 10px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #2a2a2a, #050505 70%);
  border: 1px solid rgba(255,255,255,.14);
}
.mock-phone-screen {
  background: #000; border-radius: 28px; overflow: hidden; padding-top: 26px;
}
.mock-phone-body { position: relative; background: var(--creme); }
.mock-phone-shot { width: 100%; height: auto; display: block; }
.mock-phone-home {
  position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 4px; border-radius: 3px;
  background: rgba(0,0,0,.35);
}

.screens-caption { text-align: center; font-size: .78rem; color: #8b8470; margin-top: .8rem; }

/* ===== Steps ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  position: relative;
}
.step { padding: 2rem 1.5rem; text-align: center; }
.step-num {
  width: 56px; height: 56px;
  background: var(--preto); color: var(--ouro);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  margin: 0 auto 1.2rem;
}
.step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 600;
  color: var(--preto); margin-bottom: .6rem;
}
.step p { font-size: .94rem; color: var(--texto-mute); line-height: 1.6; }

/* ===== Público ===== */
.publico-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}
.publico-card {
  background: var(--preto);
  color: #fff;
  padding: 2rem 1.6rem;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.publico-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%; background: var(--ouro);
}
.publico-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 600;
  color: var(--ouro); margin-bottom: .8rem;
}
.publico-card p { font-size: .94rem; color: #d0d0d0; line-height: 1.6; }

/* ===== FAQ ===== */
.faq { display: flex; flex-direction: column; gap: .6rem; }
.faq-item {
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
}
.faq-item[open] {
  border-color: var(--ouro);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  padding: 1.1rem 1.4rem;
  font-weight: 600;
  font-size: .98rem;
  color: var(--preto);
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  transition: color .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--ouro-dark);
  transition: transform .25s;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--ouro-dark); }
.faq-item p {
  padding: 0 1.4rem 1.2rem;
  color: var(--texto-mute);
  font-size: .94rem;
  line-height: 1.65;
}

/* Resposta com estrutura rica (item check + callout) */
.faq-answer { padding: 0 1.4rem 1.2rem; }
.faq-answer p { padding: 0; }
.faq-answer .faq-lead {
  font-size: .98rem;
  color: var(--preto);
  font-weight: 500;
  margin-bottom: .9rem;
}
.faq-feature {
  display: flex; gap: .8rem; align-items: flex-start;
  background: var(--creme);
  border: 1px solid var(--borda);
  border-radius: 10px;
  padding: .85rem 1rem;
  margin-bottom: .55rem;
}
.faq-feature-ico {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--ouro-softer);
  color: var(--ouro-dark);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.faq-feature-ico svg { width: 16px; height: 16px; }
.faq-feature > div > strong {
  display: block;
  color: var(--preto);
  font-weight: 600;
  font-size: .94rem;
  margin-bottom: .15rem;
}
.faq-feature p {
  font-size: .88rem;
  color: var(--texto-mute);
  line-height: 1.55;
  margin: 0;
}
.faq-note {
  font-size: .85rem;
  color: #2a7d2e;
  font-weight: 500;
  margin: .9rem 0 1rem !important;
  text-align: center;
}
.faq-callout {
  background: #fff8e7;
  border-left: 3px solid var(--ouro);
  border-radius: 6px;
  padding: .7rem .9rem;
  font-size: .86rem;
  color: var(--texto);
  line-height: 1.55;
}
.faq-callout strong {
  color: var(--ouro-dark);
}

/* ===== CTA Final ===== */
.cta-final {
  background: var(--preto);
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}
.cta-final h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: var(--ouro);
  margin-bottom: .8rem;
}
.cta-final p {
  font-size: 1.05rem;
  color: #c9c9c9;
  margin-bottom: 2rem;
}
.cta-final .btn-primary {
  background: var(--ouro);
  border-color: var(--ouro);
  color: var(--preto);
}
.cta-final .btn-primary:hover { background: var(--ouro-light); border-color: var(--ouro-light); }
.cta-final .btn-ghost {
  border-color: #fff;
  color: #fff;
}
.cta-final .btn-ghost:hover { background: #fff; color: var(--preto); }

/* ===== Footer ===== */
.site-footer {
  background: #0f0f0f;
  color: #999;
  padding: 3rem 0 2rem;
}
.site-footer-inner {
  display: flex; flex-direction: column; align-items: center; gap: 1.2rem;
  text-align: center;
}
.site-footer-brand {
  display: flex; align-items: center; gap: .6rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: #fff;
}
.site-footer-brand img { width: 32px; height: 32px; }
.site-footer-nav {
  display: flex; gap: 1.6rem; flex-wrap: wrap; justify-content: center;
}
.site-footer-nav a {
  font-size: .9rem; color: #999;
  transition: color .15s;
}
.site-footer-nav a:hover { color: var(--ouro); }
.site-footer-copy {
  font-size: .82rem; color: #666;
  border-top: 1px solid #222;
  padding-top: 1.2rem;
  width: 100%;
  margin-top: .5rem;
}
.site-footer-updated { color: #555; }

/* ===== Preço ===== */
.preco-card {
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  max-width: 460px;
  margin: 2rem auto 0;
  box-shadow: 0 12px 40px rgba(0,0,0,.06);
  position: relative;
}
.preco-tag {
  display: inline-block;
  background: var(--preto, #0d0d0d);
  color: var(--ouro, #d4af37);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.preco-valor {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .2rem;
  margin: .4rem 0 .3rem;
  color: var(--preto, #0d0d0d);
}
.preco-moeda  { font-size: 1.4rem; font-weight: 600; }
.preco-numero { font-size: 4.2rem; font-weight: 700; line-height: 1; font-family: 'Playfair Display', serif; }
.preco-periodo{ font-size: 1.1rem; color: #666; font-weight: 500; }
.preco-sub    { color: var(--texto-mute); font-size: .9rem; margin: 0 0 1.4rem; }
.preco-checks {
  list-style: none;
  padding: 0;
  margin: 0 0 .5rem;
  text-align: left;
  display: inline-block;
}
.preco-checks li {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .4rem 0;
  font-size: .92rem;
  color: #333;
}
.preco-checks .ic-check {
  flex-shrink: 0;
  color: #2a7d2e;
  width: 18px;
  height: 18px;
}
.preco-disclaimer {
  font-size: .78rem;
  color: var(--texto-mute);
  margin: .7rem 0 0;
}

/* ===== Guias / SEO Pages ===== */
.page-hero {
  padding: 8.5rem 0 3rem;
  background: radial-gradient(125% 120% at 82% 0%, #26211633 0%, transparent 55%), var(--preto);
  color: #f3ecd9;
}
.page-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
}
.page-breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  gap: .4rem;
  font-size: .82rem;
  color: #c9c1ab;
  margin-bottom: 1rem;
}
.page-breadcrumb a { color: var(--ouro-light); }
.page-breadcrumb a:hover { color: #fff; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.3rem, 5vw, 3.5rem);
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1rem;
}
.page-hero p {
  max-width: 720px;
  font-size: 1.08rem;
  color: #cdc5b2;
}
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.guide-card,
.guide-panel,
.article-card,
.article-callout {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1);
}
.is-in { opacity: 1 !important; transform: none !important; }
.guide-card {
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  box-shadow: var(--shadow-sm);
}
.guide-card:hover {
  border-color: var(--ouro);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.guide-card h3,
.guide-panel h2,
.article-card h2 {
  font-family: 'Playfair Display', serif;
  color: var(--preto);
}
.guide-card p,
.guide-panel p,
.article-card p,
.article-card li {
  color: var(--texto-mute);
}
.guide-panel {
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.15fr) minmax(260px, .85fr);
  gap: 1.5rem;
  align-items: start;
}
.article-main {
  display: grid;
  gap: 1.25rem;
}
.article-card {
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: 12px;
  padding: 1.7rem;
  box-shadow: var(--shadow-sm);
}
.article-card h2 {
  font-size: 1.45rem;
  margin-bottom: .8rem;
}
.article-card h3 {
  color: var(--preto);
  font-size: 1rem;
  margin: 1rem 0 .45rem;
}
.article-card p + p { margin-top: .8rem; }
.article-card ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin-top: .8rem;
}
.article-card li + li { margin-top: .45rem; }
.article-aside {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 88px;
}
.article-callout {
  background: linear-gradient(180deg, #fff, var(--ouro-softer));
  border: 1px solid var(--ouro-soft);
  border-radius: 12px;
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
}
.article-callout h3 {
  font-family: 'Playfair Display', serif;
  color: var(--preto);
  margin-bottom: .6rem;
}
.article-callout p {
  color: var(--texto);
  font-size: .93rem;
  margin-bottom: .9rem;
}
.article-callout .btn-primary,
.article-callout .btn-ghost {
  width: 100%;
}
.article-callout .btn-ghost { margin-top: .65rem; }
.article-callout ul {
  list-style: none;
  margin-top: .85rem;
}
.article-callout li {
  color: var(--texto-mute);
  font-size: .9rem;
}
.article-callout li + li { margin-top: .45rem; }
.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1rem;
}
.inline-links a {
  color: var(--ouro-dark);
  font-weight: 600;
}
.inline-links a:hover { color: var(--preto); }
.guide-list {
  display: grid;
  gap: .9rem;
}
.guide-list a {
  display: block;
  background: var(--creme);
  border: 1px solid var(--borda);
  border-radius: 10px;
  padding: 1rem 1.1rem;
}
.guide-list a:hover {
  border-color: var(--ouro);
  background: #fff;
}
.guide-list strong {
  display: block;
  color: var(--preto);
  margin-bottom: .25rem;
}
.guide-list span {
  color: var(--texto-mute);
  font-size: .92rem;
}

/* ===== Polimento de layout ===== */
/* Botão primário: leve elevação dourada no hover */
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 22px -10px rgba(201,162,39,.55); }

/* Feature: linha dourada que cresce no topo ao passar o mouse */
.feature { position: relative; overflow: hidden; }
.feature::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--ouro); transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.feature:hover::before { transform: scaleX(1); }

/* Steps: linha que conecta os três passos */
.steps::before {
  content: ''; position: absolute; top: calc(2rem + 28px); left: 14%; right: 14%;
  height: 2px; z-index: 0;
  background: linear-gradient(90deg, transparent, var(--borda) 14%, var(--borda) 86%, transparent);
}
.step { position: relative; z-index: 1; }
.step-num { box-shadow: 0 0 0 7px #fff; }   /* recorta a linha atrás do círculo */

/* Público: brilho dourado no card ao passar o mouse */
.publico-card { transition: transform .25s ease, box-shadow .25s ease; }
.publico-card:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -20px rgba(0,0,0,.5); }

/* Preço: clímax visual com halo dourado e leve elevação */
.preco-card {
  border-color: var(--ouro-soft);
  box-shadow: 0 22px 56px -22px rgba(0,0,0,.16), 0 0 64px -12px rgba(201,162,39,.28);
  transition: transform .3s ease, box-shadow .3s ease;
}
.preco-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px -24px rgba(0,0,0,.2), 0 0 80px -10px rgba(201,162,39,.4);
}

/* ===== Movimento: entrada do hero + reveal no scroll ===== */
@media (prefers-reduced-motion: no-preference) {
  /* Entrada orquestrada do hero ao carregar */
  html.js .hero-text > * { opacity: 0; animation: gaiaRise .7s cubic-bezier(.2,.7,.2,1) forwards; }
  html.js .hero-text > .hero-tag   { animation-delay: .05s; }
  html.js .hero-text > h1          { animation-delay: .14s; }
  html.js .hero-text > .hero-sub   { animation-delay: .24s; }
  html.js .hero-text > .hero-ctas  { animation-delay: .34s; }
  html.js .hero-text > .hero-trust { animation-delay: .42s; }
  html.js .hero-stage .stage-card  { opacity: 0; animation: gaiaCardIn .75s cubic-bezier(.2,.7,.2,1) forwards; }
  html.js .hero-stage .stage-intimacao { animation-delay: .40s; }
  html.js .hero-stage .stage-prazo      { animation-delay: .78s; }

  /* Reveal de elementos quando entram na viewport */
  html.js .section-title,
  html.js .section-sub,
  html.js .preco-card,
  html.js .cta-final h2,
  html.js .cta-final p,
  html.js .features-grid > .feature,
  html.js .integ-grid > .integ-card,
  html.js .steps > .step,
  html.js .publico-grid > .publico-card,
  html.js .faq > .faq-item,
  html.js .trust-list > li {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1);
  }
  html.js .is-in { opacity: 1 !important; transform: none !important; }
}
@keyframes gaiaRise   { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes gaiaCardIn { from { opacity: 0; transform: translateY(26px) scale(.98); } to { opacity: 1; transform: none; } }

/* ===== Responsivo ===== */
@media (max-width: 900px) {
  .steps::before { display: none; }
  .nav-toggle { display: flex; }
  /* No mobile, Entrar e Começar grátis vão pra dentro do menu (evita estouro do topo) */
  .site-header-actions .btn-primary,
  .site-header-actions .site-login { display: none; }
  .site-nav-login { display: block; }
  .site-header .site-nav-cta {
    display: block; margin-top: .7rem; text-align: center;
    background: var(--preto); color: #fff;
    padding: .85rem 1rem !important; border-radius: var(--radius);
    font-weight: 600; border-bottom: none !important;
  }
  .site-header .site-nav-cta:hover { background: var(--ouro); color: var(--preto); }
  /* Nav vira painel suspenso abaixo do header */
  .site-nav {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--creme);
    border-bottom: 1px solid var(--borda);
    box-shadow: var(--shadow-md);
    padding: .5rem 1.5rem 1rem;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .18s, transform .18s, visibility .18s;
  }
  body.nav-open .site-nav { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav a {
    padding: .85rem .25rem; font-size: 1rem;
    border-bottom: 1px solid var(--borda);
  }
  /* Painel é creme: links sempre escuros (vence o estado claro do topo), menos o CTA */
  .site-header .site-nav a:not(.site-nav-cta) { color: var(--texto); }
  .site-header .site-nav a:not(.site-nav-cta):hover { color: var(--ouro-dark); }
  .site-nav a:last-child { border-bottom: none; }

  .hero { padding: 6rem 0 3.5rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .page-hero { padding: 6.5rem 0 2.5rem; }
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; }
  .stage-prazo { margin-left: 1.6rem; }
  .section { padding: 3.5rem 0; }
  .cta-final { padding: 3.5rem 0; }
  .screens-band { padding: 3.5rem 0; }
  .screens-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .container { padding: 0 1.2rem; }
  .hero { padding: 5.5rem 0 3rem; }
  .hero h1 { font-size: 2.4rem; }
  .hero-sub { font-size: 1rem; }
  .preco-card { padding: 2rem 1.4rem; }
  .preco-numero { font-size: 3.4rem; }
  .stage-card { padding: 1.15rem 1.2rem; }
  .stage-prazo { margin-left: 0; }   /* cards do hero em largura cheia no celular */
  .sc-prazo-num { font-size: 2.5rem; }
  .trust-list { gap: .9rem 1.6rem; }
  .btn-lg { padding: .85rem 1.4rem; font-size: .95rem; }
  .feature, .step { padding: 1.5rem 1.2rem; }
  .faq-item summary { padding: .95rem 1.1rem; font-size: .92rem; }
  .faq-item p { padding: 0 1.1rem 1rem; font-size: .9rem; }
  .mock-phone { width: 220px; }
}

/* Telas muito estreitas (iPhone SE e afins): título não pode estourar */
@media (max-width: 374px) {
  .hero h1 { font-size: 2rem; }
  .container { padding: 0 1rem; }
}

/* ===== Acessibilidade: respeita redução de movimento ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .feature:hover, .integ-card:hover { transform: none; }
}
