:root {
  /* =========================================
     Color Palette (From Brief)
     ========================================= */
  --logo-black: #111111;      /* casi negro, mejor legibilidad */
  --logo-white: #ffffff;

  /* Paleta corporativa complementaria */
  --primary: #003366;         /* azul marino serio */
  --primary-light: #004d99;
  --primary-dark: #001a33;

  /* Neutros */
  --gray-50: #f7f7f7;
  --gray-200: #e5e5e5;
  --gray-400: #999999;
  --gray-700: #444444;
  --gray-900: #222222;

  /* Accesorios */
  --accent: #d4a017;          /* dorado sutil para CTAs o highlights */
  --success: #2e7d32;
  --error: #c62828;

  /* Semantic Colors */
  --text-main: var(--gray-900);
  --text-muted: var(--gray-700);
  --bg-main: var(--logo-white);
  --bg-light: var(--gray-50);

  /* =========================================
     Typography
     ========================================= */
  --font-main: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-heading: 'Outfit', sans-serif; /* Optional for headings if we load it */

  /* =========================================
     Spacing & Layout
     ========================================= */
  --container-width: 1200px;
  --header-height: 80px;
  --spacing-xs: 0.5rem;   /* 8px */
  --spacing-sm: 1rem;     /* 16px */
  --spacing-md: 2rem;     /* 32px */
  --spacing-lg: 4rem;     /* 64px */
  --spacing-xl: 8rem;     /* 128px */

  /* =========================================
     Effects
     ========================================= */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
}
