/* ═══════════════════════════════════════════════════════════════════
   Velo — Landing Page
   Paleta: sage green + bege + marrom + dourado
   Tipografia: Lora (display) + Inter (body)
   ═══════════════════════════════════════════════════════════════════ */

/* `.btn` define display:inline-flex e sobrescreve o default do user agent.
   Sem !important aqui, attribute hidden do HTML é ignorado em botões e
   o auth-header.js não consegue esconder Entrar/Assinar quando logado. */
[hidden] { display: none !important; }

:root {
  /* Colors */
  --sage: #4A7C6F;
  --sage-light: #7BAA9C;
  --sage-soft: #C4D6CC;
  --sage-dark: #2F5A50;
  --beige: #F5EFE6;
  --beige-dark: #E8DFC9;
  --beige-light: #FBF7EF;
  --text: #2C1A0E;
  --text-soft: #5C4A3E;
  --text-muted: #6B5D52; /* WCAG AA: ratio ~4.8:1 sobre beige */
  --gold: #C9962A;
  --gold-light: #E4B650;
  --white: #FFFFFF;
  --border: rgba(44, 26, 14, 0.08);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(44, 26, 14, 0.04);
  --shadow: 0 4px 24px rgba(44, 26, 14, 0.06);
  --shadow-md: 0 8px 32px rgba(44, 26, 14, 0.08);
  --shadow-lg: 0 16px 48px rgba(44, 26, 14, 0.12);

  /* Radii */
  --r-sm: 8px;
  --r: 16px;
  --r-lg: 24px;
  --r-pill: 100px;

  /* Typography */
  --font-display: 'Lora', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Container */
  --container-max: 1200px;
  --nav-h: 72px;
}

/* ─── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--beige);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Typography ─────────────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; color: var(--text); }
h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: 1.25rem; font-weight: 600; }

.muted { color: var(--text-muted); font-weight: 500; }
.hl { color: var(--sage); }

/* ─── Layout ─────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── Screen-reader only utility ────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ─── Skip link (a11y) ───────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -9999px;
  left: 12px;
  z-index: 9999;
  background: var(--sage);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: top 0.1s;
}
.skip-link:focus {
  top: 12px;
}

.section { padding: 80px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--text-soft); font-size: 1.05rem; }

/* ─── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font-body);
  text-align: center;
  text-decoration: none;
  line-height: 1;
  box-sizing: border-box;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, border-color 0.15s;
  white-space: nowrap;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; }
a:focus-visible { outline: 2px solid var(--sage); outline-offset: 2px; border-radius: 2px; }
.btn-pill { border-radius: var(--r-pill); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 16px; font-size: 0.88rem; min-height: 40px; }

.btn-primary { background: var(--sage); color: var(--white); border-color: var(--sage); }
.btn-primary:hover { background: var(--sage-dark); border-color: var(--sage-dark); box-shadow: var(--shadow-md); transform: translateY(-1px); }

.btn-outline { background: transparent; color: var(--sage); border-color: var(--sage); }
.btn-outline:hover { background: var(--sage); color: var(--white); }

.btn-ghost { background: transparent; color: var(--text); padding: 14px 20px; }
.btn-ghost:hover { color: var(--sage); }

.btn-secondary { background: var(--beige-dark); color: var(--text); }
.btn-secondary:hover { background: var(--sage-soft); }

/* ─── Navbar ─────────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 239, 230, 0.88);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border);
}

.navbar-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 0;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--sage);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo-inverted { color: var(--beige); }

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
  flex: 1;
  justify-content: center;
  padding: 0 16px;
}
.nav-links a {
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--sage); background: rgba(74,124,111,0.06); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* "Entrar" / "Meu Painel" — mesmo peso visual do CTA */
.nav-login {
  padding: 11px 18px;
  min-height: 44px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  border-width: 1.5px;
  letter-spacing: 0.01em;
}

/* "Olá, {nome}!" — texto sutil antes do botão Dashboard */
.nav-greeting {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-soft);
  margin-right: 4px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-greeting::before {
  content: "●";
  color: var(--sage);
  font-size: 0.6rem;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.nav-greeting[hidden] { display: none; }

/* "Assinar →" — destaque principal */
.nav-cta {
  padding: 11px 18px;
  min-height: 44px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  border-radius: var(--r-sm);
  transition: background 0.15s;
}
.nav-mobile-toggle:hover { background: rgba(44,26,14,0.05); }
.nav-mobile-toggle:focus-visible { outline: 2px solid var(--sage); outline-offset: 2px; }
.nav-mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ─── Hero ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(123, 170, 156, 0.24), transparent 22%),
    radial-gradient(circle at 88% 16%, rgba(201, 150, 42, 0.16), transparent 18%),
    radial-gradient(circle at 78% 70%, rgba(74, 124, 111, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(245, 239, 230, 0.02) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  filter: blur(2px);
}

.hero-bg::before {
  width: min(26vw, 320px);
  height: min(26vw, 320px);
  top: 8%;
  left: -4%;
}

.hero-bg::after {
  width: min(18vw, 220px);
  height: min(18vw, 220px);
  right: 6%;
  bottom: 12%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 150, 42, 0.15);
  color: var(--gold);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(201, 150, 42, 0.3);
}

