.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 100;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

@media (max-width: 600px) {
  .whatsapp-float {
    bottom: 130px;
    bottom: 50px;
  }

}