/* ============================================
   LA TANDA - CSS VARIABLES GLOBALES
   ============================================ */

:root {
    /* Colores principales */
    --lt-primary: #00d4ff;
    --lt-primary-dark: #00a8cc;
    --lt-primary-light: #33ddff;
    --lt-secondary: #764ba2;
    --lt-accent: #667eea;
    
    /* Fondos */
    --lt-bg-dark: #0d1117;
    --lt-bg-card: #161b22;
    --lt-bg-hover: #21262d;
    
    /* Textos */
    --lt-text-primary: #e6edf3;
    --lt-text-secondary: #8b949e;
    --lt-text-muted: #6e7681;
    
    /* Bordes */
    --lt-border: #30363d;
    --lt-border-accent: rgba(0, 212, 255, 0.2);
    
    /* Header específico */
    --lt-header-height: 70px;
    --lt-header-bg: rgba(13, 17, 23, 0.95);
    --lt-header-blur: 20px;
    
    /* Espaciado */
    --lt-spacing-xs: 4px;
    --lt-spacing-sm: 8px;
    --lt-spacing-md: 16px;
    --lt-spacing-lg: 24px;
    --lt-spacing-xl: 32px;
    
    /* Bordes redondeados */
    --lt-radius-sm: 6px;
    --lt-radius-md: 10px;
    --lt-radius-lg: 16px;
    --lt-radius-full: 50%;
    
    /* Transiciones */
    --lt-transition-fast: 0.15s ease;
    --lt-transition-normal: 0.25s ease;
    --lt-transition-slow: 0.4s ease;
    
    /* Sombras */
    --lt-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --lt-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --lt-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --lt-shadow-glow: 0 0 20px rgba(0, 212, 255, 0.3);
    
    /* Z-index */
    --lt-z-header: 1000;
    --lt-z-sidebar: 999;
    --lt-z-modal: 1100;
    --lt-z-tooltip: 1200;
}

/* Dark mode (default) */
[data-theme="dark"] {
    --lt-bg-dark: #0d1117;
    --lt-bg-card: #161b22;
}

/* Light mode (futuro) */
[data-theme="light"] {
    --lt-bg-dark: #ffffff;
    --lt-bg-card: #f6f8fa;
    --lt-text-primary: #24292f;
    --lt-text-secondary: #57606a;
}
