.floatingWhatsapp {
  position: fixed;
  right: max(22px, calc((100vw - 1360px) / 2 + 30px));
  bottom: 22px;
  z-index: 45;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 30px rgba(37, 211, 102, .28), 0 5px 14px rgba(63, 48, 38, .18);
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.floatingWhatsapp:hover,
.floatingWhatsapp:focus-visible {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 17px 34px rgba(37, 211, 102, .32), 0 7px 16px rgba(63, 48, 38, .2);
}

.floatingWhatsapp:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.floatingWhatsapp svg {
  width: 25px;
  height: 25px;
  display: block;
  fill: currentColor;
}

@media (max-width: 680px) {
  .floatingWhatsapp {
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
  }

  .floatingWhatsapp svg {
    width: 25px;
    height: 25px;
  }
}
