:root {
    /* ================================
       PALETA DARK PREMIUM (VOLPILAB)
       ================================ */
    
    /* Fundos Base */
    --bg-body: #0a0a0a; 
    --bg-section: #121212; 
    --bg-card: #1a1a1a; 
    
    /* NOVO: Preto absoluto para fundir a logo da MF perfeitamente */
    --bg-header: #000000; 
    --bg-footer: #000000;
    
    /* Textos */
    --text-main: #e0e0e0;
    --text-secondary: #a0a0a0;
    --text-light: #ffffff;
    
    /* Cores da Marca & Accent */
    --cor-primaria: #D5A938; 
    --gold-gradient: linear-gradient(135deg, #D5A938 0%, #F2C94C 100%);
    --cor-titulo: #D5A938;

    /* Elementos de Interface & Efeitos Modernos */
    --border-color: rgba(255, 255, 255, 0.05);
    --shadow-color: rgba(0,0,0,0.7);

    /* EFEITOS GLASSMORPHISM & GLOW */
    --glass-bg: rgba(255, 255, 255, 0.03); 
    --glass-border: 1px solid rgba(255, 255, 255, 0.08); 
    --backdrop-blur: blur(16px); 
    --glow-shadow: 0 0 25px rgba(213, 169, 56, 0.25); 
}

/* ================================
   REFINAMENTOS GERAIS DO TEMA
   ================================ */

/* Navbar 100% Sólida para esconder o fundo da imagem da Logo */
.navbar {
    background-color: var(--bg-header) !important;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Inputs Modernizados */
input, select, textarea {
    background-color: rgba(255, 255, 255, 0.05) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease;
    border-radius: 8px !important; 
}

/* Foco Premium nos Inputs com Glow Dourado */
input:focus, select:focus, textarea:focus {
    border-color: var(--cor-primaria) !important;
    background-color: rgba(213, 169, 56, 0.05) !important; 
    box-shadow: 0 0 0 4px rgba(213, 169, 56, 0.1) !important; 
    outline: none;
}

/* =========================================
   CORREÇÃO DOS DROPDOWNS (SELECT OPTIONS)
   ========================================= */
select option {
    background-color: #121212 !important; /* Fundo escuro sólido */
    color: #767676 !important; /* Texto branco para leitura perfeita */
    font-weight: 500;
}