.whatsapp-container {
    position:fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
  }
  
  .whatsapp-button {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
  }
  
  .whatsapp-button img {
    width: 40px;
    height: 40px;
  }
  
  .whatsapp-button:hover img {
    transform: scale(1.1); /* Escala el icono cuando se pasa el ratón sobre él */
  }