:root {
    /* Novo Tema Baseado na Imagem */
    --solum-primary: #0b4b36; /* Verde Escuro da Sidebar */
    --solum-primary-hover: #083828;
    --solum-accent: #10b981; /* Verde claro dos gráficos/botões */
    --solum-secondary: #1e293b; /* Cor do texto escuro */
    --solum-success: #10b981;
    --solum-warning: #f59e0b;
    --solum-danger: #ef4444;
    --solum-muted: #64748b;
    --solum-bg: #f8fafc; /* Fundo cinza super claro */
    --white-pure: #ffffff;
    --border-color: #e2e8f0;
    
    /* Bordas mais quadradas (modernas) em vez de redondas */
    --border-radius-xl: 16px; 
    --border-radius-lg: 12px; 
    
    /* Sombras mais suaves e elegantes */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* ===== LAYOUT PRINCIPAL (TOPBAR RESPONSIVA) ===== */
.app-wrapper {
    display: flex;
    min-height: 100vh;
    width: 100%;
    flex-direction: column;
}
#menu-ferias.active { background-color: var(--solum-accent); color: var(--solum-primary); }
.topbar-solum {
    background-color: var(--solum-primary);
    width: 100%; 
    min-height: 70px;
    position: fixed; 
    top: 0; 
    left: 0;
    z-index: 1050; 
    display: flex; 
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.topbar-item {
    padding: 10px 16px; 
    border-radius: 8px;
    display: flex; 
    align-items: center; 
    gap: 8px;
    color: rgba(255, 255, 255, 0.8); 
    text-decoration: none;
    font-weight: 600; 
    font-size: 0.85rem;
    transition: 0.2s; 
    cursor: pointer; 
    white-space: nowrap;
}

.topbar-item:hover, .topbar-item.active {
    background-color: rgba(255, 255, 255, 0.15); 
    color: white;
}

.topbar-item.active {
    background-color: var(--solum-accent); 
    color: var(--solum-primary);
}

/* Ajuste pro Menu Hambúrguer (Mobile) descer */
#topbarMenuRH.show, #topbarMenuRH.collapsing {
    background-color: var(--solum-primary);
    padding: 15px; 
    border-radius: 0 0 16px 16px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.2);
    position: absolute; 
    top: 70px; 
    left: 0; 
    width: 100%;
}

#topbarMenuRH.show .topbar-item, #topbarMenuRH.collapsing .topbar-item {
    margin-bottom: 5px; 
    justify-content: flex-start;
}

/* Área de Conteúdo: Margem zerada no PC e Celular */
.main-content {
    flex: 1; 
    margin-left: 0; 
    padding: 90px 20px 30px;
    background-color: var(--solum-bg); 
    min-height: 100vh; 
    width: 100%;
}

/* Remove a imagem de fundo atual e deixa a cor sólida */
body {
    background-color: var(--solum-bg);
    background-image: none !important; 
    color: var(--solum-secondary);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ===== CUSTOM SCROLLBAR (MELHORIA 1) ===== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background-color: var(--border-color);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background-color: var(--solum-muted);
}

/* ===== NAVBAR ===== */
.navbar-solum {
    background-color: var(--white-glass); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm); padding-top: 12px; padding-bottom: 12px; margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color); z-index: 1050; position: sticky; top: 0;
}
.navbar-brand-custom { font-weight: 800; color: var(--solum-secondary) !important; font-size: 1.2rem; letter-spacing: -0.5px; text-decoration: none; display: flex; align-items: center; }
.brand-icon-rounded { background-color: var(--solum-primary); color: var(--white-pure); width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-right: 10px; box-shadow: 0 4px 12px rgba(67,24,255,0.2); flex-shrink: 0; }
.navbar-actions { display: flex; align-items: center; gap: 8px; }

/* ===== SYNC BADGE ===== */
#syncBadge {
    display: none; align-items: center; gap: 6px;
    background: #e6fcf5; color: #05a67a; border: 1px solid #b2f0e0;
    border-radius: 20px; padding: 5px 12px; font-size: 0.72rem; font-weight: 700;
    white-space: nowrap; transition: all 0.3s ease; cursor: pointer;
}
#syncBadge .dot { width: 7px; height: 7px; background: var(--solum-success); border-radius: 50%; animation: pulse-dot 2s infinite; flex-shrink: 0; }
#syncBadge.syncing { background: #fff8e5; color: #c07c00; border-color: #ffb547; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }

