/* ================================================================
   Baby's Plan — Landing Page V2
   Design: Copiloto de Jornada — Premium, Mobile First, Narrativo
   Referências de qualidade: Apple, Notion, Linear, Stripe, Calm
   Ver docs/ux/LANDING_V2_ARCHITECTURE.md e LANDING_V2_BRAND_STRATEGY.md
   ================================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:      #FFFFFF;
  --bg:         #FAFAF8;
  --bg-subtle:  #F0FDFA;
  --border:     #EEEDF0;
  --text:       #243447;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --teal:       #4FB6AC;
  --teal-dark:  #3D9E95;
  --coral:      #F28C82;
  --coral-dark: #E0726A;
  --violet:     #7C3AED;
  --violet-light: #EDE9FE;
  --violet-mid: #8B5CF6;
  --pink:       #EC4899;
  --gradient:   linear-gradient(135deg, #4FB6AC 0%, #F28C82 100%);
  --shadow-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,.07), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg:  0 20px 48px rgba(0,0,0,.10), 0 6px 16px rgba(0,0,0,.06);
  --radius:     16px;
  --radius-sm:  10px;
  --radius-lg:  24px;
  --transition: 0.2s ease;
  --max-w:      1200px;
  --section-py: 52px;    /* mobile-first: escala para 96px em telas ≥1024px */
  --section-py-lg: 96px;

  /* Motion tokens */
  --ease-out:    cubic-bezier(.16,1,.3,1);
  --ease-in-out: cubic-bezier(.65,0,.35,1);
  --motion-fast: 0.18s;
  --motion-base: 0.4s;
  --motion-slow: 0.9s;
  --reveal-distance: 18px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, p { overflow-wrap: break-word; word-break: break-word; }

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

/* ── Foco visível (acessibilidade) ───────────────────────────
   Todo elemento interativo recebe um anel de foco visível e
   consistente ao navegar via teclado — WCAG 2.4.7. */
a:focus-visible,
button:focus-visible,
.wow-badge:focus-visible,
.faq-question:focus-visible,
input:focus-visible {
  outline: 2.5px solid var(--violet);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Redução de movimento ─────────────────────────────────────
   Desativa toda animação de entrada, o "desenho" da trilha da
   Jornada, a digitação simulada do chat e qualquer pulse em
   loop. Obrigatório — WCAG 2.3.3. Elementos aparecem no estado
   final, sem transição. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .journey-path-line { stroke-dashoffset: 0 !important; }
  .sync-pulse { animation: none !important; }
  .motor-mech[data-state] .motor-step { opacity: 1 !important; }
}

/* ── Typography ───────────────────────────────────────────── */
.display-1 { font-size: clamp(2.25rem, 6vw, 4rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; font-family: 'Manrope', 'Inter', system-ui, sans-serif; }
.display-2 { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.025em; font-family: 'Manrope', 'Inter', system-ui, sans-serif; }
.h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; font-family: 'Manrope', 'Inter', system-ui, sans-serif; }
.h3 { font-size: 1.25rem; font-weight: 600; line-height: 1.3; }
.subtitle { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text-muted); line-height: 1.7; }
.eyebrow { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--violet); }

/* ── Layout ───────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-py) 0; }
.section-sm { padding: 36px 0; }
.text-center { text-align: center; }

/* ── Icon system (sprite SVG, substitui todo emoji) ─────────
   O sprite <symbol> fica oculto no topo do <body> e cada ícone
   é referenciado via <svg class="icon"><use href="#icon-x"/></svg> */
.icon-sprite { display: none; }
.icon { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.icon-sm { width: 18px; height: 18px; }
.icon-lg { width: 32px; height: 32px; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 0.9375rem; font-weight: 600; padding: 14px 28px;
  border-radius: var(--radius-sm); transition: transform var(--motion-fast) var(--ease-out), box-shadow var(--motion-fast) var(--ease-out), opacity var(--motion-fast) var(--ease-out), border-color var(--motion-fast) var(--ease-out), color var(--motion-fast) var(--ease-out);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--teal); color: var(--white);
  box-shadow: 0 4px 14px rgba(79,182,172,.35);
}
.btn-primary:hover { opacity: .9; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(79,182,172,.4); }
.btn-ghost {
  color: var(--text-muted); background: transparent;
  border: 1.5px solid var(--border); padding: 12px 24px;
}
.btn-ghost:hover { border-color: var(--violet); color: var(--violet); }
.btn-lg { font-size: 1.0625rem; padding: 16px 36px; border-radius: 14px; }
.btn-sm { font-size: 0.875rem; padding: 10px 20px; }

