        /* Estilo general del botón flotante */
        .whatsapp-button {
            position: fixed;
            bottom: 110px;
            right: 110px;
            width: 80px;
            height: 80px;
            background-color: #25D366;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        /* Ícono de WhatsApp */
        .whatsapp-button img {
            width: 40px;
            height: 40px;
        }

        /* Efecto al pasar el mouse */
        .whatsapp-button:hover {
            transform: scale(1.2); /* Hace crecer el botón */
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3); /* Aumenta la sombra */
        }