/* ==========================================================================
   Suzi Basso — Consultoria de treino online
   Identidade: preto/grafite sofisticado, dourado de exclusividade,
   verde neon como detalhe pontual. Ver identidade/suzi/design-guide.md
   ========================================================================== */

:root {
  --bg: #0b0b0d;
  --bg-alt: #1a1b1e;
  --bg-alt-2: #212226;
  --fg: #f3f1ec;
  --muted: #a6a6ad;
  --border: rgba(255, 255, 255, 0.08);

  --gold: #c9a24d;
  --gold-soft: rgba(201, 162, 77, 0.35);
  --neon: #c6ff5e;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;

  --radius-sm: 10px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --container: 1180px;
}

* { box-sizing: border-box; }
/* sem isso, qualquer regra de display (flex, grid) ganha do atributo hidden */
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: 760px; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: #100c00;
  padding: 10px 16px;
  z-index: 200;
}
.skip-link:focus { left: 16px; top: 16px; }

/* Placeholder helper — some material ainda não chegou */
.placeholder-box {
  border: 1px dashed var(--gold-soft);
  background: repeating-linear-gradient(
    135deg, rgba(201,162,77,0.06), rgba(201,162,77,0.06) 10px,
    transparent 10px, transparent 20px
  );
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

/* Reveal on scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- Type ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 0.5em;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  text-align: center;
  margin-bottom: 2.5rem;
}
.accent { color: var(--gold); font-style: italic; font-weight: 500; }
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-arrow { transition: transform 0.2s ease; flex: none; }
.btn:hover .btn-arrow { transform: translateX(4px); }
.btn-primary { background: var(--gold); color: #100c00; }
.btn-primary:hover { opacity: 0.92; }
.btn-outline { border-color: var(--border); color: var(--fg); background: transparent; }
.btn-outline:hover { border-color: var(--gold); }
.btn-sm { padding: 8px 16px; font-size: 0.8rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 13, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand-mark {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--fg);
  text-decoration: none;
  font-size: 1.1rem;
}
.brand-mark span { color: var(--gold); font-style: italic; font-weight: 500; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav a:not(.btn) {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}
.site-nav a:not(.btn):hover { color: var(--fg); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--fg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg-alt);
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 10px 0; }
}

/* ---------- Hero ---------- */
.hero { padding: 72px 0 96px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-title {
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  text-transform: uppercase;
}
.hero-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 46ch;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 1.5rem; }
.hero-credentials { color: var(--muted); font-size: 0.82rem; }
.hero-media { aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-alt-2); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; aspect-ratio: 4/5; max-height: 60vh; }
}

/* ---------- Números ---------- */
.stats-strip { padding: 56px 0 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  padding: 28px 16px;
}
/* fio dourado separando as colunas, no lugar de tres caixas — a faixa de
   depoimentos logo abaixo ja e feita de cards, dois blocos de card seguidos
   pesavam demais */
.stat-item + .stat-item { border-left: 1px solid var(--border); }
.stat-item strong {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.stat-item span {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr; gap: 0; }
  .stat-item { padding: 20px 16px; }
  .stat-item + .stat-item { border-left: 0; border-top: 1px solid var(--border); }
}

