let qtdPista = 100
let qtdSuperior = 200
let qtdInferior = 400
function comprar (id){
let quantidade = parseInt.document.getElementById('qtd').value
let tipoDoIngresso = document.getElementById('tipo-ingresso').value
qtdPista = document.getElementById('qtd-pista')
qtdInferior = document.getElementById('qtd-inferior')
qtdSuperior = document.getElementById('qtd-superior')
if (quantidade = qtdPista){
qtdPista = qtdPista - quantidade
qtdPista.textContent = qtdPista}
else if (quantidade <= qtdInferior)
{
qtdInferior = qtdInferior - quantidade
qtdInferior.textContent = qtdInferior}
else if (quantidade <= qtdSuperior)
{
qtdSuperior = qtdSuperior - quantidade
qtdSuperior.textContent = qtdSuperior}
else{
alert('numero invalido')
}
}