.lia-proceso,
.lia-proceso * {
	box-sizing: border-box;
}

.lia-proceso {
	width: 100%;
	background: #ffffff;
	font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: #1f2933;
	overflow: hidden;
}

.lia-proceso-container {
	width: 100%;
	max-width: 1140px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
}

.lia-proceso-header {
	text-align: center;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 64px;
}

.lia-section-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .1em;
	line-height: 1.2;
	text-transform: uppercase;
	color: #0b6b3a;
	background: #e8f5ee;
	padding: 5px 12px;
	border-radius: 40px;
	margin-bottom: 18px;
}

.lia-section-label::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	min-width: 6px;
	border-radius: 999px;
	background: #28a745;
}

.lia-section-title {
	font-family: 'Poppins', system-ui, sans-serif;
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	font-weight: 700;
	color: #1f2933;
	line-height: 1.25;
	margin: 0 0 14px;
}

.lia-section-subtitle {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 15.6px;
	font-weight: 400;
	color: #6b7280;
	line-height: 1.75;
	margin: 0;
}

.lia-proceso-steps {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	column-gap: 0;
	row-gap: 32px;
	position: relative;
}

.lia-proceso-steps::before {
	content: '';
	position: absolute;
	top: 32px;
	left: 10%;
	right: 10%;
	height: 2px;
	background: #e8f5ee;
	z-index: 0;
	pointer-events: none;
}

.lia-line-disabled .lia-proceso-steps::before {
	display: none;
}

.lia-proceso-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0 10px;
	position: relative;
	z-index: 1;
	min-width: 0;
}

.lia-step-circle {
	width: 64px;
	height: 64px;
	border-radius: 999px;
	background: #ffffff;
	border: 2px solid #e8f5ee;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	position: relative;
	transition: background-color .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.lia-step-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	line-height: 1;
	color: #0b6b3a;
	transition: color .22s ease, transform .22s ease;
}

.lia-step-icon i,
.lia-step-icon svg {
	display: block;
	width: 1em;
	height: 1em;
	font-size: inherit;
	color: currentColor;
	fill: currentColor;
}

.lia-step-icon svg path,
.lia-step-icon svg circle,
.lia-step-icon svg rect,
.lia-step-icon svg line,
.lia-step-icon svg polyline,
.lia-step-icon svg polygon {
	fill: currentColor;
	stroke: currentColor;
}

.lia-step-number {
	position: absolute;
	top: -6px;
	right: -6px;
	width: 20px;
	height: 20px;
	border-radius: 999px;
	background: #0b6b3a;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
	z-index: 2;
}

.lia-proceso-step:hover .lia-step-circle {
	background: #0b6b3a;
	border-color: #0b6b3a;
	box-shadow: 0 0 0 6px #e8f5ee;
	transform: translateY(-2px);
}

.lia-proceso-step:hover .lia-step-icon {
	color: #ffffff;
	transform: scale(1.03);
}

.lia-step-title {
	font-family: 'Poppins', system-ui, sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	color: #1f2933;
	margin: 0 0 8px;
}

.lia-step-text {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 12.5px;
	font-weight: 400;
	color: #6b7280;
	line-height: 1.6;
	margin: 0;
}

.lia-reveal-enabled .lia-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .5s ease, transform .5s ease;
}

.lia-reveal-enabled .lia-reveal.visible {
	opacity: 1;
	transform: none;
}

@media (max-width: 1024px) {
	.lia-proceso-steps::before {
		display: none;
	}
}

@media (max-width: 767px) {
	.lia-proceso-container {
		padding-left: 20px;
		padding-right: 20px;
	}

	.lia-section-title {
		font-size: 1.85rem;
	}
}
