
a:link {
    text-decoration: none;
}
a:visited {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
a:active {
    text-decoration: none;
}

.boton-vivo {
    display: inline-flex;
    align-items: center;
    background-color: #000; /* Color de fondo */
    color: #fff;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: bold;
    font-size: 18px;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    border: 2px solid #ff0000;
  }

  /* El punto rojo al lado del texto */
  .punto-rojo {
    width: 10px;
    height: 10px;
    background-color: #ff0000;
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
  }

  /* Animación de pulso alrededor del punto */
  .punto-rojo::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #ff0000;
    border-radius: 50%;
    animation: pulso 1.5s infinite; /* La animación se repite siempre */
    opacity: 0.7;
  }

  @keyframes pulso {
    0% {
      transform: scale(1);
      opacity: 0.8;
    }
    100% {
      transform: scale(3.5); /* La onda crece */
      opacity: 0; /* Desaparece al final */
    }
  }

  /* Efecto al pasar el mouse */
  .boton-vivo:hover {
    background-color: #4d4a4a;
    color: white;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
  }