/* -----------------# VARS #-----------------  */

:root {

	/* ---| COLORS */
	--color-primary: #004AAD;
	--color-primary-hover: #003276;

	--color-secondary: #7ED957;
	--color-secondary-hover: #5BA83A;

	--color-tertiary: #ffd012;
	--color-tertiary-hover: #E9C32B;

	/* ---| Structure */
	--section-padding: 100px;

}

body {
	font-family: Poppins !important;
}

body::-webkit-scrollbar {
	width: 10px;
}

body::-webkit-scrollbar-track {
	background: white;
}

body::-webkit-scrollbar-thumb {
	background-color: #f1f1f1;
	border-radius: 0px;
}

.module__p {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-direction: column;
	gap: 20px;
}

section.text__title {
	width: 100% !important;
}

section .text__title h1 {
	font-size: 30px !important;
}

.module__p p {
	margin-bottom: 0px !important;
	font-size: 20px !important;
}

#footer {
	padding: 15px;
	background: #f9f9f9;
}

#footer p {
	font-size: 10pt;
	font-weight: 300;
	color: #343a40ac;
	text-align: center;
	margin-bottom: 0px;
}


/* --------# FOOTER BUTTONS #---------  */

.footer__buttons {
	position: fixed;
	bottom: 30px;
	right: 20px;
}

.footer__buttons .whatsapp__button {
	cursor: pointer !important;
	border-radius: 100%;
	width: 60px;
    transition: transform 0.3s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: rotate(0); }
    20% { transform: rotate(-10deg); }
    40% { transform: rotate(10deg); }
    60% { transform: rotate(-10deg); }
    80% { transform: rotate(10deg); }
}

.shake { animation: shake 0.6s ease-in-out; }


/* -------------# SWALL #-------------  */

.swal2-popup {
	padding: 50px 50px 75px 50px !important;
	border-radius: 60px !important;
	overflow: hidden !important;
}

.swal2-backdrop-show {
	backdrop-filter: blur(5px);
	background: #00000050 !important;
	opacity: 1 !important;
}

.swal2-popup h2 {
	font-weight: 600 !important;
	color: #0d0d0d !important;
}

.swal2-popup .swal2-html-container {
	font-weight: 300 !important;
	color: #979797 !important;
}

.swal2-popup .swal2-actions button {
	padding: 10px 20px !important;
	border-radius: 15px !important;
	transition: all 200ms !important;
	font-weight: 600;
}

.swal2-popup .swal2-actions button:focus {
	outline: none !important;
	box-shadow: none !important;
}

.swal2-popup .swal2-warning {
	border-color: #f8bb86 !important;
	color: #ff9c45 !important;
}

.swal2-popup .swal2-info {
	border-color: #90e8d8 !important;
	color: #90e8d8 !important;
}

.swal2-popup .swal2-success-ring,
.swal2-popup .swal2-success-fix,
.swal2-popup .swal2-success-ring {
	border-color: #90e8d8 !important;
	color: #90e8d8 !important;
}

.swal2-popup .swal2-success-line-tip,
.swal2-popup .swal2-success-line-long {
	background-color: #90e8d8 !important;
}
}

.swal2-popup .swal2-error {
	border-color: #ff5858;
}

.swal2-popup .swal2-x-mark span {
	background-color: #ff3056;
}


/* -------------# CARROSSEL #-------------  */

.slider {
	position: relative;
	height: 250px !important;
	overflow: hidden;
}

.slider__box {

	padding: 100px 0px;
	position: absolute;
	left: 50px;
	height: 100px !important;

	display: flex;
	justify-content: center;
	align-items: center;
	gap: 50px;
	overflow: hidden;

	animation: slider 90s linear infinite;
}

@keyframes slider {
    0% { transform: translateX(0px); }
    100% { transform: translateX(-100%); }
}

.slider__box img {
	height: 50px;
	transition: all 300ms ease;
}

.slider__box img:hover {
	filter: saturate(100%) !important;
}