/* ── Navbar ───────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 252, 251, 0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 32px;
}
.navbar-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.navbar-logo-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.navbar-logo-icon img { width: 36px; height: 36px; object-fit: contain; }
.navbar-logo-name { font-size: 1rem; font-weight: 700; font-family: 'Manrope', 'Inter', system-ui, sans-serif; color: var(--teal); }
.navbar-logo-name span { color: var(--coral); }
.navbar-links { display: none; }
.navbar-links a {
  font-size: 0.875rem; font-weight: 500; color: var(--text-muted);
  transition: color var(--transition); padding: 4px 0;
}
.navbar-links a:hover { color: var(--text); }
.navbar-cta { display: flex; align-items: center; gap: 12px; }
.navbar-menu-btn {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; color: var(--text-muted);
}

/* ── Scroll reveal (genérico, usado por toda a página) ────────
   IntersectionObserver em js/main.js adiciona .is-visible 1x.
   Sem loop, sem lib externa. */
[data-reveal] {
  opacity: 0;
  transform: translateY(var(--reveal-distance));
  transition: opacity var(--motion-base) var(--ease-out), transform var(--motion-base) var(--ease-out);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 48px 0 40px;
  background: linear-gradient(180deg, var(--bg-subtle) 0%, var(--bg) 65%);
  overflow: hidden;
}
/* Camada de fundo: trilha da jornada em baixo contraste, desenhada 1x na entrada */
.hero-timeline-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0; opacity: .5;
}
.hero-timeline-bg .journey-path-line {
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  transition: stroke-dashoffset 1.6s var(--ease-out);
}
.hero-timeline-bg.is-visible .journey-path-line { stroke-dashoffset: 0; }
.hero-content, .hero-mockup { position: relative; z-index: 1; }
.hero-content { max-width: 640px; margin: 0 auto; text-align: center; }
.hero-headline { margin-bottom: 14px; }
.hero-headline em { font-style: normal; color: var(--violet); }
.hero-sub { max-width: 520px; margin: 0 auto 24px; }
.hero-sub strong { color: var(--text); font-weight: 700; }
.hero-actions { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-bottom: 14px; }
.hero-note { font-size: 0.8125rem; color: var(--text-light); margin-bottom: 32px; }

/* Bloco de prova = Momento WOW embutido no Hero (não depois dele) */
.hero-mockup { max-width: 960px; margin: 0 auto; }
.wow-panel {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.wow-panel-top {
  display: grid; grid-template-columns: 1fr; gap: 0;
}
.wow-mockup-frame { position: relative; }
.mockup-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wow-prompt {
  padding: 20px 20px 18px; border-bottom: 1px solid var(--border);
  text-align: center;
}
.wow-prompt-title { font-size: 0.9375rem; font-weight: 700; margin-bottom: 4px; }
.wow-prompt-sub { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 14px; }
.wow-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.wow-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-subtle); border: 1.5px solid var(--border);
  border-radius: 100px; padding: 10px 18px;
  font-size: 0.875rem; font-weight: 600; color: var(--text);
  transition: border-color var(--motion-fast) var(--ease-out), background var(--motion-fast) var(--ease-out), transform var(--motion-fast) var(--ease-out);
}
.wow-badge:hover { border-color: var(--violet); transform: translateY(-1px); }
.wow-badge[aria-pressed="true"] {
  background: var(--violet); border-color: var(--violet); color: var(--white);
}
.wow-badge .icon { width: 18px; height: 18px; }