/* ===== KPI CARDS ===== */
.card-kpi-premium { border-radius: var(--border-radius-lg); padding: 20px; background-color: var(--white-pure); margin-bottom: 16px; box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: space-between; transition: all var(--transition-normal); }
.card-kpi-premium:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.kpi-title { font-size: 0.75rem; color: var(--solum-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.kpi-value { font-size: 1.9rem; font-weight: 800; color: var(--solum-secondary); line-height: 1; }
.kpi-icon-container { width: 52px; height: 52px; border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.bg-soft-blue   { background-color: #e9edff; color: var(--solum-primary); }
.bg-soft-green  { background-color: #e6fcf5; color: var(--solum-success); }
.bg-soft-orange { background-color: #fff8e5; color: var(--solum-warning); }

/* ===== GLASS CONTAINER ===== */
.glass-container {
    background-color: var(--white-pure);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    border-radius: var(--border-radius-lg);
    backdrop-filter: none; 
}

/* ===== TABLE & STICKY HEADER (MELHORIA 2) ===== */
.table-responsive {
    max-height: 550px; 
    overflow-y: auto;
}
.table-premium thead {
    position: sticky;
    top: 0;
    z-index: 10;
}
.table-premium thead th {
    background-color: #f8fafc; color: var(--solum-muted); font-size: 0.72rem;
    text-transform: uppercase; font-weight: 800; padding: 14px 16px;
    border-bottom: 2px solid var(--border-color); white-space: nowrap; user-select: none;
    box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.1); 
}
.table-premium thead th.sortable { cursor: pointer; transition: color 0.2s, background 0.2s; }
.table-premium thead th.sortable:hover { background-color: #eef2ff; color: var(--solum-primary); }
.table-premium thead th.sort-asc,
.table-premium thead th.sort-desc { color: var(--solum-primary); background-color: #eef2ff; }
.sort-icon { display: inline-flex; flex-direction: column; margin-left: 5px; vertical-align: middle; line-height: 0; opacity: 0.35; font-size: 0.6rem; gap: 1px; }
th.sort-asc .sort-icon, th.sort-desc .sort-icon { opacity: 1; }
th.sort-asc  .sort-icon::after { content: '▲'; color: var(--solum-primary); }
th.sort-desc .sort-icon::after { content: '▼'; color: var(--solum-primary); }
th.sortable:not(.sort-asc):not(.sort-desc) .sort-icon::after { content: '⇅'; }
.table-premium tbody td { padding: 13px 16px; vertical-align: middle; border-bottom: 1px solid #f1f5f9; font-weight: 600; color: var(--solum-secondary); font-size: 0.88rem; }
.table-premium tbody tr:hover td { background-color: #fcfdfe; cursor: pointer; }

/* ===== PAGINAÇÃO ===== */
.pag-bar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 20px; border-top: 1px solid var(--border-color);
    background: #f8fafc; flex-wrap: wrap; gap: 8px;
}
.pag-info { font-size: 0.78rem; color: var(--solum-muted); font-weight: 600; }
.pag-btns { display: flex; gap: 4px; flex-wrap: wrap; }
.pag-btn {
    min-width: 32px; height: 32px; padding: 0 6px;
    border-radius: 8px; border: 1px solid var(--border-color);
    background: var(--white-pure); font-weight: 700; font-size: 0.8rem;
    cursor: pointer; display: inline-flex; align-items: center;
    justify-content: center; color: var(--solum-secondary); transition: all 0.2s;
}
.pag-btn:hover:not(:disabled) { border-color: var(--solum-primary); color: var(--solum-primary); }
.pag-btn.active  { background: var(--solum-primary); color: #fff; border-color: var(--solum-primary); }
.pag-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.pag-select {
    border: 1px solid var(--border-color); border-radius: 8px;
    padding: 4px 10px; font-size: 0.78rem; font-weight: 700;
    color: var(--solum-secondary); font-family: inherit; cursor: pointer;
}

/* ===== SOFT BADGES (MELHORIA 3) ===== */
.badge-soft-primary { background-color: #e9edff; color: var(--solum-primary); font-weight: 700; border: 1px solid #d0d9ff; }
.badge-soft-warning { background-color: #fff8e5; color: #c07c00; font-weight: 700; border: 1px solid #ffe8b3; }
.badge-soft-success { background-color: #e6fcf5; color: var(--solum-success); font-weight: 700; border: 1px solid #b2f0e0; }

/* ===== MODAL EXPORTAR ===== */
.export-opt {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 16px; border-radius: 14px;
    border: 1.5px solid var(--border-color); cursor: pointer; transition: all 0.2s ease;
}
.export-opt:hover    { border-color: var(--solum-primary); background: #f0f4ff; }
.export-opt.selected { border-color: var(--solum-primary); background: #f0f4ff; }
.export-opt-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0;
}
.export-opt-text strong { font-size: 0.9rem; display: block; }

/* ===== AVATAR ===== */
.avatar-list-small { width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; color: var(--white-pure); font-size: 0.8rem; margin-right: 10px; overflow: hidden; background-color: var(--solum-primary); border: 2px solid var(--white-pure); box-shadow: 0 2px 8px rgba(0,0,0,0.1); flex-shrink: 0; }
.avatar-list-small img { width: 100%; height: 100%; object-fit: cover; }

/* ===== GRID CARDS ===== */
.employee-grid-card { background-color: var(--white-pure); border-radius: 18px; padding: 20px 12px; text-align: center; transition: all 0.3s ease; cursor: pointer; height: 100%; display: flex; flex-direction: column; align-items: center; box-shadow: var(--shadow-sm); border: 1px solid var(--border-color); }
.employee-grid-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--solum-primary); }
.avatar-frame { width: 80px; height: 80px; margin-bottom: 12px; border-radius: 50%; border: 3px solid var(--solum-primary); padding: 3px; background-color: var(--white-pure); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.avatar-frame img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.emp-display-name { font-weight: 700; color: var(--solum-secondary); font-size: 0.9rem; margin-bottom: 4px; line-height: 1.2; }
.emp-display-job  { font-size: 0.7rem; color: var(--solum-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

/* ===== LOGIN OVERLAY ===== */
.full-blur-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--solum-bg); backdrop-filter: blur(40px); z-index: 9999; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px; }
.login-card-premium { background-color: var(--white-pure); padding: 40px 30px; border-radius: 30px; box-shadow: 0 40px 80px rgba(0,0,0,0.12); max-width: 430px; width: 100%; text-align: center; }

/* ===== FAB ANIVERSÁRIO ===== */
#fabBirthday { position: fixed; bottom: 24px; right: 20px; width: 60px; height: 60px; background: linear-gradient(135deg,#ff5f6d 0%,#ffc371 100%); color: var(--white-pure); border-radius: 50%; display: none; align-items: center; justify-content: center; font-size: 1.6rem; cursor: pointer; box-shadow: 0 10px 25px rgba(255,95,109,0.4); z-index: 1000; transition: all 0.3s ease; }

/* ===== FOOTER ===== */
.solum-footer { margin: 30px 0; padding: 30px 20px; text-align: center; background-color: var(--white-glass); border-radius: 20px; box-shadow: var(--shadow-sm); font-size: 0.9rem; }

/* ===== FILTROS ===== */
.filter-panel { border-radius: var(--border-radius-lg); background-color: var(--white-pure); box-shadow: var(--shadow-sm); margin-bottom: 20px; overflow: hidden; border: 1px solid var(--border-color); }
.filter-toggle-btn { width: 100%; background: none; border: none; padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; font-weight: 700; font-size: 0.9rem; color: var(--solum-secondary); cursor: pointer; }
.filter-toggle-btn .bi-chevron-down { transition: transform 0.3s ease; }
.filter-toggle-btn.collapsed .bi-chevron-down { transform: rotate(-90deg); }
.filter-body { padding: 0 20px 20px; }
.btn-clear-filters { font-size: 0.75rem; padding: 4px 12px; border-radius: 20px; font-weight: 700; }

/* ===== FORM & FOCUS ANIMATION (MELHORIA 4) ===== */
.form-select, .form-control { border-radius: 10px !important; border: 1px solid var(--border-color) !important; font-size: 0.9rem; }
.form-control:focus, .form-select:focus {
    border-color: var(--solum-primary) !important;
    box-shadow: 0 0 0 0.25rem rgba(67, 24, 255, 0.15) !important;
    transition: all 0.3s ease;
}

/* Ajuste pro Select2 ficar com a mesma cara do Bootstrap */
.select2-container .select2-selection--multiple {
    border-radius: 10px !important; border: 1px solid var(--border-color) !important; min-height: 38px;
}

/* ===== TOAST SYSTEM ===== */
#toastStack { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 99999; display: flex; flex-direction: column-reverse; gap: 10px; align-items: center; pointer-events: none; width: min(90vw,420px); }
.solum-toast { pointer-events: all; width: 100%; background: var(--white-pure); border-radius: 16px; box-shadow: 0 12px 40px rgba(0,0,0,0.18); display: flex; align-items: center; gap: 14px; padding: 14px 18px; animation: toastIn 0.35s cubic-bezier(0.34,1.56,0.64,1) both; border-left: 5px solid var(--solum-primary); font-size: 0.9rem; font-weight: 600; color: var(--solum-secondary); position: relative; overflow: hidden; }
.solum-toast.hide { animation: toastOut 0.3s ease forwards; }
.solum-toast.type-success { border-left-color: var(--solum-success); }
.solum-toast.type-danger  { border-left-color: var(--solum-danger); }
.solum-toast.type-warning { border-left-color: var(--solum-warning); }
.solum-toast.type-info    { border-left-color: var(--solum-primary); }
.toast-icon { font-size: 1.4rem; flex-shrink: 0; }
.toast-icon.type-success { color: var(--solum-success); }
.toast-icon.type-danger  { color: var(--solum-danger); }
.toast-icon.type-warning { color: var(--solum-warning); }
.toast-icon.type-info    { color: var(--solum-primary); }
.toast-body { flex: 1; }
.toast-title { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.8px; font-weight: 800; margin-bottom: 2px; }
.toast-msg   { font-weight: 500; color: #555; font-size: 0.88rem; }
.toast-close { background: none; border: none; font-size: 1.1rem; color: var(--solum-muted); cursor: pointer; padding: 0; flex-shrink: 0; }
.toast-progress { position: absolute; bottom: 0; left: 0; height: 3px; border-radius: 0 0 0 16px; animation: toastProgress linear forwards; }
.type-success .toast-progress { background: var(--solum-success); }
.type-danger  .toast-progress { background: var(--solum-danger); }
.type-warning .toast-progress { background: var(--solum-warning); }
.type-info    .toast-progress { background: var(--solum-primary); }
@keyframes toastIn       { from{opacity:0;transform:translateY(30px) scale(0.9)} to{opacity:1;transform:translateY(0) scale(1)} }
@keyframes toastOut      { from{opacity:1;transform:translateY(0) scale(1)} to{opacity:0;transform:translateY(20px) scale(0.9)} }
@keyframes toastProgress { from{width:100%} to{width:0%} }

/* ===== MODAIS ===== */
.modal-content { border-radius: 28px; border: none; box-shadow: 0 40px 100px rgba(0,0,0,0.3); }

/* ========================================================
   MODO COMPACTO: FORMULÁRIO DE JUSTIFICATIVA 
======================================================== */
#modalJustificativa .form-label {
    font-size: 0.75rem !important; 
    margin-bottom: 2px !important; 
}
#modalJustificativa .form-control,
#modalJustificativa .form-select {
    font-size: 0.8rem !important; 
    padding: 4px 8px !important;  
    height: auto !important;
    min-height: 28px !important;
}
#modalJustificativa .mb-3, 
#modalJustificativa .mb-4,
#modalJustificativa .mt-3 {
    margin-bottom: 8px !important;
    margin-top: 4px !important;
}
#modalJustificativa .p-4,
#modalJustificativa .p-3 {
    padding: 15px !important;
}
#btnGerarPdfJust {
    padding: 6px !important;
    font-size: 0.9rem !important;
    margin-top: 5px !important;
}

/* ===== PDF JUSTIFICATIVA ===== */
.area-preview-pdf { background: rgba(207,216,220,0.5); padding: 20px 10px; overflow-x: auto; border-radius: 8px; text-align: center; }
#documento-final { background: white; width: 760px !important; max-width: 100%; margin: 0 auto; padding: 25px !important; box-sizing: border-box; box-shadow: 0 0 15px rgba(0,0,0,0.3); text-align: left; color: #000; font-family: Arial, sans-serif; }
#documento-final .formulario { width: 100%; border: 1.5px solid #000; box-sizing: border-box; background: white; }
#documento-final .header { display: flex; align-items: center; border-bottom: 1.5px solid #000; width: 100%; box-sizing: border-box; }
#documento-final .logo { width: 150px; min-width: 150px; padding: 8px; border-right: 1.5px solid #000; text-align: center; }
#documento-final .logo img { width: 130px !important; height: auto !important; display: block; margin: auto; }
#documento-final .titulo-doc { flex-grow: 1; text-align: center; font-size: 20px; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; color: #000; }
#documento-final table { width: 100%; border-collapse: collapse; table-layout: fixed; }
#documento-final td { border: 1px solid #000; padding: 6px 8px; font-size: 11px; line-height: 1.2; color: #000; word-wrap: break-word; }
#documento-final .valor { font-weight: bold; font-size: 12px; text-transform: uppercase; color: #000; }
#documento-final .box { display: inline-flex; align-items: center; justify-content: center; width: 14px; height: 14px; border: 1.5px solid #000; vertical-align: middle; margin-right: 4px; background: #fff; font-size: 12px; font-weight: bold; color: #000; line-height: 1; }
#documento-final .assinatura-area { height: 20px; vertical-align: bottom; font-size: 10px; text-align: center; color: #000; }

/* ===== MOBILE ===== */
@media (max-width: 767px) {
    html { font-size: 13px; }
    .container-fluid { padding-left: 14px !important; padding-right: 14px !important; }
    .navbar-solum { padding-top: 10px; padding-bottom: 10px; margin-bottom: 14px; }
    .navbar-brand-custom { font-size: 1rem; }
    .brand-icon-rounded { width: 34px; height: 34px; border-radius: 9px; font-size: 1rem; }
    .btn-navbar-icon { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; padding: 0; font-size: 1.1rem; }
    #syncBadge { display: none !important; }
    .kpi-row { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 6px; margin-bottom: 16px; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; }
    .kpi-row::-webkit-scrollbar { display: none; }
    .kpi-col { min-width: 140px; flex-shrink: 0; scroll-snap-align: start; }
    .card-kpi-premium { flex-direction: column; align-items: flex-start; padding: 16px; border-radius: 16px; gap: 10px; }
    .kpi-icon-container { width: 44px; height: 44px; border-radius: 12px; font-size: 1.3rem; }
    .kpi-value { font-size: 1.7rem; }
    .col-hide-mobile { display: none !important; }
    .table-premium thead th { font-size: 0.68rem; padding: 12px 10px; }
    .table-premium tbody td { padding: 11px 10px; font-size: 0.82rem; }
    .avatar-list-small { width: 34px; height: 34px; margin-right: 8px; }
    #gridSection .col-6 { width: 50% !important; }
    .employee-grid-card { padding: 16px 10px; border-radius: 16px; }
    .avatar-frame { width: 68px; height: 68px; }
    .emp-display-name { font-size: 0.82rem; }
    .emp-display-job  { font-size: 0.65rem; }
    .modal-dialog { margin: 0 !important; max-width: 100% !important; min-height: 100% !important; }
    .modal-content { border-radius: 24px 24px 0 0 !important; max-height: 92vh; display: flex; flex-direction: column; }
    .modal-dialog-centered { align-items: flex-end !important; }
    .modal-body { overflow-y: auto !important; -webkit-overflow-scrolling: touch; flex: 1; }
    .login-card-premium { padding: 30px 20px; border-radius: 24px; }
    .solum-footer { margin: 20px 0; padding: 24px 16px; }
    #fabBirthday { bottom: 20px; right: 16px; width: 54px; height: 54px; font-size: 1.4rem; }
    .search-view-row { flex-direction: column !important; gap: 10px !important; }
    .search-view-row > * { width: 100% !important; }
    .btn-group-view { width: 100%; }
    .btn-group-view .btn { flex: 1; }
    #toastStack { bottom: 16px; width: min(95vw,420px); }
}
@media (max-width: 420px) {
    .kpi-col { min-width: 125px; }
    .kpi-value { font-size: 1.5rem; }
    .avatar-frame { width: 58px; height: 58px; }
}
@media (min-width: 768px) and (max-width: 991px) {
    .container-fluid { padding-left: 20px !important; padding-right: 20px !important; }
    .card-kpi-premium {
        background-color: var(--white-pure);
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius-lg);
        box-shadow: var(--shadow-sm);
    }
    .kpi-value { font-size: 2rem; }
}
@media (min-width: 768px) {
    #syncBadge { display: inline-flex !important; }
    .kpi-row { display: contents; }
    .kpi-col { display: contents; }
}
/* ===== ESTILOS DO PORTAL ===== */
.login-card {
    background: rgba(255,255,255,0.98);
    padding: 40px; border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 450px;
    text-align: center; margin: 0 auto;
}
/* ===== ESTILIZAÇÃO DA TELA DE LOGIN (FUNDO E RODAPÉ) ===== */
#loginOverlay.full-blur-overlay {
    background: linear-gradient(135deg, #0b4b36 0%, #1e293b 50%, #0f172a 100%) !important;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px;
}

/* Caixa central de login com efeito NEON */
#loginOverlay .login-card {
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(20px);
    /* Efeito Neon (Brilho azul/roxo) */
   box-shadow: 0 0 30px rgba(251, 192, 45, 0.5), 0 0 60px rgba(251, 192, 45, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.4);
    margin: auto; /* Centraliza perfeitamente no meio da tela */
}

/* Rodapé de Direitos Reservados */
.login-footer-copy {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.5px;
    z-index: 10;
    padding-bottom: 5px;
}