.hero-copy h1 { margin-bottom: 20px; }
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-soft);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hero-mascote {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-mascote img {
  max-width: 420px;
  width: 100%;
  filter: drop-shadow(0 24px 48px rgba(44, 26, 14, 0.12));
}

/* ─── Benefits (3 benefícios em linha) ──────────────────────────── */
.benefits-section {
  background: var(--beige-light);
  padding: 56px 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--r);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-warm);
}
.benefit-icon {
  font-size: 2rem;
  line-height: 1;
}
.benefit p {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}
.benefit strong { color: var(--text); font-weight: 600; }

/* ─── Pricing ────────────────────────────────────────────────────── */
.pricing-section {
  background: var(--beige-light);
  position: relative;
}

.cycle-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.cycle-toggle {
  display: inline-flex;
  background: var(--white);
  padding: 6px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.cycle-btn {
  padding: 10px 24px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-soft);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cycle-btn.active { background: var(--sage); color: var(--white); }
.save-badge {
  background: var(--gold);
  color: var(--white);
  padding: 2px 8px;
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 600;
}
.cycle-btn.active .save-badge { background: var(--white); color: var(--gold); }

.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
/* Enquanto Fundador tem vagas, card único centralizado */
.plans-grid.plans-solo {
  grid-template-columns: minmax(0, 480px);
  justify-content: center;
  max-width: none;
}

.plan {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--r-lg);
  border: 2px solid var(--border);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow);
}

.plan-founder {
  border-color: var(--sage);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--sage);
}
.plan-founder:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg), 0 0 0 1px var(--sage); }

.plan-founder-seal {
  position: absolute;
  top: -40px;
  right: 24px;
  width: 84px;
  height: 84px;
  border-radius: 999px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background:
    radial-gradient(circle at 30% 28%, #f9d679, #c9962a 62%, #8f6915 100%);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(44, 26, 14, 0.18);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.plan-founder-seal strong {
  font-size: 1.45rem;
  line-height: 1;
}

.plan-founder-seal span {
  font-size: 0.68rem;
  font-weight: 700;
}

.plan-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.plan-header h3 { margin-bottom: 16px; font-size: 1.4rem; }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

/* Variante "parcela em destaque + total pequeno ao lado" (anual no cartão).
   price-lead agrupa "R$ 5,75 /mês" como bloco principal; price-total fica
   como legenda à direita explicando "12× sem juros · R$ 69 total". */
.plan-price--installment {
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: flex-end;
  margin-bottom: 8px;
}
.plan-price--installment .price-lead {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.plan-price--installment .price-total {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.35;
  max-width: 180px;
}
.plan-price--installment .price-total strong {
  color: var(--text-soft);
  font-weight: 600;
}
.price-currency {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-soft);
}
.price-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.price-period { color: var(--text-muted); font-weight: 500; }

.plan-equivalent {
  color: var(--sage);
  font-size: 0.88rem;
  margin-bottom: 4px;
  font-weight: 500;
}
.plan-lock {
  color: var(--gold);
  font-size: 0.82rem;
  margin-bottom: 24px;
  font-weight: 500;
}
.plan-lock.muted { color: var(--text-muted); font-weight: 400; }

/* Selo "mais escolhido" — reforça âncora do anual */
.plan-best-value {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--sage) 0%, #2f8a67 100%);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px rgba(47, 138, 103, 0.22);
}

/* Linha de detalhe abaixo do preço: "Pague com Pix ou cartão · 2 meses grátis" */
.plan-price-detail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-soft);
  margin: 2px 0 10px;
  line-height: 1.4;
}
.plan-price-detail strong { color: var(--text); font-weight: 600; }

.plan-savings-tag {
  background: rgba(212, 167, 98, 0.14);
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 1px solid rgba(212, 167, 98, 0.28);
}

/* "A partir de R$ X por mês" — âncora do founder anual parcelado em 12×.
   Valor renderizado dinamicamente pelo script.js via /api/plans. */
.plan-installment-highlight {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0 0 12px;
  padding: 10px 14px;
  background: rgba(134, 163, 140, 0.10);
  border: 1px solid rgba(134, 163, 140, 0.28);
  border-radius: var(--r-sm);
}
.plan-installment-highlight .installment-anchor {
  font-size: 1.02rem;
  color: var(--text);
  font-weight: 500;
}
.plan-installment-highlight .installment-anchor strong {
  color: var(--sage);
  font-weight: 700;
  font-size: 1.18rem;
}
.plan-installment-highlight .installment-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

