TESTE

<a href="https://thequietumplus.com/video.php?aff_id=285495" target="_blank" rel="noopener noreferrer" class="botao" aria-label="Reveal the solution" role="button">
  <svg ...> </svg>
  <span>Click here to</span>
  <span>REVEAL THE SOLUTION</span>
  <svg ...> </svg>
</a>

<style>
.botao {
  display: inline-flex;
  align-items: center;
  gap: 1rem; /* Espaçamento entre os elementos */
  padding: 1rem 2rem; /* Espaçamento interno */
  background-color: #4f46e5; /* Cor de fundo */
  color: white; /* Cor do texto */
  border: none;
  border-radius: 0.75rem; /* Raio da borda */
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease; /* Transição suave */
  /* Outros estilos... */
  position: relative; /* Para posicionar os efeitos */
  overflow: hidden; /* Esconde os efeitos que ultrapassam o botão */
}

.botao:hover {
  background-color: #453e84; /* Cor de fundo no hover */
  transform: scale(1.05);
}

/* Efeitos de brilho e animação (adapte conforme necessário) */
.botao::before { /* Brilho */
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  background: linear-gradient(to right, #6366f1, #8b5cf6); /* Gradiente de cores */
  border-radius: inherit;
  z-index: -1; /* Fica atrás do botão */
  opacity: 0.5; /* Opacidade do brilho */
  animation: shimmer 2s linear infinite; /* Animação de brilho */
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

/* ... (resto do CSS) */
</style>
document.getElementsByTagName("h1")[0].style.fontSize = "6vw";