Nombramientos & Fichajes en Despachos
Tendencias 2025 — Especialidades demandadas y brecha de género
Especialidades con Mayor Demanda de Fichajes
Peso relativo estimado sobre el total de incorporaciones en grandes despachos — 2025
Representación Femenina por Especialidad
Porcentaje estimado de mujeres abogadas por área de práctica
Más feminizadasFamilia, Extranjería y Violencia de Género concentran la mayor presencia femenina (>54%).
Mayor brechaMercantil/M&A y Fiscal tienen la menor representación femenina, pese a ser las más demandadas.
Brecha de Género según Nivel Jerárquico
La base está feminizada; la cúspide permanece masculinizada — 2025
Fuentes: Consejo General de la Abogacía (dic. 2025) · LawAndTrends · Expansión Jurídico · IBA · Best Law Firms Spain 2026 · ICAB
const ctxE = document.getElementById(‘chartEspecialidades’).getContext(‘2d’);
new Chart(ctxE, {
type: ‘bar’,
data: {
labels: dataEspecialidades.labels,
datasets: [{ data: dataEspecialidades.values, backgroundColor: [‘#C8956C’,’#8B6F47′,’#D4A96A’,’#A0855B’,’#6B4E2A’,’#E8C49A’,’#B8936A’,’#7A5C3A’], borderRadius: 4, borderSkipped: ‘left’ }]
},
options: {
indexAxis: ‘y’, responsive: true, maintainAspectRatio: false,
plugins: { legend: { display: false }, tooltip: { backgroundColor:’#1A1208′, titleColor:’#D4A96A’, bodyColor:’#C8A87A’, borderColor:’#8B6F47′, borderWidth:1, callbacks:{ label: ctx => ` ${ctx.raw}%` } } },
scales: { x: { ticks:{ color:’#7A6040′, callback: v => v+’%’ }, grid:{ color:’#2A1D0A’ } }, y: { ticks:{ color:’#C8A87A’ }, grid:{ display:false } } },
animation: { duration: 700 }
}
});
let chartGeneroInst = null;
function initChartGenero() {
if (chartGeneroInst) return;
chartGeneroInst = new Chart(document.getElementById(‘chartGenero’).getContext(‘2d’), {
type: ‘bar’,
data: { labels: dataGenero.labels, datasets: [
{ label:’Mujeres’, data: dataGenero.mujeres, backgroundColor:’#C8956C’, stack:’g’ },
{ label:’Hombres’, data: dataGenero.hombres, backgroundColor:’#3A5235′, borderRadius:4, stack:’g’ }
]},
options: {
indexAxis:’y’, responsive:true, maintainAspectRatio:false,
plugins: { legend:{ display:true, labels:{ color:’#8B7050′, boxWidth:14 } }, tooltip:{ backgroundColor:’#1A1208′, titleColor:’#D4A96A’, bodyColor:’#C8A87A’, borderColor:’#8B6F47′, borderWidth:1, callbacks:{ label: ctx => ` ${ctx.dataset.label}: ${ctx.raw}%` } } },
scales: { x:{ stacked:true, max:100, ticks:{ color:’#7A6040′, callback: v => v+’%’ }, grid:{ color:’#2A1D0A’ } }, y:{ stacked:true, ticks:{ color:’#C8A87A’ }, grid:{ display:false } } },
animation:{ duration:700 }
}
});
}
let chartNivelesInst = null;
function initChartNiveles() {
if (chartNivelesInst) return;
chartNivelesInst = new Chart(document.getElementById(‘chartNiveles’).getContext(‘2d’), {
type: ‘bar’,
data: { labels: dataNiveles.labels, datasets: [
{ label:’Mujeres’, data: dataNiveles.mujeres, backgroundColor:’#C8956C’, stack:’n’ },
{ label:’Hombres’, data: dataNiveles.hombres, backgroundColor:’#3A5235′, borderRadius:4, stack:’n’ }
]},
options: {
indexAxis:’y’, responsive:true, maintainAspectRatio:false,
plugins: { legend:{ display:true, labels:{ color:’#8B7050′, boxWidth:14 } }, tooltip:{ backgroundColor:’#1A1208′, titleColor:’#D4A96A’, bodyColor:’#C8A87A’, borderColor:’#8B6F47′, borderWidth:1, callbacks:{ label: ctx => ` ${ctx.dataset.label}: ${ctx.raw}%` } } },
scales: { x:{ stacked:true, max:100, ticks:{ color:’#7A6040′, callback: v => v+’%’ }, grid:{ color:’#2A1D0A’ } }, y:{ stacked:true, ticks:{ color:’#C8A87A’ }, grid:{ display:false } } },
animation:{ duration:700 }
}
});
}
function mostrarTab(tab) {
[‘especialidades’,’genero’,’niveles’].forEach(t => {
document.getElementById(‘panel-‘ + t).style.display = t === tab ? ‘block’ : ‘none’;
const btn = document.getElementById(‘tab-‘ + t);
btn.style.background = t === tab ? ‘linear-gradient(135deg,#C8956C,#8B6F47)’ : ‘transparent’;
btn.style.color = t === tab ? ‘#0E0B06’ : ‘#7A6040’;
btn.style.fontWeight = t === tab ? ‘600’ : ‘400’;
});
if (tab === ‘genero’) initChartGenero();
if (tab === ‘niveles’) initChartNiveles();
}
La entrada 8M 2026 grafico se publicó primero en Lawyerpress NEWS.
Artículo de Redacción publicado en https://www.lawyerpress.com/2026/03/08/8m-2026-grafico/