/* --- CUSTOM STYLES E EFEITOS ULTRA PREMIUM --- */

/* Barras de rolagem discretas */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0c0a09; 
}
::-webkit-scrollbar-thumb {
    background: #292524; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #d63384; 
}

/* Brilho neon luxuoso */
.text-glow { 
    text-shadow: 0 0 20px rgba(214, 51, 132, 0.4); 
}

/* Glassmorphism Refinado */
.glass-panel { 
    background: rgba(28, 25, 23, 0.65); 
    backdrop-filter: blur(20px); 
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.03); 
}

/* Animações de Scroll (Aparecimento Suave) */
.reveal { 
    opacity: 0; 
    transform: translateY(30px); 
    transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
}

.reveal.active { 
    opacity: 1; 
    transform: translateY(0); 
}

/* Ajustes de foco para formulário */
input:focus, select:focus {
    box-shadow: 0 0 0 2px rgba(214, 51, 132, 0.2);
}

select {
    cursor: pointer;
}
