/* =====================================================
   The Wedding House — WhatsApp V14
   ===================================================== */

/* Botón flotante WhatsApp */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9998;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 14px;
  background: #25D366;
  color: #fff !important;
  text-decoration: none;
  border-radius: 999px;
  font: 500 12px/1 -apple-system, BlinkMacSystemFont, "Montserrat", sans-serif;
  letter-spacing: .06em;
  box-shadow: 0 12px 32px rgba(37, 211, 102, .38), 0 4px 12px rgba(0,0,0,.15);
  transition: transform .25s ease, box-shadow .25s ease, background .2s ease;
  cursor: pointer;
  animation: waPulse 2.4s ease-in-out infinite;
}
.wa-float:hover {
  transform: translateY(-2px) scale(1.03);
  background: #22c15e;
  box-shadow: 0 16px 40px rgba(37, 211, 102, .55), 0 6px 16px rgba(0,0,0,.2);
  color: #fff !important;
}
.wa-float:active {
  transform: translateY(0) scale(1);
}
.wa-float svg {
  display: block;
  flex-shrink: 0;
}
.wa-float-label {
  font-weight: 500;
  white-space: nowrap;
}

/* Pulso sutil para llamar la atención */
@keyframes waPulse {
  0%, 100% { box-shadow: 0 12px 32px rgba(37, 211, 102, .38), 0 4px 12px rgba(0,0,0,.15), 0 0 0 0 rgba(37, 211, 102, .5); }
  50%      { box-shadow: 0 12px 32px rgba(37, 211, 102, .38), 0 4px 12px rgba(0,0,0,.15), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* Móvil: ícono solo, sin label */
@media (max-width: 640px) {
  .wa-float {
    right: 16px;
    bottom: 16px;
    padding: 14px;
    border-radius: 50%;
    gap: 0;
  }
  .wa-float-label { display: none; }
}

/* Cuando el lightbox de galería / venues está abierto, ocultamos */
body.arale-lb-locked .wa-float,
body.vlb-locked .wa-float {
  opacity: 0;
  pointer-events: none;
}

/* ---------- Estilos para el botón del formulario cuando lleva a WA ---------- */
.contact-form button[type="submit"].wa-submit,
.contact-form button[type="submit"] {
  transition: background .2s ease;
}
.contact-form .wa-submit-hint {
  display: block;
  margin-top: 10px;
  font: italic 300 12px/1.4 var(--serif, "Cormorant Garamond"), serif;
  color: rgba(242,239,234,.6);
  text-align: center;
}