/* "Prefere mensal?" — opção sutil mas clicável */
.plan-monthly-alt {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  margin: 10px 0 0;
  line-height: 1.5;
}
.plan-monthly-alt-btn {
  background: none;
  border: none;
  padding: 0;
  color: var(--text-soft);
  font-size: inherit;
  font-family: inherit;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: color 0.15s ease;
}
.plan-monthly-alt-btn:hover {
  color: var(--text);
  text-decoration-color: currentColor;
}

.price-inline-alt {
  color: var(--text-muted);
  font-size: 0.9em;
  font-weight: 400;
  margin-left: 4px;
}

.plan-features {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-soft);
}
.plan-features li::before {
  content: "✓";
  color: var(--sage);
  font-weight: 700;
  flex-shrink: 0;
}

.plan-footnote {
  margin-top: 16px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 500;
}

.coupon-section { margin-top: 16px; }
.coupon-toggle { font-size: 0.82rem; color: var(--sage); font-weight: 500; }
.coupon-input-wrapper { display: flex; gap: 8px; margin-top: 8px; }
.coupon-input-wrapper input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font: inherit;
}
.coupon-status { font-size: 0.82rem; margin-top: 6px; }
.coupon-status.valid { color: var(--sage); }
.coupon-status.invalid { color: #D6543E; }

/* ─── FAQ ────────────────────────────────────────────────────────── */
.faq-section { background: var(--beige); }
.faq-container { max-width: 780px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item[open] { box-shadow: var(--shadow); }

.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text);
  transition: color 0.2s;
}
.faq-item summary:hover { color: var(--sage); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "＋";
  color: var(--sage);
  font-size: 1.25rem;
  font-weight: 400;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }

.faq-body {
  padding: 0 24px 20px;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-see-all {
  text-align: center;
  margin-top: 32px;
  font-size: 0.95rem;
  color: var(--text-soft);
}
.faq-see-all a {
  color: var(--sage);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq-see-all a:hover { color: var(--sage-dark); }

/* ─── Meta badge (hero) ──────────────────────────────────────────── */
.meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  color: var(--text-soft);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.meta-badge img { display: block; border-radius: 4px; }
.meta-badge strong { color: var(--text); font-weight: 600; }

/* ─── Social status (contador honesto de vagas/online) ──────────── */
.social-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 32px;
  padding: 10px 20px;
  background: rgba(74, 124, 111, 0.07);
  border: 1px solid rgba(74, 124, 111, 0.2);
  border-radius: var(--r-pill);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--sage-dark);
  text-align: center;
  width: fit-content;
  justify-content: center;
}
.social-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(74, 124, 111, 0.2);
  animation: pulse-online 2s ease-in-out infinite;
}
@keyframes pulse-online {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74, 124, 111, 0.2); }
  50%       { box-shadow: 0 0 0 6px rgba(74, 124, 111, 0.07); }
}
@media (prefers-reduced-motion: reduce) {
  .social-status-dot { animation: none; }
}

/* Legacy powered-by wrapper kept for potential reuse @media */
@media (max-width: 640px) {
  .powered-inner {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
}

/* ─── Footer ─────────────────────────────────────────────────────── */
.site-footer {
  background: var(--sage-dark);
  color: var(--beige);
  padding: 56px 0 0;
  margin-top: 80px;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-brand .logo-inverted { margin-bottom: 0; display: block; }
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.footer-mascot {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.25));
}
.footer-tagline {
  color: var(--sage-soft);
  font-style: italic;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--beige);
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.9;
  transition: opacity 0.15s;
}
.footer-links a:hover { opacity: 1; text-decoration: underline; }

.footer-bottom {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(245, 239, 230, 0.12);
}
.footer-bottom small {
  display: block;
  color: rgba(245, 239, 230, 0.65);
  font-size: 0.78rem;
  line-height: 1.5;
}
.footer-disclaimer { margin-top: 8px; max-width: 720px; }

/* ─── Mobile CTA (sticky bottom) ────────────────────────────────── */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--sage);
  color: var(--white);
  padding: 14px;
  border-radius: var(--r-pill);
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-lg);
  z-index: 90;
}

