/* Valendis: botón flotante de WhatsApp */
.whatsapp-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    filter 150ms ease;
  -webkit-tap-highlight-color: transparent;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  color: #fff;
  filter: brightness(1.03);
  text-decoration: none;
  outline: none;
}

.whatsapp-float i {
  font-size: 28px;
  line-height: 1;
}

@media (max-width: 575px) {
  .whatsapp-float {
    left: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float i {
    font-size: 26px;
  }
}
