.botonWp {
  position: fixed;
  width: 70px;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  cursor: pointer;
  filter: drop-shadow(rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px); }
  .botonWp img {
    width: 100%;
    object-fit: cover; }


.botonWp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 70px;
  z-index: 999999;
  animation: bounced 1.5s infinite ease-in-out;
}

@keyframes bounced {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