/* ---------- Prova social imediata ---------- */
.social-proof-strip { padding: 0 0 80px; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.proof-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.proof-photo { width: 56px; height: 56px; border-radius: 50%; }

/* Avatar de inicial — usado enquanto não temos foto real das alunas.
   Trocar por <img> assim que a Suzi mandar as fotos com autorização. */
.avatar-initial {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: rgba(201, 162, 77, 0.12);
  border: 1px solid var(--gold-soft);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1;
  user-select: none;
}
.marquee-photo.avatar-initial { font-size: 1rem; }
.proof-quote { font-size: 0.92rem; color: var(--fg); }
.proof-name { font-size: 0.8rem; color: var(--muted); margin-top: auto; margin-bottom: 0; }
@media (max-width: 860px) { .proof-grid { grid-template-columns: 1fr; } }

/* ---------- Identificação ---------- */
.identificacao { padding: 80px 0; background: var(--bg-alt); text-align: center; }
.identificacao-text { color: var(--muted); font-size: 1.05rem; margin-bottom: 2rem; }
.identificacao-text p { margin: 0 0 1em; }

/* ---------- Pra quem é ---------- */
.pra-quem-e { padding: 96px 0; }
.quem-grid {
  list-style: none;
  margin: 0 auto 2.5rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 760px;
}
.quem-grid li {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-weight: 600;
  flex: 1 1 320px;
  max-width: 370px;
  text-align: center;
}
.quem-grid li::before { content: "— "; color: var(--gold); }
.quem-fechamento { text-align: center; font-size: 1.15rem; font-family: var(--font-display); font-style: italic; color: var(--gold); }
@media (max-width: 640px) { .quem-grid li { flex-basis: 100%; } }

/* ---------- Como funciona ---------- */
.como-funciona { padding: 96px 0; background: var(--bg-alt); }
.steps-grid {
  list-style: none;
  margin: 0 0 3rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.step-card {
  position: relative;
  background: var(--bg-alt-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  overflow: hidden;
}
.step-number { font-family: var(--font-display); color: var(--gold); font-size: 1.4rem; font-weight: 700; }
.step-card h3 { margin: 0.6em 0 0.4em; font-size: 1rem; text-transform: uppercase; }
.step-card p { color: var(--muted); font-size: 0.86rem; margin: 0; }

.avaliacao-box {
  background: var(--bg-alt-2);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.avaliacao-box h3 { font-size: 1.2rem; }
.avaliacao-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}
@media (max-width: 860px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .avaliacao-list { grid-template-columns: repeat(2, 1fr); }
}

/* Spotlight effect (adaptado do "Spotlight Card" do 21st.dev, sem React) */
.spotlight {
  --spot-x: 50%;
  --spot-y: 50%;
  background-image: radial-gradient(320px circle at var(--spot-x) var(--spot-y), rgba(201, 162, 77, 0.18), transparent 70%);
}

/* ---------- Resultados (marquee) ---------- */
.resultados { padding: 96px 0 0; }
.resultados .section-title { margin-bottom: 3rem; }
.marquee {
  position: relative;
  overflow: hidden;
  padding: 24px 0 96px;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee-scroll 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}
.marquee-card {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.marquee-photo { width: 40px; height: 40px; border-radius: 50%; margin-bottom: 12px; }
.marquee-card p { font-size: 0.88rem; margin: 0 0 10px; }
.marquee-card span { font-size: 0.78rem; color: var(--muted); margin-top: auto; }

/* Antes e depois — fica dentro de .resultados, abaixo do carrossel */
.resultados .marquee { padding-bottom: 64px; }
.antes-depois { padding-bottom: 96px; }
.antes-depois-head { text-align: center; max-width: 620px; margin: 0 auto 2.5rem; }
.antes-depois-head h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.antes-depois-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.antes-depois-grid figure {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-alt);
}
.antes-depois-grid img { width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; }
@media (max-width: 860px) {
  .antes-depois-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ---------- Sobre ---------- */
.sobre { padding: 96px 0; background: var(--bg-alt); }
.sobre-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.sobre-media { aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-alt-2); }
.sobre-media img { width: 100%; height: 100%; object-fit: cover; }
.sobre-copy p { color: var(--muted); }
.sobre-copy p a, .faq-answer p a { color: var(--gold); }
.sobre-credenciais { list-style: none; padding: 0; margin: 1.5rem 0; }
.sobre-credenciais li {
  padding: 8px 0;
  border-top: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.9rem;
}
.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold);
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  margin: 1.5rem 0 0;
}
@media (max-width: 860px) { .sobre-inner { grid-template-columns: 1fr; } }

/* ---------- Planos ---------- */
.planos { padding: 96px 0; text-align: center; }
.plano-card {
  --spot-x: 50%;
  --spot-y: 0%;
  position: relative;
  background: var(--bg-alt);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: left;
}
.plano-badge {
  display: inline-block;
  background: var(--neon);
  color: #0c1400;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.plano-nome { font-size: 1.3rem; margin-bottom: 0.4em; }
.plano-preco { display: flex; align-items: baseline; gap: 12px; margin: 0.4em 0; }
.preco-de { color: var(--muted); text-decoration: line-through; font-size: 1rem; }
.preco-por { font-family: var(--font-display); font-size: 2.2rem; color: var(--gold); font-weight: 700; }
.preco-periodo { color: var(--muted); font-size: 0.95rem; }
.plano-detalhe { color: var(--muted); font-size: 0.85rem; margin-bottom: 1.5rem; }
/* mensal: card menor, em linha, embaixo do trimestral — a Suzi quer o
   trimestral em destaque e o mensal so como segunda opcao */
.plano-card-secundario {
  margin-top: 16px;
  padding: 24px 28px;
  border-color: var(--border);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 20px 28px;
}
.plano-card-secundario .plano-nome { font-size: 1.1rem; margin-bottom: 0.2em; }
.plano-card-secundario .plano-detalhe { margin-bottom: 0; }
.plano-card-secundario .plano-preco { margin: 0; }
.plano-card-secundario .preco-por { font-size: 1.7rem; }
@media (max-width: 640px) {
  .plano-card-secundario { grid-template-columns: 1fr; text-align: left; }
  .plano-card-secundario .btn { width: 100%; }
}
.planos-aviso { color: var(--fg); font-size: 1.05rem; line-height: 1.6; margin-top: 1.75rem; }
.planos-aviso-zap { display: block; margin-top: 0.5rem; }
.planos-aviso a { color: var(--gold); font-weight: 600; }
.plano-inclui { list-style: none; padding: 0; margin: 0 0 2rem; }
.plano-inclui li {
  padding: 10px 0 10px 26px;
  border-top: 1px solid var(--border);
  position: relative;
  font-size: 0.92rem;
  color: var(--fg);
}
.plano-inclui li::before { content: "✓"; position: absolute; left: 0; color: var(--neon); font-weight: 800; }
.planos-presencial {
  margin-top: 3rem;
  padding: 36px 28px;
  background: var(--bg-alt);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-lg);
  text-align: center;
}
.planos-presencial-titulo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  margin: 0 0 0.5rem;
}
.planos-presencial-texto {
  color: var(--fg);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 1.5rem;
}
@media (max-width: 640px) {
  .planos-presencial .btn { width: 100%; }
}

