/* Botón flotante Bellagio Chat */
.bellagio-chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    transition: all 0.3s ease;
}

.bellagio-chat-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(106, 17, 203, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.bellagio-chat-button a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(106, 17, 203, 0.6);
}

.bellagio-chat-button a:active {
    transform: scale(0.95);
}

.bellagio-chat-button svg {
    width: 24px;
    height: 24px;
}

/* Animación de pulso */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(106, 17, 203, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(106, 17, 203, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(106, 17, 203, 0.4);
    }
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .bellagio-chat-button {
        bottom: 15px;
        right: 15px;
    }
    
    .bellagio-chat-button a {
        width: 50px;
        height: 50px;
    }
    
    .bellagio-chat-button svg {
        width: 20px;
        height: 20px;
    }
}

/* Para pantallas muy pequeñas */
@media (max-width: 480px) {
    .bellagio-chat-button {
        bottom: 10px;
        right: 10px;
    }
    
    .bellagio-chat-button a {
        width: 45px;
        height: 45px;
    }
    
    .bellagio-chat-button svg {
        width: 18px;
        height: 18px;
    }
}

/* Asegurar que esté por encima de otros elementos */
.bellagio-chat-button {
    z-index: 999999;
}