/* ==========================================================================
   COBRANZA ESTRATÉGICA — Hero (template-parts/ce-hero.php)
   Página Cobranza Estratégica. Extraído de cobranza-estrategica.html (#hero).

   Renombrado a #ce-hero / .ce-hero-* para NO colisionar con el hero global
   (assets/css/hero.css, que usa #hero y .hero-* y se carga en todo el sitio).
   .gold: utilidad de color usada solo en el subtítulo de este hero.
   ========================================================================== */

#ce-hero {
	position: relative;
	overflow: hidden;
	padding: 0;
}

.ce-hero-bg {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			100deg,
			rgba(10, 21, 32, 0.96) 0%,
			rgba(10, 21, 32, 0.85) 34%,
			rgba(13, 27, 42, 0.55) 68%,
			rgba(13, 27, 42, 0.4) 100%
		),
		url("../img/metodologia_s3.png") center / cover no-repeat;
}

.ce-hero-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(198, 170, 71, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(198, 170, 71, 0.04) 1px, transparent 1px);
	background-size: 60px 60px;
}

.ce-hero-inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	min-height: 92vh;
	padding: 8rem 5% 5rem;
}

.ce-hero-content {
	max-width: 640px;
}

.ce-hero-title {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(3rem, 6.4vw, 5.4rem);
	font-weight: 600;
	line-height: 1.05;
	color: var(--white);
	margin-bottom: 0;
}

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

.ce-hero-accent {
	display: block;
	width: 92px;
	height: 3px;
	background: var(--gold);
	margin: 1.8rem 0 1.8rem;
}

.ce-hero-sub {
	font-size: 1rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.8;
	max-width: 470px;
	margin-bottom: 2.6rem;
}

.gold {
	color: var(--gold);
}

@media (max-width: 900px) {
	.ce-hero-inner {
		min-height: 88vh;
		padding: 7rem 5% 4rem;
	}

	.ce-hero-content {
		max-width: 100%;
	}
}

@media (max-width: 600px) {
	.ce-hero-inner {
		padding: 6.5rem 5% 3.5rem;
	}
}
