/* =========================================
   variables.css - Sistema de Temas Biogoldy
   ========================================= */
:root, [data-theme="dark-pro"] {
    /* Paleta Dark Premium (Base del Logo) */
    --bg-color: #080C16; /* Azul marino muy oscuro */
    --text-main: #ffffff;
    --text-muted: #9ca3af;
    
    /* Acentos Biogoldy */
    --primary-gold: #D4AF37;
    --gold-glow: rgba(212, 175, 55, 0.3);
    
    /* Elementos UI */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
    
    /* Fuentes */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}

[data-theme="light-minimal"] {
    --bg-color: #f8f9fa;
    --text-main: #111827;
    --text-muted: #4b5563;
    --primary-gold: #B8860B;
    --glass-bg: rgba(0, 0, 0, 0.03);
    --glass-border: rgba(0, 0, 0, 0.1);
}