.whatsapp-float {
            position: fixed;
            bottom: 20px;    /* Distancia desde abajo */
            right: 20px;     /* Distancia desde la derecha */
            background-color: #25d366;
            color: white;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
            z-index: 999;    /* Para que siempre esté al frente */
            transition: all 0.3s ease;
        }

        .whatsapp-float:hover {
            transform: scale(1.1); /* Se hace un poquito más grande al pasar el mouse */
            background-color: #128c7e;
        }



        .whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 40px;
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1000;
}

.whatsapp-text {
    background-color: white;
    color: #444;
    padding: 8px 15px;
    border-radius: 20px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    margin-right: 10px;
    font-size: 14px;
    font-family: Arial, sans-serif;
    border: 1px solid #25d366;
    font-weight: bold;
}

.whatsapp-float img {
    background-color: #25d366;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.whatsapp-float:hover img {
    transform: scale(1.1);
}