.whatsapp-float-container {
  position: fixed;
  right: 14px;
  bottom: 50px;
  z-index: 31;
  pointer-events: none;
}

.whatsapp-float-link {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #25d366;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
  pointer-events: auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.whatsapp-float-link img {
  width: 28px;
  height: 28px;
  display: block;
}

.whatsapp-float-link:hover {
  transform: translateY(-2px) scale(1.04);
  background-color: #1fb556;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.32);
}

.whatsapp-float-link:focus-visible {
  outline: 2px solid #f4f4f4;
  outline-offset: 2px;
}

@media (max-width: 980px) {
  .whatsapp-float-container {
    right: calc((100vw - 100%) + 14px);
    bottom: 50px;
  }

  .whatsapp-float-link {
    width: 52px;
    height: 52px;
  }

  .whatsapp-float-link img {
    width: 26px;
    height: 26px;
  }
}
