/* ============================================
   SECTION CTA
   Widget: webc-section-cta
   Globales: usa tokens --webc__* del theme
   ============================================ */

.section-cta {
	padding: var(--webc__section-padding-y);
	text-align: center;
}

.section-cta--primary {
	background-color: var(--webc__color-primary);
	color: var(--webc__color-white);
}

.section-cta--accent {
	background-color: var(--webc__color-accent);
	color: var(--webc__color-white);
}

.section-cta__container {
	max-width: 760px;
	margin: 0 auto;
}

.section-cta__titulo {
	font-family: var(--webc__font-display);
	font-size: var(--webc__font-size-3xl);
	font-weight: var(--webc__font-weight-bold);
	margin: 0 0 var(--webc__spacing-md) 0;
	color: inherit;
	line-height: var(--webc__line-height-tight);
}

.section-cta__descripcion {
	font-family: var(--webc__font-text);
	font-size: var(--webc__font-size-md);
	line-height: var(--webc__line-height-relaxed);
	margin: 0 0 var(--webc__spacing-xl) 0;
	opacity: 0.95;
}

.section-cta__boton {
	display: inline-block;
	font-family: var(--webc__font-text);
	font-size: var(--webc__font-size-sm);
	font-weight: var(--webc__font-weight-semibold);
	text-transform: uppercase;
	letter-spacing: var(--webc__letter-spacing-cta);
	padding: var(--webc__btn-padding);
	border: none;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.section-cta__boton:hover {
	transform: translateY(-2px);
	box-shadow: var(--webc__shadow-md);
}

@media (max-width: 767px) {
	.section-cta__titulo {
		font-size: var(--webc__font-size-2xl);
	}

	.section-cta__boton {
		width: 100%;
		max-width: 320px;
	}
}