.wow-result {
  padding: 18px 20px 22px;
  background: linear-gradient(180deg, var(--bg-subtle) 0%, var(--white) 100%);
}
.wow-result-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.wow-result-header .icon { color: var(--violet); }
.wow-result-title { font-size: 0.9375rem; font-weight: 700; }
.wow-path-svg { width: 100%; height: auto; margin-bottom: 18px; }
.wow-path-svg .journey-path-line {
  stroke-dasharray: 620; stroke-dashoffset: 620;
  transition: stroke-dashoffset 1.1s var(--ease-out);
}
.wow-path-svg.is-drawn .journey-path-line { stroke-dashoffset: 0; }
.wow-milestones { display: grid; gap: 10px; }
.wow-milestone {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 12px 14px;
  opacity: 0; transform: translateY(8px);
  transition: opacity var(--motion-base) var(--ease-out), transform var(--motion-base) var(--ease-out);
}
.wow-milestone.is-shown { opacity: 1; transform: none; }
.wow-milestone-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--teal);
  margin-top: 6px; flex-shrink: 0;
}
.wow-milestone-week { font-size: 0.75rem; font-weight: 700; color: var(--teal-dark); display: block; margin-bottom: 2px; }
.wow-milestone-text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.5; }
.wow-empty-state { text-align: center; padding: 24px 12px; color: var(--text-light); font-size: 0.875rem; }

/* ── Problema ─────────────────────────────────────────────── */
.pain-grid {
  display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 32px;
}
.pain-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 20px; text-align: center;
}
.pain-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-subtle); color: var(--coral-dark);
  margin: 0 auto 12px;
}
.pain-title { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.pain-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.5; }

/* ── Motor da Jornada ─────────────────────────────────────── */
.motor-section { background: var(--bg-subtle); overflow: hidden; }
.motor-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; margin-top: 32px; }
.motor-copy .h3 { margin-bottom: 10px; }
.motor-copy p { color: var(--text-muted); margin-bottom: 12px; line-height: 1.6; }
.motor-mech {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 20px;
  box-shadow: var(--shadow-md);
}
.motor-steps { display: grid; grid-template-columns: 1fr; gap: 0; position: relative; }
.motor-step {
  display: flex; align-items: center; gap: 14px; padding: 12px 0;
  opacity: .35; transition: opacity var(--motion-base) var(--ease-out);
}
.motor-mech[data-state="entrada"] .motor-step[data-step="entrada"],
.motor-mech[data-state="processamento"] .motor-step[data-step="entrada"],
.motor-mech[data-state="processamento"] .motor-step[data-step="processamento"],
.motor-mech[data-state="adaptacao"] .motor-step[data-step="entrada"],
.motor-mech[data-state="adaptacao"] .motor-step[data-step="processamento"],
.motor-mech[data-state="adaptacao"] .motor-step[data-step="adaptacao"],
.motor-mech[data-state="resultado"] .motor-step { opacity: 1; }
.motor-step-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--violet-light); color: var(--violet);
}
.motor-step-title { font-size: 0.9375rem; font-weight: 700; margin-bottom: 2px; }
.motor-step-desc { font-size: 0.8125rem; color: var(--text-muted); }
.motor-step-connector {
  width: 2px; height: 14px; background: var(--border); margin-left: 21px;
}