/* ---------- FAQ ---------- */
.faq { padding: 96px 0; background: var(--bg-alt); }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  background: var(--bg-alt-2);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  color: var(--fg);
  text-align: left;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 18px 20px;
  cursor: pointer;
}
.faq-icon { position: relative; width: 16px; height: 16px; flex: none; }
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  transition: transform 0.25s ease;
}
.faq-icon::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 0; width: 2px; height: 100%; transform: translateX(-50%); }
.faq-question[aria-expanded="true"] .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-question[aria-expanded="true"] .faq-icon::before { transform: translateY(-50%) rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p { margin: 0; padding: 0 20px 18px; color: var(--muted); font-size: 0.92rem; }

/* ---------- Lista de espera ---------- */
.lista-espera { padding: 96px 0; text-align: center; }
.lista-espera-texto { color: var(--fg); font-size: 1.15rem; line-height: 1.6; margin-bottom: 2rem; }

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: 0.9rem; font-weight: 700; color: var(--fg); }
.form-opcional { font-weight: 400; color: var(--muted); }
.form-row input,
.form-row select {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.form-row input::placeholder { color: var(--muted); }
.form-row input:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--muted);
  cursor: pointer;
}
.form-consent input { margin-top: 3px; accent-color: var(--gold); flex: none; }
.form-consent a { color: var(--gold); }
.waitlist-form .btn { margin-top: 8px; }

.form-horarios { border: 0; padding: 0; margin: 0; min-width: 0; }
.form-horarios legend { padding: 0; font-size: 0.9rem; font-weight: 700; color: var(--fg); margin-bottom: 10px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip span {
  display: block;
  padding: 9px 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--bg);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.chip span:hover { border-color: var(--gold-soft); color: var(--fg); }
.chip input:checked + span {
  background: rgba(201, 162, 77, 0.16);
  border-color: var(--gold);
  color: var(--gold);
}
.chip input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }
.chip-flexivel { flex-basis: 100%; }
.chip-flexivel span { text-align: center; }

