:root {
	--black: #050505;
	--black2: #0b0b0b;
	--white: #fff;
	--text: #d8d8d8;
	--muted: #9b9b9b;
	--line: rgba(255, 255, 255, .12);
	--gray: #9b9b9b;
	--yellow: #f2c230;
	--red: #d42020;
	--blue: #1e9bff;
	--green: #37c85a;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: Montserrat, Arial, sans-serif;
	background: var(--black);
	color: var(--white);
}

a {
	text-decoration: none;
	color: inherit;
}

.container {
	width: min(1280px, calc(100% - 72px));
	margin-inline: auto;
}

.site-header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 20;
	background: linear-gradient(to bottom, rgba(0, 0, 0, .72), rgba(0, 0, 0, .18));
	border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.header-wrap {
	min-height: 94px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 36px;
}

.brand img {
	width: 168px;
	display: block;
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 42px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
}

.main-nav a {
	color: #fff;
	transition: .2s;
}

.main-nav a:hover {
	color: #c8c8c8;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	min-height: 54px;
	padding: 16px 30px;
	border: 1px solid transparent;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .2px;
	transition: .2s;
}

.btn-light {
	background: #fff;
	color: #070707;
}

.btn-light:hover {
	background: #d6d6d6;
}

.btn-dark {
	background: #080808;
	color: #fff;
}

.btn-dark:hover {
	background: #222;
}

.btn-outline {
	background: transparent;
	color: #fff;
	border: 2px solid #ffffff;
	transition: all .3s ease;
}

.btn-outline:hover {
	background: #ffffff;
	color: #000000 !important;
	border: 2px solid #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(255, 255, 255, .20);
}

.btn-outline:hover,
.btn-outline:hover span,
.btn-outline:hover * {
	color: #000000 !important;
}

.header-cta {
	min-width: 210px;
}

.hero {
	min-height: 760px;
	background: linear-gradient(90deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .08) 55%, rgba(0, 0, 0, 0) 100%), url('hero-lynx.png') center/cover no-repeat;
	display: flex;
	align-items: center;
	padding-top: 94px;
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(420px, 600px) 1fr;
	align-items: center;
}

.eyebrow,
.section-kicker {
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 800;
	color: #fff;
	margin: 0 0 28px;
}

.hero h1 {
	font-size: 64px;
	line-height: .98;
	letter-spacing: -2px;
	margin: 0 0 34px;
	font-weight: 900;
	text-transform: uppercase;
}

.lead {
	font-size: 18px;
	line-height: 1.65;
	color: #d8d8d8;
	margin: 0 0 38px;
	max-width: 640px;
}

.hero-actions {
	display: flex;
	gap: 22px;
	flex-wrap: wrap;
}

