@import url('https://cdn-uicons.flaticon.com/2.2.0/uicons-regular-rounded/css/uicons-regular-rounded.css');

:root {
	--color-primary: #16ba60;
	--color-primary-96: #16ba60f5;
	--color-primary-88: #16ba60e0;
	--color-primary-80: #16ba60cc;
	--color-primary-72: #16ba60b8;
	--color-primary-64: #16ba60a3;
	--color-primary-56: #16ba608f;
	--color-primary-48: #16ba607a;
	--color-primary-32: #16ba6052;
	--color-primary-24: #16ba603d;
	--color-primary-16: #16ba6029;
	--color-primary-08: #16ba6014;
	--color-primary-04: #16ba600a;
	--color-primary-02: #16ba6005;

	--color-dark: #262626;
	--color-dark-96: #262626f5;
	--color-dark-88: #262626e0;
	--color-dark-80: #262626cc;
	--color-dark-72: #262626b8;
	--color-dark-64: #262626a3;
	--color-dark-56: #2626268f;
	--color-dark-48: #2626267a;
	--color-dark-32: #26262652;
	--color-dark-24: #2626263d;
	--color-dark-16: #26262629;
	--color-dark-08: #26262614;
	--color-dark-04: #2626260a;
	--color-dark-02: #26262605;

	--color-white-absolute: #ffffff;

	--color-white: #ffffff;
	--color-white-96: #fffffff5;
	--color-white-88: #ffffffe0;
	--color-white-80: #ffffffcc;
	--color-white-72: #ffffffb8;
	--color-white-64: #ffffffa3;
	--color-white-56: #ffffff8f;
	--color-white-48: #ffffff7a;
	--color-white-32: #ffffff52;
	--color-white-24: #ffffff3d;
	--color-white-16: #ffffff29;
	--color-white-08: #ffffff14;
	--color-white-04: #ffffff0a;
	--color-white-02: #ffffff05;

	--color-yellow: #ffa100;
	--color-yellow-48: #ffa10052;

	--color-orange: #ff6300;
	--color-orange-48: #ff630052;

	--color-blue: #3838db;
	--color-blue-48: #3838db52;

	--color-purple: #6e17b0;
	--color-purple-48: #6e17b052;

	--color-green: #00bfb3;
	--color-green-48: #00bfb352;

	--color-red: #f42a2a;
	--color-red-48: #f42a2a52;

	--color-google: #ff5555;
	--color-github: #1a1a1a;
	--color-facebook: #087bea;

	--header-height: 5.5rem;
}

.grecaptcha-badge {
	display: none !important;
}

* {
	font-family: "Golos Text", sans-serif;
  	font-optical-sizing: auto;
}

.rounded {
	border-radius: 1rem !important;
}

i.fi {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

html,
body {
	font-size: 14px;

	color: var(--color-dark);
}

body {
	max-width: 100vw;

	overflow-x: hidden;
}

html {
	scroll-padding-top: var(--header-height);
}

section[id],
.section-anchor {
	scroll-margin-top: calc(var(--header-height) + 1rem);
}

.section-anchor {
	display: block;
	height: 0;
}

ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

a,
a.link,
a:link,
a:hover {
	text-decoration: none;

	transition: 0.4s;

	display: inline-flex;
	align-items: center;

	color: var(--color-primary);
}

a:hover {
	opacity: 0.8;
}

h1,
h2,
h3,
h4,
h5,
h6,
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
	/* font-family: "Roboto Slab", serif; */
}

.text-primary {
	color: var(--color-primary) !important;
}

/* forms */

form label {
	font-size: 0.85rem;
	font-weight: 600;

	margin-bottom: 0.25rem;
}

.form-control {
	padding: 0.85rem 1rem 0.5rem;

	box-shadow: none !important;
	outline: 0 !important;

	border-radius: 0.5rem;
}

.form-control:focus {
	border-color: var(--color-primary);
}

/* buttons */

