.whatsapp-bot {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
}

#btnWsp {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  border: none;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

#btnWsp img {
  width: 50px;
  height: 50px;
  transition: transform 0.4s ease, filter 0.3s ease;
}

#btnWsp:hover img {
  transform: scale(1.2) rotate(10deg);
  filter: brightness(1.1);
}

.menu-wsp {
  display: none;
  position: absolute;
  bottom: 70px;
  right: 0;
  background-color: white;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  width: 220px;
}

.menu-wsp p {
  margin-top: 0;
  font-weight: bold;
}

.menu-wsp button {
  display: block;
  width: 100%;
  margin: 6px 0;
  padding: 8px;
  background-color: #f1f1f1;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  font-size: 14px;
}

.menu-wsp button:hover {
  background-color: #e0e0e0;
}

/* Esta animación hace que pulse el boton de wsp  */

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

#btnWsp.pulsar {
  animation: pulse 1.2s ease-in-out 3;
}