/* ==========================================================================
   COBRANZA ESTRATÉGICA — Servicios (intro + CTA)
   (template-parts/ce-servicios.php) — Extraído de cobranza-estrategica.html
   (#ce-servicios). Prefijo ce-servicios-* (clases únicas).
   ========================================================================== */

#ce-servicios {
	background: var(--navy);
	position: relative;
	overflow: hidden;
	height: 75vh;
	display: flex;
	align-items: center;
}

/* Arcos dorados decorativos (esquina superior izquierda) */
#ce-servicios::before {
	content: "";
	position: absolute;
	top: -32%;
	left: -14%;
	width: 620px;
	height: 620px;
	border: 1px solid rgba(198, 170, 71, 0.22);
	border-radius: 50%;
	box-shadow:
		0 0 0 18px transparent,
		-22px 22px 0 0 rgba(198, 170, 71, 0.12);
	pointer-events: none;
}

.ce-servicios-inner {
	position: relative;
	z-index: 2;
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.8rem;
}

.ce-servicios-p {
	font-size: clamp(1rem, 1.5vw, 1.2rem);
	font-weight: 300;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.9;
	max-width: 820px;
}

.ce-servicios-inner .btn-primary {
	margin-top: 1.2rem;
}

@media (max-width: 600px) {
	#ce-servicios {
		height: auto;
	}
}