.btn {
	font-size: 1.25rem;

	border-radius: 0.75rem;

	padding: 1rem 2.25rem;

	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.btn.large {
	font-size: 1.25rem;
	font-weight: 600;
}

.btn:hover {
	opacity: 0.8;
}

.btn i {
	margin-bottom: -0.25rem;
}

.btn.btn-primary,
.btn.btn-primary:active,
.btn.btn-primary:focus,
.btn.btn-primary:hover {
	color: #fff;
	background: var(--color-primary);
	border: 1px solid var(--color-primary);
}

.btn.btn-primary-outline,
.btn.btn-primary-outline:active,
.btn.btn-primary-outline:focus,
.btn.btn-primary-outline:hover {
	color: var(--color-primary);
	background: transparent;
	border: 1px solid var(--color-primary);
}

.btn.btn-secondary,
.btn.btn-secondary:active,
.btn.btn-secondary:focus,
.btn.btn-secondary:hover {
	color: #fff;
	background: var(--color-secondary);
	border: 1px solid var(--color-secondary);
}

.btn.btn-orange,
.btn.btn-orange:active,
.btn.btn-orange:focus,
.btn.btn-orange:hover {
	color: #fff;
	background: var(--color-orange);
	border: 1px solid var(--color-orange);
}

.btn.btn-dark,
.btn.btn-dark:active,
.btn.btn-dark:focus,
.btn.btn-dark:hover {
	color: #fff;
	background: var(--color-dark);
	border: 1px solid var(--color-dark);
}

.btn.btn-white,
.btn.btn-white:active,
.btn.btn-white:focus,
.btn.btn-white:hover {
	color: var(--color-primary);
	background: #ffffff;
	border: 1px solid #ffffff;
}

.btn.btn-simple,
.btn.btn-simple:active,
.btn.btn-simple:focus,
.btn.btn-simple:hover {
	color: var(--color-primary);
	background: transparent;
	border: 1px solid transparent;
}

/* alerts */

div.alert {
	padding: 1.25rem;
	margin: 0;

	border-radius: 0.5rem;

	position: relative;

	display: flex;
	align-items: center;

	overflow: hidden;
}

div.alert ion-icon {
	font-size: 1.75rem;
}

div.alert::before {
	content: "";

	width: 0.25rem;
	height: 100%;

	position: absolute;
	left: 0;
	top: 0;

	background: transparent;
}

div.alert.alert-primary {
	color: #004560;
	background: #ffffff;
	border: 1px solid #0e83f1cc;
}

div.alert.alert-primary::before {
	background: var(--color-primary);
}

div.alert.alert-danger {
	color: #dc3545;
	background: transparent;
	border: 1px solid #dc3545cc;
}

div.alert.alert-danger::before {
	background: #dc3545;
}

div.alert.alert-warning {
	color: #664d03;
	background: #ffffff;
	border: 1px solid #f8b805cc;
}

div.alert.alert-warning::before {
	background: #f8b805;
}

div.alert.alert-warning > ion-icon {
	color: #f8b805;
}

div.alert.alert-success {
	color: #007231;
	background: #ffffff;
	border: 1px solid #04d960cc;
}

div.alert.alert-success::before {
	background: #04d960;
}

/* header */

/* WhatsApp Float Button */
.whatsapp-float {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	z-index: 9999;
	
	width: 4rem;
	height: 4rem;
	
	background: #25d366;
	border-radius: 50%;
	
	display: flex;
	align-items: center;
	justify-content: center;
	
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
	
	transition: all 0.3s ease;
}

.whatsapp-float:hover {
	background: #1fb855;
	transform: scale(1.1);
	box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.4);
}

.whatsapp-float i {
	font-size: 2.5rem;
	color: #ffffff;
	margin-bottom: 0;
}

@media (max-width: 768px) {
	.whatsapp-float {
		width: 3.5rem;
		height: 3.5rem;
		bottom: 1.5rem;
		right: 1.5rem;
	}
	
	.whatsapp-float i {
		font-size: 2rem;
	}
}

button.whatsapp,
button.whatsapp:hover {
	position: fixed;

	bottom: 1.75rem;
	right: 1.75rem;

	z-index: 8888;

	font-size: 1.25rem;
	font-weight: 500;

	background: #04d960 !important;
	border: 1px solid #04d960 !important;
	color: #ffffff !important;
}section.initial div.parts

button.whatsapp span {
	display: flex;

	margin-bottom: -0.25rem;
}

