
.notification-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    max-width: 420px;
    width: 100%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Estilos das notificações */
.notification {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 20px 24px;
    margin-bottom: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15), 0 1px 2px rgba(0,0,0,0.05);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transform: translateX(120%) scale(0.9);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 20px;
    pointer-events: none;
}

.notification::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.notification.show {
    transform: translateX(0) scale(1);
    opacity: 1;
}

.notification.show::after {
    transform: translate(-50%, -50%) scale(1);
}

.notification.hide {
    transform: translateX(120%) scale(0.8);
    opacity: 0;
}

.notification-icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.notification-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.notification-title {
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 6px;
    color: #2d3748;
    line-height: 1.3;
}

.notification-message {
    font-size: 15px;
    color: #718096;
    line-height: 1.5;
    font-weight: 400;
}

.notification-close {
    background: rgba(255,255,255,0.8);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    color: #a0aec0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.notification-close:hover {
    background: #f7fafc;
    color: #4a5568;
    transform: scale(1.1);
}

/* Barra de progresso */
.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    border-radius: 0 0 20px 20px;
    transition: width 5s linear;
    z-index: 1;
}

/* Tipos de notificação */
.notification.success .notification-icon {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
}
.notification.success .notification-progress {
    background: linear-gradient(90deg, #48bb78, #38a169);
}

.notification.error .notification-icon {
    background: linear-gradient(135deg, #f56565, #e53e3e);
    color: white;
}
.notification.error .notification-progress {
    background: linear-gradient(90deg, #f56565, #e53e3e);
}

.notification.warning .notification-icon {
    background: linear-gradient(135deg, #ed8936, #dd6b20);
    color: white;
}
.notification.warning .notification-progress {
    background: linear-gradient(90deg, #ed8936, #dd6b20);
}

.notification.info .notification-icon {
    background: linear-gradient(135deg, #4299e1, #3182ce);
    color: white;
}
.notification.info .notification-progress {
    background: linear-gradient(90deg, #4299e1, #3182ce);
}

/* Responsividade */
@media (max-width: 768px) {
    .notification-container {
        left: 16px;
        right: 16px;    
        max-width: none;
    }
}