/*Whatsapp flotante*/
.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 30px;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
}

.float:before,
.float:after {
    content: "";
    position: absolute;
    top: 4px;
    left: 8px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #25d366;
    opacity: 0;
    animation: onda 1.7s infinite;
}

.float:before {
    animation-delay: 1s;
}

.float:after {
    animation-delay: 1.3s;
}

.float img:hover {
    width: 100%;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.float img {
    width: 90%;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.my-float {
    margin-top: 16px;
}

@keyframes onda {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    15% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scale(2.1);
        -webkit-transform: scale(2.1);
        -moz-transform: scale(2.1);
        -ms-transform: scale(2.1);
        -o-transform: scale(2.1);
    }
}

/*Fin whatsapp Flotante*/

.zoom-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.zoom-image {
    display: block;
    width: 100%;
    max-width: 400px; /* ajusta al tamaño que quieras */
    cursor: zoom-in;
}

.zoom-lens {
    position: absolute;
    border: 2px solid #000;
    width: 120px;   /* más grande que antes (120px) */
    height: 120px;  /* más grande que antes */
    border-radius: 50%;
    visibility: hidden;
    background-repeat: no-repeat;
    background-size: 400%; /* más zoom (antes estaba en 200%) */
    pointer-events: none;
}