/* ─── Modal ──────────────────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.hidden { display: none; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(44, 26, 14, 0.5);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: var(--white);
  padding: 32px;
  border-radius: var(--r-lg);
  max-width: 480px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--text-muted);
  background: var(--beige-light);
}
.modal-close:hover { background: var(--beige-dark); color: var(--text); }

.modal-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.modal-subtitle { color: var(--text-soft); font-size: 0.92rem; margin-bottom: 24px; }

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.field-label { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.optional-tag { font-weight: 400; color: var(--text-muted); font-size: 0.8rem; }
.field input {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font: inherit;
  background: var(--beige-light);
  transition: border-color 0.15s, background 0.15s;
}
.field input:focus {
  outline: none;
  border-color: var(--sage);
  background: var(--white);
}
.field-error { font-size: 0.82rem; color: #D6543E; min-height: 1em; }

.field--error input,
.field input[aria-invalid="true"] {
  border-color: #D6543E;
  background: #FDF4F1;
}
.field--error input:focus,
.field input[aria-invalid="true"]:focus {
  border-color: #D6543E;
  background: #FFF;
  box-shadow: 0 0 0 3px rgba(214, 84, 62, 0.14);
}
.field--shake { animation: field-shake 0.36s cubic-bezier(0.36, 0.07, 0.19, 0.97); }
@keyframes field-shake {
  10%, 90% { transform: translateX(-1px); }
  20%, 80% { transform: translateX(2px); }
  30%, 50%, 70% { transform: translateX(-4px); }
  40%, 60% { transform: translateX(4px); }
}
@media (prefers-reduced-motion: reduce) {
  .field--shake { animation: none; }
}

.payment-method-group {
  border: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.payment-method-group legend {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  padding: 0;
}
.payment-method-option {
  display: grid;
  grid-template-columns: 20px 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 2px;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--beige-light);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.payment-method-option:hover { border-color: var(--sage); }
.payment-method-option input[type="radio"] {
  grid-row: 1 / 3;
  margin: 0;
  align-self: start;
  margin-top: 3px;
  accent-color: var(--sage);
}
.payment-method-option:has(input:checked) {
  border-color: var(--sage);
  background: var(--white);
}
.payment-method-title { font-weight: 600; font-size: 0.95rem; color: var(--text); }
.payment-method-hint { font-size: 0.82rem; color: var(--text-muted); line-height: 1.35; }

body.modal-open { overflow: hidden; }

#checkout-summary {
  background: var(--beige-light);
  padding: 14px;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  margin: 16px 0;
  color: var(--text-soft);
}

#checkout-status {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  display: none;
}
#checkout-status.success { background: rgba(74, 124, 111, 0.1); color: var(--sage-dark); display: block; }
#checkout-status.error { background: rgba(214, 84, 62, 0.1); color: #D6543E; display: block; }
#checkout-status.info { background: rgba(201, 150, 42, 0.1); color: var(--gold); display: block; }

.privacy-note {
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════
   DEMO WHATSAPP (mockup de celular + conversa animada)
   ═══════════════════════════════════════════════════════════════════ */
.demo-section {
  background: var(--beige);
  padding: 72px 0 88px;
}
.demo-wrap {
  display: grid;
  grid-template-columns: minmax(280px, 340px) 1fr;
  gap: 64px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

/* Mockup do celular */
.phone-mock {
  position: relative;
  background: #1a1410;
  border-radius: 44px;
  padding: 14px 10px;
  box-shadow:
    0 30px 60px rgba(44, 26, 14, 0.25),
    0 0 0 2px rgba(255, 255, 255, 0.05) inset,
    0 0 0 8px #0d0807 inset;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}
.phone-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 24px;
  background: #0d0807;
  border-radius: 14px;
  z-index: 3;
}
.phone-screen {
  background: #ECE5DD; /* WhatsApp beige background */
  border-radius: 32px;
  overflow: hidden;
  height: 560px;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Quando o .phone-screen tem vídeo real (não o mockup HTML) */
.phone-screen-video {
  background: #000;
  padding: 0;
}
.demo-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 32px;
  background: #000;
}

/* Header do chat */
.chat-header {
  background: #075E54;
  color: #fff;
  padding: 36px 16px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.chat-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sage-soft);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}
.chat-header-info { display: flex; flex-direction: column; line-height: 1.2; }
.chat-header-info strong { font-size: 0.95rem; font-weight: 600; }
.chat-header-info span { font-size: 0.72rem; opacity: 0.85; }

/* Body — corpo da conversa */
.chat-body {
  flex: 1;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
  background-image:
    radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 8px 8px;
}

.msg {
  opacity: 0;
  animation: msgIn 0.45s cubic-bezier(0.2, 0.9, 0.3, 1.1) forwards;
  max-width: 82%;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.88rem;
  line-height: 1.4;
  color: #0b0b0b;
  position: relative;
  box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.08);
}
.msg time {
  display: block;
  text-align: right;
  font-size: 0.62rem;
  color: rgba(0, 0, 0, 0.45);
  margin-top: 2px;
}
.msg strong { font-weight: 600; }

