/*
 * Design tokens — custom properties globais
 * Usar estas variáveis em todo o projeto; nunca valores mágicos inline.
 */

:root {
  /* Cores */
  --color-bg: #0f1117;
  --color-surface: #1a1d2e;
  --color-border: #2a2d3e;
  --color-text: #e2e8f0;
  --color-text-muted: #94a3b8;

  --color-green: #22c55e;
  --color-yellow: #eab308;
  --color-red: #ef4444;
  --color-blue: #3b82f6;

  /* Espaçamento */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;

  /* Tipografia */
  --font-sans: ui-sans-serif, system-ui, sans-serif;
  --font-mono: ui-monospace, monospace;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;

  /* Raios */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
}

/* Reset mínimo */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  font-size: var(--text-base);
  line-height: 1.6;
}

/* Placeholder home */
.home {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  gap: var(--space-4);
  text-align: center;
}

.home h1 {
  font-size: var(--text-3xl);
  margin: 0;
}

.home p {
  color: var(--color-text-muted);
  margin: 0;
}
