/* ==========================================================================
   DESIGN TOKENS - Site <brand_name> Seguros e Consórcios
   ========================================================================== */

:root {
  /* ========== CORES PRIMÁRIAS ========== */
  --color-primary-900: #0A1628;
  --color-primary-700: #1E3A5F;
  --color-primary-500: #2D5A8A;
  --color-primary-300: #5B8DB8;
  --color-primary-100: #E8EEF4;

  /* ========== CORES SECUNDÁRIAS ========== */
  --color-secondary-500: #B8860B;
  --color-secondary-300: #D4A94D;

  /* ========== CORES NEUTRAS ========== */
  --color-neutral-900: #111827;
  --color-neutral-700: #374151;
  --color-neutral-500: #6B7280;
  --color-neutral-300: #D1D5DB;
  --color-neutral-100: #F3F4F6;
  --color-neutral-50: #F9FAFB;
  --color-white: #FFFFFF;

  /* ========== CORES SEMÂNTICAS ========== */
  --color-success: #059669;
  --color-error: #DC2626;
  --color-warning: #D97706;

  /* ========== OVERLAYS ========== */
  --color-overlay-light: rgba(255, 255, 255, 0.95);
  --color-overlay-dark: rgba(10, 22, 40, 0.85);

  /* ========== TIPOGRAFIA ========== */
  --font-heading: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', 'Roboto', system-ui, -apple-system, sans-serif;

  /* Scale */
  --text-display: 3.5rem;
  --text-h1: 2.5rem;
  --text-h2: 2rem;
  --text-h3: 1.5rem;
  --text-h4: 1.25rem;
  --text-body-lg: 1.125rem;
  --text-body: 1rem;
  --text-small: 0.875rem;
  --text-caption: 0.75rem;

  /* Weights */
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* Line heights */
  --leading-tight: 1.2;
  --leading-normal: 1.5;
  --leading-relaxed: 1.75;

  /* Letter spacing */
  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.02em;

  /* ========== ESPAÇAMENTOS ========== */
  --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;

  /* ========== BORDER RADIUS ========== */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* ========== SHADOWS ========== */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-dropdown: 0 10px 40px rgba(0, 0, 0, 0.12);

  /* ========== TRANSIÇÕES ========== */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 400ms ease;

  /* ========== GRID ========== */
  --container-max: 1280px;
  --container-padding: var(--space-6);
  --grid-columns: 12;
  --grid-gutter: var(--space-6);
}

/* ========== BREAKPOINTS (para referência) ========== */
/* 
  --bp-sm: 640px;
  --bp-md: 768px;
  --bp-lg: 1024px;
  --bp-xl: 1280px;
*/
