:root {
  /* Brand — azul Contanet (extraído do logo: tema xadrez) */
  --color-brand: #1e4d7b;
  --color-brand-dark: #133a60;
  --color-brand-light: #2c6fab;
  --color-brand-soft: #e3edf6;
  --color-accent: #7cb9d1;

  /* Neutros */
  --color-ink: #0f1b2d;
  --color-ink-muted: #4a5a72;
  --color-muted: #6b7a90;
  --color-bg: #ffffff;
  --color-surface: #f6f9fc;
  --color-surface-2: #eef2f7;
  --color-border: #e1e8f0;
  --color-border-strong: #c5d1e0;

  /* Feedback */
  --color-success: #16a34a;
  --color-whatsapp: #25d366;

  /* Tipografia */
  --font-display: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Escala fluida — usar com clamp() nas tarefas */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;

  /* Espaçamento (escala 4px) */
  --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;
  --space-32: 8rem;

  /* Raios */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Sombras */
  --shadow-xs: 0 1px 2px rgb(15 27 45 / 0.05);
  --shadow-sm: 0 2px 6px rgb(15 27 45 / 0.06);
  --shadow-md: 0 8px 24px rgb(15 27 45 / 0.08);
  --shadow-lg: 0 16px 40px rgb(15 27 45 / 0.12);
  --shadow-brand: 0 8px 24px rgb(30 77 123 / 0.25);

  /* Container */
  --container: 1200px;
  --container-narrow: 880px;

  /* Transições */
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --duration: 240ms;

  /* Header height (referenciado por outros componentes) */
  --header-h: 72px;
}

@media (prefers-color-scheme: dark) {
  /* Mantemos light por padrão; tokens prontos caso ative dark futuramente */
}
