
Ana Pérez-Quiroga: ¿De qué casa eres? Los niños de Rusia. Episodios de un cotidiano #6, 2026 – Visita guiada e conversa com a artista
Guernica é o ícone.
Gernika-Lumo é o lugar — as casas, as famílias, o que foi destruído.
É daí que parte esta exposição, com duas obras: “¿De qué casa eres? — Gernika-Lumo” (2022) e “¿De qué casa eres? — Preludio” (2026).
Convidamos o público para uma visita guiada seguida de conversa com a artista Ana Pérez-Quiroga, numa reflexão sobre casa, exilio, memória e pertença.
Entrada gratuita
Para mais informações:
Appleton
Rua Acácio Paiva, nº27 r/c; 1700-004 Lisboa
(metro: Alvalade)
www.appleton.pt
Telef: +351 210 993 660
Mecenas:
HCI
MyStory Hotels
JD Collection
Financiamento:
Governo da República Portuguesa / DGArtes
Câmara Municipal de Lisboa
Apoios:
A2P
Antena 2
A Appleton integra a Rede Portuguesa de Arte Contemporânea – RPAC
Data
- 18 Jun 2026
- Desde
Hora
- 17:30 - 18:30
Localização
- Appleton Associação Cultural
- Rua Acácio Paiva, 27 R/C - Lisboa
<script>
/**
* CARTAZ CULTURAL LISBOA — CORREÇÕES GLOBAIS SEGURAS
*
* Substitui integralmente o bloco <script> antigo do footer global.
* Não colocar este código dentro do campo “CSS adicional”.
*/
(function () {
"use strict";
var observerListagens = null;
var observerLocalizacao = null;
var temporizadorListagens = null;
var tentativasLocalizacao = 0;
var limiteTentativas = 20;
function normalizarTexto(texto) {
return (texto || "")
.toString()
.toLowerCase()
.normalize("NFD")
.replace(/[\u0300-\u036f]/g, "")
.replace(/\s+/g, " ")
.trim();
}
function textoDe(elemento, seletores) {
var i;
var encontrado;
for (i = 0; i < seletores.length; i += 1) {
encontrado = elemento.querySelector(seletores[i]);
if (encontrado && encontrado.textContent.trim()) {
return encontrado.textContent.trim();
}
}
return "";
}
function linkPrincipal(card) {
var link = card.querySelector(
".mec-event-title a[href], " +
".mec-event-content h3 a[href], " +
"a.mec-color[href]"
);
if (!link || !link.href) {
return "";
}
return link.href.split("?")[0].replace(/\/$/, "");
}
function chaveDoEvento(card) {
var titulo = normalizarTexto(
textoDe(card, [
".mec-event-title",
".mec-event-content h3",
".mec-event-content h4"
])
);
var data = normalizarTexto(
textoDe(card, [
".mec-event-date",
".mec-start-date-label",
".mec-date-details",
"time"
])
);
var link = normalizarTexto(linkPrincipal(card));
if (!titulo) {
return "";
}
if (link && data) {
return link + "|" + data;
}
if (titulo && data) {
return titulo + "|" + data;
}
if (titulo && link) {
return titulo + "|" + link;
}
return "";
}
function cardPodeSerDeduplicado(card) {
/*
* Nunca atuar no formulário, evento individual
* ou clones criados pelos sliders.
*/
return !card.closest(
".mec-fes-form, " +
".mec-single-event, " +
".single-mec-events, " +
".owl-stage, " +
".slick-track, " +
".mec-slider-view, " +
".mec-event-carousel-type1, " +
".mec-event-carousel-type2"
);
}
function limparDuplicadosDasListagens() {
var listagens = document.querySelectorAll(".mec-wrap");
Array.prototype.forEach.call(listagens, function (listagem) {
var vistos = Object.create(null);
var cards = listagem.querySelectorAll(".mec-event-article");
Array.prototype.forEach.call(cards, function (card) {
var chave;
card.classList.remove("ccl-mec-duplicado");
if (!cardPodeSerDeduplicado(card)) {
return;
}
chave = chaveDoEvento(card);
if (!chave) {
return;
}
if (vistos[chave]) {
card.classList.add("ccl-mec-duplicado");
return;
}
vistos[chave] = true;
});
});
}
function agendarLimpezaDasListagens() {
window.clearTimeout(temporizadorListagens);
temporizadorListagens = window.setTimeout(function () {
limparDuplicadosDasListagens();
}, 350);
}
function mutacaoContemEventos(mutacoes) {
return mutacoes.some(function (mutacao) {
return Array.prototype.some.call(
mutacao.addedNodes,
function (no) {
if (no.nodeType !== 1) {
return false;
}
return (
no.matches(".mec-event-article, .mec-wrap") ||
Boolean(no.querySelector(".mec-event-article"))
);
}
);
});
}
function observarListagensUmaVez() {
if (
observerListagens ||
!window.MutationObserver ||
!document.body
) {
return;
}
observerListagens = new MutationObserver(function (mutacoes) {
if (mutacaoContemEventos(mutacoes)) {
agendarLimpezaDasListagens();
}
});
observerListagens.observe(document.body, {
childList: true,
subtree: true
});
}
function limparAtributosSelect2(select) {
select.removeAttribute("data-select2-id");
Array.prototype.forEach.call(
select.querySelectorAll("[data-select2-id]"),
function (opcao) {
opcao.removeAttribute("data-select2-id");
}
);
}
function removerContentorSelect2(select) {
var seguinte = select.nextElementSibling;
while (
seguinte &&
seguinte.classList &&
(
seguinte.classList.contains("select2") ||
seguinte.classList.contains("select2-container")
)
) {
var remover = seguinte;
seguinte = seguinte.nextElementSibling;
remover.remove();
}
}
function restaurarSeletorDeLocalizacao() {
var select = document.getElementById("mec_location_id");
if (!select) {
return false;
}
removerContentorSelect2(select);
limparAtributosSelect2(select);
select.classList.remove("select2-hidden-accessible");
select.classList.add("ccl-location-native");
select.removeAttribute("aria-hidden");
select.removeAttribute("hidden");
select.removeAttribute("disabled");
select.setAttribute("tabindex", "0");
select.setAttribute(
"aria-label",
"Selecionar localização do evento"
);
select.style.removeProperty("position");
select.style.removeProperty("width");
select.style.removeProperty("height");
select.style.removeProperty("clip");
select.style.removeProperty("clip-path");
select.style.removeProperty("overflow");
return true;
}
function observarLocalizacaoUmaVez() {
var select = document.getElementById("mec_location_id");
if (
observerLocalizacao ||
!select ||
!select.parentElement ||
!window.MutationObserver
) {
return;
}
observerLocalizacao = new MutationObserver(function (mutacoes) {
var recriado = mutacoes.some(function (mutacao) {
return Array.prototype.some.call(
mutacao.addedNodes,
function (no) {
return (
no.nodeType === 1 &&
no.classList &&
(
no.classList.contains("select2") ||
no.classList.contains("select2-container")
)
);
}
);
});
if (recriado) {
restaurarSeletorDeLocalizacao();
}
});
observerLocalizacao.observe(select.parentElement, {
childList: true
});
}
function tentarRestaurarLocalizacao() {
if (restaurarSeletorDeLocalizacao()) {
observarLocalizacaoUmaVez();
}
/*
* O MEC pode inicializar o Select2 depois do carregamento
* inicial ou através de AJAX.
*/
if (tentativasLocalizacao < limiteTentativas) {
tentativasLocalizacao += 1;
window.setTimeout(
tentarRestaurarLocalizacao,
500
);
}
}
function ocultarOpcoesDeHorarioDesativadas() {
[
"mec_allday",
"mec_hide_time",
"mec_hide_end_time"
].forEach(function (id) {
var campo = document.getElementById(id);
var linha = campo
? campo.closest(".mec-form-row")
: null;
if (linha) {
linha.classList.add(
"ccl-hide-time-option-row"
);
linha.setAttribute(
"aria-hidden",
"true"
);
}
});
}
function iniciar() {
limparDuplicadosDasListagens();
observarListagensUmaVez();
ocultarOpcoesDeHorarioDesativadas();
tentarRestaurarLocalizacao();
}
if (document.readyState === "loading") {
document.addEventListener(
"DOMContentLoaded",
iniciar,
{ once: true }
);
} else {
iniciar();
}
document.addEventListener(
"mec_search_success",
agendarLimpezaDasListagens
);
document.addEventListener(
"mec_load_more_success",
agendarLimpezaDasListagens
);
})();
</script>