/* Estilos para o Popup de Notificação Moderno */
.notification-popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 350px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    z-index: 9999;
    overflow: hidden;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    border-left: 5px solid #ff0000;
}

.notification-popup.show {
    transform: translateY(0);
}

.notification-header {
    padding: 15px 20px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}

.notification-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    color: #0a0a1a;
}

.bell-icon {
    font-size: 1.2rem;
    color: #ff0000;
    animation: ring 2s ease infinite;
    transform-origin: top center;
}

@keyframes ring {
    0% { transform: rotate(0); }
    5% { transform: rotate(15deg); }
    10% { transform: rotate(-15deg); }
    15% { transform: rotate(10deg); }
    20% { transform: rotate(-10deg); }
    25% { transform: rotate(5deg); }
    30% { transform: rotate(-5deg); }
    35% { transform: rotate(0); }
    100% { transform: rotate(0); }
}

.close-notification {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #888;
    line-height: 1;
}

.close-notification:hover {
    color: #ff0000;
}

.notification-body {
    padding: 20px;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.5;
}

.notification-footer {
    padding: 10px 20px;
    font-size: 0.75rem;
    color: #999;
    text-align: right;
    background: #fff;
}

/* Responsividade */
@media (max-width: 480px) {
    .notification-popup {
        width: calc(100% - 40px);
        bottom: 20px;
        right: 20px;
        left: 20px;
    }
}
