:root {
	--accent: #13c7b5;
}

.full-bleed {
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	width: 100vw;
}

.hero {
	min-height: 360px;
	display: flex;
	align-items: center;
	background:#0c2e63 url('/static/apps/landing/images/banners/banner01.jpg') center/cover no-repeat;
	position: relative;
}

.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, .75);
	backdrop-filter: blur(2px);
}

.hero .hero-inner {
	position: relative;
	z-index: 2;
	padding: clamp(1rem, 3.5vw, 3rem);
}

.hero h1 {
	font-size: clamp(1.9rem, 4.2vw, 4rem);
	font-weight: 800;
	line-height: 1.05;
	color: #0b1f40;
	margin-bottom: .75rem;
}

.hero .accent {
	color: var(--accent);
	text-shadow: 0 2px 0 rgba(0, 0, 0, .04);
}

.hero .lead {
	color: #0b1f40;
	font-weight: 600;
	opacity: .85
}

.btn-cta {
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	border-radius: 999px;
	padding: .9rem 1.25rem;
	font-weight: 700;
	background: #1aa4a7;
	color: #fff;
	border: 0;
	box-shadow: 0 14px 32px rgba(0, 0, 0, .12), 0 0 0 .2rem rgba(19, 199, 181, .15);
}

.btn-cta:hover {
	filter: brightness(1.05);
	color: #fff
}

.steps-wrap {
	display: flex;
	justify-content: center;
}

.steps {
	width: min(720px, 100%);
	position: relative;
	padding: 1rem 0 2rem;
	overflow: visible;
}

.steps .rail {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 36px;
	bottom: 36px;
	width: 4px;
	border-radius: 10px;
	background: linear-gradient(#eaf1ff, #deebff);
	z-index: 0;
	pointer-events: none;
}

.step {
	--size: 64px;
	position: relative;
	z-index: 1;
	text-align: center;
	margin: clamp(2.8rem, 5vw, 3.6rem) 0;
	padding-top: .25rem;
	opacity: .08;
	transform: translateY(28px) scale(.985);
	transition: opacity .65s ease, transform .65s ease;
}

.step.is-visible {
	opacity: 1;
	transform: none;
}

.step .dot {
	width: var(--size);
	height: var(--size);
	border-radius: 50%;
	margin: 0 auto 1rem;
	display: grid;
	place-items: center;
	background: #fff;
	border: 3px solid #e1ebff;
	box-shadow: 0 10px 30px rgba(13, 59, 114, .08), 0 0 0 6px #eef4ff, 0 0 0 12px #f6f8fc;
}

.step .dot .num {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 999px;
	background: var(--accent);
	color: #fff;
	font-weight: 800;
	font-size: 1.1rem;
	box-shadow: 0 6px 14px rgba(19, 199, 181, .35);
}

.step.is-visible .dot .num {
	animation: pop .45s ease both
}

@keyframes pop {
	from {
		transform: scale(.8)
	}

	to {
		transform: none
	}
}

.step .media {
	width: 150px;
	height: 63;
	margin: 0 auto .75rem;
	border-radius: 20px;
	display: grid;
	place-items: center;
	background: #f6f8fc;
	border: 1px solid #e8ecf4;
	box-shadow: 0 8px 22px rgba(13, 59, 114, .06), 0 0 0 12px #f6f8fc;
}

.step .logo {
	max-height: 65px;
	width: auto;
	display: block;
}

.step .text-block {
	display: inline-block;
	background: #f6f8fc;
	padding: .1rem .35rem;
	border-radius: 12px;
	box-shadow: 0 0 0 10px #f6f8fc;
}

.step h5 {
	color: #0b1f40;
	font-weight: 800;
	margin: .5rem 0 .35rem;
}

.step p {
	color: #5e6a85;
	max-width: 560px;
	margin: 5px auto;
	background: #f6f8fc;
}

.cta-contacto {
	background: linear-gradient(180deg, var(--brand-800), var(--brand-900));
	color: #fff;
	border-radius: var(--radius-lg);
}

.cta-contacto .whatsapp {
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	background: #25D366;
	color: #fff;
	border-radius: 999px;
	padding: .85rem 1rem;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

.cta-contacto .whatsapp:hover {
	filter: brightness(1.05);
}

@media (max-width:576px) {
	.step {
		--size: 58px
	}

	.hero {
		min-height: 300px
	}

	.step .media {
		width: 82px;
		height: 82px
	}
}