.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  z-index: 1000;
  line-height: 30px;
  text-decoration: none;
  transition: transform 0.2s;
  padding: 3px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20b954;
}

.whatsapp-float > img {
}