/*
Theme Name: TemaHijo de Parayoga
Theme URI: http://www.elegantthemes.com/gallery/divi/
Template: Divi
Author: Julia Nieto de Mingo
Author URI: http://parayoga.es
Version: 5.9.0.1786035151
Updated: 2026-08-06 18:52:31

*/
.whatsapp-flotante {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-flotante img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s ease-in-out;
}

.whatsapp-flotante:hover {
    transform: scale(1.1);
    background-color: #1ebe57;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .whatsapp-flotante {
        bottom: 15px;
        right: 15px;
        width: 55px;
        height: 55px;
    }
    .whatsapp-flotante img {
        width: 30px;
        height: 30px;
    }
}

