/* ============================================================
   whatsapp.css
   Botón flotante de WhatsApp – esquina inferior derecha.
   ============================================================ */

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;             /* Verde oficial de WhatsApp */
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, .5);
  animation: none;               /* Detener el pulso al hacer hover */
}

.whatsapp-float svg {
  width: 28px; height: 28px;
  fill: white;
}