/* ── Como funciona (mantido, ícones trocados) ─────────────── */
.steps-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 2px; margin-top: 36px;
}
.step-card {
  background: var(--white); padding: 24px 22px;
  border: 1px solid var(--border); border-radius: 0;
  position: relative; overflow: hidden;
}
.step-card:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.step-card:last-child { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.step-number {
  font-size: 0.75rem; font-weight: 700; color: var(--violet);
  background: var(--violet-light); border-radius: 6px;
  padding: 4px 10px; display: inline-block; margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.step-icon {
  width: 36px; height: 36px; border-radius: 10px; margin-bottom: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-subtle); color: var(--teal-dark);
}
.step-title { font-size: 1.0625rem; font-weight: 700; margin-bottom: 6px; }
.step-desc { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.55; }

/* ── Guia de Jornada (IA / Copiloto) ──────────────────────── */
.guide-section { overflow: hidden; }
.guide-grid { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; margin-top: 32px; }
.guide-lead {
  font-size: 1.0625rem; color: var(--text); line-height: 1.55;
  font-family: 'Manrope', 'Inter', system-ui, sans-serif; font-weight: 600;
}
.guide-disclaimer {
  display: flex; gap: 8px; align-items: flex-start;
  background: var(--violet-light); border-radius: var(--radius-sm);
  padding: 12px 14px; margin-top: 16px;
  font-size: 0.8125rem; color: var(--violet);
}
.guide-disclaimer .icon { flex-shrink: 0; margin-top: 1px; }

.chat-mockup {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.chat-mockup-header {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  background: var(--bg-subtle);
}
.chat-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--violet-mid));
  display: flex; align-items: center; justify-content: center; color: var(--white);
}
.chat-mockup-name { font-size: 0.875rem; font-weight: 700; }
.chat-mockup-status { font-size: 0.75rem; color: var(--text-light); }
.chat-body { padding: 16px; display: grid; gap: 12px; min-height: 180px; }
.chat-bubble {
  max-width: 88%; padding: 12px 16px; border-radius: 16px;
  font-size: 0.875rem; line-height: 1.55;
}
.chat-bubble-user {
  align-self: flex-end; background: var(--teal); color: var(--white);
  border-bottom-right-radius: 4px; margin-left: auto;
}
.chat-bubble-ai {
  background: var(--bg-subtle); color: var(--text);
  border-bottom-left-radius: 4px;
  opacity: 0; transition: opacity var(--motion-fast) linear;
}
.chat-bubble-ai.is-typed { opacity: 1; }
.chat-typing-dots { display: inline-flex; gap: 4px; }
.chat-typing-dots span {
  width: 6px; height: 6px; border-radius: 50%; background: var(--text-light);
  animation: chat-typing 1s infinite ease-in-out;
}
.chat-typing-dots span:nth-child(2) { animation-delay: .15s; }
.chat-typing-dots span:nth-child(3) { animation-delay: .3s; }
@keyframes chat-typing { 0%, 60%, 100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-2px); } }

/* ── Plataforma Completa ─────────────────────────────────────
   Um único cartão-moldura (.platform-frame) une as 4 categorias
   com divisores internos sutis, em vez de 4 cards separados —
   reduz a sensação de catálogo/grade de features. */
.platform-section { background: var(--bg-subtle); }
.platform-frame {
  margin-top: 32px;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.platform-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1px; background: var(--border);
}
.platform-card { background: var(--white); }
.platform-card-head {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 20px 0;
}
.platform-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--violet-light); color: var(--violet); flex-shrink: 0;
}
.platform-card-title { font-size: 0.9375rem; font-weight: 700; }
.platform-items { padding: 12px 20px 18px; display: grid; gap: 5px; }
.platform-item { font-size: 0.875rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.platform-item .icon { width: 14px; height: 14px; color: var(--teal-dark); }

/* ── Enxoval ──────────────────────────────────────────────── */
.layette-section { overflow: hidden; }
.layette-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 32px; }
.layette-block {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px 20px;
}
.layette-block-title { display: flex; align-items: center; gap: 10px; font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.layette-block-title .icon { color: var(--coral-dark); }
.layette-block p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.55; margin-bottom: 8px; }
.layette-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.layette-tag {
  font-size: 0.75rem; font-weight: 600; color: var(--teal-dark);
  background: var(--bg-subtle); border-radius: 100px; padding: 6px 12px;
}
.layette-gift-note {
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--bg-subtle); border-radius: var(--radius-sm);
  padding: 12px 14px; margin-top: 12px; font-size: 0.8125rem; color: var(--text-muted);
}
.layette-gift-note .icon { color: var(--coral-dark); flex-shrink: 0; margin-top: 1px; }

