/* ===================================
   PÁGINA NOSOTROS - ESTILOS EXACTOS DE ASTRO
   =================================== */

.container {
	width: 100%;
	max-width: 1136px;
	margin: 0 auto;
	padding: 0 1rem;
}

/* ===================================
   HERO FULL WIDTH
   =================================== */

.about-hero {
	position: relative;
	background-image: url('https://lloredacamacho.com/wp-content/uploads/2025/10/fondo-about-us.jpg');
	background-size: cover;
	background-position: center;
	color: var(--color-white);
	padding: 120px 0;
	overflow: hidden;
}

.about-hero-overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: 
		linear-gradient(90deg, rgba(0, 27, 112, 0.65) 0%, rgba(0, 27, 112, 0.40) 40%, rgba(0, 27, 112, 0.00) 80%),
		radial-gradient(55% 55% at 65% 30%, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.06) 40%, rgba(255,255,255,0) 70%);
}

.about-hero-inner {
	position: relative;
	max-width: 1136px;
	margin: 0 auto;
	padding: 0 1rem;
}

.hero-title {
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 2rem;
	line-height: 1.15;
	margin: 0 0 1rem 0;
}

.hero-subtitle {
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.7;
	max-width: 860px;
}

/* ===================================
   MISIÓN / VISIÓN ENCAJADO
   =================================== */

.mission-vision {
	background: #fff;
	padding: 96px 0;
}

.section-title {
	color: var(--color-primary);
	text-align: center;
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 1.75rem;
	margin-bottom: 40px;
}

.mv-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

.mv-card {
	border: 1px solid #E7EAF0;
	border-radius: 16px;
	padding: 24px;
	background: #fff;
}

.mv-icon {
	color: var(--color-primary);
	margin-bottom: 12px;
}

.mv-card-title {
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 1.25rem;
	color: var(--color-primary);
	margin-bottom: 8px;
}

.mv-card-text {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--color-primary);
}

/* ===================================
   SOCIAL FULL WIDTH
   =================================== */

.social {
	position: relative;
	background: linear-gradient(90deg, #001B70 0%, #0626A9 100%);
	color: var(--color-white);
	padding: 120px 0;
	overflow: hidden;
}

.social-overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(70% 60% at 80% 25%, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.06) 45%, rgba(255,255,255,0) 70%);
}

.section-title.invert {
	color: var(--color-white);
	margin-bottom: 16px;
}

.social-text {
	max-width: 900px;
	font-size: 1.0625rem;
	line-height: 1.7;
	margin: 0 auto 32px;
	text-align: center;
}

.achievements {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	margin-top: 16px;
}

.ach-card {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 16px;
	padding: 20px 20px 18px;
	display: flex;
	align-items: center;
	gap: 16px;
	backdrop-filter: blur(4px);
}

.ach-icon {
	color: var(--color-yellow);
}

.ach-number {
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 1.5rem;
}

.ach-label {
	font-size: 0.975rem;
	opacity: 0.95;
}

/* ===================================
   RESPONSIVE - TABLET
   =================================== */

@media (min-width: 768px) {
	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.0625rem;
	}

	.section-title {
		font-size: 2.125rem;
	}

	.mv-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	.achievements {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}
}

/* ===================================
   RESPONSIVE - DESKTOP
   =================================== */

@media (min-width: 1024px) {
	.hero-title {
		font-size: 3rem;
	}

	.section-title {
		font-size: 2.5rem;
	}
}
