const lista = document.querySelector('[data-lista]');
let btnEsconderTintas = document.querySelector('#btnEsconderTintas'); let btnMostrarTintas = document.querySelector('#btnMostrarTintas')
function EsconderTintas(){ lista.style.display ='none' }
btnEsconderTintas.addEventListener('click',EsconderTintas)
function MostrarTitas(){ lista.style.display ='flex' }
btnMostrarTintas.addEventListener('click',MostrarTitas)