:root {
	--leonel-blue: #2d98df;
	--leonel-blue-dark: #1572ae;
	--leonel-ink: #151719;
	--leonel-muted: #637083;
	--leonel-line: #dfe5ec;
	--leonel-soft: #f4f7fa;
	--leonel-accent: #f5b332;
}

html {
	max-width: 100%;
	overflow-x: hidden;
	scroll-behavior: smooth;
}

body.leonel-static {
	color: var(--leonel-ink);
	font-family: Poppins, Arial, Helvetica, sans-serif;
	letter-spacing: 0;
	overflow-x: hidden;
	width: 100%;
}

.leonel-static * {
	box-sizing: border-box;
}

a {
	color: var(--leonel-blue-dark);
}

.leonel-topbar {
	background: #111418;
	color: #dfe7ef;
	font-size: 0.86rem;
}

.leonel-topbar a {
	color: #fff;
	text-decoration: none;
}

.leonel-header {
	background: #fff;
	border-bottom: 1px solid var(--leonel-line);
	position: sticky;
	top: 0;
	z-index: 1030;
}

.leonel-header .container > .d-flex {
	gap: 1rem !important;
}

.leonel-logo {
	display: block;
	width: min(250px, 58vw);
}

.leonel-logo img {
	display: block;
	height: auto;
	width: 100%;
}

