/* ===== SWEET ALERT CUSTOM ===== */

.swal-custom {
    border-radius: 20px !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* título */
.swal-title {
    font-weight: 800 !important;
    background: linear-gradient(135deg, #FFFFFF, #1A86FA, #6C1BE8);
    -webkit-background-clip: text;
    color: transparent !important;
}

/* botão */
.swal-btn {
    border-radius: 40px !important;
    padding: 12px 28px !important;
    font-weight: 600 !important;
    background: linear-gradient(135deg, #1A86FA, #6C1BE8) !important;
    border: none !important;
    transition: 0.3s;
}

.swal-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(26,134,250,0.4);
}

.swal2-popup {
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.swal-custom {
    border: 1px solid rgba(108,27,232,0.4) !important;
    box-shadow: 
        0 0 20px rgba(108,27,232,0.3),
        0 20px 60px rgba(0,0,0,0.6);
}