/* ==========================================================================
   ÁREA LEGAL — Nuestro método (template-parts/al-metodo.php)
   Extraído de area_legal.html (#metodo). RENOMBRADO a prefijo "al-metodo-"
   para no colisionar con metodologia.css del home.
   ========================================================================== */

#al-metodo {
	background: var(--navy2);
}

.al-metodo-header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 3.5rem;
}

.al-metodo-title {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2.2rem, 4.5vw, 3.4rem);
	font-weight: 600;
	color: var(--gold);
	line-height: 1.1;
	margin-bottom: 1rem;
}

.al-metodo-subtitle {
	font-size: 0.98rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.7;
}

.al-metodo-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(2.5rem, 5vw, 5rem);
	align-items: center;
}

.al-metodo-img {
	overflow: hidden;
	border-radius: 20px;
	aspect-ratio: 4 / 3;
}

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

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

.al-metodo-steps {
	display: flex;
	flex-direction: column;
	gap: 1.8rem;
}

.al-metodo-step-title {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(1.5rem, 2.5vw, 1.9rem);
	font-weight: 600;
	color: var(--white);
	line-height: 1.2;
	margin-bottom: 0.5rem;
}

.al-metodo-step-text {
	font-size: 0.9rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.62);
	line-height: 1.7;
	max-width: 470px;
}

@media (max-width: 900px) {
	.al-metodo-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.al-metodo-img {
		max-width: 665px;
		width: 100%;
		margin: 0 auto;
	}

	.al-metodo-step-text {
		max-width: none;
	}
}
