El PP ganará las elecciones pero dependerá de un Vox al alza y el PSOE cae, según el sondeo de Aragón TV

El PP ganará las elecciones pero dependerá de un Vox al alza y el PSOE cae, según el sondeo de Aragón TV

El PP de Jorge Azcón se quedaría en una horquilla de entre 26 y 29 diputados frente a los 28 que tiene actualmente mientras el PSOE bajaría hasta los 17-18 escaños

Mapa – Los resultados de las elecciones en Aragón 2026, municipio a municipio

Sigue la última hora sobre las elecciones en Aragón: escrutinio y resultados en directo

.arco-encuesta {
margin: 0px;
}

.arco-encuesta text {
font-family: “Encode Sans”;
fill: white;
}

.columna-datos-encuesta {
text-align: right;
padding: 0px 5px;
border-bottom: 1px solid #ddd;
}

.primeracolumna-espana {
border-bottom: 1px solid #ddd;
padding-bottom: 0px;
padding-top: 0px;
}

Estimación de escaños en las Cortes de Aragón

Encuesta para las elecciones del 8F. Mayoría en 34 escaños

(function () {
var totalWidth = document.getElementById(“arco-encuesta-cis-preelectoral”).offsetWidth;

var margin = {
top: 0,
right: 0,
bottom: 0,
left: 0,
},
width = totalWidth;
height = totalWidth * 0.66;

var thickness = totalWidth > 600 ? 70 : 35;

var locale = d3.formatLocale({
decimal: “,”,
thousands: “.”,
grouping: [3],
});

var radius = Math.min(width, height) / 1.5;

var anglesRange = 0.5 * Math.PI;

var svg = d3
.select(“#arco-encuesta-cis-preelectoral”)
.append(“svg”)
.attr(“class”, “arco-encuesta”)
.attr(“width”, width)
.attr(“height”, height / 1.3 + 30);

var g = svg.append(“g”).attr(“transform”, “translate(” + width / 2 + “,” + (height / 1.5 + 30) + “)”);

var colorpartidos = d3
.scaleOrdinal()
.domain([“PSOE”, “Pod.”, “IUA”, “Existe”, “PCTE”, “Otros”, “Cs”, “SALF”, “CHA”, “Vox”, “PP”, “PAR”])
.range([
“#E02020”,
“#7C4080”,
“#007057”,
“#610f13”,
“#b80000”,
“#D6D6D6”,
“#EA8046”,
“#000000”,
“#ad0017”,
“#AAD656”,
“#02A2DD”,
“#fdbb03”,
])
.unknown(“#c5c5c5”);

var ordenpartidos = d3
.scaleOrdinal()
.domain([“PSOE”, “Pod.”, “CHA”, “IUA”, “PCTE”, “Existe”, “Otros”, “Cs”, “SALF”, “Vox”, “PP”])
.range([1, 2, 3, 4, 5, 6, 19, 20, 21, 22, 23, 24, 25, 26])
.unknown(10);

d3.csv(“https://lab.eldiario.es/elections-maps/elecciones/autonomicas/aragon/2602/previas/encuestas/encuesta_8F_aragon_esc.csv”, function (data) {
data.sort(function (a, b) {
return d3.ascending(ordenpartidos(a.partido), ordenpartidos(b.partido));
});

/* === LÍNEA MAYORÍA ABSOLUTA — INICIO === */
var outerR = radius;
g.append(“line”)
.attr(“x1”, 0)
.attr(“y1”, -(outerR + 5))
.attr(“x2”, 0)
.attr(“y2”, 0)
.attr(“stroke”, “#999”)
.attr(“stroke-width”, 1.5)
.attr(“stroke-dasharray”, “5,4”);
g.append(“text”)
.attr(“x”, 0)
.attr(“y”, 16)
.attr(“text-anchor”, “middle”)
.style(“fill”, “#999”)
.style(“font-size”, totalWidth > 600 ? “11px” : “9px”)
.style(“font-family”, “Encode Sans”)
.text(“Mayoría (34 escaños)”);
/* === LÍNEA MAYORÍA ABSOLUTA — FIN === */

var arc1 = d3
.arc()
.innerRadius(radius – thickness)
.outerRadius(radius);

var arc2 = d3
.arc()
.innerRadius(radius / 1.5 – thickness)
.outerRadius(radius / 1.5);

var pie1 = d3
.pie()
.value(function (d) {
return d.ptgescaniosactual;
})
.sort(null)
.startAngle(anglesRange * -1)
.endAngle(anglesRange);

var pie2 = d3
.pie()
.value(function (d) {
return d.ptgescanios2023;
})
.sort(null)
.startAngle(anglesRange * -1)
.endAngle(anglesRange);

var arcospath1 = g
.append(“g”)
.selectAll(“path1”)
.data(pie1(data))
.enter()
.append(“g”)
.append(“path”)
.attr(“d”, arc1)
.attr(“id”, function (d, i) {
return “preelectoral_partiesArc1_” + i;
}) //Unique id for each slice
.attr(“class”, “path1”)
.attr(“fill”, function (d) {
return colorpartidos(d.data.partido);
})
.each(function (d, i) {
this._current = i;
})
.on(“mouseover”, mouseover)
.on(“mousemove”, mousemove)
.on(“mouseout”, mouseout);

var partidosarcos1 = g
.append(“g”)
.selectAll(“.preelectoral_PartiesArc1”)
.data(data)
.enter()
.append(“text”)
.attr(“class”, “preelectoral_PartiesArc1”)
.style(“font-size”, totalWidth > 600 ?

“16px” : “12px”)
.attr(“dy”, -10) //Move the text down
.append(“textPath”)
.attr(“startOffset”, function (d) {
return d.ptgescaniosactual > 25 ? “22%” : d.ptgescaniosactual > 10 ? “19%” : d.ptgescaniosactual > 5 ? “12%” : “8%”;
})
.attr(“fill”, “black”)
.style(“text-anchor”, “middle”)
.attr(“xlink:href”, function (d, i) {
return “#preelectoral_partiesArc1_” + i;
})
.text(function (d) {
return d.ptgescaniosactual > 5 ?

(d.partido == “Comuns S.” ? “Com.” : d.partido) : “”;
});

//Append the month names to each slice
var labelsarcos1 = g
.append(“g”)
.selectAll(“.preelectoral_textArc1”)
.data(data)
.enter()
.append(“text”)
.attr(“class”, “preelectoral_textArc1”)
.style(“letter-spacing”, 1)
.style(“font-size”, totalWidth > 600 ? “16px” : “11px”)
.attr(“dy”, thickness / 1.6) //Move the text down
.append(“textPath”)
.attr(“startOffset”, function (d) {
return d.ptgescaniosactual > 30 ? “22%” : d.ptgescaniosactual > 20 ?

“20%” : d.ptgescaniosactual > 10 ? “18%” : “14%”;
})
.style(“pointer-events”, “none”)
.style(“font-weight”, 700)
.style(“text-anchor”, “middle”)
.attr(“xlink:href”, function (d, i) {
return “#preelectoral_partiesArc1_” + i;
})
.text(function (d) {
return d.ptgescaniosactual > 5 ? d.escaniosactual : “”;
});

var arcospath2 = g
.append(“g”)
.selectAll(“path2”)
.data(pie2(data))
.enter()
.append(“g”)
.append(“path”)
.attr(“d”, arc2)
.attr(“id”, function (d, i) {
return “preelectoral_partiesArc2_” + i;
}) //Unique id for each slice
.attr(“class”, “path2”)
.attr(“fill”, function (d) {
return colorpartidos(d.data.partido);
})
.each(function (d, i) {
this._current = i;
})
.on(“mouseover”, mouseover)
.on(“mousemove”, mousemove)
.on(“mouseout”, mouseout);

var labelsarcos2 = g
.append(“g”)
.selectAll(“.preelectoral_textArc2”)
.data(data)
.enter()
.append(“text”)
.attr(“class”, “preelectoral_textArc2”)
.style(“letter-spacing”, 1)
.style(“font-size”, totalWidth > 600 ? “14px” : “11px”)
.attr(“dy”, thickness / 1.6) //Move the text down
.append(“textPath”)
.attr(“startOffset”, function (d) {
return d.ptgescanios2023 > 30 ?

“22%” : d.ptgescanios2023 > 15 ? “18%” : d.ptgescanios2023 > 10 ? “15%” : “12%”;
})
.style(“pointer-events”, “none”)
.style(“text-anchor”, “middle”)
.attr(“xlink:href”, function (d, i) {
return “#preelectoral_partiesArc2_” + i;
})
.text(function (d) {
return d.ptgescanios2023 > 5 ? d.escanios2023 : “”;
});

g.append(“text”)
.attr(“x”, -radius) //Move the text from the start angle of the arc
.attr(“y”, 18) //Move the text down
.style(“text-anchor”, “start”)
.style(“fill”, “black”)
.style(“font-size”, totalWidth > 600 ?

“16px” : “13px”)
.style(“font-weight”, 700)
.text(“GAD3”);

g.append(“text”)
.attr(“x”, -radius / 1.5) //Move the text from the start angle of the arc
.attr(“y”, 18) //Move the text down
.style(“text-anchor”, “start”)
.style(“fill”, “black”)
.style(“font-size”, totalWidth > 600 ? “16px” : “12px”)
.text(“Elecc. 2023”);

var tooltipWidth = totalWidth > 600 ? “170px” : “170px”;
var tooltipPosition = totalWidth > 600 ?

“absolute” : “absolute”;

var tooltip = d3
.select(“body”)
.append(“div”)
.attr(“id”, “tooltip-info”)
.style(“position”, tooltipPosition)
.style(“z-index”, “10”)
.style(“visibility”, “hidden”)
.style(“color”, “black”)
.style(“padding”, “8px”)
.style(“background-color”, “white”)
.style(“border-radius”, “0px”)
.style(“font-size”, “12px”)
.style(“font-family”, “‘Encode Sans’”)
.style(“box-shadow”, “0 2px 2px 0 #ccc”)
.style(“border”, “1px solid #ccc”)
.style(“margin-left”, “2px”)
.style(“pointer-events”, “none”)
.style(“line-height”, “1.5”);

function mouseover(d) {
d3.select(this)
.raise()
// .style(“fill-opacity”, 1)
.attr(“stroke”, “black”)
.attr(“stroke-width”, “2px”);

hoverpartido = this.__data__.data.partido;
d3.selectAll(“.path1”).attr(“opacity”, function (d) {
return hoverpartido == d.data.partido ? 1 : 0.3;
});
d3.selectAll(“.path2”).attr(“opacity”, function (d) {
return hoverpartido == d.data.partido ? 1 : 0.3;
});

var partido = d.data.partido;
var encuestaactual = d.data.encuestaactual != “” ? locale.format(“.1f”)(d.data.encuestaactual) + “%” : “-“;
var resultados2023 = d.data.resultados2023 != “” ?

locale.format(“.1f”)(d.data.resultados2023) + “%” : “-“;
var escaniosactual = d.data.escaniosactual;
var escanios2023 = d.data.escanios2023;

tooltip.transition().duration(0).style(“opacity”, 1);
tooltip.html(

‘ +
partido +

” +

” +

Encuesta 2026
Esc. ‘ +
escaniosactual +
‘ +
escanios2023 +
Votos ‘ +
encuestaactual +
‘ +
resultados2023 +

“,
);
tooltip.style(“visibility”, “visible”);
tooltip.style(“width”, tooltipWidth);
}

function mousemove(d) {
if (totalWidth > 600) {
if (d3.event.pageX > width / 1.5) {
return tooltip.style(“top”, d3.event.pageY – 150 + “px”).style(“left”, d3.event.pageX – 200 + “px”);
}
return tooltip.style(“top”, d3.event.pageY – 150 + “px”).style(“left”, d3.event.pageX – 10 + “px”);
} else {
return tooltip
.style(
“top”,
document.getElementById(“arco-encuesta-cis-preelectoral”).getBoundingClientRect().top + window.scrollY + 200 + “px”,
)
.style(“left”, “20%”);
}
}
function mouseout(d) {
d3.selectAll(“.path1”).attr(“opacity”, 1).attr(“stroke-width”, “0px”);
d3.selectAll(“.path2”).attr(“opacity”, 1).attr(“stroke-width”, “0px”);

tooltip.style(“visibility”, “hidden”);
}
});
})();

El sondeo de GAD3 para Aragón Televisión, publicado al cierre de las urnas, prevé una victoria del Partido Popular de Jorge Azcón pero dependerá de Vox para alcanzar la mayoría absoluta. El PP se quedaría en una horquilla de entre 26 y 29 diputados frente a los 28 que tiene actualmente.

El PSOE con Pilar Alegría como candidata descendería hasta los 17-19 escaños, por debajo de los 23 que tenía. El suelo histórico del PSOE está en 18 asientos.

La encuesta de Sigma Dos dibuja un escenario muy similar: el PP obtendría 28 en el mejor caso —los que ya tiene—, y el PSOE entre 17 y 19.

La extrema derecha duplicaría sus diputados y sería la tercera fuerza cerca de los socialistas, según ambas encuestas. En la de GAD3 pasaría de los siete escaños a una horquilla de 13-14 diputados, muy similar a la de Sigma Dos, que le otorga entre 12-14. La Chunta Aragonesista también mejoraría con uno o dos asientos más, de tres escaños a cuatro o cinco, en ambos casos.

La coalición Existe, actualmente con tres diputados, podría mantenerse igual o perder uno. Izquierda Unida‑Sumar mantiene opciones de lograr un segundo escaño con una horquilla de entre uno y dos. Según estos datos, por tanto, se quedarían sin representación tanto Podemos (ahora tiene un diputado) como PAR (también uno).

Ninguno de los dos sondeos da posibilidades a Se Acabó la Fiesta (SALF), de Luis ‘Alvise’ Pérez, de entrar en las Cortes de Aragón.

A esta hora acaban de cerrar las urnas en los colegios electorales y quedan escasas horas para conocer los resultados. El último dato de participación conocido muestra una subida: del 56,29% a las 18.00 horas, más de un punto y medio por encima de la que se registró en 2023.