/* ──────────────────────────────────────────────
   MODAL DE NOTIFICAÇÃO (GLOBAL)
   ────────────────────────────────────────────── */

.notification-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.notification-overlay.show {
    opacity: 1;
    visibility: visible;
}

.notification-modal {
    background: #151517; /* Tom escuro padrão */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    width: 90%;
    max-width: 450px;
    padding: 2.5rem;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.notification-overlay.show .notification-modal {
    transform: scale(1) translateY(0);
}

.notification-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.notification-icon.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.notification-icon.success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.notification-icon.info {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.notification-title {
    font-family: 'Tenaciou', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.notification-message {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-family: 'JetBrains Mono', monospace;
}

.notification-close {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    border: none;
    background: #FF2400; /* Vermelho Scarlatte / Primary Admin */
    color: #000;
    font-weight: 800;
    font-family: 'JetBrains Mono', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.notification-close:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.notification-close:active {
    transform: translateY(0);
}
