.whatsapp-button {
    position: fixed;
    bottom: 40px;
    left: 40px;
    background-color: #25d366; /* Color de fondo del botón */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Sombra del botón */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(2.1); /* Efecto de escala al pasar el cursor */
}

.whatsapp-button img {
    width: 70%; /* Tamaño del ícono de WhatsApp */
    height: auto;
}

