/* ==========================================================================
   METODOLOGÍA — Intro (template-parts/metodologia-intro.php)
   Página Metodología. Extraído de metodologia.html (#metodologia).
   Prefijo m1-* / #metodologia-1 para NO colisionar con las clases .metodo-*
   del Home (assets/css/metodologia.css).
   ========================================================================== */

#metodologia-1 {
	background: var(--navy2);
	padding-top: 12rem;
	padding-bottom: 12rem;
}

.m1-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(2rem, 4vw, 4.5rem);
	align-items: center;
	padding: 60px 0 0 0;
	overflow: hidden;
}

.m1-content {
	display: flex;
	flex-direction: column;
}

.m1-title {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 600;
	line-height: 1.15;
	color: var(--white);
	margin-bottom: 2rem;
}

.m1-title em {
	font-style: normal;
	color: var(--gold);
}

.m1-accent {
	width: 90px;
	height: 3px;
	background: var(--gold);
	margin: 1rem 0 1.8rem;
}

.m1-parrafo {
	font-size: 0.92rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.62);
	line-height: 1.9;
	margin-bottom: 1.5rem;
	max-width: 560px;
}

.m1-parrafo strong {
	color: var(--gold);
	font-weight: 600;
}

.m1-img {
	align-self: stretch;
	border: 1px solid rgba(198, 170, 71, 0.25);
	border-radius: 20px;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 2 / 1;
}

.m1-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s;
	object-position: center;
}

.m1-img:hover img {
	transform: scale(1.04);
}

@media (max-width: 900px) {
	#metodologia-1 {
		padding-top: 8rem;
		padding-bottom: 8rem;
	}

	.m1-layout {
		grid-template-columns: 1fr;
		gap: 2.5rem;
		padding: 0;
	}

	.m1-img {
		order: -1;
		min-height: clamp(240px, 60vw, 380px);
		border-radius: 12px;
	}
}

@media (max-width: 600px) {
	#metodologia-1 {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}

	.m1-layout {
		padding: 30px 0 0 0;
	}
}
