/* --- Floating WhatsApp pop-up button with number (bottom-left) ----------- */
.wa-float {
  position: fixed;
  left: 22px;
  bottom: 96px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px 10px 12px;
  border-radius: 999px;
  text-decoration: none;
  color: #f2fff6;
  background: linear-gradient(135deg, #22b45c, #128c3e 55%, #0c6f31);
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: 0 14px 34px rgba(9,84,42,0.38);
  opacity: 0;
  transform: translateY(28px);
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.25s ease;
}
.wa-float.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.wa-float:hover,
.wa-float:focus-visible {
  box-shadow: 0 18px 40px rgba(9,84,42,0.5);
  transform: translateY(-3px);
}
.wa-float-ico {
  position: relative;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #128c3e;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}
.wa-float-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #d4a017;
  border: 2px solid #0c6f31;
}
.wa-float-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 1px solid rgba(212,160,23,0.75);
  animation: waFloatPulse 2.6s ease-out infinite;
}
@keyframes waFloatPulse {
  0%   { transform: scale(0.6); opacity: 0.9; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}
.wa-float-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  white-space: nowrap;
}
.wa-float-copy strong {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.wa-float-copy span {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #cdf5d8;
}
@media (max-width: 640px) {
  .wa-float {
    left: 14px;
    bottom: 84px;
    padding: 8px 16px 8px 8px;
    gap: 9px;
  }
  .wa-float-ico { width: 36px; height: 36px; }
  .wa-float-ico svg { width: 20px; height: 20px; }
  .wa-float-copy strong { font-size: 14px; }
  .wa-float-copy span { font-size: 10px; letter-spacing: 0.12em; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float { transition: opacity 0.3s ease; transform: none; }
  .wa-float.visible { transform: none; }
  .wa-float:hover, .wa-float:focus-visible { transform: none; }
  .wa-float-dot::after { animation: none; }
}
