btnRemoverConcluida.onclick = () => {
const seletor = '.app__section-task-list-item-complete'
document.querySelectorAll(seletor).forEach(elemento => elemento.remove())
tarefas = tarefas.filter(tarefa => !tarefa.completa)
paragrafoDescricaoTarefa.textContent = ''
atualizarTarefas()
}
btnRemoverTodas.onclick = () => {
const seletor = '.app__section-task-list-item'
document.querySelectorAll(seletor).forEach(elemento => elemento.remove())
tarefas = []
paragrafoDescricaoTarefa.textContent = ''
atualizarTarefas()
}