/* ── Memórias (o ponto emocional mais forte da Landing) ────── */
.memories-section {
  background: linear-gradient(180deg, var(--bg) 0%, #FFF7F5 100%);
  overflow: hidden;
}
.memories-grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 32px; }
.memory-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 20px; text-align: center;
}
.memory-icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--coral), var(--pink));
  color: var(--white); margin: 0 auto 12px;
  box-shadow: 0 6px 16px rgba(242,140,130,.35);
}
.memory-icon .icon { width: 26px; height: 26px; }
.memory-title { font-size: 0.9375rem; font-weight: 700; margin-bottom: 4px; }
.memory-desc { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.5; }
.memories-line {
  text-align: center; margin-top: 28px; font-size: 1.125rem;
  font-weight: 600; color: var(--text); font-family: 'Manrope', sans-serif;
}
.memories-line span { color: var(--coral-dark); }

/* ── Sync section ─────────────────────────────────────────── */
.sync-section { background: var(--text); color: var(--white); overflow: hidden; }
.sync-section .subtitle { color: rgba(255,255,255,.6); }
.sync-section .eyebrow { color: #C4B5FD; }
.sync-badges {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 24px;
}
.sync-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 100px; padding: 9px 16px;
  font-size: 0.875rem; font-weight: 500;
}
.sync-badge .icon { width: 16px; height: 16px; }
.sync-visual {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 28px;
  text-align: center; margin-top: 28px;
}
.sync-avatars { display: flex; justify-content: center; align-items: center; gap: 0; margin-bottom: 20px; }
.sync-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  border: 3px solid var(--text);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  background: var(--gradient);
}
.sync-connect-line {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-bottom: 20px;
}
.sync-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--violet-mid); }
.sync-line { flex: 1; max-width: 80px; height: 2px; background: rgba(124,58,237,.5); }
.sync-status {
  font-size: 0.8125rem; color: rgba(255,255,255,.5);
  font-weight: 500;
}
.sync-pulse {
  display: inline-block; width: 8px; height: 8px;
  border-radius: 50%; background: #22c55e;
  margin-right: 6px;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.85); }
}

/* ── Prova Social ─────────────────────────────────────────── */
.proof-section { background: var(--bg-subtle); }
.proof-grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 32px; }
.proof-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 18px;
  display: flex; gap: 14px; align-items: flex-start;
}
.proof-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--white); color: var(--teal-dark);
  border: 1px solid var(--border);
}
.proof-title { font-size: 0.9375rem; font-weight: 700; margin-bottom: 4px; }
.proof-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-groups { margin-top: 32px; max-width: 720px; margin-left: auto; margin-right: auto; }
.faq-group { margin-bottom: 20px; }
.faq-group-title {
  font-size: 0.8125rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: var(--text-light); margin-bottom: 4px;
}
.faq-list { }
.faq-item {
  border-bottom: 1px solid var(--border); padding: 18px 0;
}
.faq-group:first-child .faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  display: flex; width: 100%; justify-content: space-between; align-items: center;
  cursor: pointer; gap: 16px; text-align: left;
}
.faq-q { font-size: 0.9375rem; font-weight: 600; }
.faq-toggle {
  flex-shrink: 0; width: 28px; height: 28px;
  border-radius: 50%; background: var(--bg-subtle);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--text-muted);
  transition: background var(--transition), transform var(--transition);
}
.faq-item.open .faq-toggle { background: var(--violet-light); color: var(--violet); transform: rotate(45deg); }
.faq-answer { display: none; padding-top: 12px; }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.7; }

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #4C1D95 0%, #7C3AED 50%, #BE185D 100%);
  color: var(--white); text-align: center; padding: 56px 0;
}
.cta-section .display-2 { color: var(--white); }
.cta-section .subtitle { color: rgba(255,255,255,.75); max-width: 480px; margin: 0 auto 24px; }
.btn-white {
  background: var(--white); color: var(--teal); font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.25); }