.benefits {
	background: linear-gradient(180deg, #0d1113, #090909);
	border-block: 1px solid var(--line);
}

.benefits .container {
	width: min(1280px, calc(100% - 72px));
	margin-inline: auto;
}

.benefits-grid {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.benefits article {
	display: grid;
	grid-template-columns: 48px 1fr;
	grid-template-rows: auto auto;
	column-gap: 14px;
	row-gap: 0;
	align-items: start;
	padding: 24px 18px;
	border-right: 1px solid var(--line);
}

.benefits article:last-child {
	border-right: none !important;
}

.benefits span {
	grid-row: 1 / span 2;
	font-size: 34px;
	line-height: 1;
	align-self: start;
}

.benefits h3 {
	margin: 0 0 6px 0;
	font-size: 13px;
	line-height: 1.15;
	text-transform: uppercase;
	white-space: nowrap;
}

.benefits p {
	grid-column: 2;
	margin: 0;
	color: #d8d8d8;
	font-size: 14px;
	line-height: 1.35;
}

.section-light {
	background: linear-gradient(#f4f5f6, #e9ebee);
	color: #111;
}

.product-grid {
	min-height: 390px;
	display: grid;
	grid-template-columns: 36% 1fr;
	gap: 50px;
	align-items: center;
	padding: 68px 0;
}

.dark-copy .section-kicker {
	color: #111;
}

.section-copy h2 {
	font-size: 38px;
	line-height: 1.08;
	margin: 0 0 22px;
}

.section-copy p {
	color: #c6c6c6;
	line-height: 1.75;
	margin: 0 0 30px;
}

.dark-copy p {
	color: #333;
}

.product-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.product-cards article {
	height: 210px;
	background: linear-gradient(135deg, #191919, #070707);
	color: #fff;
	border-radius: 3px;
	padding: 22px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	box-shadow: 0 25px 60px rgba(0, 0, 0, .18);
}

.product-cards strong {
	font-size: 17px;
}

.product-cards small {
	color: #bbb;
	margin-top: 6px;
}

.segments {
	background: radial-gradient(circle at left, #15191b, #060606 58%);
	padding: 76px 0 52px;
}

.segments-layout {
	display: grid;
	grid-template-columns: 25% 1fr;
	gap: 38px;
	align-items: end;
}

.segment-cards {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 14px;
}

.seg {
	min-height: 270px;
	padding: 24px 18px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	background-color: transparent;
	background-size: cover !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
	border: 1px solid rgba(255, 255, 255, .08);
	position: relative;
	overflow: hidden;
}

.seg:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 6px;
	background: var(--accent);
}

.seg.gray {
	--accent: #b8b8b8;
}

.seg.yellow {
	--accent: var(--yellow);
}

.seg.red {
	--accent: var(--red);
}

.seg.blue {
	--accent: var(--blue);
}

.seg.green {
	--accent: var(--green);
}

.seg h3 {
	font-size: 17px;
	text-transform: uppercase;
	margin: 0 0 12px;
}

.seg p {
	font-size: 13px;
	color: #cfcfcf;
	line-height: 1.55;
	margin: 0;
}

.seg.imobiliario::after {
	background: #28a745 !important;
}

.seg.rodoviario::after {
	background: #ffc107 !important;
}

.seg.industrial::after {
	background: #6c757d !important;
}

.seg.naval::after {
	background: #0d6efd !important;
}

.seg.automotivo::after {
	background: #dc3545 !important;
}

.distributor {
	padding: 34px 0 62px;
	background: #060606;
}

.distributor-box {
	border: 1px solid rgba(255, 255, 255, .18);
	padding: 34px 42px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.distributor h2 {
	font-size: 28px;
	margin: 0 0 10px;
}

.distributor p {
	margin: 0;
	color: #d1d1d1;
}

.site-footer {
	background: #050505;
	border-top: 1px solid rgba(255, 255, 255, .1);
	padding: 58px 0 24px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
	gap: 60px;
}

.footer-logo {
	width: 170px;
}

.site-footer p,
.site-footer a {
	display: block;
	color: #b9b9b9;
	font-size: 14px;
	line-height: 1.8;
	margin: 0 0 6px;
}

.site-footer h4 {
	margin: 0 0 16px;
	text-transform: uppercase;
	font-size: 14px;
}

.copyright {
	border-top: 1px solid rgba(255, 255, 255, .08);
	margin-top: 40px;
	padding-top: 24px;
	text-align: center;
	color: #8c8c8c;
	font-size: 13px;
}

@media(max-width:1024px) {
	.container {
		width: min(100% - 40px, 960px);
	}

	.main-nav {
		display: none;
	}

	.hero h1 {
		font-size: 50px;
	}

	.benefits-grid,
	.product-cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.segments-layout,
	.product-grid {
		grid-template-columns: 1fr;
	}

	.segment-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media(max-width:620px) {
	.header-wrap {
		min-height: 78px;
	}

	.brand img {
		width: 128px;
	}

	.header-cta {
		display: none;
	}

	.hero {
		min-height: 720px;
		background-position: 68% center;
	}

	.hero h1 {
		font-size: 42px;
	}

	.lead {
		font-size: 16px;
	}

	.btn {
		width: 100%;
	}

	.benefits-grid,
	.product-cards,
	.segment-cards,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.benefits article {
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.benefits article:last-child {
		border-bottom: 0;
	}

	.distributor-box {
		flex-direction: column;
		align-items: flex-start;
	}

	.footer-grid {
		gap: 34px;
	}
}