.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
  padding: 10px 14px 10px 10px;
  border-radius: 999px;
  background: linear-gradient(130deg, #18b857 0%, #1ed760 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 10px 28px rgba(17, 100, 50, 0.45);
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: whatsappPulse 2.2s infinite;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(17, 100, 50, 0.55);
}

.whatsapp-float__icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.14);
}

.whatsapp-float__icon svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 10px 28px rgba(17, 100, 50, 0.45);
  }
  50% {
    box-shadow: 0 12px 34px rgba(17, 100, 50, 0.62);
  }
}

@media (max-width: 780px) {
  .whatsapp-float {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    padding: 0;
    justify-content: center;
    gap: 0;
  }

  .whatsapp-float__label {
    display: none;
  }
}
