/* ============================================
   Variables CSS - Configuración Global
   ============================================ */

:root {
  /* Colores principales del diseño - Ajustados según diseño original */
  --color-navy: #1a3a5c;
  --color-navy-dark: #0f2438;
  --color-teal: #5db3d4;
  --color-teal-light: #7bc5e0;
  --color-teal-dark: #4a9ec4;
  --color-orange: #ffb347;
  --color-orange-light: #ffc966;
  --color-orange-dark: #ffa500;
  --color-green: #2d8659;
  --color-green-light: #3ba06d;
  --color-green-dark: #226b47;
  --color-purple: #9b7fb8;
  --color-purple-light: #b59dd0;
  --color-gold: #ffd700;
  --color-gold-light: #ffed4e;
  
  /* Colores de texto */
  --color-text-primary: #2c2c2c;
  --color-text-secondary: #333333;
  --color-text-light: #666666;
  --color-text-white: #ffffff;
  
  /* Colores de fondo */
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f8f9fa;
  --color-bg-dark: var(--color-navy);
  --color-bg-light: #f5f5f5;
  
  /* Colores de acento */
  --color-accent: var(--color-orange);
  --color-accent-light: var(--color-orange-light);
  --color-success: var(--color-green);
  --color-warning: var(--color-orange);
  --color-error: #dc3545;
  
  /* Tipografías */
  --font-primary: 'Inter', 'Segoe UI', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-secondary: 'Georgia', 'Times New Roman', serif;
  
  /* Tamaños de fuente */
  --font-size-xs: 0.75rem;    /* 12px */
  --font-size-sm: 0.875rem;   /* 14px */
  --font-size-base: 1rem;     /* 16px */
  --font-size-lg: 1.125rem;   /* 18px */
  --font-size-xl: 1.25rem;    /* 20px */
  --font-size-2xl: 1.5rem;    /* 24px */
  --font-size-3xl: 1.875rem;  /* 30px */
  --font-size-4xl: 2.25rem;   /* 36px */
  --font-size-5xl: 3rem;      /* 48px */
  --font-size-6xl: 3.75rem;   /* 60px */
  
  /* Pesos de fuente */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Espaciados */
  --spacing-xs: 0.25rem;   /* 4px */
  --spacing-sm: 0.5rem;    /* 8px */
  --spacing-md: 1rem;      /* 16px */
  --spacing-lg: 1.5rem;    /* 24px */
  --spacing-xl: 2rem;      /* 32px */
  --spacing-2xl: 3rem;     /* 48px */
  --spacing-3xl: 4rem;     /* 64px */
  --spacing-4xl: 6rem;     /* 96px */
  
  /* Bordes */
  --border-radius-sm: 0.25rem;   /* 4px */
  --border-radius-md: 0.5rem;    /* 8px */
  --border-radius-lg: 1rem;      /* 16px */
  --border-radius-xl: 1.5rem;    /* 24px */
  --border-radius-full: 9999px;
  --border-width: 1px;
  
  /* Sombras */
  --shadow-sm: 0 1px 2px 0 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);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Transiciones */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
  
  /* Breakpoints (para uso en media queries) */
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
  --breakpoint-2xl: 1536px;
  
  /* Z-index layers */
  --z-index-dropdown: 1000;
  --z-index-sticky: 1020;
  --z-index-fixed: 1030;
  --z-index-modal-backdrop: 1040;
  --z-index-modal: 1050;
  --z-index-popover: 1060;
  --z-index-tooltip: 1070;
  
  /* Contenedor */
  --container-max-width: 1200px;
  --container-padding: var(--spacing-lg);
}
