/* Romper el Silencio - Core: estilos del sistema de Impacto (Fase 4). Misma paleta que etapas.css:
   fondo oscuro #101218/#16181f, texto #EAECEF/#c7cad1, acento amarillo #F9D548, rojo #D63637. */

.res-impact-summary {
	max-width: 1100px;
	margin: 32px auto 0;
	padding: 0 24px;
}
.res-impact-summary__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 12px;
}
.res-impact-summary__card {
	background: linear-gradient(160deg,#20232b 0%,#101218 100%);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 14px;
	padding: 18px 16px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	text-align: center;
}
.res-impact-summary__value {
	font-family: Inter, sans-serif;
	font-weight: 800;
	font-size: 22px;
	color: #F9D548;
}
.res-impact-summary__card--partial .res-impact-summary__value { color: #EAECEF; }
.res-impact-summary__label {
	font-family: Inter, sans-serif;
	font-size: 12px;
	color: #aeb2bb;
	text-transform: uppercase;
	letter-spacing: .04em;
}
.res-impact-summary__footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
	font-size: 13px;
	color: #aeb2bb;
}
.res-impact-summary__link {
	color: #F9D548;
	text-decoration: underline;
}
.res-impact-summary__link:focus-visible,
.res-impact-summary__link:hover {
	color: #ffe38a;
}

.res-current-stage {
	display: inline-flex;
	align-items: baseline;
	gap: 8px;
	background: rgba(214,54,55,.12);
	border: 1px solid rgba(214,54,55,.4);
	border-radius: 999px;
	padding: 8px 16px;
}
.res-current-stage__label {
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: #ff6b6c;
}
.res-current-stage__value {
	color: #EAECEF;
	font-weight: 700;
}

.res-stage-progress__track {
	background: rgba(255,255,255,.08);
	border-radius: 999px;
	height: 10px;
	overflow: hidden;
}
.res-stage-progress__fill {
	background: linear-gradient(90deg, #F9D548, #D63637);
	height: 100%;
	border-radius: 999px;
}
.res-stage-progress__text {
	display: block;
	margin-top: 6px;
	font-size: 13px;
	color: #aeb2bb;
}

/* Página /impacto/ */
.res-impact-page__methodology {
	background: #16181f;
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 14px;
	padding: 20px 24px;
	color: #c7cad1;
	font-size: 14px;
	line-height: 1.7;
}
.res-impact-page__methodology h2 {
	color: #EAECEF;
	font-size: 18px;
	margin-top: 0;
}
.res-impact-page__methodology ul {
	padding-left: 20px;
}

@media (prefers-reduced-motion: reduce) {
	.res-stage-progress__fill { transition: none; }
}