.msg-date {
  align-self: center;
  background: rgba(255, 255, 255, 0.75);
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 0.7rem;
  color: var(--text-muted);
  box-shadow: none;
  animation-delay: 0.1s;
}

.msg-in {
  align-self: flex-start;
  background: #ffffff;
  border-top-left-radius: 2px;
}
.msg-out {
  align-self: flex-end;
  background: #DCF8C6;
  border-top-right-radius: 2px;
}

/* Timing — cria a sensação de conversa acontecendo */
.msg-1 { animation-delay: 0.6s; }
.msg-2 { animation-delay: 1.4s; }
.msg-3 { animation-delay: 2.6s; }
.msg-4 { animation-delay: 3.3s; animation-duration: 0.3s; }
.msg-5 { animation-delay: 4.3s; }

@keyframes msgIn {
  from { opacity: 0; transform: translateY(6px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Bolinhas de "digitando" */
.msg-typing {
  align-self: flex-start;
  background: #ffffff;
  display: inline-flex;
  gap: 4px;
  padding: 12px 14px;
  border-top-left-radius: 2px;
  width: auto;
  max-width: 62px;
}
.typing-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a0a0a0;
  animation: typingDot 1s infinite ease-in-out;
}
.typing-dot:nth-child(2) { animation-delay: 0.15s; }
.typing-dot:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* Barra de input do WhatsApp (estética) */
.chat-input-mock {
  background: #F0F0F0;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.chat-input-placeholder {
  flex: 1;
  background: #fff;
  border-radius: 24px;
  padding: 9px 14px;
  color: #999;
  font-size: 0.85rem;
}
.chat-send {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #128C7E;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Bullets ao lado */
.demo-bullets { display: flex; flex-direction: column; gap: 24px; }
.demo-bullet {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.demo-bullet-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--sage-soft);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.demo-bullet strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}
.demo-bullet p { color: var(--text-soft); font-size: 0.95rem; margin: 0; }

/* Social-proof section removida (testemunhos fictícios) — v20260505 */

/* ═══════════════════════════════════════════════════════════════════
   GARANTIA (banner após pricing)
   ═══════════════════════════════════════════════════════════════════ */
.guarantee-banner {
  margin: 48px auto 0;
  max-width: 720px;
  background: linear-gradient(135deg, rgba(74, 124, 111, 0.08), rgba(201, 150, 42, 0.08));
  border: 1.5px dashed var(--sage);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.guarantee-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
}
.guarantee-text strong {
  display: block;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 4px;
}
.guarantee-text p {
  color: var(--text-soft);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/* Inline code no FAQ */
.faq-body code {
  background: var(--beige-light);
  padding: 2px 8px;
  border-radius: 6px;
  font-family: 'Menlo', 'Monaco', monospace;
  font-size: 0.85em;
  color: var(--sage-dark);
  border: 1px solid var(--border);
}

/* ─── Responsive — novas seções ─────────────────────────────────── */
@media (max-width: 900px) {
  .demo-wrap { grid-template-columns: 1fr; gap: 40px; }
  .phone-mock { max-width: 300px; }
  .benefits-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; gap: 16px; }
}

@media (max-width: 640px) {
  .guarantee-banner { flex-direction: column; text-align: center; }
  .phone-screen { height: 500px; }
  .demo-bullets { gap: 20px; }
}

/* ─── Reveal animations ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }

/* Safety net: se o JS falhar ou demorar, o usuário ainda vê o conteúdo
   após 2s. Evita tela aparentemente vazia quando IntersectionObserver
   trava ou o script não carrega. */
@keyframes reveal-fallback {
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  animation: reveal-fallback 0.01s 2.5s forwards;
}
.reveal.is-visible { animation: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; animation: none; }
  html { scroll-behavior: auto; }
}


/* ─── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { gap: 32px; }
  .nav-links { gap: 0; }
  .nav-links a { font-size: 0.85rem; padding: 6px 8px; }
}

@media (max-width: 768px) {
  body { padding-bottom: 80px; }
  .section { padding: 56px 0; }

  .nav-links, .nav-actions { display: none; }
  .nav-mobile-toggle { display: flex; }

  .navbar.menu-open .nav-links {
    display: flex;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--beige);
    padding: 8px 20px 0;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .navbar.menu-open .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }
  .navbar.menu-open .nav-links a:last-child { border-bottom: none; }

  .navbar.menu-open .nav-actions {
    display: flex;
    position: absolute;
    top: calc(var(--nav-h) + 232px);
    left: 0; right: 0;
    flex-direction: column;
    gap: 10px;
    padding: 16px 20px 20px;
    background: var(--beige);
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .navbar.menu-open .nav-actions .btn {
    width: 100%;
    text-align: center;
    padding: 13px;
    font-size: 0.95rem;
  }

  .hero { padding: 48px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 2; }
  .hero-mascote { order: 1; }
  .hero-mascote img { max-width: 260px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }

  .plans-grid { grid-template-columns: 1fr; max-width: 440px; }
  .plan-badge-img { top: -30px; right: 16px; width: 60px; height: 60px; }

  .footer-inner { flex-direction: column; gap: 24px; }

  .mobile-cta { display: block; }

  .modal-content { padding: 24px 20px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  .hero-badge { font-size: 0.78rem; }
  .btn { font-size: 0.92rem; padding: 13px 20px; min-height: 44px; }
  .btn-sm { padding: 10px 14px; min-height: 40px; }
  .price-amount { font-size: 3rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   POLISH v2 — EDITORIAL SLOW ATLAS
   Atmosphere + typographic hierarchy + micro-motion
   Append-only; nothing above is removed.
   ═══════════════════════════════════════════════════════════════════ */

/* ── Token extensions ────────────────────────────────────────────── */
:root {
  --shadow-warm-sm: 0 1px 2px rgba(92, 74, 62, 0.06), 0 2px 8px rgba(92, 74, 62, 0.04);
  --shadow-warm:    0 2px 4px rgba(92, 74, 62, 0.06), 0 8px 24px rgba(92, 74, 62, 0.08), 0 1px 0 rgba(255, 255, 255, 0.6) inset;
  --shadow-warm-md: 0 4px 8px rgba(92, 74, 62, 0.08), 0 16px 40px rgba(92, 74, 62, 0.10), 0 1px 0 rgba(255, 255, 255, 0.65) inset;
  --shadow-warm-lg: 0 8px 16px rgba(92, 74, 62, 0.10), 0 28px 60px rgba(92, 74, 62, 0.14), 0 1px 0 rgba(255, 255, 255, 0.7) inset;
  --ease-out-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Paper grain overlay (global, very subtle) ──────────────────── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.17 0 0 0 0 0.10 0 0 0 0 0.05 0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}
@media (prefers-reduced-motion: reduce) { body::before { opacity: 0.2; } }

/* ── Editorial eyebrow (label above h2) ─────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.eyebrow-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--gold);
  font-size: 0.92rem;
  position: relative;
  padding-right: 12px;
}
.eyebrow-mark::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: var(--border);
}

/* ── Serif italic accent (for display headings) ─────────────────── */
.serif-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--sage-dark);
  padding: 0 0.04em;
}

