function comprarInferior() {
let qtdInferior = parseInt(document.getElementById('qtd-inferior').textContent
if (qtd > qtdInferior) {
alert('Quantidade indisponivel para o tipo inferior')
} else {
qtdInferior = qtdInferior - qtd
document.getElementById('qtdInferior').textContent = qtdInferior
alert('Compra realizada com sucesso')
}
}
function comprarSuperior() {
let qtdSuperior = parseInt(document.getElementById('qtd-superior').textContent
if (qtd > qtdSuperior) {
alert('Quantidade indisponivel para o tipo Superior')
} else {
qtdSuperior = qtdSuperior - qtd
document.getElementById('qtdSuperior').textContent = qtdSuperior
alert('Compra realizada com sucesso')
}
}