/* =============================================================================
   CTA Section  —  css/cta-section.css
   ============================================================================= */

/* ── Sección principal ──────────────────────────────────────────────────────── */
.cta-section {
	padding: 100px 20px;
	background: linear-gradient(135deg, var(--primary, #A6C3C9), var(--primary_hover, #78afba));
	text-align: center;
	color: #fff;
}

/* ── Wrapper centrado ───────────────────────────────────────────────────────── */
.cta-section__container {
	max-width: 760px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

/* ── Título ─────────────────────────────────────────────────────────────────── */
.cta-section__title {
	font-family: var(--ff-base, 'Heebo', sans-serif);
	font-size: clamp(1.8rem, 4vw, 2.6rem);
	font-weight: 700;
	color: #fff;
	margin: 0;
	line-height: 1.2;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

/* ── Subtítulo ──────────────────────────────────────────────────────────────── */
.cta-section__subtitle {
	font-family: var(--ff-base, 'Heebo', sans-serif);
	font-size: clamp(1rem, 2vw, 1.2rem);
	line-height: 1.7;
	color: #fff;
	margin: 0;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	max-width: 600px;
}

/* ── Botón ──────────────────────────────────────────────────────────────────── */
.cta-section__button {
	display: inline-block;
	margin-top: 8px;
	padding: 16px 44px;
	background: #fff;
	color: var(--primary, #A6C3C9);
	font-family: var(--ff-base, 'Heebo', sans-serif);
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 50px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
	transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.cta-section__button:hover,
.cta-section__button:focus-visible {
	background: var(--accent, #000000);
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
	text-decoration: none;
}

/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
	.cta-section {
		padding: 60px 20px;
	}

	.cta-section__button {
		width: 100%;
		text-align: center;
	}
}