button.whatsapp i {
	font-size: 2rem;

	margin-right: 1rem;
}

header {
	position: fixed;
	top: 0;
	left: 0;

	width: 100%;

	background: var(--color-white-72);
	backdrop-filter: blur(.25rem);

	box-shadow: 0 0 4rem var(--color-dark-08);

	z-index: 8888;
}

header div.content {
	display: flex;
	align-items: center;
	justify-content: space-between;

	padding: 1.25rem 0;
}

header div.content nav {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

header div.content a.logo img,
header div.content a.logo svg {
	height: 2.75rem;
}

header div.content nav ul {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin: 0;
	padding: 0;
}

header div.content nav ul.nav-left {
	margin-left: 2rem;
}

header div.content nav ul.nav-right {
	margin-left: auto;
}

header div.content nav ul li {
	position: relative;
	display: flex;
	align-items: center;
}

header div.content nav ul li a {
	padding: 0.75rem 1.25rem;

	color: var(--color-dark);

	white-space: nowrap;
	font-size: 1rem;
	font-weight: 600;
}

header div.content nav ul li.has-dropdown > a {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

header div.content nav ul li.has-dropdown > a::after {
	content: "";
	width: 0.45rem;
	height: 0.45rem;
	border-right: 0.12rem solid currentColor;
	border-bottom: 0.12rem solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.2s ease;
	margin-top: -0.1rem;
}

header div.content nav ul li.has-dropdown:hover > a::after {
	transform: rotate(225deg);
}

header div.content nav ul li > ul {
	position: absolute;
	top: 80%;
	left: 0;

	display: flex;
	align-items: flex-start;
	gap: 0.35rem;

	min-width: 24rem;

	padding: 0.75rem;

	flex-direction: column;

	background: #ffffff;
	border: 1px solid var(--color-primary-08);
	border-top: 0.25rem solid var(--color-primary);

	box-shadow: 0 1rem 2.5rem var(--color-dark-08);
	border-radius: 0.75rem;

	opacity: 0;
	visibility: hidden;

	transition: 0.3s;
}

header div.content nav ul li:hover > ul {
	top: 105%;

	opacity: 1;
	visibility: visible;
}

header div.content nav ul li > ul li {
	width: 100%;

	margin: 0;
	padding: 0;

	display: flex;
	flex-direction: column;
}

header div.content nav ul li > ul li a {
	text-align: left;

	width: 100%;

	justify-content: flex-start;

	font-weight: 600;
}

header div.content nav ul li > ul li a.dropdown-link {
	padding: 0.75rem 1rem;

	border-radius: 0.75rem;

	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 0.35rem;

	white-space: normal;

	transition: background 0.2s ease, color 0.2s ease;
}

header div.content nav ul li > ul li a.dropdown-link:hover {
	background: var(--color-primary-04);
}

header div.content nav ul li > ul li a.dropdown-link .dropdown-title {
	font-size: 1rem;
	font-weight: 700;
}

header div.content nav ul li > ul li a.dropdown-link .dropdown-desc {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--color-dark-64);
}

/* footer */

footer {
	padding: 5rem 0 0;

	background: var(--color-dark);
}

footer p {
	color: #ffffff;

	margin: 0;
}

footer h6 {
	font-weight: 700;
	font-size: 1.25rem;
	text-transform: uppercase;

	margin-bottom: 2rem;

	color: #ffffff;
}

footer ul.social {
	display: flex;
}

footer ul.social li {
	margin-right: 1.5rem;
}

footer ul.social li a,
footer ul.social li a:link {
	font-size: 2.5rem;

	width: 2.5rem;
	height: 2.5rem;

	display: inline-flex;
	justify-content: center;
	align-items: center;
}

footer ul li {
	margin-bottom: 1rem;

	list-style: 1.8;

	color: #ffffff;
}

footer ul li:has( > a) {
	margin-bottom: 1.5rem;
}

footer ul li:has( > a) i {
    min-width: 2rem;
    font-size: 1.25rem;
    height: auto;
    display: flex;
}

footer ul li:has( > a) p {
	font-size: .85rem;
	opacity: .8;

	margin-left: 1.85rem;
}

footer ul li a > span {
	font-weight: 700;
}

footer ul li a,
footer ul li a:link {
	color: #ffffff;
}

footer ul li a:hover {
	color: #ffffff;

	opacity: 0.9;
}

footer a.logo {
	display: block;
}

footer a.logo img {
	height: 2.5rem;
}

footer div.copyright {
	background: var(--color-primary);
	background: var(--color-dark);

	border-top: 1px solid var(--color-white-16);

	margin-top: 3rem;
}

footer div.copyright div.content {
	display: flex;
	align-items: center;
	justify-content: space-between;

	padding: 1.25rem 0;

	color: #ffffff;
}

footer div.copyright div.content a {
	color: #ffffff;

	transition: 0.2s;
}

footer div.copyright div.content a:hover {
	opacity: 0.9;
}

/* menu mobile */

button.menu {
	font-size: 2.25rem;

	background: transparent;
	border-color: transparent;

	color: var(--color-dark);

	display: none;
}

/* response */

@media (max-width: 991px) {
	header div.content nav {
		position: fixed;
		left: -360px;
		top: 0;

		width: 100%;
		max-width: 310px;
		min-height: 100svh;
		height: 100svh;

		background: #ffffff;

		box-shadow: 0.8rem 0rem 2.4rem rgba(9, 13, 73, 0.32);

		transition: 0.2s;

		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 0;

		overflow-y: auto;
		overscroll-behavior: contain;
		-webkit-overflow-scrolling: touch;
	}
	header.open div.content nav {
		left: 0;

		/* flex-direction: column-reverse; */
	}
	header div.content nav ul {
		display: flex;
		flex-direction: column;
		align-items: flex-start;

		margin-top: .5rem;
		width: 100%;

	}
	header div.content nav ul li.has-dropdown > a {
		width: 100%;
		align-items: center;
		gap: .5rem;
		font-size: .85rem;
		text-transform: uppercase;
		opacity: .75 !important;
		padding: .5rem 1.5rem !important;
	}
	header div.content nav ul.nav-left,
	header div.content nav ul.nav-right {
		margin-left: 0;
	}
	header div.content nav ul.nav-right {
		padding: 1rem 1.5rem;
	}
	header div.content nav ul li {
		width: 100%;
	}
	header div.content nav ul li a.btn.btn-primary {
		color: var(--color-white);
	}
	header div.content nav ul li a.btn {
		width: 100%;
	}
	header div.content nav ul li.has-dropdown > a::after {
		content: "";

		width: 100%;
		height: 1px;

		background: var(--color-dark-16) !important;
		border: 0 !important;

		transform: none !important;

		display: flex;

		margin-top: 0;
	}
	header div.content nav ul li a:not(.btn),
	/* header div.content nav ul li a.btn, */
	header div.content nav ul li a.text-primary {
		color: var(--color-dark) !important;
		background: transparent;
		border: 1px solid transparent;

		padding: 1rem 1.5rem;

		font-weight: 600;

		display: flex;
		align-items: center;

		width: 100%;
	}
	button.menu {
		display: flex;
	}
	div.container {
		padding: 0 1.75rem;
	}
	aside.div {
		position: relative;
		margin-top: -20%;
		margin-bottom: 32px;
	}
	header div.content nav ul li > ul {
		position: unset;

		visibility: visible;
		opacity: 1;

		margin-top: 0;
		padding: 0 0 0.75rem;

		background: transparent;

		border-radius: 0.75rem;

		width: 100%;
		max-width: 100%;
		min-width: unset;

		border: 0;

		box-shadow: none;
	}
	header div.content nav ul li > ul li a {
		padding: 0;
		white-space: pre-wrap;
	}
	header div.content nav ul li {
		flex-direction: column;
		align-items: flex-start;
		order: 2;
	}
	header div.content nav ul li:last-child {
		order: 1;
	}
	header div.content nav ul li > ul li {
		padding: 0;
	}
	header div.content nav ul li > ul li a.dropdown-link {
		padding: 0.85rem 1.5rem;
		border-radius: 0.65rem;
	}
	header div.content nav ul.nav-left {
		order: 2;
	}
	header div.content nav ul.nav-right {
		order: 1;
	}
}

/* default */

section.default {
	padding: 5rem 0;
}

section.default div.title h1 {
	font-weight: 700;
	font-size: 3.5rem;
}

section.default div.title.white h1 {
	color: var(--color-white);
}

section.default div.title h2 {
	font-weight: 700;
	font-size: 2.5rem;

	margin-bottom: 1rem;
}

section.default div.title h2 > span {
	color: var(--color-primary);
}

section.default div.title.white h2 {
	color: var(--color-white);
}

section.default div.title h4 {
	font-weight: 700;
	font-size: 1.75rem;
}

section.default div.title.white h4 {
	color: var(--color-white);
}

section.default div.title p {
	line-height: 1.4;
}

/* plans */

section.plans {
	position: relative;
	overflow: hidden;

	background: linear-gradient(180deg, var(--color-white) 0%, var(--color-primary-16) 100%);
}

section.plans .container {
	position: relative;
	z-index: 1;
}

.plan-card {
	position: relative;
	height: 100%;
	padding: 2.25rem;
	border-radius: 1.75rem;
	background: var(--color-white);
	border: 1px solid var(--color-dark-08);
	box-shadow: 0 1.5rem 3rem var(--color-dark-08);
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.plan-card.featured {
	border: 2px solid var(--color-primary-48);
	background: var(--color-white);
	box-shadow: 0 2.5rem 4.5rem var(--color-primary-24);
}

.plan-badge {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	padding: 0.5rem 1rem;
	border-radius: 999px;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	background: var(--color-primary);
	color: var(--color-white);
}

.plan-header {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.plan-kicker {
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-primary);
}

.plan-header h3 {
	font-size: 2rem;
	font-weight: 700;
	margin: 0;
}

.plan-header p {
	margin: 0;
	font-size: 1.1rem;
	opacity: 0.8;
}

.plan-features {
	display: grid;
	gap: 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.plan-features li {
	display: grid;
	grid-template-columns: 1rem 1fr;
	gap: 0.75rem;
	align-items: start;
}

.plan-features li::before {
	content: "";
	width: 0.6rem;
	height: 0.6rem;
	margin-top: 0.4rem;
	border-radius: 999px;
	background: var(--color-primary);
	box-shadow: 0 0 0 0.35rem var(--color-primary-16);
}

.plan-features li > * {
	grid-column: 2 / -1;
}

.plan-features li strong {
	display: block;
	font-size: 1.05rem;
	font-weight: 700;
}

.plan-features li span {
	display: block;
	font-size: 0.98rem;
	opacity: 0.85;
	line-height: 1.4;
}

section.default p.plan-note {
	margin: 0;
	font-size: 1rem;
	opacity: 0.85;
	padding: 0.85rem 1rem;
	border-left: 0.3rem solid var(--color-primary);
	background: var(--color-primary-04);
	border-radius: 0.75rem;
	line-height: 1.5;
}

.plan-card .btn {
	margin-top: auto;
}

@media (max-width: 991px) {
	.plan-card {
		padding: 2rem;
	}
	.plan-header h3 {
		font-size: 1.75rem;
	}
	.plan-badge {
		position: static;
		align-self: flex-start;
	}
}

section.default div.title.white p {
	color: var(--color-white);

	opacity: .6;
}

@media (max-width: 991px) {
	section.default div.title h2 {
		font-size: 2.25rem;
	}
}

section.default p {
	font-size: 1.5rem;
	line-height: 1.8;
}

section.highlights .highlight-card {
	background: #ffffff;
	border-radius: 1.5rem;
	padding: 2rem;
	box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.08);
	height: 100%;
	text-align: left;
}

section.highlights .highlight-card .icon {
	width: 3.5rem;
	height: 3.5rem;
	background: linear-gradient(135deg, var(--color-primary), var(--color-primary-80));
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.75rem;
	color: var(--color-white);
	margin-bottom: 1rem;
}

section.highlights .highlight-card h4 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	color: var(--color-dark);
}

section.highlights .highlight-card p {
	font-size: 1.1rem;
	line-height: 1.6;
	color: var(--color-dark-72);
	margin: 0;
}

section.how-it-works {
	/* background: linear-gradient(180deg, var(--color-white) 0%, var(--color-primary-16) 100%); */
}

section.how-it-works .how-card {
	position: relative;
	overflow: hidden;
}

section.how-it-works .highlight-card {
	background: #ffffff;
	border-radius: 1.5rem;
	padding: 2rem;
	box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.08);
	height: 100%;
	text-align: left;
}