/* ── Hero upgrades ──────────────────────────────────────────────── */
.hero { padding: 100px 0 120px; }

.hero-bg {
  /* richer atmosphere + subtle dot field bottom-left */
  background:
    radial-gradient(circle at 12% 18%, rgba(123, 170, 156, 0.32), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(201, 150, 42, 0.20), transparent 22%),
    radial-gradient(circle at 78% 70%, rgba(74, 124, 111, 0.14), transparent 28%),
    radial-gradient(ellipse at 50% 100%, rgba(232, 223, 201, 0.4), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(245, 239, 230, 0.0) 55%);
}

.hero-bg::after {
  /* Move existing white blur blobs into decorative layer + add dotted grid */
  background-image:
    radial-gradient(rgba(47, 90, 80, 0.12) 1px, transparent 1.2px),
    radial-gradient(rgba(47, 90, 80, 0.12) 1px, transparent 1.2px);
  background-size: 22px 22px, 22px 22px;
  background-position: 0 0, 11px 11px;
  background-color: transparent !important;
  filter: none;
  opacity: 0.4;
  width: 280px;
  height: 280px;
  right: auto;
  left: 2%;
  bottom: 6%;
  border-radius: 0;
  mask-image: radial-gradient(circle, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle, #000 0%, transparent 75%);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-eyebrow-rule {
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  padding: 8px 16px 8px 12px;
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid rgba(201, 150, 42, 0.35);
  box-shadow: var(--shadow-warm-sm);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-badge strong { font-weight: 700; color: var(--sage-dark); }
.hero-badge-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(201, 150, 42, 0.5);
  animation: pulse-dot 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 150, 42, 0.5); }
  50%      { box-shadow: 0 0 0 8px rgba(201, 150, 42, 0); }
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  letter-spacing: -0.025em;
  line-height: 1.06;
}

.hero-sub { font-size: 1.2rem; line-height: 1.55; }

.btn-arrow { transition: transform 0.25s var(--ease-out-smooth); display: inline-block; }
.btn-ghost:hover .btn-arrow { transform: translateX(4px); }
.btn-primary { box-shadow: 0 6px 20px rgba(47, 90, 80, 0.18), 0 1px 0 rgba(255, 255, 255, 0.2) inset; }
.btn-primary:hover { box-shadow: 0 12px 32px rgba(47, 90, 80, 0.28), 0 1px 0 rgba(255, 255, 255, 0.25) inset; }

