/* ==================== NOTIFICAÇÕES ==================== */
.error {
    position: absolute;
    bottom: 10px;
    right: 10px;
    max-width: 280px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    display: none;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    animation: slideUp 0.3s ease-out;
}

.error.error-type {
    background: #ffebee;
    color: #c62828;
    border-left: 4px solid #c62828;
}

.error.success-type {
    background: #e8f5e9;
    color: #2e7d32;
    border-left: 4px solid #2e7d32;
}

.error.warning-type {
    background: #fff3cd;
    color: #856404;
    border-left: 4px solid #856404;
}

.error.info-type {
    background: #e3f2fd;
    color: #1565c0;
    border-left: 4px solid #1565c0;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsivo */
@media (max-width: 480px) {
    .error {
        bottom: 8px;
        right: 8px;
        left: 8px;
        max-width: none;
        font-size: 0.78rem;
        padding: 9px 12px;
    }
}
