/*FONT*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&display=swap');


/*GENERAL*/
:root {
	--purple: #793499;
	--blue: #42C2D3;
	--grey: #605F60;
	--light-grey: #9D9C9C;
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	height: 100%;
	min-height: 100%;
	scroll-behavior: smooth;
}

body {
	background: #FFF;

	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 18px;
	line-height: 24px;
	color: var(--grey);
}

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

figure {
	margin: 0;
}

h1. h2,
h3,
strong {
	font-weight: 700;
}

a {
	color: var(--grey);
	text-decoration: none;
}

.purple {
	color: var(--purple);
}

.blue {
	color: var(--blue);
}

.grey {
	color: var(--grey);
}

.bg-purple {
	background-color: var(--purple);
}

.bg-blue {
	background-color: var(--blue);
}

.bg-grey {
	background-color: var(--grey);
}

::-webkit-input-placeholder {
	/* Edge */
	color: var(--light-grey);
}

:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: var(--light-grey);
}

::placeholder {
	color: var(--light-grey);
}



/*HEADER*/
header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	padding: 20px 0;
	background: #FFF;
	z-index: 10;
	transition: .3s ease;
}

header.scrolling {
	padding: 15px 0;
	background: rgba(255, 255, 255, 0.9);
	-webkit-box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.2);

	-webkit-backdrop-filter: blur(3px);
	-o-backdrop-filter: blur(3px);
	-moz-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);

	animation-timing-function: cubic-bezier(0.79, 0.14, 0.15, 0.86);
}

header nav.menu a {
	position: relative;
	margin: 0 8px;

	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	color: var(--grey);
}

header nav.menu a:after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 3px;
	background: var(--purple);
	transition: .2s ease;
}

header nav.menu a:hover:after {
	width: 20px;
}


/* MENU */
#menuToggle {
	display: inline-block;
	width: 30px;
	margin: 10px 0 0;
	z-index: 1;
	-webkit-user-select: none;
	user-select: none;
}

#menuToggle input {
	display: flex;
	width: 40px;
	height: 32px;
	position: absolute;
	cursor: pointer;
	opacity: 0;
	z-index: 2;
}

#menuToggle span {
	position: relative;
	display: block;
	width: 100%;
	height: 2px;
	margin-bottom: 5px;
	background: var(--purple);
	border-radius: 3px;
	z-index: 1;
	transform-origin: 5px 0px;
	transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
		background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
		opacity 0.55s ease;
}

#menuToggle span:first-child {
	transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
	transform-origin: 0% 100%;
}

#menuToggle input:checked~span {
	opacity: 1;
	transform: rotate(45deg) translate(-3px, -1px);
	background: #36383F;
}

#menuToggle input:checked~span:nth-last-child(3) {
	opacity: 0;
	transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked~span:nth-last-child(2) {
	transform: rotate(-45deg) translate(0, -1px);
}

#menu {
	position: fixed;
	width: 250px;
	height: 100vh;
	right: 0;
	box-shadow: 0 0 10px #85888C;
	margin: -50px 0 0 -50px;
	padding: 50px;
	padding-top: 125px;
	background-color: #F5F6FA;
	-webkit-font-smoothing: antialiased;
	transform-origin: 0% 0%;
	transform: translate(110%, 0);
	transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

#menu li {
	padding: 10px 0;
	transition-delay: 2s;
}

#menuToggle input:checked~ul {
	transform: none;
}



/*MAIN*/
main {
	overflow: hidden;
}


/*FOOTER*/
footer {
	padding: 60px 0;
	background: var(--purple);
}

footer figure {
	margin: 0;
}

footer p {
	margin: 0;

	font-size: 14px;
	color: #FFF;
}

footer .social a {
	margin: 0 8px;
}




/*COMPONENTS*/
a.cta {
	padding: 0 40px 0 0;
	background: url(img/icon-arrow.svg) no-repeat right center;
	background-size: 38px 11px;
	transition: .2s ease;

	font-size: 14px;
	font-weight: 700;
	color: var(--purple);
	cursor: pointer;
}

a.cta:hover {
	padding-right: 45px;
}

h2 {
	font-size: 34px;
	font-weight: 700;
	line-height: 40px;
}

/*@FORM*/
.modal-header {
	border-bottom: 0;
}

.modal-content {
	border: 0;
	border-radius: 20px;
	outline: 0;
}

.form-wrap {
	padding: 30px;
}

.form-wrap strong.title {
	display: block;
	margin: 0 0 30px;
	text-align: center;
}

.form-wrap .simulacao {
	margin: 30px 0 0;

	font-size: 16px;
	text-align: center;
}

.form-wrap .simulacao a {
	font-weight: 700;
	color: var(--purple);
	text-decoration: underline;
}


/*HERO*/
section.hero {
	padding: 240px 0 160px;
	background: url(img/bg-hero.jpg) center no-repeat;
	background-size: cover;
}

