.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.whatsapp-float:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(37, 211, 102, 0.25);
}

.whatsapp-float__icon {
  display: flex;
  width: 24px;
  height: 24px;
}

.whatsapp-float__icon svg {
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .whatsapp-float {
    width: 100px;
    height: 100px;
  }

  .whatsapp-float__icon {
    width: 55px;
    height: 55px;
  }
}
