/* ==========================================================================
   ÁREA LEGAL — Servicios clave (template-parts/al-servicios.php)
   Extraído de area_legal.html (#servicios). Prefijo "serv-" (clases únicas;
   bare #servicios no choca con #servicios-especializados del home).
   ========================================================================== */

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

.serv-header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 3.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}

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

.serv-title-line {
	width: 44px;
	height: 2px;
	background: var(--gold);
	margin-bottom: 1.2rem;
}

.serv-subtitle {
	font-size: 1rem;
	font-weight: 400;
	color: var(--gold);
	line-height: 1.6;
}

.serv-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(2.5rem, 5vw, 5rem);
	align-items: center;
	max-width: 1345px;
	margin: 0 auto;
}

.serv-img {
	overflow: hidden;
	border-radius: 20px;
	height: 340px;
}

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

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

.serv-list {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

.serv-item {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.serv-marker {
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.serv-conn {
	width: 2px;
	height: 22px;
	background: rgba(198, 170, 71, 0.45);
}

.serv-diamond {
	width: 12px;
	height: 12px;
	background: var(--gold);
	transform: rotate(45deg);
	margin: 4px 0;
	box-shadow: 0 0 8px rgba(224, 201, 106, 0.55);
}

.serv-item-title {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(1.4rem, 2.3vw, 1.8rem);
	font-weight: 600;
	color: var(--white);
	line-height: 1.2;
	margin-bottom: 0.4rem;
}

.serv-item-text {
	font-size: 0.9rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.62);
	line-height: 1.6;
}

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

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