/* ==========================================================================
   ÁREA LEGAL — La diferencia Juvera (template-parts/al-diferencia.php)
   Extraído de area_legal.html (#diferencia). Prefijo "dif-" (clases únicas).
   ========================================================================== */

#diferencia {
	background: var(--navy);
}

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

.dif-deco {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	margin-bottom: 1.8rem;
}

.dif-deco-line {
	width: 44px;
	height: 1px;
	background: var(--gold);
}

.dif-deco-diamond {
	width: 8px;
	height: 8px;
	border: 1px solid var(--gold);
	transform: rotate(45deg);
}

.dif-title {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2.2rem, 5vw, 3.6rem);
	font-weight: 600;
	color: var(--white);
	line-height: 1.1;
	margin-bottom: 1rem;
}

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

.dif-subtitle {
	font-size: 1.05rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.5;
	margin-bottom: 2rem;
}

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

.dif-frase {
	font-size: 1rem;
	font-weight: 600;
	font-style: italic;
	color: var(--gold);
	line-height: 1.6;
	margin-top: 1.6rem;
	max-width: 560px;
}

.dif-img {
	border: 1px solid rgba(198, 170, 71, 0.7);
	border-radius: 18px;
	padding: 6px;
}

.dif-img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
	aspect-ratio: 4 / 3;
	transition: transform 0.6s;
}

.dif-img:hover img {
	transform: scale(1.03);
}

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

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

	.dif-parrafo,
	.dif-frase {
		max-width: none;
	}
}
