#wabtn-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999;
}


/* Hover animation para el botón */
#wabtn-button {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#wabtn-button:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}


/* Mover el botón un poco más arriba en móvil */
@media only screen and (max-width: 768px) {
  #wabtn-button {
    bottom: 105px !important;
  }
}