.carousel-container {
    width: 80%;
    max-width: 800px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.carousel-track img {
    width: 100%;
    flex-shrink: 0;
    user-select: none;
}

.carousel-btn {
    position: absolute;
    top: 5%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;

    width: 40px;
    height: 40px;
    background: #343a4010;
    backdrop-filter: blur(5px);
    border-radius: 100%;

    cursor: pointer;
    font-size: 10px;
    z-index: 10;
    transition: 0.3s;
}

.carousel-btn:hover { background: rgba(0, 0, 0, 0.8); }

.prev { left: 10px; }
.next { right: 10px; }


/* -------------# SECTION HERO #-------------  */

ul li {
	font-size: 19px;
	font-weight: 300;
	line-height: 200%;
}

section#hero {

	background: 
		radial-gradient(circle at top left, #004AAD20, transparent),
		radial-gradient(circle at top right, #005edb30, transparent),
		white;


	padding-top: var(--section-padding);
	padding-bottom: var(--section-padding);
}

section .alert__badges {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin-bottom: 25px;
	align-items: center;
	gap: 35px;
}

section .alert__badges img {
	height: 50px;
}

section#hero .alert__box {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	gap: 20px;
}

section#hero .alert__data {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 15px;

	border-radius: 100px;
	background: #ffffff;
	padding: 5px 20px 5px 5px;
	margin-bottom: 10px;
}

section#hero .alert__box .data__icon {
	width: 35px;
	height: 35px;
	border-radius: 100%;
	background: #004AAD15;

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

section#hero .alert__box .data__icon svg {
	width: 17px;
	color: var(--color-primary);
}

section#hero .alert__box .alert__data p {
	font-family: Poppins;
	margin-bottom: 0px;
	font-weight: 300 !important;
	font-size: 13px;
	font-weight: 400;
}

section#hero .alert__box h1 {
	font-size: 54px;
	font-weight: 700 !important;
	line-height: 110%;
	margin-bottom: 0px;
}

section#hero .alert__box h1 small {
	font-weight: 400;
	font-size: 1.5rem;
	color: var(--color-primary);
	margin-left: 5px;
}

section#hero .alert__box p {
	font-size: 24px;
	font-weight: 300;
	line-height: 140%;
	color: #403934;
}

a {
	text-decoration: none !important;
}

section#hero .alert__buttons {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
}

section#hero .alert__buttons button {
	padding: 20px 35px;
	border-radius: 50px;
	line-height: 100%;
	font-size: 15px;

	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

section#hero .alert__buttons button.fill {
	background: var(--color-tertiary);
	border: 1px solid var(--color-tertiary);
	transition: all 300ms ease;
	font-weight: 500;
	color: #161617;
}

section#hero .alert__buttons button.fill:hover {
	background: var(--color-tertiary-hover);
	border-color: var(--color-tertiary-hover);
}

section#hero .alert__buttons button.regular {
	background: transparent;
	border: 1px solid transparent;
	color: #161617;
	font-weight: 400;
}

section#hero .hero__form {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 50px 0px;
}

section#hero .input__box label {
	font-size: 14px;
	font-weight: 400 !important;
	color: #161617;
}

section#hero .input__box label b {
	color: var(--color-primary);
	font-weight: 400;
}

section#hero .input__box {
	display: flex;
	justify-content: stretch;
	flex-direction: column;
	align-items: flex-start;
	margin-bottom: 25px;
	gap: 5px;
}

section#hero .input__box .input__item {
	padding: 15px 24px;
	background: #ffffff;
	border-radius: 25px;
	width: 100%;
}

section#hero .input__box .input__item input {
	line-height: 100%;
	border: none !important;
	border: 1px solid #EAE7DF;
	font-weight: 300;
	font-size: 15px;
	width: 100%;
}

section#hero .input__box .input__item input:focus {
	outline: none;
}

section#hero .input__box .input__item input::placeholder {
	color: #34332E60;
}

section#hero .input__check {
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
	align-items: center;
	gap: 10px;
}

section#hero .input__check input {
	width: 18px;
	height: 18px;
	margin-top: 0px;
	border-radius: 8px;
	margin-right: 6px;
	border: none;
}

