﻿.toast-soporte {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #1e88e5;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 99999;
}

    .toast-soporte.visible {
        opacity: 1;
        transform: translateY(0);
    }
/* Fondo oscuro */
.notificacion-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 99999;
}

    /* Activación */
    .notificacion-overlay.visible {
        opacity: 1;
    }

/* Caja central */
.notificacion-box {
    background: white;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    text-align: center;
    animation: scaleIn 0.3s ease;
    max-width: 400px;
}

/* Icono */
.notificacion-icono {
    font-size: 40px;
    margin-bottom: 15px;
}

/* Texto */
.notificacion-texto {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

/* Animación */
@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}