/* Estilos generales para el ícono flotante */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 20px;
            left: 20px; /* Cambiado para estar a la izquierda */
            background-color: #3ec34f;
            color: white;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 0px 0px 0px #;
            z-index: 9999;
            opacity: 0; /* Inicialmente invisible */
            transform: translateY(100px); /* Empieza desplazado hacia abajo */
            transition: all 1s ease; /* Transición suave */
        }

        .whatsapp-float.show {
            opacity: 1; /* Hacer visible después de la animación */
            transform: translateY(0); /* Volver a su posición original */
        }

        .whatsapp-float img {
            margin-top: 10px;
            width: 40px;
            height: 40px;
        }

        .whatsapp-float a {
            color: white;
            text-decoration: none;
        }