/* ====== Variables CSS ====== */
:root {
    /* Colores principales */
    --color-primary: #14213d;
    --color-secondary: #fca311;
    --color-accent: #deb887;
    --color-text: #222;
    --color-text-light: #666;
    --color-background: #f3f4f6;
    --color-white: #fff;
    --color-black: #000;

    /* Colores de estado */
    --color-success: #28a745;
    --color-warning: #ffc107;
    --color-danger: #ff4500;
    --color-info: #007bff;
    --color-secondary-status: #6c757d;
    --color-purple: #871F78;
    --color-teal: #20B2AA;
    --color-gray: #a9a9a9;

    /* Colores adicionales UI */
    --color-light-gray: #f5f5f5;
    --color-light-gray-alt: #f1f1f1;
    --color-light-gray-bg: #f9f9f9;
    --color-medium-gray: #ccc;
    --color-medium-gray-alt: #ddd;
    --color-dark-gray: #444;
    --color-darker-gray: #333;
    --color-gold: #D4AF37;
    --color-silver: #C0C0C0;
    --color-bronze: #CD7F32;
    --color-text-muted: #888;
    --color-text-dark: #555;
    --color-border: #e0e0e0;
    --color-border-light: #eee;
    --color-blue: #0f1a33;
    --color-light-blue: #4285F4;
    --color-facebook: #1877F2;
    --color-red: red;
    --color-wheat: #ffebcd;
    --color-dark-mode-bg: #121212;
    --color-dark-mode-text: #eee;
    --color-dark-mode-canvas: #1e1e1e;
    --color-light-mode-bg: #fff;
    --color-light-mode-text: #000;
    --color-secondary-hover: #e8920d;
    --color-secondary-dark: #d99a00;
    --color-secondary-darker: #c98e00;
    --color-secondary-light: #ffd966;
    --color-light-background: #f5f7fa;

    /* Sombras */
    --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 6px 20px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 8px var(--color-secondary);

    /* Bordes */
    --border-radius-sm: 0.25rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-xl: 12px;
    --border-radius-xxl: 18px;
    --border-radius-full: 50%;

    /* Espaciado */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 2.2rem;

    /* Transiciones */
    --transition-fast: 0.15s;
    --transition-normal: 0.2s;
    --transition-slow: 0.3s;
    --transition-ease: cubic-bezier(.77, 0, .18, 1);

    /* Tamaños de fuente */
    --font-size-xs: 0.7em;
    --font-size-sm: 0.75em;
    --font-size-md: 0.85em;
    --font-size-base: 1em;
    --font-size-lg: 1.1em;
    --font-size-xl: 1.3em;
    --font-size-xxl: 1.6em;
    --font-size-xxxl: 2rem;

    /* Fuentes */
    --font-family-base: 'Segoe UI', Arial, sans-serif;

    /* Z-index */
    --z-index-dropdown: 1;
    --z-index-badge: 10;
    --z-index-header: 1000;
}
