.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  animation: pulse 1.8s infinite;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* Animación */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

/* 📱 Ajuste para móviles pequeños */
@media (max-width: 480px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }
}

/* 📱 Ajuste para móviles muy pequeños */
@media (max-width: 360px) {
  .whatsapp-float {
    width: 45px;
    height: 45px;
    bottom: 12px;
    right: 12px;
  }
}