section.how-it-works .step-number {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	font-size: 3rem;
	font-weight: 700;
	color: var(--color-primary-16);
}

section.how-it-works .step-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--color-primary-08);
	color: var(--color-primary);
	font-weight: 600;
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

section.how-it-works .highlight-card .icon {
	width: 3.5rem;
	height: 3.5rem;
	background: linear-gradient(135deg, var(--color-primary), var(--color-primary-80));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.75rem;
	color: var(--color-white);
	margin-bottom: 1rem;
}

section.how-it-works .highlight-card .icon i {
	line-height: 1;
}

section.how-it-works .highlight-card p {
	font-size: 1rem;
}

section.how-it-works .how-card h4 {
	margin-top: 1rem;
}

section.initial.sniper-hero {
	padding: 6rem 0 2rem;
}

section.initial.sniper-hero .sniper-video {
	border-radius: 1.5rem;
	overflow: hidden;
	box-shadow: 0 1.5rem 3rem var(--color-shadow);
}

section.initial.sniper-hero .sniper-video iframe {
	border: 0;
}

section.sniper-benefits .item {
	flex-direction: row;
	gap: 1.5rem;
	align-items: flex-start;
	justify-content: flex-start !important;
}

section.sniper-benefits .item .icon {
	width: 3.5rem;
	height: 3.5rem;
	margin: 0.15rem 0 0;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--color-primary), var(--color-primary-80)) !important;
	color: var(--color-white) !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	flex-shrink: 0;
}

