/* CUSTOM PROPS */
:root {
	/* colors */
	--color-blue-1: #102338;
	--color-blue-2: #00b1df;
	--color-green-1: #06fa73;
	--color-light-1: #f6f6f6;
	--color-light-2: #d9d9d9;
	/* font family */
	--font-family-1: "Montserrat", sans-serif;
	--font-family-2: "Montserrat", sans-serif;
	/* container size */
	--container-margin: 20px;
	--container-width: 1440px;
}

/* RESETS */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-family: var(--font-family-2);
	box-sizing: border-box;
}
html {
	min-height: 100vh;
}
body {
	min-height: inherit;
	background-color: #000000;
	font-size: 16px;
	color: var(--color-4);
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-family-1);
	color: var(--color-blue-1);
}
a {
	color: var(--color-3);
	text-decoration: none;
}
button {
	cursor: pointer;
	background-color: transparent;
}

/* UTILS */
.container {
	margin: 0 var(--container-margin);
	max-width: var(--container-width);
	height: inherit;
}

.flex {
	display: flex;
}

.flex,
.even-columns {
	display: flex;
	height: inherit;
}

.even-columns > * {
	flex-basis: 100%;
}

.title {
	display: inline-block;
	padding-bottom: 10px;
	color: var(--color-blue-1);
}
.elliscash {
	color: var(--color-blue-2);
}

/* TOP */
.top {
	position: relative;
}
.top::before {
	content: "";
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #001022 url(../img/bg.jpg) no-repeat;
	background-size: cover;
}
.top__logo {
	display: inline-block;
	margin-top: 60px;
	margin-left: 250px;
}
.top__logo img {
	width: 160px;
	height: auto;
}
.top__title {
	margin: auto;
	margin-top: 30px;
	max-width: 840px;
	text-align: center;
	font-size: 42px;
	font-weight: bold;
	color: var(--color-light-1);
}
.top__description {
	margin: auto;
	margin-top: 30px;
	max-width: 840px;
	text-align: center;
	font-size: 22px;
	color: var(--color-light-2);
}
.top__hero {
	display: flex;
	justify-content: center;
	margin-top: 20px;
	overflow: hidden;
}
.top__link {
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	white-space: nowrap;
	border-radius: 30px;
	padding: 10px;
	width: 491px;
	background-color: var(--color-green-1);
	text-align: center;
	color: var(--color-blue-1);
	font-size: 22px;
	font-weight: bold;
	box-shadow: 0px 5px 5px #00000080;
}
.top__link::after {
	content: url(../img/arrow.png);
	margin-top: 8px;
}
@media (max-width: 991px) {
	.top__logo {
		margin-top: 30px;
		margin-left: 0;
	}
	.top__title {
		margin-top: 60px;
		font-size: 25px;
	}
	.top__description {
		font-size: 16px;
	}
	.top__link {
		width: 250px;
	}
}
@media (max-width: 600px) {
	.top {
		overflow-inline: hidden;
	}
	.top__hero img {
		max-width: 200%;
	}
}