.cta-note { color: rgba(255,255,255,.55); font-size: 0.8125rem; margin-top: 16px; }

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: var(--text); color: rgba(255,255,255,.5);
  padding: 56px 0 32px;
}
.footer-top {
  display: flex; flex-direction: column; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand { flex-shrink: 0; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.12); border-radius: 8px; padding: 3px;
}
.footer-logo-icon img { width: 26px; height: 26px; object-fit: contain; }
.footer-logo-name { font-weight: 700; font-family: 'Manrope', 'Inter', system-ui, sans-serif; color: var(--white); font-size: 0.9375rem; }
.footer-tagline { font-size: 0.875rem; line-height: 1.6; max-width: 260px; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.footer-col-title {
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(255,255,255,.7);
  margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 0.875rem; color: rgba(255,255,255,.45);
  margin-bottom: 10px; transition: color var(--transition);
}
.footer-col a:hover { color: rgba(255,255,255,.9); }
.footer-bottom {
  display: flex; flex-direction: column; gap: 12px;
  padding-top: 32px; align-items: center; text-align: center;
}
.footer-copyright { font-size: 0.8125rem; }

/* ── Legal pages ──────────────────────────────────────────── */
.legal-page { max-width: 720px; margin: 0 auto; padding: 64px 24px 96px; }
.legal-page h1 { font-size: 2rem; font-weight: 700; margin-bottom: 8px; }
.legal-meta { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 48px; }
.legal-page h2 { font-size: 1.125rem; font-weight: 700; margin-top: 40px; margin-bottom: 12px; }
.legal-page p { color: var(--text-muted); margin-bottom: 14px; line-height: 1.75; }
.legal-page ul { padding-left: 24px; margin-bottom: 14px; }
.legal-page ul li { color: var(--text-muted); margin-bottom: 8px; line-height: 1.7; list-style: disc; }
.legal-page a { color: var(--violet); text-decoration: underline; }

/* ── Section headers ──────────────────────────────────────── */
.section-header { margin-bottom: 0; }
.section-header .eyebrow { margin-bottom: 10px; }
.section-header .h2 { margin-bottom: 12px; }
.section-header .subtitle { max-width: 560px; }
.section-header.centered { text-align: center; }
.section-header.centered .subtitle { margin-left: auto; margin-right: auto; }

/* ── Mobile menu ──────────────────────────────────────────── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: var(--bg); flex-direction: column;
  padding: 20px 24px; gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 32px;
}
.mobile-menu-close { padding: 8px; color: var(--text-muted); font-size: 1.5rem; }
.mobile-menu-links { flex: 1; }
.mobile-menu-links a {
  display: block; font-size: 1.5rem; font-weight: 700;
  color: var(--text); padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (min-width: 640px) {
  .hero-actions { flex-direction: row; justify-content: center; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step-card { border-radius: 0; }
  .step-card:first-child { border-radius: var(--radius-lg) 0 0 0; }
  .step-card:nth-child(2) { border-radius: 0 var(--radius-lg) 0 0; }
  .step-card:nth-last-child(2) { border-radius: 0 0 0 var(--radius-lg); }
  .step-card:last-child { border-radius: 0 0 var(--radius-lg) 0; }
  .pain-grid { grid-template-columns: repeat(3, 1fr); }
  .platform-grid { grid-template-columns: 1fr 1fr; }
  .layette-grid { grid-template-columns: 1fr 1fr; }
  .memories-grid { grid-template-columns: repeat(3, 1fr); }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .wow-panel-top { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .navbar-links { display: flex; align-items: center; gap: 32px; }
  .navbar-menu-btn { display: none; }
  .footer-top { flex-direction: row; align-items: flex-start; }
  .footer-cols { flex: 1; grid-template-columns: repeat(3, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
  .motor-grid { grid-template-columns: 1fr 1fr; }
  .guide-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .section { padding: var(--section-py-lg) 0; }
  .section-sm { padding: 64px 0; }
  .hero { padding: 84px 0 64px; }
  .cta-section { padding: 80px 0; }
  .platform-grid { grid-template-columns: repeat(4, 1fr); }
  .sync-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .sync-visual { margin-top: 0; }
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .step-card:first-child { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
  .step-card:nth-child(2) { border-radius: 0; }
  .step-card:nth-child(3) { border-radius: 0; }
  .step-card:last-child { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
  .step-card:nth-last-child(2) { border-radius: 0; }
}

/* ── Utilities ────────────────────────────────────────────── */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