.hero-mascote img {
  animation: mascot-float 6s ease-in-out infinite;
  filter: drop-shadow(0 24px 36px rgba(44, 26, 14, 0.14)) drop-shadow(0 8px 12px rgba(44, 26, 14, 0.08));
}
@keyframes mascot-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-mascote img { animation: none; }
}

/* ── Staggered hero entrance ─────────────────────────────────────── */
.hero-copy > * {
  animation: hero-in 0.9s var(--ease-out-smooth) both;
}
.hero-copy > .hero-eyebrow { animation-delay: 0.05s; }
.hero-copy > .hero-badge   { animation-delay: 0.18s; }
.hero-copy > h1            { animation-delay: 0.30s; }
.hero-copy > .hero-sub     { animation-delay: 0.44s; }
.hero-copy > .hero-ctas    { animation-delay: 0.58s; }
.hero-copy > .hero-trust   { animation-delay: 0.72s; }
@keyframes hero-in {
  from { opacity: 0; transform: translateY(14px); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-copy > * { animation: none; }
}

/* ── Section headers alignment refinement ───────────────────────── */
.section-header { max-width: 720px; margin-bottom: 56px; }
.section-header .eyebrow { justify-content: center; }
.section-header h2 { font-size: clamp(2rem, 4.3vw, 2.9rem); letter-spacing: -0.02em; }
.section-header p { font-size: 1.1rem; color: var(--text-soft); max-width: 560px; margin: 0 auto; }

/* ── Ornamental rule (sage hairline with gold dot) ───────────────── */
.section::before {
  content: "";
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, var(--border));
  margin: -36px auto 48px;
}

/* Steps/features/testimonials removidos — v20260505 */

/* ── Pricing founder: softer seal rotation + glow ──────────────── */
.plan-founder {
  background:
    radial-gradient(ellipse at top right, rgba(201, 150, 42, 0.05), transparent 50%),
    var(--white);
  box-shadow: var(--shadow-warm-md), 0 0 0 1px var(--sage);
}
.plan-founder-seal {
  transform: rotate(-6deg);
  transition: transform 0.4s var(--ease-out-smooth);
}
.plan-founder:hover .plan-founder-seal {
  transform: rotate(-3deg) scale(1.04);
}
.plan-price { align-items: baseline; }
.price-amount { letter-spacing: -0.04em; }

/* ── FAQ: subtle tick mark animation on open ───────────────────── */
.faq-item summary {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
}
.faq-item[open] summary {
  color: var(--sage-dark);
}
.faq-item[open] {
  box-shadow: var(--shadow-warm), 0 0 0 1px rgba(74, 124, 111, 0.15);
  border-color: transparent;
}
.faq-item summary::after { font-family: var(--font-display); font-weight: 400; }

/* powered-by refinement removed — v20260505 */

/* ── Navbar: tighter borders, subtle shadow on scroll feel ──────── */
.navbar {
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 0 rgba(44, 26, 14, 0.06), 0 4px 24px rgba(44, 26, 14, 0.03);
}
.logo {
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo::after {
  content: ".";
  color: var(--gold);
  -webkit-text-fill-color: var(--gold);
}

/* ── Footer: warm elevation ────────────────────────────────────── */
.site-footer {
  background:
    radial-gradient(ellipse at 85% 0%, rgba(201, 150, 42, 0.10), transparent 55%),
    var(--sage-dark);
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.4;
}
.footer-mascot {
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.25));
}

/* ── Mobile adjustments for polish ──────────────────────────────── */
@media (max-width: 768px) {
  .eyebrow { font-size: 0.66rem; letter-spacing: 0.18em; }
  .hero-eyebrow { justify-content: center; }
  .hero-badge { font-size: 0.76rem; padding: 6px 14px 6px 10px; }
  h1 { letter-spacing: -0.02em; }
}
@media (max-width: 480px) {
  .section-header { margin-bottom: 40px; }
  .section::before { height: 24px; margin: -24px auto 32px; }
}

/* ═══════════════════════════════════════════════════════════════════
   Conversion pass v3 — hero assurance, trust row, marquee ticker,
   plano subordinado, mobile CTA safe zone.
   ═══════════════════════════════════════════════════════════════════ */

/* ── Hero: linha de segurança junto ao CTA (risk-reversal) ─────── */
.hero-assurance {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: -8px 0 20px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-soft);
  letter-spacing: 0.005em;
}
.hero-assurance-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 3px rgba(74, 124, 111, 0.18);
  flex-shrink: 0;
}