section.sniper-benefits .item .icon i {
	line-height: 1;
	font-size: 1.5rem;
}

section.sniper-benefits .item h5 {
	font-size: 1.6rem;
	margin-bottom: 0.75rem;
}

section.sniper-benefits .item p {
	margin-bottom: 0;
	font-size: 1.15rem;
}

/* responsive */

@media (max-width: 991px) {
	footer a.logo img {
		height: 2.5rem;
	}
	footer div.copyright div.content {
		flex-direction: column;
	}
	footer div.copyright div.content span {
		display: flex;

		margin-top: .75rem;
	}
	header div.content a.logo img,
	header div.content a.logo svg {
		height: 3rem;
	}
}

/* custom */

section.initial {
	padding: 12rem 0 8rem;

	min-height: 100vh;

	display: flex;
	align-items: center;
}

section.initial.home-hero {
	background: url('../images/background.webp') no-repeat center/cover;
}

section.initial.external {
    min-height: unset;

    padding: 12rem 0 5rem;
}

section.initial div.welcome {
	font-weight: 500;
	font-size: 1.15rem;

	color: var(--color-dark-56);
}

section.initial div.welcome > span {
	padding: .25rem .75rem;
	margin-bottom: 1.75rem;
	margin-left: .25rem;

	background: var(--color-primary-08);

	border-radius: .5rem;

	display: inline-block;

	color: var(--color-primary);
}

