/* ════════════════════════════════════════════════════════════════
                      WHATSAPP BUTTON
════════════════════════════════════════════════════════════════ */

.whatsapp-float {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 500;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  font-size: 1.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  animation: pulse-wpp 2.5s ease-in-out infinite;
  transition: transform var(--dur);
}
.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes pulse-wpp {
  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 6px 40px rgba(37, 211, 102, 0.85);
  }
}
