body{
  margin: 0;
  padding: 0;

}
.floating-whatsapp {
  position: fixed;

  bottom: 25px;
  right: 25px;

  width: 65px;
  height: 65px;

  border-radius: 50%;


  display: flex;
  justify-content: center;
  align-items: center;

  cursor: pointer;

  z-index: 9999;

  box-shadow: 0 8px 25px rgba(0,0,0,0.25);

  animation: whatsappBounce 2s infinite;

  transition: 0.3s;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

.floating-whatsapp img {
  width: 35px;
  height: 35px;
}

@keyframes whatsappBounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }

}

@media (max-width: 600px) {

  .floating-whatsapp {
    width: 58px;
    height: 58px;

    bottom: 20px;
    right: 20px;
  }

  .floating-whatsapp img {
    width: 30px;
    height: 30px;
  }

}