/* ── Hero: trust-row editorial (hair-line divisores dourados) ──── */
.trust-row {
  list-style: none;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 14px 0 0;
  padding: 10px 0 0;
  border-top: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.trust-row li {
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  position: relative;
}
.trust-row li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.8;
}
.trust-row li:first-child { padding-left: 0; }
.trust-row li:last-child { padding-right: 0; }

@media (max-width: 640px) {
  .hero-assurance { justify-content: center; margin: -4px auto 16px; }
  .trust-row { justify-content: center; font-size: 0.66rem; letter-spacing: 0.16em; }
  .trust-row li { padding: 0 12px; }
}

/* Marquee ticker removido — v20260505 */

/* ── Plano Regular subordinado (callout horizontal, não card par) ─ */
.plan-subordinate {
  max-width: 820px;
  margin: 36px auto 0;
  position: relative;
  padding: 22px 28px 22px 128px;
  background: var(--beige-light);
  border: 1px dashed rgba(44, 26, 14, 0.18);
  border-radius: var(--r);
  box-shadow: none;
}
.plan-subordinate-mark {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.6);
  line-height: 1.2;
  text-align: center;
  width: 92px;
}
.plan-subordinate-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.plan-subordinate-copy { flex: 1 1 320px; min-width: 0; }
.plan-subordinate-copy h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.plan-subordinate-copy .price-inline {
  font-family: var(--font-display);
  color: var(--text-soft);
  font-weight: 500;
  font-size: 0.98rem;
}
.plan-subordinate-copy p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}
.plan-subordinate-copy strong { color: var(--sage-dark); font-weight: 600; }

@media (max-width: 640px) {
  .plan-subordinate {
    padding: 72px 20px 20px;
    margin-top: 28px;
  }
  .plan-subordinate-mark {
    top: 16px;
    left: 20px;
    transform: none;
  }
  .plan-subordinate-body { justify-content: flex-start; }
  .plan-subordinate-copy h3 { font-size: 1.02rem; }
}

/* ── Plan assurance (risk-reversal dentro do card Fundador) ─────── */
.plan-assurance {
  margin: 12px 0 4px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-soft);
  letter-spacing: 0.005em;
}

/* ── Vagas counter: estados de urgência ────────────────────────── */
.plan-footnote.is-warning #founder-slots strong { color: var(--gold-light); }
.plan-footnote.is-urgent {
  color: #B5451B;
  animation: pulse-urgent 2.4s ease-in-out infinite;
}
.plan-footnote.is-urgent strong { color: #B5451B; }
@keyframes pulse-urgent {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.72; }
}
@media (prefers-reduced-motion: reduce) {
  .plan-footnote.is-urgent { animation: none; }
}

/* ── Mobile sticky CTA: safe padding e refino ─────────────────── */
@media (max-width: 640px) {
  body { padding-bottom: 84px; }
  .mobile-cta {
    bottom: max(12px, env(safe-area-inset-bottom, 12px));
    padding: 13px 16px;
    font-size: 0.92rem;
    letter-spacing: 0.005em;
    box-shadow:
      0 10px 28px rgba(44, 26, 14, 0.22),
      0 2px 6px rgba(44, 26, 14, 0.14);
  }
}

/* ── Consent banner (LGPD) ──────────────────────────────────────── */
.consent-banner {
  position: fixed;
  z-index: 1100;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  background: var(--beige-light);
  color: var(--text);
  border: 1px solid rgba(44, 26, 14, 0.12);
  border-radius: var(--r);
  box-shadow:
    0 24px 48px rgba(44, 26, 14, 0.18),
    0 6px 14px rgba(44, 26, 14, 0.08);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.32s var(--ease-out-smooth, cubic-bezier(0.22, 1, 0.36, 1)),
              transform 0.32s var(--ease-out-smooth, cubic-bezier(0.22, 1, 0.36, 1));
}
.consent-banner.is-visible { opacity: 1; transform: translateY(0); }
.consent-banner.is-leaving { opacity: 0; transform: translateY(12px); }
.consent-banner::before {
  /* hair-line dourada editorial no topo */
  content: "";
  position: absolute;
  top: -1px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.55;
  border-radius: 2px;
}
.consent-banner-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  flex-wrap: wrap;
}
.consent-banner-copy { flex: 1 1 280px; min-width: 0; }
.consent-banner-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.consent-banner-body {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-soft);
  margin: 0;
}
.consent-banner-body a {
  color: var(--sage-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
.consent-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
@media (max-width: 520px) {
  .consent-banner { left: 12px; right: 12px; bottom: 12px; }
  .consent-banner-inner { padding: 16px 16px 18px; gap: 14px; }
  .consent-banner-actions { width: 100%; }
  .consent-banner-actions .btn { flex: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .consent-banner { transition: opacity 0.2s; transform: none; }
  .consent-banner.is-visible, .consent-banner.is-leaving { transform: none; }
}
