/* Notificações */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--surface);
    color: var(--text);
    padding: 15px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10000;
    min-width: 300px;
    cursor: pointer;
    transition: var(--transition);
    animation: slideIn 0.3s ease;
}

.notification.removing {
    animation: slideOut 0.3s ease;
}

.notification-success {
    border-color: var(--success);
    background: rgba(16, 185, 129, 0.1);
}

.notification-error {
    border-color: var(--danger);
    background: rgba(239, 68, 68, 0.1);
}

.notification-warning {
    border-color: var(--warning);
    background: rgba(245, 158, 11, 0.1);
}

.notification-info {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.notification i {
    font-size: 1.2rem;
}

.notification-success i {
    color: var(--success);
}

.notification-error i {
    color: var(--danger);
}

.notification-warning i {
    color: var(--warning);
}

.notification-info i {
    color: var(--primary);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}