:root {
    --bg: #f6f7fb;
    --panel: #ffffff;
    --accent: #0b6efd;
    --muted: #64748b;
    --glass: rgba(11,110,237,0.06);
}

.nosotros-alt {
    padding: 48px 16px;
    background: var(--bg);
    color: #0f172a;
}

/* 🔹 Contenedor principal */
.alt-single {
	max-width: 1180px;
	margin: 0 auto;
	background: var(--panel);
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
	padding: 48px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: start;
	position: relative;
}

/* 🔹 Texto a la izquierda */
.alt-left-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* 🔹 Logo y valores a la derecha */
.alt-right-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.image-frame {
	margin-bottom: 28px;
	box-shadow: 0 6px 22px rgba(15,23,42,0.06);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;

	width: 100%;
}

.image-frame img {
	max-width: 52%;
	border-radius: 10px;
}

/* 🔹 Textos */
.title {
	font-size: 32px;
	color: #054bad;
	margin-bottom: 10px;
}

.lead {
	color: var(--muted);
	line-height: 1.6;
	text-align: justify;
	margin-bottom: 24px;
}

/* 🔹 Misión / Visión */
.mv-section {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.mv-card {
	background: var(--panel);
	padding: 16px;
	border-radius: 12px;
	box-shadow: 0 6px 18px rgba(15,23,42,0.05);
}

.mv-card h4 {
	color: #0f172a;
	margin-bottom: 8px;
}

.mv-card p {
	color: var(--muted);
	text-align: justify;
}

/* 🔹 Valores */
.icon-card.values {
	background: var(--panel);
	border: 1px solid var(--glass);
	padding: 24px;
	border-radius: 12px;
	text-align: left;
	box-shadow: 0 6px 20px rgba(15,23,42,0.05);
}

.icon-card.values h4 {
	color: #054bad;
	margin-bottom: 12px;
	font-weight: 700;
}

.lista-valores-chips {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 0;
	margin: 0;
}

.lista-valores-chips li {
	background: var(--bg);
	color: #054bad;
	padding: 8px 14px;
	border-radius: 20px;
	border: 1px solid rgba(11, 110, 237, 0.1);
	font-weight: 600;
	font-size: 0.9em;
}

/* 🔹 Línea de tiempo (centrada y unificada) */
.timeline.full-width {
	grid-column: 1 / -1;
	display: flex;
	justify-content: center;
	gap: 28px;

}

.timeline.full-width .step {
	background: var(--panel);
	padding: 16px 22px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	gap: 12px;
	box-shadow: 0 6px 18px rgba(15,23,42,0.05);
	min-width: 220px;
	justify-content: center;
	text-align: left;
}

.timeline.full-width .dot {
	background: var(--accent);
	color: #fff;
	padding: 10px 14px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 15px;
}

.timeline.full-width .info strong {
	display: block;
	color: #0f172a;
	font-size: 15px;
}

.timeline.full-width .info p {
	margin: 4px 0 0;
	color: var(--muted);
	font-size: 13px;
}

/* 🔹 Botones centrados entre columnas */
.alt-cta.full-width {
	grid-column: 1 / -1;
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-top: 28px;
}

.btn {
	padding: 12px 22px;
	border-radius: 10px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn.primary {
	background: var(--accent);
	color: #fff;
}

.btn.primary:hover {
	background: #054bad;
}

.btn.ghost {
	border: 1px solid rgba(15,23,42,0.08);
	color: #0f172a;
	background: transparent;
}

.btn.ghost:hover {
	border-color: var(--accent);
	color: var(--accent);
}

/* 🔹 Responsive */
@media (max-width: 980px) {
	.alt-single {
		grid-template-columns: 1fr;
		padding: 28px;
	}

	.alt-right-content {
		order: -1;
	}

	.timeline.full-width {
		flex-direction: column;
		align-items: center;
	}

	.alt-cta.full-width {
		flex-direction: column;
		align-items: center;
	}
}
