.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: #fff;
}

.whatsapp-float__text {
  position: absolute;
  right: 70px;
  background: #ffffff;
  color: #1f2933;
  padding: 8px 12px;
  border-radius: 999px;
  font-family: "Ubuntu", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  opacity: 1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float__text {
    display: none;
  }
}
