.whatsapp-float {
  position: fixed;
  bottom: 60px;
  right: 100px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;

  @media (max-width: 1300px) {
    right: 80px;
  }

  @media (max-width: 1100px) {
    right: 60px;
  }

  @media (max-width: 700px) {
    right: 40px;
  }
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
