﻿.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 45px; /* distancia desde abajo */
    right: 20px; /* distancia desde la derecha */
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 2px 2px 5px rgba(0,0,0,.3);
    z-index: 1000;
    transition: transform 0.3s ease; /* Transición suave */
    transform: scale(1); /* Estado base */
}

    .whatsapp-float:hover {
        transform: scale(1.1); /* Crece 10% al hacer hover */
    }

.whatsapp-icon {
    line-height: 60px;
}
