/**
 * FISav - CSS Variables
 * Adaptado del tema Consultive
 */

:root {
    /* Colores principales FISav */
    --primary: #45c4e9;        /* Azul turquesa del tema */
    --primary-dark: #2ba4c9;   
    --secondary: #222222;      /* Gris oscuro */
    --accent: #f7bd00;         /* Amarillo dorado */
    
    /* Colores de texto */
    --text-primary: #222222;
    --text-secondary: #848484;
    --text-light: #999999;
    --text-white: #ffffff;
    
    /* Backgrounds */
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #222222;
    --bg-gray: #f4f4f4;
    
    /* Borders */
    --border-color: #e5e5e5;
    --border-light: #f4f4f4;
    
    /* Feedback colors */
    --success: #28a745;
    --warning: #ffc107;
    --error: #dc3545;
    --info: #17a2b8;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Hind', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.625;
    
    /* Font sizes */
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-md: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    
    /* Headings */
    --h1-size: 36px;
    --h2-size: 32px;
    --h3-size: 24px;
    --h4-size: 20px;
    --h5-size: 18px;
    --h6-size: 16px;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 64px;
    --spacing-xxl: 96px;
    
    /* Section padding */
    --section-padding: 70px;
    --section-padding-sm: 50px;
    
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-pill: 50px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 16px 32px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Container widths */
    --container-sm: 540px;
    --container-md: 720px;
    --container-lg: 960px;
    --container-xl: 1170px;
    
    /* Header */
    --header-height: 80px;
    --header-mobile-height: 70px;
    
    /* Z-index scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

/* Dark mode support (opcional para futuro) */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-white: #1a1a1a;
        --bg-light: #2a2a2a;
        --text-primary: #ffffff;
        --text-secondary: #cccccc;
        --border-color: #3a3a3a;
    }
}
