.bt-floating-whatsapp {
  align-items: center;
  bottom: var(--bt-wa-bottom, 24px);
  display: flex;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .22));
  gap: 9px;
  position: fixed;
  right: 24px;
  text-decoration: none !important;
  z-index: 99999;
}

.bt-floating-whatsapp__label {
  background: #fff;
  border: 1px solid rgba(17, 24, 39, .08);
  border-radius: 999px;
  color: #17202a;
  font: 700 14px/1.2 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding: 11px 15px;
  transition: transform .18s ease;
  white-space: nowrap;
}

.bt-floating-whatsapp__icon {
  align-items: center;
  background: #25d366;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  display: flex;
  height: 58px;
  justify-content: center;
  transition: background-color .18s ease, transform .18s ease;
  width: 58px;
}

.bt-floating-whatsapp__icon svg {
  height: 34px;
  width: 34px;
}

.bt-floating-whatsapp:hover .bt-floating-whatsapp__icon,
.bt-floating-whatsapp:focus-visible .bt-floating-whatsapp__icon {
  background: #1ebe5d;
  transform: translateY(-2px) scale(1.03);
}

.bt-floating-whatsapp:hover .bt-floating-whatsapp__label,
.bt-floating-whatsapp:focus-visible .bt-floating-whatsapp__label {
  transform: translateY(-2px);
}

.bt-floating-whatsapp:focus-visible {
  border-radius: 999px;
  outline: 3px solid rgba(37, 211, 102, .35);
  outline-offset: 4px;
}

@media (max-width: 600px) {
  .bt-floating-whatsapp {
    bottom: var(--bt-wa-bottom-mobile, 18px);
    right: 14px;
  }

  .bt-floating-whatsapp__label {
    display: none;
  }

  .bt-floating-whatsapp__icon {
    height: 54px;
    width: 54px;
  }

  .bt-floating-whatsapp__icon svg {
    height: 31px;
    width: 31px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bt-floating-whatsapp__icon,
  .bt-floating-whatsapp__label {
    transition: none;
  }
}