section#hero .input__check input:focus {
	box-shadow: none !important;
}

section#hero .input__check input:checked {
	background-color: var(--color-primary);
}

section#hero .input__check label {
	font-weight: 300;
	font-size: 10pt;
	line-height: 100%;
	text-align: center;
	color: #343a40;

	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	gap: 5px;
}

section#hero .input__check label a {
	color: var(--color-primary);
	white-space: nowrap;
}

section#hero button {
	padding: 20px 35px;
	border-radius: 50px;
	line-height: 100%;
	font-size: 15px;
	width: 100%;

	background: var(--color-tertiary);
	border: 1px solid var(--color-tertiary);
	transition: all 300ms ease;
	color: #161617;
	white-space: nowrap;
	font-weight: 600;

	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.hero__form button:hover {
	background: var(--color-tertiary-hover) !important;
	border-color: var(--color-tertiary-hover) !important;
}


/* -------------# SECTION VIDEO #-------------  */

section#video {
	padding-top: var(--section-padding);
	padding-bottom: var(--section-padding);
}

section#video #video-container {
	width: 100%;
	border-radius: 35px !important;
	overflow: hidden;
}

section#video #video-container img,
section#video #video-container iframe {
	width: 100%;
/*	height: 500px !important;*/
	box-shadow: 0px 0px 250px 10px #FF7B0025;
	border-radius: 35px;
}


/* -----------# SECTION SOLUTIONS #-----------  */

section.solutions {
	padding-top: var(--section-padding);
	padding-bottom: var(--section-padding);
}

section.solutions .solution__articles article {
	padding: 40px;
	border-radius: 45px;
	box-shadow: 0px 0px 250px 10px #CD4E0015;
	border: 1px solid #ffece7;
	position: relative;
	z-index: 100;
	background: #ffffff;

	height: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
	gap: 20px;
}

section.solutions .solution__articles article .article__icon {
	width: 50px;
	height: 50px;
	border-radius: 17px;
	background: #FF7B0015;
	display: flex;
	justify-content: center;
	align-items: center;
}

section.solutions .solution__articles article .article__icon svg {
	width: 22px;
	color: var(--color-primary);
}

section.solutions .solution__articles article h1 {
	font-size: 25px;
	font-weight: 500;
	line-height: 140%;
	margin-bottom: 0px !important;
}

section.solutions .solution__articles article p {
	font-size: 15px;
	font-weight: 300;
	color: #4b4b4b;
	line-height: 150%;
	margin-bottom: 0px;
}

section.solutions .solution__text {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	height: 100%;
	gap: 35px;

}

section .text__title {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
	width: 100%;
	gap: 25px;
}

section .text__title h1 {
	font-size: 30px;
	font-weight: 600 !important;
	line-height: 100%;
}

section .text__title hr {
	width: 35px;
	border-width: 5px;
	border-color: var(--color-primary);
	opacity: 1;
	margin: 0px;
}

section.solutions .solution__text p {
	font-size: 21px;
	line-height: 150%;
	font-weight: 300 !important;
	margin-bottom: 0px;
	color: #343a40;
}

section.solutions .solution__buttons button {
	padding: 15px 30px;
	border-radius: 50px;
	line-height: 100%;
	font-size: 15px;

	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

section.solutions .solution__buttons button.fill {
	background: transparent;
	border: 1px solid var(--color-primary);
	transition: all 300ms ease;
	color: var(--color-primary);
	font-weight: 400;
}

section.solutions .solution__buttons button.fill:hover {
	background: var(--color-primary-hover);
	color: #ffffff !important;
}


/* -----------# SECTION EMOTIONAL #-----------  */

section#emotional {
	padding-top: var(--section-padding);
	padding-bottom: var(--section-padding);
}

section#emotional .emotional__text {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	gap: 35px;
}

section#emotional .emotional__text p {
	font-size: 21px;
	font-weight: 300;
	line-height: 150%;
}

section#emotional .emotional__text .emotional__row {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 55px;
}

