/* ==========================================================================
   METODOLOGÍA — Componente (template-parts/metodologia.php)
   Extraído de global.css
   ========================================================================== */

#metodologia {
	background: var(--navy2);
}

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

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

.metodo-brand {
	font-family: "Montserrat", sans-serif;
	font-size: clamp(1.8rem, 1.2vw, 2.6rem);
	font-weight: 500;
	letter-spacing: 0.04em;
	color: var(--gold);
	margin-top: 0.8rem;
}

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

.metodo-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;
}

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

.metodo-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;
}

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

.metodo-btn {
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	gap: 0.9rem;
	background: var(--gold);
	color: var(--navy);
	padding: 0.7rem 1.8rem 0.7rem 0.7rem;
	border: none;
	border-radius: 4px;
	font-family: inherit;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-decoration: none;
	cursor: pointer;
	margin-top: 0.8rem;
	transition:
		background 0.25s,
		transform 0.25s;
}

.metodo-btn:hover {
	background: var(--gold2);
	transform: translateY(-2px);
}

.metodo-btn-icon {
	width: 34px;
	height: 34px;
	flex-shrink: 0;
	border-radius: 50%;
	background: rgba(13, 27, 42, 0.12);
	border: 1px solid rgba(13, 27, 42, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
}

.metodo-btn-icon svg {
	width: 18px;
	height: 18px;
}

.metodo-note {
	font-size: 0.8rem;
	font-weight: 300;
	font-style: italic;
	color: rgba(255, 255, 255, 0.45);
	margin-top: 1.6rem;
}

.metodo-img {
	align-self: stretch;
	min-height: clamp(320px, 40vw, 560px);
	border: 1px solid rgba(198, 170, 71, 0.25);
	border-radius: 90px 12px 90px 12px;
	overflow: hidden;
}

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

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

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
	.metodo-layout {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

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