/* Container fixo no topo para os balões de notificação */
#notificacao-container-global {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 90%;
    max-width: 400px;
    pointer-events: none;
}

.notificacao-toast {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid #f77810;
    border-radius: 12px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.7), 0 0 15px rgba(247, 120, 16, 0.3);
    color: #fff;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    pointer-events: auto;
    animation: slideDownFadeAlert 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

@keyframes slideDownFadeAlert {
    from { opacity: 0; transform: translateY(-30px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.notificacao-toast::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: luzPassando 3s infinite;
}

@keyframes luzPassando {
    0% { left: -100%; }
    100% { left: 200%; }
}

.notif-icon {
    background: linear-gradient(135deg, #f77810, #d35400);
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    flex-shrink: 0;
}

.notif-content { flex: 1; overflow: hidden; }
.notif-title { font-size: 14px; font-weight: bold; color: #f77810; margin-bottom: 2px; }
.notif-body { font-size: 12px; color: #ddd; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.notif-close { cursor: pointer; color: #aaa; font-size: 20px; transition: 0.2s; padding: 0 5px; }
.notif-close:hover { color: #fff; }