section#emotional .emotional__text .emotional__row .emotional__item h1 {
	white-space: nowrap;
	margin-bottom: 5px;
	font-size: 64px;
	font-weight: 700;
	line-height: 100%;
	letter-spacing: -3px;
	color: #423127;
}

section#emotional .emotional__text .emotional__row .emotional__item p {
	font-size: 21px;
	font-weight: 300 !important;
	letter-spacing: -.5px;
	margin-bottom: 0px;
	line-height: 100%;
	color: #767676;
}


/* -----------# SECTION ROUTES #-----------  */

section#routes {
	padding-top: var(--section-padding);
	padding-bottom: var(--section-padding);
}

section .routes__picture {
	height: 100%;
	width: 100%;
	background: #f5f5f5;
	border-radius: 100px;
	overflow: hidden;
}

section .routes__picture img {
	height: 100%;
	width: 100%;
}

section#routes .routes__row {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	padding: 25px 0px;
	height: 100%;
	gap: 15px;
}

section#routes article.route__item:hover {
	transform: scale(1);
}

section#routes article.route__item {
	padding: 45px;
	border-radius: 50px;
	background: #ffffff;
	border: 1px solid #9D3C0010;
	box-shadow: 0px 0px 250px #FF7B0025;
	transition: all 400ms ease;
	transform: scale(.9);
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
	gap: 25px;
}

section#routes article.route__item h2 {
	font-size: 27px;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: -.5px;
	color: #161617;
}

section#routes article.route__item h2 span {
	color: var(--color-primary);
}

section#routes article.route__item p {
	font-size: 19px;
	font-weight: 300;
	line-height: 140%;
	margin-bottom: 0px;
	color: #403734;
}


/* -----------# SECTION ROUTES #-----------  */

section#rational {
	background: #ffffff;
	text-align: center;
	padding: 150px 0px;
	color: #161617;
}

section#rational .alert__badges {
	justify-content: center !important; 
	margin-top: 35px;
}

section#rational .alert__badges img {
	height: 75px;
}

section#rational h1 {
	font-size: 24px !important;
	font-weight: 300;
	line-height: 120%;
	letter-spacing: -.5px;
	text-align: center;
}

section#rational p {
	font-size: 22px;
	font-weight: 140%;
	letter-spacing: -.3px;
	color: #FFD7BB;
	text-align: center;
	font-weight: 300;
}

section#rational button {
	padding: 15px 30px;
	background: #FF8A1D;
	border: 1px solid #FFFFFF;
	font-weight: 500;
	font-size: 15px;
	color: #ffffff;
	margin-top: 20px;
	border-radius: 100px;
	transition: all 300ms ease;
}

section#rational button:hover {
	background: #ff9c3f;
}


/* -----------# RESPONSIVIDADE #-----------  */

@media screen and (max-width: 768px) {

	:root {

		--section-padding: 25px;

	}

	.alert__box {
		align-items: center !important;
		text-align: center;
	}

	.alert__badges {
		justify-content: center !important;
	}

	.alert__box h1 {
		font-size: 45px !important;
	}

	.alert__box p {
		font-size: 19px !important;
	}

	.alert__data p {
		font-size: 14px !important;
	}

	.alert__buttons {
		flex-direction: column;
	}

	.hero__form {
		padding-left: 15px !important;
		padding-right: 15px !important;
	}

	.solution__text {
		margin-top: 50px;
	}

	.text__title {
		align-items: center !important;
	}

	.solution__buttons {
		align-items: center !important;
		width: 100% !important;
		text-align: center !important;
	}

	.solution__buttons a {
		text-align: center !important;

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

	.text__title h1 {
		font-size: 30px !important;
		text-align: center;
	}

	.solution__text p {
		font-size: 19px !important;
		text-align: center;
	}

	.screenshots__row {
		margin-top: 55px;
	}

	.emotional__text {
		margin-top: 45px;
	}

	.emotional__text p {
		font-size: 19px !important;
		text-align: center !important;
	}

	.routes__picture {
		display: none;
	}

	.routes__row {
		margin-top: 45px;
	}

	.emotional__row {
		flex-direction: column;
		align-items: center !important;
		width: 100% !important;
	}

}