.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
  }
  
  .whatsapp-button a {
    display: block;
    background-color: #25D366; /* Color verde de WhatsApp */
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
  }
  
  .whatsapp-button img {
    width: 40px; /* Ajusta el tamaño de la imagen según sea necesario */
    height: auto;
  }
  
  .whatsapp-button a:hover {
    background-color: #128C7E; /* Cambia el color al pasar el ratón por encima */
  }