:root {
  /* Superfícies — preto e cinzas solicitados */
  --bg-primary: #161616;
  --bg-secondary: #1f1f1f;
  --bg-elevated: #252525;
  --bg-card: #1f1f1f;
  --border: #2e2e2e;
  --border-accent: #3a3a3a;

  /* Destaques — azul escuro */
  --accent-primary: #e5e5e5;
  --accent-violet: #a3a3a3;
  --accent-blue: #1e4d7b;
  --accent-blue-hover: #153a5f;
  --accent-blue-light: #2a6594;
  /* alias usado no CSS legado */
  --accent-emerald: var(--accent-blue);
  --accent-emerald-hover: var(--accent-blue-hover);

  /* WhatsApp */
  --whatsapp: #25D366;
  --whatsapp-hover: #20bd5a;
  --whatsapp-dark: #128C7E;

  /* Text */
  --text-primary: #f5f5f5;
  --text-secondary: #a3a3a3;
  --text-muted: #737373;

  /* Typography */
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Layout */
  --container-max: 1200px;
  --header-h: 80px;
  /* Espaço do topo até abaixo da barra flutuante do header (12px + ~68px + respiro) */
  --header-clearance: calc(var(--header-h) + var(--space-4));
  --radius: 4px;
  --radius-sm: 4px;
  --radius-md: 4px;
  --radius-lg: 4px;
  --radius-xl: 4px;

  /* Shadows */
  --shadow-card: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 20px 50px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 60px rgba(255, 255, 255, 0.04);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.2s;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --duration: 0.01ms;
  }
}