/* NEW TOP */
.newtop {
	background: #042f60 url(../img/bg-newtop.png) no-repeat top right;
	overflow: hidden;
}
.newtop__logo {
	display: inline-block;
	margin-top: 120px;
}
.newtop__logo img {
	width: 160px;
	height: auto;
}
.newtop__title {
	margin-top: 100px;
	max-width: 640px;
	font-size: 42px;
	font-weight: bold;
	color: var(--color-light-1);
}
.newtop__description {
	margin: auto;
	margin-top: 70px;
	max-width: 640px;
	font-size: 22px;
	color: var(--color-light-2);
}
.newtop__link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	white-space: nowrap;
	margin: 70px 0 170px 0;
	border-radius: 30px;
	padding: 5px 10px;
	width: 291px;
	background-color: var(--color-green-1);
	text-align: center;
	color: var(--color-blue-1);
	font-size: 27px;
	font-weight: bold;
	box-shadow: 0px 5px 5px #00000080;
}
.newtop__link::after {
	content: url(../img/arrow.png);
	margin-top: 8px;
}
.newtop__hero {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.newtop__hero img {
	position: absolute;
	left: -50px;
	z-index: 10;
}
@media (max-width: 1366) {
	.newtop .container {
		margin: 0 150px !important;
	}
}
@media (max-width: 991px) {
	.newtop .flex {
		flex-direction: column;
	}
	.newtop__content {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.newtop__logo {
		margin-top: 30px;
	}
	.newtop__title {
		margin-top: 30px;
		font-size: 25px;
		text-align: center;
	}
	.newtop__description {
		margin-top: 30px;
		font-size: 16px;
		text-align: center;
	}
	.newtop__link {
		margin-top: 30px;
		margin-bottom: 30px;
		width: 250px;
	}
	.newtop__hero img {
		position: static;
		margin: auto;
		width: 70%;
		height: auto;
	}
}
@media (max-width: 600px) {
	.newtop__hero img {
		width: 100%;
	}
}

/* CLIENTES */
.clientes {
	padding: 100px 0;
	background-color: #fafafa;
}
.clientes .container {
	max-width: 1072px;
	margin: auto;
}
.clientes__title {
	font-size: 45px;
	color: var(--color-blue-1);
	text-align: center;
}
.clientes__list {
	display: flex;
	justify-content: space-around;
	position: relative;
	margin-top: 50px;
	list-style: none;
}
.clientes__item {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: auto;
	margin-bottom: 15px;
	width: 140px;
	height: 140px;
	border-radius: 20px;
	box-shadow: 5px 5px 5px #00000090;
	background: white;
}
.clientes__item img {
	width: 90%;
	height: auto;
}
@media (max-width: 991px) {
	.clientes {
		padding-bottom: 50px;
	}
	.clientes .container {
		max-width: 100%;
	}
}

@media (max-width: 500px) {
	.clientes {
		--s: -18px;
		--w: 26px;
		--h: 40px;
	}
	.clientes .owl-prev {
		left: var(--s) !important;
		width: var(--w);
		height: var(--h);
		border-radius: 10px;
	}
	.clientes .owl-next {
		right: var(--s) !important;
		width: var(--w);
		height: var(--h);
		border-radius: 10px;
	}
}

/* o que fazemos */
.o-que-fazemos {
	padding-top: 100px;
	background-color: #fffdfc;
}
.o-que-fazemos .container {
	max-width: 1032px;
	margin: auto;
}
.o-que-fazemos__hero {
	display: flex;
	justify-content: center;
}
.o-que-fazemos__hero-img {
	width: auto;
	height: 590px;
}
.o-que-fazemos__content-title {
	margin-top: 100px;
	font-size: 28px;
	font-weight: bold;
}
.o-que-fazemos__content-description {
	margin-top: 30px;
	font-size: 21.5px;
}
@media (max-width: 991px) {
	.o-que-fazemos {
		padding-top: 50px;
	}
	.o-que-fazemos .even-columns {
		flex-direction: column-reverse;
	}
	.o-que-fazemos__content-title {
		margin-top: 0;
	}
}

/* vantagens */
.vantagens {
	position: relative;
	padding: 150px 0;
	background-color: #094482;
	background-image: url(../img/bg-dots.png);
	background-repeat: repeat-x;
	box-shadow: 0 0 15px #000000;
	z-index: 1;
}
.vantagens::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 400px;
	background-image: linear-gradient(180deg, #094482f0, #094482 70%);
}
.vantagens .container {
	position: relative;
	z-index: 10;
	max-width: 1032px;
	margin: auto;
}
.vantagens__title {
	max-width: 450px;
	font-size: 45px;
	font-weight: bold;
	color: var(--color-light-2);
}
.vantagens__list {
	margin-top: 100px;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 50px;
}
.vantagens__item {
	display: flex;
	gap: 20px;
	color: var(--color-light-2);
	font-size: 16px;
}
.vantagens__item::before {
	content: url(../img/verified.png);
}
.vantagens__item span {
	margin-top: 10px;
}
.vantagens__hero {
	margin-top: 100px;
	display: flex;
	justify-content: center;
}
@media (max-width: 991px) {
	.vantagens .even-columns {
		flex-direction: column;
	}
	.vantagens__list {
		grid-template-columns: 1fr;
	}
}

/* vantagens recursos */
.vantagens__recursos {
	margin-top: 100px;
	align-items: flex-end;
}
.vantagens__recursos-title {
	position: relative;
	padding-bottom: 15px;
	font-size: 45px;
	font-weight: bold;
	color: var(--color-light-2);
}
.vantagens__recursos-title::before {
	content: "";
	position: absolute;
	bottom: 0;
	width: 30%;
	height: 8px;
	border-radius: 8px;
	background-color: var(--color-blue-2);
}
.vantagens__recursos-list {
	display: flex;
	flex-direction: column;
	list-style: none;
	margin-top: 50px;
	gap: 50px;
}
.vantagens__recursos-item {
	display: flex;
	color: var(--color-light-2);
	gap: 30px;
}
.vantagens__recursos-item::before {
	content: url(../img/check-circle.png);
}
.vantagens__recursos-item div {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.vantagens__recursos-item span {
	font-size: 24px;
	font-weight: bold;
	color: var(--color-light-1);
}
.vantagens__recursos-hero {
	position: relative;
	flex-basis: auto;
}
.vantagens__recursos-herolink {
	position: absolute;
	bottom: 0px;
	left: 100px;
	display: flex;
	align-items: center;
	gap: 15px;
	white-space: nowrap;
	border-radius: 30px;
	padding: 10px 30px;
	width: fit-content;
	background: var(--color-green-1);
	font-size: 27px;
	font-weight: bold;
	color: var(--color-blue-1);
	box-shadow: 0px 5px 5px #00000040;
}
.vantagens__recursos-herolink::after {
	content: url(../img/arrow.png);
	margin-top: 8px;
}
@media (max-width: 991px) {
	.vantagens__recursos-item {
		gap: 10px;
	}
	.vantagens__recursos-herolink {
		margin: auto;
		left: 0;
		right: 0;
	}
}

/* sistema personlizado */
.sistema-personalizado {
	position: relative;
	padding: 100px 0;
	background-color: #fafafa;
	box-shadow: 0 0 15px #000000;
	z-index: 2;
}
.sistema-personalizado .container {
	max-width: 1032px;
	margin: auto;
}
.sistema-personalizado__title {
	font-size: 50px;
	font-weight: bold;
	color: var(--color-blue-1);
}
.sistema-personalizado__description {
	max-width: 600px;
	margin-top: 30px;
	font-size: 20px;
	color: var(--color-blue-1);
}
.sistema-personalizado__list {
	display: flex;
	flex-direction: column;
	list-style: none;
	margin-top: 50px;
	gap: 50px;
}
.sistema-personalizado__item {
	display: flex;
	color: var(--color-blue-1);
	gap: 30px;
}
.sistema-personalizado__item::before {
	content: url(../img/check-circle.png);
}
.sistema-personalizado__item div {
	display: flex;
	flex-direction: column;
	margin-top: 13px;
	gap: 30px;
}
.sistema-personalizado__item span {
	font-size: 24px;
	font-weight: bold;
	color: var(--color-blue-1);
}
.sistema-personalizado__hero {
	flex-basis: auto;
}
@media (max-width: 991px) {
	.sistema-personalizado .even-columns {
		flex-direction: column;
	}
	.sistema-personalizado__title {
		font-size: 33px;
	}
	.sistema-personalizado__description {
		font-size: 18px;
	}
	.sistema-personalizado__item {
		gap: 10px;
		font-size: 16px;
	}
	.sistema-personalizado__item::before {
	}
	.sistema-personalizado__item span {
		font-size: 22px;
	}
}

/* sistema integrado */
.sistema-integrado {
	position: relative;
	padding: 100px 0;
	background: var(--color-blue-1) url(../img/wave.png) no-repeat right top;
	box-shadow: 0 15px 25px #00000090;
	z-index: 3;
}
.sistema-integrado .container {
	max-width: 1100px;
	margin: auto;
}
.sistema-integrado__title {
	font-size: 50px;
	font-weight: bold;
	color: var(--color-blue-2);
}
.sistema-integrado__description {
	max-width: 600px;
	margin-top: 30px;
	font-size: 20px;
	color: var(--color-light-2);
}
.sistema-integrado__list {
	display: flex;
	flex-direction: column;
	list-style: none;
	margin-top: 50px;
	gap: 50px;
}
.sistema-integrado__item {
	position: relative;
	display: flex;
	color: var(--color-light-2);
	gap: 30px;
}
.sistema-integrado__item::before {
	content: url(../img/check-circle.png);
}
.sistema-integrado__item div {
	display: flex;
	flex-direction: column;
	margin-top: 13px;
	gap: 30px;
}
.sistema-integrado__item span {
	font-size: 24px;
	font-weight: bold;
	color: var(--color-light-2);
}
.sistema-integrado__item a {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	gap: 10px;
	border-radius: 30px;
	padding: 15px 20px;
	background-color: var(--color-blue-2);
	font-size: 12px;
	color: var(--color-light-1);
}
.sistema-integrado__item a::after {
	content: "";
	margin-top: 2px;
	width: 15px;
	height: 15px;
	background: url(../img/arrow-right-small.png) no-repeat center;
}
.sistema-integrado__hero {
	flex-basis: auto;
}
@media (max-width: 991px) {
	.sistema-integrado .even-columns {
		flex-direction: column;
	}
	.sistema-integrado__list {
		gap: 100px;
	}
	.sistema-integrado__item {
		gap: 10px;
	}
	.sistema-integrado__item div {
		gap: 10px;
	}
	.sistema-integrado__item a {
		gap: 5px;
		padding-left: 10px;
		padding-right: 10px;
		top: auto;
		right: auto;
		left: 60px;
		bottom: -60px;
	}
	.sistema-integrado__hero {
		margin-top: 70px;
	}
}

/* investimento */
.investimento {
	position: relative;
	padding: 70px 0;
	background-color: #1b396b;
	z-index: 2;
}
.investimento__title {
	font-size: 40px;
	font-weight: bold;
	color: var(--color-light-1);
	text-align: center;
}
.investimento__list {
	display: flex;
	list-style: none;
	margin: auto;
	margin-top: 50px;
	width: fit-content;
	gap: 50px;
}
.investimento__item {
	--green: #7bc7c6;
	position: relative;
	border: 2px solid var(--green);
	border-radius: 15px;
	padding: 20px;
	max-width: 320px;
	overflow: hidden;
}
.investimento__item.recommended {
	background-image: linear-gradient(180deg, #102241, transparent);
}
.investimento__item.recommended::before {
	content: "Recomendado";
	background-color: #091629;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: -20px -20px 20px -20px;
	padding: 10px;
	border-bottom: 2px solid var(--green);
	font-weight: bold;
	color: var(--green);
	text-transform: uppercase;
}
.investimento__item.recommended-sem::before {
	content: "";
	display: flex;
	justify-content: center;
	align-items: center;
	margin: -20px -20px 20px -20px;
	padding: 22px;
	font-weight: bold;
	color: var(--green);
	text-transform: uppercase;
}
.investimento__item-title {
	margin-bottom: 10px;
	font-size: 28px;
	font-weight: bold;
	color: var(--green);
	text-align: center;
}
.investimento__item-price {
	margin-bottom: 5px;
	font-size: 35px;
	font-weight: bold;
	color: var(--color-light-1);
	text-align: center;
}
.investimento__item-price span {
	font-size: 25px;
	font-weight: normal;
}
.investimento__item-price-2 {
	margin-bottom: 20px;
	font-size: 13px;
	font-weight: normal;
	color: var(--color-light-1);
	text-align: center;
}
.investimento__item-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 20px;
	list-style: none;
}
.investimento__item-listitem {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: var(--color-light-1);
}
.investimento__item-listitem::before {
	content: "";
	width: 15px;
	height: 15px;
	background: url(../img/v-icon.png) no-repeat center;
}
.investimento__item-period {
	position: absolute;
	bottom: 0;
	right: 0;
	border-radius: 15px 0 0 0;
	padding: 10px 20px;
	background-color: var(--green);
	font-size: 12px;
	color: var(--color-light-1);
}
.investimento__whatsapp {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: auto;
	margin-top: 40px;
	border-radius: 30px;
	padding: 5px 30px;
	width: fit-content;
	background: #00df81;
	font-size: 18px;
	font-weight: bold;
}
.investimento__whatsapp::before {
	content: url(../img/wpp-icon.png);
	margin-top: 3px;
}
.investimento__garantia {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: auto;
	margin-top: 20px;
	width: fit-content;
	gap: 20px;
}
.investimento__garantia-title {
	font-size: 30px;
	font-weight: bold;
	color: var(--color-light-2);
}
.investimento__garantia-description {
	margin-top: 20px;
	max-width: 400px;
	font-size: 18px;
	color: var(--color-light-2);
}
.myBtn {
	cursor: pointer;
}
@media (max-width: 991px) {
	.investimento__garantia,
	.investimento__list {
		flex-direction: column;
	}
	.investimento img {
		max-width: 100%;
	}
}

/* blog */
.blog {
	padding: 70px 0;
	background-color: var(--color-blue-1);
}
.blog .container {
	max-width: 1072px;
	margin: auto;
}
.blog__title {
	font-size: 55px;
	font-weight: bold;
	color: var(--color-blue-2);
	text-align: center;
}
.blog__list {
	position: relative;
	display: flex;
	margin-top: 50px;
	width: fit-content;
	list-style: none;
}
.blog__list .owl-prev,
.blog__list .owl-next {
	top: calc(50% - 40px);
	background-color: var(--color-blue-2) !important;
	background-image: url(../img/arrow.png);
}
.blog__list .owl-prev {
	transform: translateY(-50%) scale(-1);
}
.blog__list .owl-next {
	transform: translateY(-50%) scale(1);
}
.blog__item {
	margin: auto;
	width: 300px;
}
.blog__item p {
	margin: auto;
	margin-top: 20px;
	text-align: center;
	color: var(--color-light-2);
	font-size: 18px;
	max-width: 80%;
}
.blog__item p span {
	display: block;
	color: var(--color-light-1);
	font-weight: bold;
}

/* newsletter */
.newsletter {
	padding: 70px 0;
	background-color: #f7f7f7;
}
.newsletter .flex {
	justify-content: center;
	align-items: center;
}
.newsletter__wrapper {
	flex-basis: auto;
}
.newsletter__title {
	margin-bottom: 30px;
	max-width: 700px;
	font-size: 35px;
	font-weight: normal;
	color: var(--color-blue-1);
}
.newsletter__form {
	display: flex;
	height: 60px;
}
.newsletter__form-label {
	display: none;
}
.newsletter__form-input {
	height: 100%;
	border-radius: 30px 0 0 30px;
	padding: 0 40px 0 20px;
	background-color: var(--color-light-2);
	font-size: 22px;
	font-weight: 200;
	color: #797979;
}
.newsletter__form-input::placeholder {
	font-size: 22px;
	font-weight: lighter;
	color: #797979;
}
.newsletter__form-submit {
	margin-left: -30px;
	height: 100%;
	border-radius: 30px;
	padding: 0 20px;
	background-color: var(--color-blue-1);
	font-size: 28px;
	font-weight: bold;
	color: var(--color-light-1);
}
.newsletter__hero {
	flex-basis: auto;
}
@media (max-width: 991px) {
	.newsletter .even-columns {
		flex-direction: column;
	}
	.newsletter__title {
		font-size: 25px;
	}
	.newsletter__form {
		margin-bottom: 20px;
	}
	.newsletter__form-input,
	.newsletter__form-input::placeholder {
		width: 100%;
		font-size: 20px;
	}
	.newsletter__form-submit {
		font-size: 16px;
		white-space: nowrap;
	}
}

/* faq */
.faq {
	padding: 50px 0;
	background: #fff url(../img/bg-faq.png) no-repeat 550px bottom;
}
.faq__title {
	font-size: 60px;
	color: var(--color-blue-1);
	text-align: center;
}
.faq dl {
	margin: auto;
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	gap: 25px;
	max-width: 900px;
}
.faq dt {
	border-radius: 10px;
	border: 1px solid var(--color-blue-1);
	padding: 25px 40px;
	background: white url(../img/arrow.png) no-repeat right 30px center;
	font-size: 20px;
	color: var(--color-blue-1);
	cursor: pointer;
}
.faq dt.visible {
	background: url(../img/arrow-down.png) no-repeat right 30px center;
}
.faq dd {
	display: none;
	border-radius: 10px;
	border: 1px solid #b2b2b2;
	padding: 20px 40px;
	font-size: 16px;
	line-height: 1.6;
	background-color: #f7f7f7;
}
.faq dd.show {
	display: block;
}
@media (max-width: 991px) {
	.faq__title {
		font-size: 40px;
	}
}

/* footer */
.footer {
	padding: 70px 0 30px 0;
	background: var(--color-blue-1);
}
.footer__title {
	font-size: 30px;
	font-weight: bold;
	color: var(--color-light-1);
	text-align: center;
}
.footer__social-list {
	display: flex;
	justify-content: center;
	gap: 50px;
	list-style: none;
	margin: auto;
	padding: 50px 0;
	width: 95%;
	border-bottom: 2px solid var(--color-blue-2);
}
.footer__social-item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
}
.footer__social-item img {
	width: 100%;
	height: auto;
}
.footer__logo {
	display: flex;
	justify-content: center;
	padding: 50px 0;
	border-bottom: 10px solid var(--color-blue-2);
}
.footer__logo img {
	width: 160px;
	height: auto;
}

/* media queries geral */
@media (min-width: 1440px) {
	:root {
		--container-margin: auto;
	}
}

@media (max-width: 991px) {
	.container {
		margin: 0 var(--container-margin) !important;
	}
	img {
		max-width: 100%;
		height: auto !important;
	}
}

/* owl-caroulsel */
.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
.owl-carousel {
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper {
	display: none;
	position: relative;
	-webkit-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-wrapper-outer {
	overflow: hidden;
	position: relative;
	width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight {
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
.owl-carousel .owl-item {
	float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div {
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.grabbing {
	cursor: url(grabbing.png) 8 8, move;
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
}

/* carousel controls */
.owl-prev,
.owl-next {
	--spacing: -40px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: calc(50% - 5px);
	left: var(--spacing);
	border-radius: 20px;
	width: 50px;
	height: 70px;
	box-shadow: 3px 3px 5px #00000090;
	transform: translateY(-50%);
	background: var(--color-blue-1) url(../img/arrow-white.png) no-repeat center;
	text-indent: -9999px;
	overflow: hidden;
	z-index: 1;
}
.owl-next {
	left: auto;
	right: var(--spacing);
	transform: translateY(-50%) scale(-1);
}

@media (max-width: 991px) {
	.owl-prev,
	.owl-next {
		--spacing: 0px;
	}
}
.close {
	float: right;
	font-size: 21px;
	font-weight: 700;
	line-height: 1;
	color: #000;
	text-shadow: 0 1px 0 #fff;
	filter: alpha(opacity=20);
	opacity: 0.2;
}

.close:hover,
.close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
	filter: alpha(opacity=50);
	opacity: 0.5;
}

button.close {
	-webkit-appearance: none;
	padding: 0;
	cursor: pointer;
	background: 0 0;
	border: 0;
}
.modal-open {
	overflow: hidden;
}

.modal {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1050;
	display: none;
	overflow: hidden;
	-webkit-overflow-scrolling: touch;
	outline: 0;
}

.modal.fade .modal-dialog {
	-webkit-transition: -webkit-transform 0.3s ease-out;
	-o-transition: -o-transform 0.3s ease-out;
	transition: transform 0.3s ease-out;
	-webkit-transform: translate3d(0, -25%, 0);
	-o-transform: translate3d(0, -25%, 0);
	transform: translate3d(0, -25%, 0);
}

.modal.in .modal-dialog {
	-webkit-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.modal-open .modal {
	overflow-x: hidden;
	overflow-y: auto;
}

.modal-dialog {
	position: relative;
	width: auto;
	margin: 10px;
}

.modal-content {
	position: relative;
	background-color: #fff;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	border: 1px solid #999;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 6px;
	outline: 0;
	-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
	box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}

.modal-backdrop {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1040;
	background-color: #000;
}

.modal-backdrop.fade {
	filter: alpha(opacity=0);
	opacity: 0;
}

.modal-backdrop.in {
	filter: alpha(opacity=50);
	opacity: 0.5;
}

.modal-header {
	min-height: 16.43px;
	padding: 15px;
	border-bottom: 1px solid #e5e5e5;
}

.modal-header .close {
	margin-top: -2px;
}

.modal-title {
	margin: 0;
	line-height: 1.42857143;
}

.modal-body {
	position: relative;
	padding: 15px;
}

.modal-footer {
	padding: 15px;
	text-align: right;
	border-top: 1px solid #e5e5e5;
}

.modal-footer .btn + .btn {
	margin-bottom: 0;
	margin-left: 5px;
}

.modal-footer .btn-group .btn + .btn {
	margin-left: -1px;
}

.modal-footer .btn-block + .btn-block {
	margin-left: 0;
}

.modal-scrollbar-measure {
	position: absolute;
	top: -9999px;
	width: 50px;
	height: 50px;
	overflow: scroll;
}

.modal {
	display: none;
	position: fixed;
	z-index: 999999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
	background-color: #fefefe;
	margin: 9% auto;
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
	max-width: 450px;
}

.modal-content .conteudo {
	text-align: center;
}

.modal-content .conteudo h3 {
	font-size: 28px;
	font-weight: bold;
}

.modal-content .conteudo p {
	font-size: 13px;
	margin: 20px 0;
	font-weight: bold;
}

.modal-content .conteudo input {
	border-radius: 8px !important;
	border: 1px solid #999;
	margin-bottom: 16px;
	width: 100%;
	padding: 10px;
}

.modal-content .conteudo input[type="submit"] {
	display: block;
	width: 100%;
	border: 0;
	background: #1d5ca3;
	color: #fff;
	padding: 10px;
}

.modal-content .conteudo button {
	display: block;
	width: 100%;
	border-radius: 8px !important;
	border: 0;
	background: #1d5ca3;
	color: #fff;
	padding: 10px;
	font-size: 14px;
	font-weight: bold;
}

@media (min-width: 768px) {
	.modal-dialog {
		width: 600px;
		margin: 30px auto;
	}

	.modal-content {
		-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
	}

	.modal-sm {
		width: 300px;
	}
}

@media (min-width: 992px) {
	.modal-lg {
		width: 900px;
	}
}

.fab {
	position: fixed;
	bottom: 30px;
	z-index: 9991;
	right: 30px;
}

.fab button {
	cursor: pointer;
	width: 48px;
	height: 48px;
	border-radius: 50% !important;
	background-color: #0096d0;
	border: none;
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
	font-size: 24px;
	color: white;
	line-height: 14px;

	-webkit-transition: 0.2s ease-out;
	-moz-transition: 0.2s ease-out;
	transition: 0.2s ease-out;
}

.fab button a {
	display: flex;
}

.fab button#opcao1 {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #00bc5d;
}

.fab button#opcao2 {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f26101;
}

.fab button svg {
	width: 24px;
	color: #fff;
}

.fab button.main {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	width: 60px;
	height: 60px;
	border-radius: 50% !important;
	background-color: #0096d0;
	right: 0;
	bottom: 0;
	z-index: 999999999;
}

.fab ul {
	position: absolute;
	bottom: -130px;
	right: 0;
	padding: 0;
	padding-right: 5px;
	margin: 0;
	list-style: none;
	z-index: 10;

	-webkit-transition: 0.2s ease-out;
	-moz-transition: 0.2s ease-out;
	transition: 0.2s ease-out;
}

.fab ul li {
	display: flex;
	justify-content: flex-start;
	position: relative;
	margin-bottom: -10%;
	opacity: 0;

	-webkit-transition: 0.3s ease-out;
	-moz-transition: 0.3s ease-out;
	transition: 0.3s ease-out;
}

.fab ul li a {
	color: #fff;
	font-size: 0;
}

.fab button.main.active {
	outline: none;
	background-color: #0096d0;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
}

.fab button.main.active + ul {
	bottom: 70px;
}

.fab button.main.active + ul li {
	margin-bottom: 10px;
	opacity: 1;
}

.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-footer:before,
.modal-footer:after {
	display: table;
	content: " ";
}

.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-footer:after {
	clear: both;
}

.center-block {
	display: block;
	margin-right: auto;
	margin-left: auto;
}

.pull-right {
	float: right !important;
}

.pull-left {
	float: left !important;
}

.hide {
	display: none !important;
}

.show {
	display: block !important;
}

.invisible {
	visibility: hidden;
}

.text-hide {
	font: 0/0 a;
	color: transparent;
	text-shadow: none;
	background-color: transparent;
	border: 0;
}

.hidden {
	display: none !important;
	visibility: hidden !important;
}

.affix {
	position: fixed;
	-webkit-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

form .website {
	display: none;
}