.leonel-nav {
	align-items: center;
	display: flex;
	gap: 0.82rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.leonel-nav a {
	color: #1c2229;
	font-size: 0.86rem;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
}

.leonel-nav a:hover,
.leonel-nav a.is-active {
	color: var(--leonel-blue);
}

.leonel-lang a {
	border: 1px solid var(--leonel-line);
	color: #1c2229;
	display: inline-flex;
	font-size: 0.75rem;
	font-weight: 700;
	justify-content: center;
	line-height: 1;
	min-width: 2.1rem;
	padding: 0.45rem 0.5rem;
	text-decoration: none;
	text-transform: uppercase;
}

.leonel-lang a.is-active {
	background: var(--leonel-blue);
	border-color: var(--leonel-blue);
	color: #fff;
}

.leonel-mobile-toggle {
	background: #fff;
	border: 1px solid var(--leonel-line);
	color: var(--leonel-ink);
	display: none;
	height: 2.75rem;
	width: 2.75rem;
}

.leonel-hero {
	background-color: #151719;
	background-position: center;
	background-size: cover;
	color: #fff;
	min-height: 560px;
	position: relative;
}

.leonel-hero::before {
	background: linear-gradient(90deg, rgba(10, 13, 18, 0.9), rgba(10, 13, 18, 0.62), rgba(10, 13, 18, 0.18));
	content: "";
	inset: 0;
	position: absolute;
}

.leonel-hero > .container {
	position: relative;
	z-index: 1;
}

.leonel-eyebrow {
	color: var(--leonel-accent);
	font-size: 0.83rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.leonel-hero h1 {
	font-size: clamp(2.35rem, 4vw, 4.8rem);
	font-weight: 800;
	letter-spacing: 0 !important;
	line-height: 1.03;
	margin: 1rem 0;
	max-width: 900px;
	overflow-wrap: break-word;
	white-space: normal !important;
}

.leonel-hero p {
	color: #eef4fa;
	font-size: 1.12rem;
	line-height: 1.8;
	max-width: 720px;
	overflow-wrap: break-word;
	white-space: normal !important;
}

.btn-primary {
	background-color: var(--leonel-blue);
	border-color: var(--leonel-blue);
}

.btn-primary:hover,
.btn-primary:focus {
	background-color: var(--leonel-blue-dark);
	border-color: var(--leonel-blue-dark);
}

.btn-outline-light:hover {
	color: var(--leonel-ink);
}

.leonel-section {
	padding: 5rem 0;
}

.leonel-section-soft {
	background: var(--leonel-soft);
}

.leonel-section-title {
	font-size: clamp(2rem, 3vw, 3.2rem);
	font-weight: 800;
	letter-spacing: 0 !important;
	line-height: 1.1;
	margin-bottom: 1rem;
	overflow-wrap: break-word;
	white-space: normal !important;
}

.leonel-lead {
	color: var(--leonel-muted);
	font-size: 1.05rem;
	line-height: 1.8;
	overflow-wrap: break-word;
	white-space: normal !important;
}

.leonel-card {
	background: #fff;
	border: 1px solid var(--leonel-line);
	border-radius: 8px;
	height: 100%;
	padding: 1.5rem;
	transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.leonel-card:hover {
	border-color: rgba(45, 152, 223, 0.4);
	box-shadow: 0 12px 34px rgba(21, 23, 25, 0.08);
	transform: translateY(-2px);
}

.leonel-card-icon {
	align-items: center;
	background: rgba(45, 152, 223, 0.1);
	color: var(--leonel-blue);
	display: inline-flex;
	font-size: 1.35rem;
	height: 3rem;
	justify-content: center;
	margin-bottom: 1rem;
	width: 3rem;
}

.leonel-badge {
	background: rgba(245, 179, 50, 0.15);
	color: #8a5b00;
	display: inline-flex;
	font-size: 0.75rem;
	font-weight: 800;
	margin-bottom: 0.85rem;
	padding: 0.35rem 0.55rem;
	text-transform: uppercase;
}

.leonel-brand-chip {
	align-items: center;
	background: #fff;
	border: 1px solid var(--leonel-line);
	color: var(--leonel-ink);
	display: flex;
	font-weight: 800;
	justify-content: center;
	min-height: 5rem;
	padding: 1rem;
	text-align: center;
}

.leonel-feature-image {
	aspect-ratio: 4 / 3;
	object-fit: cover;
	width: 100%;
}

.leonel-timeline {
	border-left: 3px solid var(--leonel-blue);
	margin-left: 1rem;
	padding-left: 1.7rem;
}

.leonel-timeline-item {
	margin-bottom: 2rem;
	position: relative;
}

.leonel-timeline-item::before {
	background: var(--leonel-accent);
	content: "";
	height: 1rem;
	left: -2.28rem;
	position: absolute;
	top: 0.25rem;
	width: 1rem;
}

.leonel-contact-icon {
	height: 3rem;
	width: 3rem;
}

.leonel-form .form-control,
.leonel-form .form-select {
	border-color: #cfd8e3;
	border-radius: 4px;
	min-height: 3rem;
}

.leonel-form textarea.form-control {
	min-height: 9rem;
}

.leonel-form-status {
	border-radius: 4px;
	display: none;
	margin-top: 1rem;
	padding: 0.9rem 1rem;
}

.leonel-form-status.is-visible {
	display: block;
}

.leonel-form-status.is-ok {
	background: #e8f8ef;
	color: #17643a;
}

.leonel-form-status.is-error {
	background: #fff0f0;
	color: #9d1f1f;
}

.leonel-footer {
	background: #111418;
	color: #d8e0e9;
}

.leonel-footer a {
	color: #fff;
	text-decoration: none;
}

.leonel-footer-logo {
	background: #fff;
	display: inline-block;
	padding: 0.75rem;
	width: min(260px, 80vw);
}

.leonel-social img {
	height: 2.3rem;
	width: 2.3rem;
}

.leonel-consent {
	background: #fff;
	border: 1px solid var(--leonel-line);
	bottom: 1rem;
	box-shadow: 0 14px 42px rgba(0, 0, 0, 0.16);
	max-width: 520px;
	padding: 1rem;
	position: fixed;
	right: 1rem;
	z-index: 2000;
}

.leonel-loading {
	align-items: center;
	display: flex;
	min-height: 60vh;
}

@media (max-width: 991.98px) {
	.leonel-header .container > .d-flex {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.leonel-logo {
		grid-column: 1;
		width: min(280px, calc(100vw - 6rem));
	}

	.leonel-mobile-toggle {
		display: inline-flex;
		align-items: center;
		grid-column: 2;
		justify-content: center;
		justify-self: end;
	}

	.leonel-nav-wrap {
		display: none;
		grid-column: 1 / -1;
		width: 100%;
	}

	.leonel-actions {
		flex-wrap: wrap;
		grid-column: 1 / -1;
	}

	.leonel-nav-wrap.is-open {
		display: block;
	}

	.leonel-nav {
		align-items: stretch;
		flex-direction: column;
		gap: 0;
		padding: 1rem 0;
	}

	.leonel-nav a {
		display: block;
		padding: 0.75rem 0;
	}

	.leonel-hero {
		min-height: 520px;
	}
}

@media (max-width: 575.98px) {
	.leonel-topbar {
		display: none;
	}

	.leonel-section {
		padding: 3.5rem 0;
	}

	.leonel-section .row {
		--bs-gutter-x: 1.5rem;
	}

	.leonel-hero h1 {
		font-size: 1.45rem;
		line-height: 1.12;
		max-width: calc(100vw - 1.5rem);
	}

	.leonel-hero p {
		font-size: 0.95rem;
		line-height: 1.65;
		max-width: calc(100vw - 1.5rem);
	}

	.leonel-section-title {
		font-size: 1.65rem;
		line-height: 1.15;
	}

	.leonel-lead {
		font-size: 0.98rem;
	}

	.leonel-consent {
		bottom: 0;
		left: 0;
		max-width: none;
		right: 0;
	}
}
