.whatsapp {
  position: fixed;
  left: 30px; /* Icona sul margine sinistro */
  bottom: 30px;
  z-index: 99999;
}

.whatsapp a {
  display: block;
}

.whatsapp img {
  width: 60px;
  height: 60px;
  border-radius: 50%; /* Rende l'immagine rotonda */
  transition: 0.3s;
}

.whatsapp a:hover img {
  opacity: 0.8; /* Puoi aggiungere un effetto hover sull'immagine */
}