/* Botón WhatsApp flotante — 120px desde abajo */
.wa-float,
.whatsapp-float {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: 120px;
  z-index: 10050;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
  text-decoration: none;
  transition: transform 0.2s, filter 0.2s;
}

.wa-float:hover,
.wa-float:focus,
.whatsapp-float:hover,
.whatsapp-float:focus {
  color: #fff;
  filter: brightness(1.08);
  transform: scale(1.06);
  outline: 3px solid #0b3d2c;
  outline-offset: 2px;
}

.wa-float svg,
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

body.fp-has-cta-bar .wa-float,
body.fp-has-cta-bar .whatsapp-float {
  display: none;
}

@media (max-width: 575px) {
  .wa-float,
  .whatsapp-float {
    bottom: calc(var(--fp-cta-bar-h, 58px) + 12px);
    width: 54px;
    height: 54px;
  }
}
