.btn-wsp {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font-family: 'Raleway', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0px; /* Espacio de relleno del botón */
    outline: none !important;
    color: #ffffff;
    font-size: 22px;
    font-weight: bold;
    position: fixed;
    bottom: 20px;
    right: 100px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%; /* Ajusta el tamaño del fondo del botón */
    display: block;
    width: 80px; /* Ancho del botón */
    height: 80px; /* Altura del botón */
    text-transform: none;
    text-align: center;
    line-height: 60px; /* Centra el texto verticalmente en el botón */
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(213, 160, 79);
    animation: zoom 1s infinite;
    /* Establecer el icono como fondo */
   
    z-index: 9999;
  }
  
  @keyframes zoom {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(213, 160, 79);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 40px 0 rgba(255, 165, 0, 0.7); /* Cambia el tamaño y la opacidad de la sombra */
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(213, 160, 79);
    }
  }
  
  @media only screen and (max-width: 768px) {
    .btn-wsp {
      bottom: 20px;
      right: 20px;
      transform: none; /* Elimina la transformación para centrar horizontalmente en dispositivos móviles */
    }
  }