section.initial h1 {
	font-size: 4.5rem;
	font-weight: 700;
	line-height: 1.2;

	margin-bottom: 1.5rem;
}

section.initial h1 > span {
	color: var(--color-primary);
	position: relative;
}

section.initial h1 > span::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0.5rem;
	width: 100%;
	height: 0.5rem;
	background: var(--color-primary-24);
	z-index: 0;
	border-radius: 0.25rem;
}

section.initial p {
	font-size: 1.25rem;
	line-height: 1.8;

	color: var(--color-dark-48);
}

section.initial .home-hero-subtitle {
	font-size: 1.35rem;
	max-width: 50rem;
	margin: 0 auto;
}

section.initial .home-hero-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

section.initial .home-hero-outline {
	background: transparent;
	border: 2px solid var(--color-primary);
	color: var(--color-primary);
}

/* parts */

section.initial div.parts {
	padding-top: 2rem;
}

section.initial div.parts a.item {
	padding: 2rem  2.25rem;

	box-shadow: 2rem 2rem 4rem var(--color-dark-08);

	border-radius: 1rem;

	background: var(--color-white);
	color: var(--color-dark);

	height: 100%;

	transition: .2s;

	position: relative;
	z-index: 8;

	display: flex;
	align-items: flex-start;
}

section.initial div.parts a.item div.content {
	height: 100%;

	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

section.initial div.parts a.item div.content span.spotlight-tag {
	background: var(--color-primary);
	color: var(--color-white);

	display: inline-flex;

	position: absolute;
	top: -2rem;
	left: 0;

	margin-bottom: 1rem;

	padding: .5rem 1rem;

	font-size: .75rem;
	font-weight: 600;
	text-transform: uppercase;

	border-radius: .5rem .5rem 0 0;
}

section.initial div.parts a.item:has( span.spotlight-tag) {
	border-radius: 0 1rem 1rem 1rem;
}

section.initial div.parts a.item div.icon {
	font-size: 3rem;

	color: var(--color-primary);

	opacity: 1;
	
	display: flex;
	align-items: center;
	justify-content: flex-start;

	margin-bottom: 1.25rem;
}

section.initial div.parts a.item div.icon i {
	font-size: 2.5rem;
}

section.initial div.parts a.item h5 {
	font-weight: 600;
	font-size: 1.5rem;

	margin-bottom: .85rem;
}

section.initial div.parts a.item h5 > span {
	color: var(--color-primary);
}

section.initial div.parts a.item p {
	margin-bottom: 2rem;

	font-size: 1rem;
	text-align: left;
}

section.initial div.parts a.item div.link {
	color: var(--color-primary);

	margin-top: auto;
}

section.initial div.spotlight-frase {
	margin-top: 2rem;

	color: var(--color-dark);

	font-weight: 600;
	text-align: center;
	font-size: 1.5rem;
}

section.initial div.spotlight-frase.hero-spotlight {
	background: var(--color-primary-08);
	padding: 1.5rem 2rem;
	border-radius: 1rem;
}

section.initial .hero-spotlight-text {
	font-size: 1.25rem;
}

section.initial div.spotlight-frase strong {
	font-weight: 700;
}

section.default.highlights-section {
	background: linear-gradient(180deg, var(--color-white) 0%, var(--color-primary-16) 100%);
	padding: 4rem 0;
}

.sniper-feature {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.sniper-feature-icon {
	color: var(--color-primary);
	font-size: 1.5rem;
	margin-top: 0.25rem;
}

.sniper-feature-title {
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.sniper-feature-text {
	font-size: 1.25rem;
	margin: 0;
}

section.form div.spotlight-frase {
	color: var(--color-dark);

	font-weight: 700;
	text-align: center;
	font-size: 1rem;

	margin-bottom: .25rem;
}

/* default */

@media (min-width: 992px) {
	.image-large {
		max-width: 200%;
		width: 200%;
	}
}

section.default {
	padding: 5rem 0;
}

section.default.light {
	background: var(--color-primary-08);
}

section.default .video {
	max-height: 600px;
	max-width: 100%;

	display: flex;
	align-items: center;

	padding-top: 3rem;

	overflow: hidden;

	position: relative;

	border-radius: 2rem;
}

section.default .video::after {
	content: '';
	width: 1rem;
	height: 100%;

	position: absolute;
	top: 0;
	right: -.5rem;
	z-index: 8;

	background: #29a2cf;
}

section.default .video video {
	background: #29a2cf;
}

/* products */

section.products {
	background: linear-gradient(180deg, var(--color-white) 0%, var(--color-primary-16) 100%);
}

section.products .item {
	padding: 2rem;

	box-shadow: .5rem .5rem 48px var(--color-shadow);

	border-radius: 1rem;

	background: var(--color-white);
	color: var(--color-dark);

	height: 100%;

	transition: .2s;

	position: relative;
	z-index: 8;

	display: flex;
    flex-direction: column;
    justify-content: space-between;
	align-items: flex-start;
}

section.products .item div.icon {
	font-size: 2.25rem;

	margin-right: 1.5rem;
	margin-top: -.25rem;

	color: var(--color-primary);

	opacity: 1;
}

section.products .item div.icon img {
	max-width: 100%;
}

section.products .item div.icon:has( > img) {
	max-width: 5.5rem;

	margin-right: 2.5rem;
}

section.products .item h5 {
	font-weight: 700;
	font-size: 1.85rem;

	margin-bottom: 1rem;
}

section.products .item h5 > span {
	color: var(--color-primary);
}

section.products .item p {
	font-size: 1.25rem;

	margin-bottom: 2rem;
}

section.products .item div.link {
	color: var(--color-primary);
}

section.products:not(.sniper-benefits) .item {
	border: 1px solid var(--color-primary-16);
	background: var(--color-white);
	box-shadow: 0 1.5rem 3rem var(--color-shadow);
	overflow: hidden;
}

section.products:not(.sniper-benefits) .item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0.35rem;
	background: linear-gradient(90deg, var(--color-primary), var(--color-primary-56));
	opacity: 0.9;
}

section.products:not(.sniper-benefits) .item:hover {
	box-shadow: 0 2.25rem 3.5rem var(--color-shadow);
	border-color: var(--color-primary-24);
}

section.products:not(.sniper-benefits) .item .content h5 {
	font-size: 1.5rem;
	line-height: 1.25;
	min-height: 3.75rem;
}

section.products:not(.sniper-benefits) .item .content p {
	font-size: 1.1rem;
	color: var(--color-dark-72);
	margin-bottom: 0;
}

section.products:not(.sniper-benefits) .item .link {
	margin-top: 1.75rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 600;
	letter-spacing: 0.02em;
}

/* accordion */

.accordion-button {
	font-weight: 700;
	font-size: 1.25rem;

	box-shadow: none !important;
	border: 0 !important;

	padding: 1.5rem 0;
}

.accordion-body {
	padding: 0 0 1.5rem 0;
}

.accordion-button:not(.collapsed) {
	background: transparent;
	color: var(--color-primary);
}

/* form */

section.form div.form-content {
	background: var(--color-white);

	padding: 2.5rem 3rem 2rem;

	border-radius: 1rem;

	box-shadow: .5rem .5rem 48px var(--color-shadow);
}

section.form div.form-content input {
	font-size: 1.25rem;
}

/* accordion */

div.accordion-body {
	padding: .5rem 0 2rem;
}

div.accordion-body li {
	margin-bottom: 1rem;

	font-size: 1.25rem;
}

div.accordion-body p {
	font-size: 1.25rem;

	margin: 0;
}

/* responsive */

@media (max-width: 991px) {
	section.default .btn,
	section.initial .btn {
		width: 100%;
	}
	section.initial h1 {
		font-size: 2.75rem;
	}
	section.initial {
		text-align: center;
	}
	section.default .video {
		max-height: 360px;

		padding-top: 0;
	}
	header div.content nav > ul {
		height: auto;
	}
	header div.content nav ul li > ul li a {
		font-weight: 700;
		font-size: 1rem;
	}

	section.initial {
		padding-bottom: 4rem;
		padding-top: 10rem;
	}

	section.form div.form-content {
		padding: 1.75rem 2rem;
	}

	section.initial div.parts {
		padding-top: 5rem;
	}
}

/* clients */

section.clients {
	background: linear-gradient(45deg, var(--color-primary-04), var(--color-primary-08));
	backdrop-filter: blur(.25rem);

	position: relative;
}

section.clients div.content {
	padding: 1.5rem 0;

	display: flex;
	align-items: center;
}

section.clients div.content span.text {
	margin-right: 4rem;

	font-weight: 600;
	font-size: 1.15rem;
}

div.logos {
	display: flex;
    justify-content: center;
	align-items: center;

    padding: 4.5rem 0 .5rem;

	gap: 3rem;
}

div.logos img {
	height: 2.5rem;
	width: auto;

	filter: grayscale(100%) brightness(8888);

	opacity: .65;
}

/* car-right-image */


/* sticky */

div.sticky {
    position: sticky;
    top: 10rem;
}

div.container-image img {
	border-radius: 2rem;
}

/* sniper */

section.sniper p {
	font-size: 1.25rem;
}
