/* 
 * TOKENS CSS - Instituto de Córnea S.A.S.
 * Variables de diseño: colores, tipografías, espaciados, breakpoints
 */

:root {
  /* ========================================
     COLORES PRINCIPALES
     ======================================== */
  --primary-orange: #ff6600;
  --secondary-orange: #ff8533;
  --light-orange: #ffcc99;
  --dark-bg: #1a1a2e;
  --light-bg: #f8f9fc;
  --white: #ffffff;
  --black: #333333;
  --gray-light: #e0e0e0;
  --gray-medium: #666666;
  --gray-dark: #555555;

  /* ========================================
     GRADIENTES
     ======================================== */
  --gradient-primary: linear-gradient(135deg, #ff6600 0%, #ff8533 50%, #ffcc99 100%);
  --gradient-secondary: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
  --gradient-hero: url('/assets/img/pages/common/header-background.webp');

  /* ========================================
     TIPOGRAFÍAS
     ======================================== */
  --font-family-primary: 'Montserrat', sans-serif;
  --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-secondary: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-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 */
  
  /* Pesos de fuente */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* ========================================
     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 */
  --spacing-4xl: 5rem;     /* 80px */
  --spacing-5xl: 6rem;     /* 96px */

  /* ========================================
     CONTENEDORES Y LAYOUT
     ======================================== */
  --container-max-width: 1200px;
  --section-padding: 5rem 0;
  --section-padding-desktop: 6rem 0;
  --container-padding: 1.5rem;
  --container-padding-desktop: 2rem;

  /* ========================================
     BORDES Y RADIOS
     ======================================== */
  --border-radius-sm: 0.5rem;      /* 8px */
  --border-radius-md: 1rem;        /* 16px */
  --border-radius-lg: 1.5rem;      /* 24px */
  --border-radius-xl: 2rem;        /* 32px */
  --border-radius-full: 9999px;
  --card-border-radius: 1rem;
  --image-border-radius: 15px;

  /* ========================================
     SOMBRAS
     ======================================== */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
  --shadow-strong: 0 20px 40px rgba(0, 0, 0, 0.2);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.2);

  /* ========================================
     BREAKPOINTS
     ======================================== */
  --breakpoint-sm: 480px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 968px;
  --breakpoint-xl: 1200px;
  --breakpoint-2xl: 1400px;

  /* ========================================
     Z-INDEX
     ======================================== */
  --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;

  /* ========================================
     TRANSICIONES
     ======================================== */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* ========================================
     NAVEGACIÓN
     ======================================== */
  --navbar-height: 80px;
  --navbar-bg: rgba(255, 255, 255, 0.95);
  --navbar-backdrop: blur(10px);
}

/* ========================================
   MEDIA QUERIES (Breakpoints)
   ======================================== */
@media (min-width: 768px) {
  :root {
    --section-padding: 6rem 0;
  }
}

@media (max-width: 600px) {
  :root {
    --section-padding: 3.5rem 0;
  }
}

@media (min-width: 1200px) {
  :root {
    --container-padding: 2rem;
  }
}