.waitlist-corrigir {
  margin-top: 18px;
  background: none;
  border: 0;
  padding: 4px;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.waitlist-corrigir:hover { color: var(--gold); }

/* fora da tela em vez de display:none — robô ignora campo com display:none */
.campo-armadilha {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.waitlist-aviso {
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(201, 162, 77, 0.1);
  border: 1px solid var(--gold-soft);
  color: var(--fg);
  font-size: 0.9rem;
}

.btn .btn-label { display: inline-block; }
.btn.is-loading { pointer-events: none; opacity: 0.75; }
.btn.is-loading .btn-arrow { display: none; }
.btn.is-loading::after {
  content: "";
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: btn-girando 0.7s linear infinite;
}
@keyframes btn-girando { to { transform: rotate(360deg); } }

.waitlist-success {
  background: linear-gradient(180deg, rgba(201, 162, 77, 0.12), var(--bg-alt) 60%);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  text-align: center;
}
.waitlist-check { display: block; width: 68px; height: 68px; margin: 0 auto 20px; }
.waitlist-check svg { width: 100%; height: 100%; fill: none; stroke: var(--gold); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.waitlist-check-circulo { stroke-dasharray: 145; stroke-dashoffset: 145; animation: check-circulo 0.5s ease-out forwards; }
.waitlist-check-risco { stroke-dasharray: 40; stroke-dashoffset: 40; animation: check-risco 0.3s 0.45s ease-out forwards; }
@keyframes check-circulo { to { stroke-dashoffset: 0; } }
@keyframes check-risco { to { stroke-dashoffset: 0; } }

.waitlist-success h3 {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin: 0 0 12px;
}
.waitlist-success p { margin: 0; }
.waitlist-success-detalhe { color: var(--fg); font-size: 1.05rem; font-weight: 600; margin-bottom: 10px !important; }
.waitlist-success-nota { color: var(--muted); font-size: 0.95rem; max-width: 40ch; margin: 0 auto !important; }
.waitlist-success-cta { margin-top: 20px; }

@media (prefers-reduced-motion: reduce) {
  .waitlist-check-circulo,
  .waitlist-check-risco { animation: none; stroke-dashoffset: 0; }
  .btn.is-loading::after { animation: none; }
}

.back-link { color: var(--muted); text-decoration: none; font-size: 0.85rem; font-weight: 600; }
.back-link:hover { color: var(--gold); }

/* ---------- Blog ---------- */
.blog-index { padding: 64px 0 96px; }
.post-list { list-style: none; padding: 0; margin: 2rem 0 0; display: flex; flex-direction: column; gap: 16px; }
.post-list-item a {
  display: block;
  text-decoration: none;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s ease;
}
.post-list-item a:hover { border-color: var(--gold-soft); }
.post-list-item h2 { color: var(--fg); font-size: 1.3rem; margin: 0 0 0.5em; }
.post-list-item p { color: var(--muted); margin: 0; font-size: 0.92rem; }

.post { padding: 64px 0 96px; }
.post-title { text-align: left; margin-bottom: 1.5rem; }
.post-body { color: var(--muted); font-size: 1rem; }
.post-body p { margin: 0 0 1.2em; }
.post-body strong { color: var(--fg); }
.post-body h2 {
  font-family: var(--font-body);
  color: var(--fg);
  font-size: 1.15rem;
  margin: 2em 0 0.6em;
}
.post-disclaimer {
  font-size: 0.82rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1em 0;
}
.post .btn { margin: 0.5em 0 2.5em; }
.post-sources-title { font-size: 0.95rem !important; }
.post-sources { padding-left: 1.2em; font-size: 0.85rem; }
.post-sources li { margin-bottom: 0.5em; }
.post-sources a { color: var(--gold); }

/* ---------- 404 ---------- */
.not-found { padding: 120px 0; text-align: center; }
.not-found-text { color: var(--muted); margin-bottom: 2rem; }

/* ---------- Privacidade (página separada, privacidade.html) ---------- */
.privacidade-page { padding: 64px 0 96px; }
.privacidade-page .section-title { text-align: left; margin-bottom: 2rem; }
.privacidade-texto { color: var(--muted); font-size: 0.95rem; }
.privacidade-texto p { margin: 0 0 1em; }
.privacidade-texto h2 {
  font-family: var(--font-body);
  color: var(--fg);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 2em 0 0.6em;
}
.privacidade-nota { font-size: 0.8rem; color: var(--muted); border-top: 1px solid var(--border); padding-top: 1.2rem; margin-top: 2rem !important; }

/* ---------- CTA final ---------- */
.cta-final { padding: 96px 0 120px; text-align: center; }

/* ---------- Footer ---------- */
.site-footer { padding: 64px 0 32px; border-top: 1px solid var(--border); }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  text-align: left;
  padding-bottom: 40px;
}
.footer-col--brand .footer-tagline { color: var(--muted); font-size: 0.88rem; margin: 14px 0 8px; max-width: 32ch; }
.footer-title {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 0 0 1rem;
}
.footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fg);
  text-decoration: none;
  font-size: 0.92rem;
}
.footer-list a:hover { color: var(--gold); }
.footer-list svg { flex: none; color: var(--muted); }
.footer-list a:hover svg { color: var(--gold); }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-col--brand { grid-column: 1 / -1; text-align: center; }
  .footer-col--brand .footer-tagline { margin-inline: auto; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-list { align-items: center; }
}

