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

#ce-costo {
	background: var(--navy2);
}

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

.ce-costo-title {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2.4rem, 5vw, 3.8rem);
	font-weight: 600;
	color: var(--white);
	line-height: 1.05;
}

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

.ce-costo-line {
	display: block;
	width: 60px;
	height: 2px;
	background: var(--gold);
	margin: 1.4rem 0 1.6rem;
}

.ce-costo-subtitle {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(1.4rem, 2.6vw, 2rem);
	font-weight: 500;
	color: var(--gold);
	line-height: 1.3;
	margin-bottom: 1.8rem;
}

.ce-costo-p {
	font-size: 0.9rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.62);
	line-height: 1.85;
	margin-bottom: 1.3rem;
}

.ce-costo-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
	margin-top: 1.6rem;
}

.ce-costo-list li {
	position: relative;
	padding-left: 1.4rem;
	font-size: 0.9rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.6;
}

.ce-costo-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--gold);
}

.ce-costo-img {
	overflow: hidden;
	border-radius: 16px;
	border: 1px solid rgba(198, 170, 71, 0.35);
	aspect-ratio: 4 / 5;
}

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

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

/* Frase de cierre con marco tipo bracket */
.ce-costo-quote {
	position: relative;
	margin-top: clamp(3rem, 5vw, 4.5rem);
	padding-top: 2.4rem;
	text-align: center;
}

.ce-costo-quote p {
	font-family: "Cormorant Garamond", serif;
	font-style: italic;
	font-size: clamp(1.1rem, 1.9vw, 1.6rem);
	font-weight: 500;
	color: var(--gold);
	line-height: 1.5;
	max-width: 960px;
	margin: 0 auto;
}

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

	.ce-costo-img {
		max-width: 480px;
		width: 100%;
		margin: 0 auto;
	}
}
