/*
 * Estilos para el Botón de WhatsApp Flotante (con GIF)
 */
.bwg-boton-flotante {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 490;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.bwg-boton-flotante img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.bwg-boton-flotante:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
    .bwg-boton-flotante {
        bottom: 67px;
    }
}