/* ==========================================================================
   COBRANZA ESTRATÉGICA — El siguiente paso claro (template-parts/ce-cita.php)
   Extraído de cobranza-estrategica.html (#ce-cita). Prefijo ce-cita-* (únicas).
   ========================================================================== */

#ce-cita {
	background: var(--navy);
}

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

.ce-cita-deco {
	display: block;
	width: 50px;
	height: 2px;
	background: var(--gold);
	margin-bottom: 1.6rem;
}

.ce-cita-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: 1.8rem;
}

.ce-cita-p {
	font-size: 0.95rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.8;
	margin-bottom: 1.3rem;
	max-width: 520px;
}

.ce-cita-actions {
	display: flex;
	margin-bottom: 2rem;
	gap: 1rem;
	flex-wrap: wrap;
	margin-top: 2rem;
}

.ce-cita-img {
	overflow: hidden;
	border-radius: 16px;
	border: 1px solid rgb(198, 170, 71);
	aspect-ratio: 4 / 5;
	max-width: 480px;
	width: 100%;
	margin: 0 auto;
}

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

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

.ce-cita-note {
	margin-top: clamp(3rem, 5vw, 4rem);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 1.6rem;
}

.ce-cita-note-line {
	width: 60px;
	height: 2px;
	background: var(--gold);
}

.ce-cita-note p {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(1.3rem, 2.4vw, 2rem);
	font-weight: 500;
	color: var(--gold);
	line-height: 1.4;
	max-width: 900px;
}

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

	.ce-cita-p {
		max-width: none;
	}

	.ce-cita-img {
		aspect-ratio: 5 / 4;
		display: none;
	}

	.ce-cita-actions {
		justify-content: center;
	}
}
