/* ===========================================
   VARIABLES CSS - Sistema de Diseño Multipunt
   =========================================== */

:root {
  /* ----- Colores Primarios ----- */
  --color-primary: #1a4f8b;
  --color-primary-dark: #143d6b;
  --color-primary-light: #2d6cb3;
  
  /* ----- Colores Secundarios ----- */
  --color-secondary: #6c757d;
  --color-secondary-dark: #545b62;
  --color-secondary-light: #868e96;
  
  /* ----- Colores de Estado ----- */
  --color-success: #28a745;
  --color-success-light: #d4edda;
  --color-warning: #ffc107;
  --color-warning-light: #fff3cd;
  --color-danger: #dc3545;
  --color-danger-light: #f8d7da;
  --color-info: #17a2b8;
  --color-info-light: #d1ecf1;
  
  /* ----- Colores de Fondo ----- */
  --bg-body: #f5f7fa;
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #343a40;
  
  /* ----- Colores de Texto ----- */
  --text-primary: #212529;
  --text-secondary: #6c757d;
  --text-muted: #adb5bd;
  --text-white: #ffffff;
  --text-dark: #1a1a1a;
  
  /* ----- Bordes ----- */
  --border-color: #dee2e6;
  --border-light: #e9ecef;
  --border-dark: #ced4da;
  
  /* ----- Tipografía ----- */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-family-mono: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Mono', monospace;
  
  --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-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  
  /* ----- Espaciado ----- */
  --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 */
  
  /* ----- Bordes Redondeados ----- */
  --radius-sm: 0.25rem;    /* 4px */
  --radius-md: 0.375rem;   /* 6px */
  --radius-lg: 0.5rem;     /* 8px */
  --radius-xl: 0.75rem;    /* 12px */
  --radius-full: 9999px;
  
  /* ----- 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;
  --transition-normal: 250ms ease;
  --transition-slow: 350ms ease;
  
  /* ----- Layout ----- */
  --sidebar-width: 260px;
  --sidebar-collapsed: 70px;
  --header-height: 60px;
  --container-max: 1400px;
  
  /* ----- Z-Index ----- */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-tooltip: 600;
}