.footer-cref { color: var(--muted); font-size: 0.82rem; margin: 0; }
.footer-links { display: flex; gap: 18px; }
.footer-links a {
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer-links a:hover { color: var(--gold); border-color: var(--gold-soft); }
.footer-copy { color: var(--muted); font-size: 0.8rem; margin: 12px 0 0; text-align: center; }
.footer-grid ~ .footer-copy { margin-top: 0; border-top: 1px solid var(--border); padding-top: 24px; }
.footer-copy a { color: var(--muted); }
.footer-copy a:hover { color: var(--gold); }
.footer-credit a { color: var(--gold); text-decoration: none; }

/* ---------- Sticky CTA (mobile) ---------- */
.sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 150;
  display: none;
  align-items: center;
  gap: 12px;
  background: var(--bg-alt-2);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-lg);
  padding: 12px 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}
.sticky-cta.is-visible { display: flex; }
.sticky-cta-text { flex: 1; margin: 0; font-size: 0.8rem; line-height: 1.3; }
.sticky-cta-text strong { display: block; color: var(--fg); }
.sticky-cta-text span { color: var(--muted); }
.sticky-cta-close {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 4px;
  flex: none;
}
@media (min-width: 861px) { .sticky-cta { display: none !important; } }

/* ---------- Print original do depoimento ---------- */
.print-link {
  align-self: flex-start;
  margin-top: 4px;
  padding: 0;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--gold-soft);
  color: var(--gold);
  font-family: inherit;
  font-size: 0.75rem;
  line-height: 1.4;
  cursor: pointer;
}
.print-link:hover { border-bottom-color: var(--gold); }
.print-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.marquee-card .print-link { display: block; margin-top: 8px; }

/* o carrossel já pausa no hover — pausa também quando o teclado entra nele,
   senão o botão foge do usuário que navega por Tab */
.marquee:focus-within .marquee-track { animation-play-state: paused; }

.print-modal {
  border: 0;
  padding: 0;
  background: none;
  max-width: min(420px, 92vw);
  max-height: 92vh;
  overflow: visible;
}
.print-modal::backdrop { background: rgba(0, 0, 0, 0.82); }
.print-modal-figure {
  margin: 0;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 12px;
  max-height: 92vh;
  overflow-y: auto;
}
.print-modal-figure img { border-radius: var(--radius-sm); width: 100%; }
.print-modal-figure figcaption {
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
  padding: 10px 4px 2px;
}
.print-modal-close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 1;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-alt-2);
  border: 1px solid var(--border);
  color: var(--fg);
  cursor: pointer;
}
.print-modal-close:hover { border-color: var(--gold-soft); color: var(--gold); }
.print-modal-close:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
@media (max-width: 480px) {
  .print-modal-close { top: -10px; right: -6px; }
}