section.hero h2 {
	margin: 30px 0 0;

	font-size: 24px;
	font-weight: 500;
	line-height: 30px;
	color: #FFF;
}

section.hero .btn-primary {
	margin: 30px 0 0;
	padding: 10px 60px 10px 20px;
	outline: 0;
	border: 0;
	background: url(img/icon-arrow-white.svg) var(--purple) no-repeat 92% center;
	background-size: 38px 11px;
	transition: .3s ease;
}

section.hero .btn-primary:focus {
	outline: none;
	box-shadow: none;
}

section.hero .btn-primary:hover {
	padding-right: 70px;
	background-color: #FFF;
	background-image: url(img/icon-arrow.svg);
	color: var(--purple);
}


/*SIDE CARD*/
section.side-card {
	position: relative;
	padding: 70px 0;
}

section.side-card figure {
	border-top-right-radius: 45px;
	border-bottom-right-radius: 45px;
	overflow: hidden;
}

section.side-card h2 {
	margin: 15px 0;
}

/*@INVERTED*/
section.side-card.inverted {
	padding: 150px 0;
}

section.side-card.inverted figure {
	position: absolute;
	width: 40%;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	border-radius: 0;
	border-top-left-radius: 45px;
	border-bottom-left-radius: 45px;
	overflow: hidden;
}

/*@LIGHT*/
section.side-card.light {
	color: #FFF;
}

section.side-card.light a.cta {
	background-image: url(img/icon-arrow-white.svg);
	color: #FFF;
}


/*CONSULTA*/
section.consulta {
	padding: 70px 0;
	background: var(--purple);
}

section.consulta h2 {
	color: #FFF;
}

form[name="search"] {
	position: relative;
	margin: 60px 0 0;
}

form[name="search"] input[name="chassi"] {
	padding: 5px 0;
	border-radius: 0;
	border: 0;
	border-bottom: 1px solid #FFF;
	background: transparent;

	color: #FFF;
}

form[name="search"] input[name="chassi"]::placeholder {
	color: #FFF;
}

form[name="search"] .btn-search {
	position: absolute;
	right: 0;
	width: 25px;
	height: 25px;
	border: 0;
	background: url(img/icon-search.svg) no-repeat;
}

section.consulta .status {
	margin: 15px 0 0;

	font-size: 14px;
	font-style: italic;
	line-height: 16px;
	color: #FFF;
}


/*SERVICOS*/
section.servicos {
	padding: 120px 0;
	background: url(img/bg-servicos.jpg) center no-repeat;
	background-size: cover;
	color: #FFF;
}

ul.servicos-list {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 30px 0 0;
}

ul.servicos-list li {
	display: flex;
	align-items: center;
	width: 50%;
	margin: 10px 0;
}

ul.servicos-list li img {
	width: 60px;
	margin: 0 20px 0 0;
}

ul.servicos-list li p {
	margin: 0;
}


/*PRE ANALISE*/
section.pre-analise {
	padding: 160px 0;
	background: url(img/bg-pre-analise.jpg) center no-repeat;
	background-size: cover;

	color: #FFF;
}

section.pre-analise a.cta {
	background-image: url(img/icon-arrow-white.svg);
	color: #FFF;
}


/*COMO FINANCIAR*/
section.como-financiar {
	padding: 140px 0;
	background: #EFEFEF;
}



/*////////////////
/// RESPONSIVE
////////////////*/
@media (max-width: 1200px) {
	/* .col-xl */

}

@media (max-width: 992px) {

	/* .col-lg */
	section.hero {
		padding: 160px 0 120px;
	}

	section.side-card figure {
		max-height: 280px;
		border-radius: 0;
	}

	section.side-card figure img {
		object-fit: cover;
		object-position: center;
	}

	section.side-card.inverted figure {
		position: initial;
		width: initial;
		top: initial;
		left: initial;
		transform: unset;
		border-radius: 0;
	}
}

@media (max-width: 768px) {

	/* .col-md */
	body {
		font-size: 16px;
		line-height: 22px;
	}

	h2 {
		font-size: 30px;
		line-height: 36px;
	}

	section.consulta,
	section.como-financiar,
	section.side-card,
	section.side-card.inverted {
		padding: 70px 0;
	}
}

@media (max-width: 576px) {

	/* .col-sm */
	ul.servicos-list li {
		width: 100%;
	}
}

@media (max-width: 375px) {

	/* iPhone 6, 7, 8 Plus */
	body {
		font-size: 14px;
		line-height: 20px;
	}

	h2 {
		font-size: 22px;
		line-height: 26px;
	}

	footer p {
		font-size: 12px;
	}
}

@media (max-width: 320px) {
	/* iPhone 5, SE */

}


@media (min-width: 992px) {
	section.side-card:not(.inverted) .container {
		max-width: 100%;
		padding-left: 0;
		padding-right: 0;
	}
}