/* variables.css */
:root {
   /* ==============================
      BRAND COLORS (CORVI)
      ============================== */
   /* Rojo Corvi aproximado */
   --color-primary: #D90000;       
   --color-primary-dark: #b00000;
   
   /* Negro y gris oscuro para textos */
   --color-secondary: #1b1b1b;     
   
   /* Resto de variables igual... */
   --color-accent: #ffc107;
   --color-danger: #dc3545;
   /* ... */

    /* ==============================
       NEUTRALS
       ============================== */
    --color-dark: #1b1b1b;
    --color-dark-soft: #2a2a2a;
    --color-gray-dark: #555555;
    --color-gray: #8a8a8a;
    --color-gray-light: #f1f1f1;
    --color-light: #ffffff;
  
    /* ==============================
       BACKGROUNDS
       ============================== */
    --bg-body: #ffffff;
    --bg-section: #f7f7f7;
    --bg-overlay: rgba(0, 0, 0, 0.55);
    --bg-overlay-light: rgba(0, 0, 0, 0.35);
  
    /* ==============================
       TYPOGRAPHY
       ============================== */
    --font-primary: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  
    --font-size-base: 16px;
    --line-height-base: 1.6;
  
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-md: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.5rem;
    --text-2xl: 2rem;
    --text-3xl: 2.5rem;
    --text-4xl: 3.2rem;
  
    /* ==============================
       SPACING
       ============================== */
    --space-xxs: 0.25rem;
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
  
    /* ==============================
       LAYOUT
       ============================== */
    --container-max-width: 1200px;
    --container-padding: 1rem;
  
    /* ==============================
       BORDERS & RADII
       ============================== */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-round: 999px;
  
    /* ==============================
       SHADOWS (limpias tipo Corvi)
       ============================== */
    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.18);
  
    /* ==============================
       TRANSITIONS & MOTION
       ============================== */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
  
    /* ==============================
       Z-INDEX SCALE
       ============================== */
    --z-header: 1000;
    --z-overlay: 900;
    --z-dropdown: 800;
    --z-modal: 1100;
    --z-tooltip: 1200;
  
    /* ==============================
       BUTTONS
       ============================== */
    --btn-height: 48px;
    --btn-padding-x: 1.5rem;
    --btn-font-weight: 600;
  }
  