/* public_html/assets/css/style.css */

/* Fundo com a Imagem Limpa (Sem máscara pesada) */
body {
    background-image: url('../img/fundo.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: #060913;
    color: #f1f5f9;
    font-family: ui-sans-serif, system-ui, sans-serif;
}

/* Painéis com Transparência Premium (Glassmorphism) + Gradiente de Respeito */
.bg-painel-dark {
    background: linear-gradient(135deg, rgba(15, 22, 42, 0.65) 0%, rgba(30, 41, 59, 0.45) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
}

/* Inputs ainda mais integrados e transparentes */
.bg-input-dark {
    background-color: rgba(2, 6, 23, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Efeitos Neon e Glow Refinados em Verde Limão (#deff9a) */
.neon-glow-green {
    box-shadow: 0 0 25px rgba(222, 255, 154, 0.12), inset 0 0 15px rgba(222, 255, 154, 0.02);
    border: 1px solid rgba(222, 255, 154, 0.25) !important;
}

.neon-button-glow {
    box-shadow: 0 8px 30px rgba(222, 255, 154, 0.3);
}

.text-neon {
    text-shadow: 0 0 10px rgba(222, 255, 154, 0.6);
}

/* Customização de Linhas e Divisores internos dos cards */
.divide-slate-800\/60 > :not([hidden]) ~ :not([hidden]) {
    border-color: rgba(255, 255, 255, 0.06);
}

/* Customização de Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #060913;
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #deff9a;
}