/* ==========================================================================
   COBRANZA ESTRATÉGICA — Indicadores clave (template-parts/ce-indicadores.php)
   Extraído de cobranza-estrategica.html (#ce-indicadores). Prefijo ce-ind-* (únicas).
   Reutiliza el ornamento .ce-orn (definido en ce-soluciones.css).
   ========================================================================== */

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

.ce-ind-header {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 3.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.9rem;
}

.ce-ind-title {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2.2rem, 4.5vw, 3.4rem);
	font-weight: 600;
	color: var(--white);
	line-height: 1.1;
}

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

.ce-ind-eyebrow {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--gold);
}

.ce-ind-subtitle {
	font-size: clamp(1.05rem, 1.6vw, 1.25rem);
	font-weight: 400;
	color: var(--white);
	line-height: 1.4;
}

.ce-ind-desc {
	font-size: 0.9rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.8;
	max-width: 640px;
}

.ce-ind-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.ce-ind-card {
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(198, 170, 71, 0.2);
	border-radius: 14px;
	overflow: hidden;
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.03), rgba(198, 170, 71, 0.02));
	transition:
		border-color 0.3s,
		transform 0.3s;
}

.ce-ind-card:hover {
	border-color: rgba(198, 170, 71, 0.45);
	transform: translateY(-4px);
}

.ce-ind-card-img {
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

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

.ce-ind-card:hover .ce-ind-card-img img {
	transform: scale(1.05);
}

.ce-ind-card-body {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 1.8rem 1.4rem 2.2rem;
}

.ce-ind-card-title {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(1.1rem, 1.6vw, 1.4rem);
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--gold);
	line-height: 1.25;
	min-height: 2.5em;
}

.ce-ind-line {
	width: 40px;
	height: 2px;
	background: var(--gold);
	margin: 1rem 0 1.2rem;
}

.ce-ind-card-text {
	font-size: 0.88rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.62);
	line-height: 1.6;
}

@media (max-width: 900px) {
	.ce-ind-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.ce-ind-grid {
		grid-template-columns: 1fr;
	}
}
