@font-face {
	font-family: 'Museo 700';
	src: url('fonts/Museo-700.eot');
	src: url('fonts/Museo-700.eot?#iefix') format('embedded-opentype'),
		url('fonts/Museo-700.woff2') format('woff2'),
		url('fonts/Museo-700.woff') format('woff'),
		url('fonts/Museo-700.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Museo 500';
	src: url('fonts/Museo-500.eot');
	src: url('fonts/Museo-500.eot?#iefix') format('embedded-opentype'),
		url('fonts/Museo-500.woff2') format('woff2'),
		url('fonts/Museo-500.woff') format('woff'),
		url('fonts/Museo-500.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Museo 300';
	src: url('fonts/Museo-300.eot');
	src: url('fonts/Museo-300.eot?#iefix') format('embedded-opentype'),
		url('fonts/Museo-300.woff2') format('woff2'),
		url('fonts/Museo-300.woff') format('woff'),
		url('fonts/Museo-300.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

body{
	font-family: 'Lato', sans-serif;
}
a{
	text-decoration: none;
	color: inherit;
}
a:hover{
	text-decoration: none;
	color: inherit;
}
h2 {
	font-family: 'Museo 500';
	font-size: 3em;
	font-weight: 300;
}
h3 {
	font-family: 'Museo 500';
	font-size: 2.5em;
	font-weight: 300;
}
h4 {
	font-size: 2em;
	font-weight: 300;
}
h5 {
	font-size: 1.5em;
	font-weight: 300;
}
p {
	font-size: 1em;
	font-weight: 400;
	margin-top: 0;
	margin-bottom: 0;
}
button{
	background-color: #F8AFBC;
	font-family: 'Museo 500', sans-serif;
	border: 0px;
	outline: none;
	border-radius: 50px;
	padding: 10px 20px 12px;
	color: #fff;
	font-size: 1.3em;
	cursor: pointer;
	box-shadow: none;
}
button:focus, button:active{
	outline: none;
}
.white{
	color: #fff;
}
.yellow{
	color:#FCD06A;	
}
.azul {
	color: #23c6e6;
}
.gray{
	color: #f2f2f2;
}
.gray2{
	background-color:#4d4d4d;
}
.brosa {
	background-color: #F8AFBC;
}
.brosaesc {
	background-color: #e28898;
}
.byellow {
	background-color: #FCD06A;
}
.bazul {
	background-color: #23c6e6;
}
.bazule {
	background-color: #008099;
}
.bgray{
	background-color: #EEF2F7
}
.bgray2{
	background-color:#4d4d4d;
}
.bold{
	font-weight: 600;
}
.header-container{
	position: fixed;
	width: 100%;
	height: 90px;
	z-index: 99;
	transition: .3s;
	display: flex;
	justify-content: center;
}
.header-nav{
	width: 90%;
	height: 120px;
	border-bottom-left-radius: 25px;
	border-bottom-right-radius: 25px;
	background-color:rgba(0, 0, 0, .4);
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo{
	width: 140px;
}

/* Inicio Menu*/
.resize{
	background-color: rgba(0, 0, 0, .65);
	height: 105px;
	transition: .3s;
}
.navbar {
	padding: 0rem 0rem .5rem 0rem;
	margin-right: 45px;
	margin-left: -10px;
}
.navbar-toggler {
	position: fixed;
	right: 60px;
	top: 23px;
	padding: 4px;
}
.navbar-collapse {
	position: fixed;
	top:0; 
	bottom: 0;
	left: -100%;
	width:75%;
	overflow-y: auto;
	visibility: hidden;
	background-color: rgba(0, 0, 0, .7);
	transition: visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
}
.navbar-collapse.show {
	visibility: visible;
	transform: translateX(132%);
	z-index: 99;
}
.topmenu{
	margin-bottom: 20px;
}
.topmenu button{
	position: absolute;
	top: 20px;
	right: 20px;
	width: 25px;
	z-index: 100;
}
.navbar-nav .nav-link {
    padding-right: 0;
	padding-left: 30px;
	color: #79e3f9!important;
}
.navbar-expand-lg .navbar-nav .nav-link {
	font-size: 16px;
	margin-top: -5px;
}
.close{
	opacity: 9;
}
/* Fim do Menu*/

/* Inicio Formulario */
form ::placeholder{
	font-weight: 300;
	color: #6d6e71;
	font-size: 16px;
}
form input{
	margin-top: 10px;
    padding:15px 15px 15px 25px;
	width: 100%;
    background-color: rgba(255, 255, 255, .85) ;
	color: #424242;
	font-size: 16px;
	border: none;
	border-radius: 30px;
	outline-color: #23c6e6;
}
form textarea{
	margin-top: 10px;
    padding:15px;
	width: 100%;
	border: 1px solid #EEF2F7;
	border-radius: 30px;
    background: #fff;
    border-width: 0 0 1px 0;
	color:#424242;
	font-size: 16px;
	outline-color: #23c6e6;
}
form input[type="submit"]{
	width: fit-content;
	text-transform: uppercase;
    float: right;
    padding:9px 14px 7px;
    margin:12px 0px 0 15px;
    color: #FFF;
    font-weight: 500;
    border:0;
    background-color: #007dc5;
    outline: none;
    cursor: pointer;
    font-size: 20px;
}
/* FinalFormulario */ 

/* Inicio Footer*/
.container-footer{
	width: 90%;
	min-height: 110px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.container-footer a{
	color: #fff;
	font-weight: 400;
	text-decoration: none;
	font-size: 1em;
}
.socialmedia a{
	font-size: 40px;
	opacity: .8;
	transition: .3s;
}
.socialmedia a:hover{
	opacity: 1;
	transition: .3s;
}
.container-copy{
	height: 40px;
	display: flex;
	align-items: center;
}
.aviso {
	width:95%;
	color: #fff;
	font-weight: 900;
	text-align: center;
	padding: 20px 0;
}
/* Fim Footer*/

/*Início Index*/
.carousel-inner img{
	filter: brightness(.8);
}
.carousel-caption{
	width: 40%;
	text-align: left;
	bottom: 110px;
}
.carousel-caption h2{
	font-family: 'Museo 700', sans-serif;
	font-size: 4.5vw;
	line-height: 4.2vw;
	text-shadow: 4px 4px 0px #000000;
}
.carousel-caption h4{
	font-family: 'Museo 300', sans-serif;
	margin-left: 5px;
	margin-bottom: 0;
	text-shadow: 3px 3px 0px #000000;
}
.busca {
	position: absolute;
	top: 6vw;
	right: 0;
	width: 50%;
	height: 38vw;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.boxform {
	width: 70%;
	background-color:rgba(0, 0, 0, .3);
	padding: 65px 90px 65px 90px;
	border-bottom-left-radius: 150px ;
	border-top-left-radius: 150px ;
}
form#homebusca input{
	width: 330px;
	font-family: 'Museo 500', sans-serif;
}
.barrawebdoor{
	position: absolute;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: -61px;
}
.barweb{
	display: flex;
	justify-content: center;
	align-items: flex-end;
	flex-direction: column;
}
.cadastrese{
	background-color: #23c6e6;
	padding: 12px 25px;
	color: #fff;
	border-top-left-radius: 30px;
	border-top-right-radius: 30px;
	font-family: 'Museo 500', sans-serif;
}
.encontre{
	background-color: #F8AFBC;
	padding: 12px 25px;
	color: #fff;
	border-bottom-left-radius: 30px;
	border-bottom-right-radius: 30px;
	font-family: 'Museo 500', sans-serif;
	text-align: center;
}
.conheca{
	width: 100%;
	padding: 70px 0px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.centerconheca{
	width: 70%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.centerconheca .title{
	font-family: 'Museo 700', sans-serif;
	color: hsl(42, 96%, 70%);
	margin-top: 50px;
	margin-bottom: 50px;
}
.iconscat{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
}
.icon{
	width: 110px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin: 20px 40px;
}
.icon p{
	font-size: 1.2em;
	color: #6d6e71;
}
.anuncios{
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(248, 175, 189, .4);
	width: 100%;
	padding: 90px 0 ;
}
.anuncios-container{
	width: 75%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.anuncio-art{
	margin: 0 20px;
}
.anuncio-art img{
	border-radius: 25px;
	min-width: 100%;
}
.fornecedor{
	display: flex;
	justify-content: center;
}
.centerforn{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.titleforn{
	width:70%;
	background-color: #F8AFBC;
	padding: 12px 25px;
	color: #fff;
	border-bottom-left-radius: 30px;
	border-bottom-right-radius: 30px;
	font-family: 'Museo 500', sans-serif;
	text-align: center;	
}
.textforn{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	height: 360px;
}
.textforn .title{
	width: 32%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: 'Museo 500';
	color: #F8AFBC;
	padding-right: 5vw;
}
.textforn .text{
	width: 32%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding-left: 5vw;
}
select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: url(../imagens/angledown.png) no-repeat center right 25px  rgba(255, 255, 255, .85);
	background-size: 7%;
	border: none;
	color: #424242;
	width: 330px;
	border-radius: 50px;
	font-family: 'Museo 500', sans-serif;
	font-size: 16px;
	padding: 17px 5px 17px 25px;
	margin-top: 15px;
	outline: none;
}
.whatshome, .whatsempresa{
	position: fixed;
	right: 0;
	top: 87vh;
	background-color: #12D480;
	width: 90px;
	height: 70px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	color: #fff;
	font-size: 52px;
	z-index: 99;
	border-bottom-left-radius: 50px;
	border-top-left-radius: 50px;
	padding-left: 10px;
}
.whatsempresa{
	top: 41vh;
}
#msgendereco{
	position: absolute;
	margin-top: -28px;
	margin-left: 50px;
	font-size: 1.2em;
	color: #fff;
	display: none;
}
/*Fim Index*/

/*Inicio Depoimentos*/
.depoimentos{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(252, 208, 106, .4);
}
.centerdep{
	width: 70%;
}
.depconjunto{
	height: 420px;
	display: flex;
	justify-content: space-between;
	align-items: center;

}
.depunit{
	width: 35%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}
.depheader{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.depdados{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	margin-left: 20px;
}
.depfoto{
	width: 100px;
	margin-left: 5px;
}
.depfoto img{
	border-radius: 50% ;
}
.depname h5{
	font-family: 'Museo 700', sans-serif;
	margin-bottom: 0;
}
/*Fim Depoimentos*/

/*Inicio Resultados*/
.barratopo{
	width: 100%;
	height: 300px;
	background-color: #F8AFBC;
	border-bottom-left-radius: 30px;
	border-bottom-right-radius: 30px;
	color: #FFF;
	font-family: 'Museo 500', sans-serif;
	display: flex;
	justify-content: center;
}
.contbarra{
	width: 85%;
	margin-top: 150px;
	display: flex;
	justify-content: space-between;
}
.barratitle{
	width: 420px;
}
.barracat{
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.centerresultados{
	width: 90%;
	margin: 0 auto;
	margin-top: 40px;
	display: flex;
	justify-content: space-between;
}
.blocolateral{
	width: 100%;
}
.filtros{
	background-color: #fff;
	padding: 15px;
	border-radius: 30px;
	margin-bottom: 30px;
}
.filtros img{
	border-top-left-radius: 20px ;
	border-top-right-radius: 20px ;
	margin-bottom: 30px;
}
.anunciosresultados img{
	border-radius: 30px;
	margin-bottom: 20px;
	min-width: 100%;
}
.blocoresultado{
	width: 100%;
	display: flex;
	justify-content: start;
	flex-direction: row;
	align-content: flex-start;
	flex-wrap: wrap;
}
.cardpet{
	border: none;
	border-radius: 20px;
	background: none;
	margin-bottom:30px;
}
.carddestaque {
	width: 100%;
	height: 170px;
	background-color: #3a3a3a;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	background-image: url(../imagens/destaque.jpg);
	background-size: 100% auto;
	background-position: center;
	background-repeat: no-repeat;
}
.cardbrand{
	position: absolute;
	top: 0;
	right: 0;	
	margin-top: 90px;
	margin-right:30px;
}
.cardbrand img{
	width: 110px;
	border-radius: 50%;
	border: 5px solid #fff;
}
.cardconteudo{
	background-color: #fff;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	padding: 20px;
	min-height: 200px;
}
.cardconteudo p{
	line-height: 1.1em;
}
.cardname h5{
	width: 70%;
}
.cardfooter{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.cardend{
	margin-right: 5px;
}
.cardsm{
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	font-size: 25px;
	color: #6d6e71;
}
.barraresults{
	display: none;
}
.listallcategorias ul{
	list-style: none;
	margin-top: 15px;
	margin-bottom: 15px;
	padding-left: 5px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: start;
}
input[type=checkbox] {
	width: auto;
	margin: -2px 5px 0px 10px;

}
#map{
	width: 100%;
	height: 350px;
	display:block;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	margin-bottom: 20px;
}
#map img{
	width: 50px;
}
/*Slider*/
#chance{
	background: none;
	border: none;
	width: 23px;
}
.slider{
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
}
#chanceSlider{
	width: 90%;
}
#chance{
	width: 25px;
	line-height: 14PX;
	text-align: center;
	margin-left: 5px;
}
input[type=range] {
	-webkit-appearance: none;
	appearance: none;
	display: inline-block;
	width: 18em;
	height: 0.2em;
	position: relative;
	border-radius: 5px;
	background-color: #e2e2e2;
	outline: none;
	margin-top: 12px;
}
#chanceSlider::-webkit-slider-thumb {
	-webkit-appearance: none;
	/* remove a aparencia padão */
	border: none;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: rgb(253, 126, 126);
}
.semresultados h4 {
	color: #dc6c80;
	font-family: 'Museo 500', sans-serif;
	text-align: center;
}
.latlng{
	display: none;
}
.cardconteudo button {
	width: 100%;
	font-size: 1em;
	padding: 3px 20px 3px;
	margin-top: 15px;
}


/*Fim Resultados*/

/*Inicio Contatos*/
.centercontatos {
	width: 90%;
	margin: 0 auto;
	margin-top: 40px;
	display: flex;
	justify-content: center;
}
.blocoform{
	width: 100%;
	background-color: #fff;
	padding: 40px;
	border-radius: 20px;
}
.blococontato{
	width: 100%;
	background-color: #fff;
	padding: 30px;
	border-radius: 20px;
}
form#contato{
	display: flex;
	flex-direction: column;
	justify-content: end;
	align-items: flex-end;
}
form#contato input, form#contato textarea{
	border: 1px solid #d8d8d8;
	margin: 10px 0;
}
.blococontato .socialmedia a{
	color: #6d6e71;
}
.blococontato p.email{
	font-size: .95vw;
}
/*Fim Contatos*/

/*Inicio Empresa*/
.imgdestaqueemp{
	width: 100%;
	height: 390px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
}
.fpempresa{
	margin-top: -100px;
	width: 160px;
}
.fpempresa img{
	border-radius: 50%;
	border: 5px solid #fff;
}
.barempresa{
	width: 100%;
	height: 100px;
	background-color: #fff;
}
.infoempresa{
	height: 90px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.empname h5{
	margin-bottom: 0;
}
.empend{
	width: 340px;
}
.empsocialmedia a{
	font-size: 37px;
	color: #b5b5b5;
}
.empsocialmedia img{
	margin-top: -8px;
	margin-right: 4px;
}
.blockemp{
	background-color: #fff;
	padding: 30px;
	border-radius: 20px;
	margin-bottom: 20px;
}
.blockfeedemp{
	background-color: #fff;
	padding: 35px 35px 5px 35px;
	border-radius: 20px;
	margin-bottom: 50px;
}
.contempresa{
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
.feedemp img{
	border-radius:25px;
	margin-bottom: 15px;
	min-width: 100%
}
.feedtext{
	margin: 0 15px 55px 25px;
}
.cupom{
	display: flex;
	justify-content: end;
	text-align: center;
	margin-bottom: 10px;
}
.dadoscupom{
	position: absolute;
	width: 36%;
	height: 140px;
	right: 57px;
	margin-top: 5px;
	padding: 3px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-around;;
}
.valorcupom h5{
	margin-bottom: 0;
}
.descrcupom p{
	line-height: .8em;
}
.depheaderemp{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}
.depheaderemp img{
	width: 80px;
	border-radius: 50%;
	margin: 25px 10px 7px 0;
}
.textdepemp p{
	line-height: 1.2em;
	margin-bottom: 10px;
}
.back {
	position: fixed;
	left: 0;
	top: 10vh;
	background-color: rgba(0, 0, 0, .6);
	width: 70px;
	height: 60px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	color: rgba(255, 255, 255, .50);
	font-size: 42px;
	z-index: 99;
	border-bottom-right-radius: 50px;
	border-top-right-radius: 50px;
	padding-right: 10px;
}
/*Fim Empresa*/
/*Inicio Landing Page*/
.lptop{
	height: 200px;
}
.contbarralanding {
	width:100%;
	display: flex;
	justify-content: space-between;
}
.titlelanding{
	width: 65%;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.titlelanding h5{
	width: 80%;
}
.bandlogo {
	width: 200px;
	height: 170px;
	background-color: #fff;
	padding: 40px 25px 25px 25px;
	border-bottom-left-radius: 50%;
	border-bottom-right-radius: 50%;
}
.objetivo img{
	border-top-left-radius: 30px;
	border-bottom-right-radius: 30px;
}
.textobj{
	display: flex;
	justify-content: center;
	align-items: center;
}
.textobj h4{
	width: 70%;
	font-family: 'Museo 500', sans-serif;
	color: #808080;
}
.titlevantagens{
	display: flex;
	justify-content: center;
	align-items: center;
}
.titlevantagens h4{
	width: 60%;
	font-family: 'Museo 500', sans-serif;
	color: #23c6e6;
	border-left: 8px solid #23c6e6;
	padding-left: 25px;
}
.textvant{
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.textvant ul{
	list-style: none;
	width: 70%;
	font-size: 1.2em;
	color: #fff;
	margin: 70px 0;
}
.brosabackvideo{
	background-color: #FED8DF;
	border-radius: 40px;
}
.bazulbackvideo{
	background-color: #B7F1FC;
	border-radius: 40px;
}
.video{
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 70px 0;
}
.videotitle{
	position: absolute;
	border-radius: 100px;
	font-family: 'Museo 700', sans-serif;
	color: #fff;
	text-align: center;
	padding: 20px 0;
	width: 70%;
	z-index: 5;
}
.videobackground{
	width: 100%;
	margin-top: 60px;
	padding: 120px 0 100px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.funciona{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #808080;
	margin: 80px 0;
}
.funciona h2{
	font-family: 'Museo 700', sans-serif;
	margin-bottom: 5px;
}
.funciona p{
	font-family: 'Museo 500', sans-serif;
	margin-bottom: 40px;
	text-align: center;
}
.motivos{
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 90px 0 110px;
}
.centermotivos{
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	color: #808080;
}
.centermotivos h3{
	text-align: center;
	font-family: 'Museo 700', sans-serif;
}
.boxmotivos{
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
.boxm{
	background-color: #fff;
	border-radius: 30px;
	padding: 40px;
	min-height: 450px;
	display: flex;
	justify-content: start;
	flex-direction: column;
	align-items: center;
	box-shadow: 0px 8px 0px 0px rgba(35, 198, 230, 1);
	-webkit-box-shadow: 0px 8px 0px 0px rgba(35, 198, 230, 1);
	-moz-box-shadow: 0px 8px 0px 0px rgba(35, 198, 230, 1);
}
.barraboxm{
	width: 50%;
	height: 7px;
	border-radius: 50px;
	background-color: #23c6e6;
	margin-bottom: 25px;
}
.titleboxm h5{
	font-family: 'Museo 700', sans-serif;
	font-size: 1.75em;
	margin-bottom: 20px;
	text-align: center;
}
.duvidas{
	margin: 90px 0;
}
.titleduvidas h3{
	font-family: 'Museo 700',sans-serif;
	color: #808080;
	margin-bottom: 50px;
	text-align: center;
}
.btn-link.focus,.btn-link:focus, .btn-link:hover{
	text-decoration: none;
}
.mobile {
	display: none;
}

.desktop {
	display: block;
}
.numeros{
	margin-top: 90px;
	margin-bottom: 30px;
	padding: 80px 0;
	color: #fff;
}
.numerosdetalhes{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.numerosdetalhes h3{
	font-weight: 900;
	font-size: 5em;
	margin-bottom: 0;
	margin-top: 0;
	line-height: 1em;
}
.numerosdetalhes h4{
	font-weight: 600;
	font-size: 2em;
	margin-bottom: 0;
	margin-top: -5px;
	line-height: 1em;
}
.card-header h5 .btn{
	white-space: normal !important;
}

/*Fim Landing Page*/
.testemp{
	height: 80vh;
}
#form-checkout {
	display: flex;
	flex-direction: column;
	max-width: 600px;
}
.preview {
	position: fixed;
	z-index: 100;
	left: 0px;
	top: 0px;
	background-color: rgba(209, 0, 0, .75);
	width: 100%;
	color: #fff;
	text-align: center;
	padding: 12px;
}


@media (max-width: 575.98px) {
	h2 {
			font-size: 2.2em;
		}
	
		h3 {
			font-size: 1.9em;
		}
	
		h4 {
			font-size: 1.6em;
		}
	
		h5 {
			font-size: 1.3em;
		}
	
		p {
			font-size: 1em;
		}

	.logo {
		width: 90px;
	}
	.header-nav {
		width: 95%;
		height: 75px;
	}
	.container-footer{
		flex-direction: column;
		text-align: center;
		padding: 20px 0;
	}
	.container-copy {
		text-align: center;
		padding: 20px 0;
	}
	.container-copy P{
		line-height: .9em;
	}
	.socialmedia{
		margin-top: 20px;
	}

	#carouselwebdoor .carousel-item{
		background-position: center;
		margin-left: -90px;
		width: 647px;
		height: 320px;
	}
	#carouselwebdoor .carousel-item img{
		width: 647px;
		height: 320px;
	}
	#carouselwebdoor .carousel-caption {
		margin-left:105px;
		width: 32%;
		bottom: 30px;
		left: 3%;
	}
	#carouselwebdoor .carousel-caption h2 {
		font-size: 12.5vw;
		line-height: 12.5vw;
		text-shadow: 2px 2px 0px #000000;
	}
	#carouselwebdoor .carousel-caption h4 {
		text-shadow: 2px 2px 0px #000000;
	}
	.busca {
		position: relative;
		width: 100%;
		top: inherit;
		height: inherit;
	}
	.boxform {
		width: 100%;
		border-radius: 0;
		background-color: rgba(0, 0, 0, .3);
		display: flex;
		justify-content: center;
		align-items: center;
		padding-top: 30px;
		padding-bottom: 40px;
	}
	.barrawebdoor{
		position: relative;
		margin-top: inherit;
	}
	.cadastrese{
		border-radius: 0;
	}
	.conheca {
		padding: 0px 0px 70px;
	}
	form#homebusca input {
		width: 260px;
	}
	form#homebusca select {
		width: 260px;
	}
	form ::placeholder {
		font-size: 16px;
	}
	.centerconheca {
		width: 85%;
	}
	.centerconheca .title {
		margin-bottom: 10px;
	}
	.icon {
		width: 95px;
		margin: 20px 20px;
	}
	.anuncios {
		padding: 50px 10px;
		flex-direction: column;
	}
	.titleforn {
		width: 85%;
	}
	.textforn{
		height: auto;
		flex-direction: column;
	}.textforn .title {
		width: 85%;
		margin:30px 0;
	}
	.textforn .text {
		width: 82%;
		padding-left: 0vw;
	}
	.text button{
		margin-bottom: 50px;
	}

	#carouseldepoimentos{
		width: 100%;
		height: auto;
		padding-top: 40px;
		padding-bottom: 40px;
	}
	#carouseldepoimentos .carousel-item img{
		width: 80px;
		height: 80px;
	}
	#carouseldepoimentos .carousel-item{
		padding-top: 60px;
	}
	.depconjunto {
		width: 97%;
		height: 850px;
		margin-left: 0px;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}
	.depunit{
		width: 98%;
	}
	.depdados {
		margin-left: 10px;
	}
	.centercontatos {
		flex-direction: column;
	}
	.blocoform{
		padding: 20px;
	}
	.blococontato {
		margin-top: 30px;
	}
	.anuncios-container {
		width: 90%;
		display: flex;
		justify-content: center;
		flex-direction: column;
		align-items: center;
	}
	.anuncio-art {
		margin: 17px 5px;
	}
	/*Inicio Resultados*/
	.centerresultados {
		flex-direction: column-reverse;
	}
	.barracat{
		display: none;
	}
	.cardbrand {
		margin-top: 100px;
		margin-right: 30px;
	}
	.cardbrand img {
		width: 100px;
	}
	.cardpet {
		margin-bottom: 0px;
	}
	.barraresults {
		width: 80%;
		height: 2px;
		display: block;
		background-color: #cccccc;
		margin:30px auto;
	}
	/*Fim Resultados*/
	/*Inicio Empresa*/
	.imgdestaqueemp {
		width: 100%;
		height: 170px;
		background-image: url(../imagens/destaque.jpg);
		background-position: center;
		background-size: cover;
	}
	.fpempresa {
		margin-top: -70px;
	}
	.contempresa {
		flex-direction: column-reverse;
	}
	.blockfeedemp {
		padding: 20px 20px 5px 20px;
	}
	.feedtext p{
		line-height: 1.2em;
	}
	.feedtext {
		margin: 0 10px 35px 10px;
	}
	.blockemp {
		background-color: #fff;
		padding: 15px;
	}
	.dadoscupom {
		position: absolute;
		width: 46%;
		height: 38vw;
		right: 30px;
	}
	.barempresa {
		height: auto;
	}

	.infoempresa {
		flex-direction: column;
		height: auto;
		text-align: center;
	}

	.empend {
		margin: 10px 0;
		width: 250px;
	}

	.empsocialmedia {
		margin-bottom: 20px;
	}
	/*Fim Empresa*/
	/*Inicio Landing*/
	.mobile{
		display: block;
	}
	.desktop{
		display: none;
	}
	.lptop {
		height: auto;
	}

	.contbarralanding {
		width: 100%;
		display: flex;
		justify-content: space-between;
		flex-direction: column;
		align-items: center;
	}
	.titlelanding h2{
		font-size: 8.5vw;
	}

	.titlelanding h5 {
		width: 120%;
		margin-bottom: 30px;
		
	}

	.objetivo img {
		border-top-right-radius: 30px;
		border-bottom-left-radius: 30px;
	}

	.textobj h4 {
		width: 85%;
		margin: 50px 0;
	}

	.titlevantagens h4 {
		width: 85%;
		margin-bottom: 50px;
	}

	.textvant ul {
		list-style: none;
		width: 90%;
		padding-left: 5px;
	}
	.centermotivos h3 {
		font-size: 8.2vw;
	}
	.videotitle {
		padding: 30px 0 10px;
		width: 100%;
	}
	.videotitle h4{
		font-size: 6vw;
	}
	.videobackground {
		width: 100%;
		margin-top: 60px;
		padding: 120px 0 55px;
	}
	.funciona h2 {
		text-align: center;
		font-size: 8.2vw;
	}
	.boxm {
		min-height: auto;
		margin-bottom: 40px;
	}
	.depconjunto {
		height: 720px;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}
	.depunit {
		width: 90%;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		margin-bottom: 100px;
	}
	/*Fim Landing*/
	.blococontato p.email {
		font-size: 3.6vw;
	}
}

@media (min-width: 576px) and (max-width: 767.98px) { 
	/* Menu Inicio */
	.navbar-collapse {
		position: fixed;
		top:0; 
		bottom: 0;
		left: -60%;
		width:45%;
		overflow-y: auto;
		visibility: hidden;
		background-color: rgba(0, 0, 0, .7);
		transition: visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
	}	
	.logo {
		width: 110px;
	}

	.header-nav {
		width: 95%;
		height: 95px;
	}
/* Menu Fim */
	/*Inicio Home*/
		.carousel {
			height: 700px;
		}
	
		#carouselwebdoor .carousel-item {
			background-position: center;
			margin-left: -740px;
			width: 1600px;
			height: 700px;
		}
	
		#carouselwebdoor .carousel-item img {
			height: 700px;
			width: 1900px;
		}
	
		#carouselwebdoor .carousel-caption {
			margin-left: 730px;
			width: 18%;
			bottom: 260px;
			left: 6%;
		}
	
		#carouselwebdoor .carousel-caption h2 {
			font-size: 7.5vw;
			line-height: 7.5vw;
			text-shadow: 2px 2px 0px #000000;
		}
	
		#carouselwebdoor .carousel-caption h4 {
			text-shadow: 2px 2px 0px #000000;
		}
	
		.busca {
			position: absolute;
			top:350px;
			left: 0;
			width: 100%;
		}
	
		.boxform {
			width: 90%;
			background-color: rgba(0, 0, 0, .3);
			padding: 25px 40px 36px 40px;
		}
		form#homebusca input {
			width: 260px;
		}
	
		form#homebusca select {
			width: 260px;
			margin-left: 25px;
		}
		form ::placeholder {
			font-size: 16px;
		}
		.anuncios-container {
			width: 80%;
			display: flex;
			justify-content: center;
			flex-direction: column;
			align-items: center;
		}
		.anuncio-art {
			margin: 20px 5px;
		}

	/*Fim Home*/

	/*Inicio Contato*/
		.centercontatos{
			flex-direction: column;
		}
		.blococontato{
			margin-top: 30px;
		}
	/*Fim Contato*/
	
	/*Inicio Resultados*/
		.centerresultados {
			flex-direction: column;
		}
		.cardbrand {
			margin-top: 85px;
			margin-right: 30px;
		}
		.cardbrand img {
			width: 120px;
		}
	/*Fim Resultados*/
		/*Inicio Empresa*/
		.imgdestaqueemp {
			width: 100%;
			height: 190px;
			background-image: url(../imagens/destaque.jpg);
			background-position: center;
			background-size: cover;
		}
		.contempresa{
			flex-direction: column-reverse;
		}
		.blockfeedemp {
			padding: 20px 20px 5px 20px;
		}
		.barempresa {
			height: auto;
		}

		.infoempresa {
			flex-direction: column;
			height: auto;
			text-align: center;
		}

		.empend {
			margin: 10px 0;
		}

		.empsocialmedia {
			margin-bottom: 20px;
		}
	
		/*Fim Empresa*/
		/*Inicio Landing*/
		.lptop {
			height: auto;
		}
		.contbarralanding {
			width: 100%;
			display: flex;
			justify-content: space-between;
			flex-direction: column;
			align-items: center;
		}
		.titlelanding h5 {
			width: 100%;
			margin-bottom: 30px;
		}
		.objetivo img {
			border-top-right-radius: 30px;
			border-bottom-left-radius: 30px;
		}
		.textobj h4 {
			width: 85%;
			margin: 50px 0;
		}
		.titlevantagens h4 {
			width: 85%;
			margin-bottom: 50px;
		}
		.textvant ul {
			list-style: none;
			width: 90%;
		}
		.videotitle {
			width: 95%;
		}
		.videobackground {
			margin-top: 100px;
		}
		.funciona h2 {
			text-align: center;
		}
		.boxm {
			margin-bottom: 40px;
			min-height: auto;
		}
		.depconjunto {
			height: 720px;
			display: flex;
			justify-content: center;
			align-items: center;
			flex-direction: column;
		}
		.depunit {
			width: 50%;
			display: flex;
			flex-direction: column;
			justify-content: flex-start;
			margin-bottom: 100px;
		}

		/*Fim Landing*/
		.blococontato p.email {
			font-size: 1em;
		}
	
}


@media (min-width: 768px) and (max-width: 991.98px) {
	h2 {
		font-size: 3em;
	}
	h3 {
		font-size: 2.5em;
	}
	h4 {
		font-size: 1.9em;
	}
	h5 {
		font-size: 1.5em;
	}
	p {
		font-size: 1em;
	}
	.logo {
		width: 110px;
	}
	.header-nav {
		width: 95%;
		height: 95px;
	}
	.navbar-collapse {
		position: fixed;
		top:0; 
		bottom: 0;
		left: -53%;
		width:40%;
		overflow-y: auto;
		visibility: hidden;
		background-color: rgba(0, 0, 0, .7);
		transition: visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
	}	
	.carousel-caption {
		bottom: 20px;
	}
	.carousel-caption h2 {
		font-size: 6vw;
		line-height: 6.2vw;
	}
	.boxform {
		width: 100%;
		padding: 20px 15px 25px 45px;
	}
	.centerconheca .title{
		text-align: center;
	}
	.centerconheca {
		width: 100%;
	}
	.icon {
		margin: 20px 20px;
	}
	form input {
		margin-top: 10px;
		padding: 10px 10px 10px 20px;
	}
	form#homebusca input {
		width: 310px;
	}
	.barrawebdoor {
		margin-top: -57px;
	}
	.cadastrese h5{
		font-size: 1.3em;
	}
	.carousel-caption {
		bottom: 60px;
		left: 6%;
	}
	select {	
		width: 309px;
		padding: 9px 5px 10px 21px;
	}
	.anuncio-art {
		margin: 0 10px;
	}
	.anuncios {
		padding: 50px 0;
	}
	.titleforn {
		width: 96%;
	}
	.textforn .text {
		width: 50%;
	}
	.centerdep {
		width: 90%;
	}
	.depunit {
		width: 47%;
	}

	/*Inicio Resultados*/
	.cardbrand {
		margin-top: 12vw;
		margin-right: 3.5vw;
	}
	.cardbrand img {
		width: 14vw;
	}
	/*Fim Resultados*/
	/*Inicio Empresa*/
	.imgdestaqueemp {
		width: 100%;
		height: 290px;
		background-image: url(../imagens/destaque.jpg);
		background-position: center;
		background-size: cover;
	}
	.blockfeedemp {
		padding: 15px 15px 5px 15px;
	}
	.blockemp {
		padding: 15px;
	}
	.dadoscupom {
		width: 41%;
		right: 39px;
	}
	.barempresa{
		height: auto;
	}
	.infoempresa{
		flex-direction: column;
		height: auto;
		text-align: center;
	}
	.empend{
		margin: 10px 0;
	}
	.empsocialmedia{
		margin-bottom: 20px;
	}
	/*Fim Empresa*/
	/*Inicio Landing*/
	.textobj h4 {
		width: 80%;
		font-size: 1.3em;
	}
	.textvant ul {
		width: 89%;
	}
	/*Fim Landing*/
	.blococontato p.email {
		font-size: 1.5vw;
	}
 }


@media (min-width: 992px) and (max-width: 1199.98px) {
	/*Menu inicio*/
	.resize{
		height: 105px;
		margin-top: -0px;
		transition: .3s;
	}
	/* Inicio Menu */
	.nav-item .active{
		border-bottom: 2px solid #79e3f9 !important;
	}
	.navbar-collapse {
		position: relative;
		left: 0%;
		width:75%;
		overflow-y: none;
		visibility: auto;
		background-color: rgba(0, 0, 0, 0);
		transition: visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
	}
	.navbar-collapse{
		visibility: visible;
		transform: translateX(0%);
	}
	.topmenu{
		display: none;
	}
	.mtnav{
		margin-top: 0px;
	}
	.navbar-expand-lg .navbar-nav .nav-link {
		padding: 0px;
		color: rgba(255, 255, 255, .7);
	}
	.navbar-nav li{
		margin: 20px 10px 0px 10px;
	}
	.nav-link{
		border-bottom: 2px solid;
		border-color: rgba(0,113,188, 0);
		transition: .2s;
	}
	.nav-link:hover{
		border-bottom: 2px solid ;
		border-color: rgba(0,113,188, 1);
		transition: .2s;
	}
	/* Fim Menu */
	/*Inicio Index*/
	.busca {
		width: 65%;
	}
	.boxform {
		padding: 40px 60px 45px 60px;
	}
	.icon {
		margin: 20px 20px;
	}

	/*Fim Index*/
	/*Inicio Resultados*/
	.cardbrand {
		margin-top: 8vw;
		margin-right: 2.5vw;
	}
	.cardbrand img {
		width: 8vw;
	}
	/*Fim Resultados*/
	/*Inicio Empresa*/
	.imgdestaqueemp {
		width: 100%;
		height: 290px;
		background-image: url(../imagens/destaque.jpg);
		background-position: center;
		background-size: cover;
	}
	.blockfeedemp {
		background-color: #fff;
		padding: 40px 40px 5px 40px;
	}
	/*Fim Empresa*/
	/*Inicio Landing*/
	.textobj h4 {
		width: 80%;
		font-size: 1.6em;
	}
	.textvant ul {
		width: 89%;
	}
	/*Fim Landing*/
	.blococontato p.email {
		font-size: 1.3vw;
	}

	
 }


@media (min-width: 1200px) { 

	/* Inicio Menu */
	.resize{
		height: 105px;
		margin-top: -0px;
		transition: .3s;
	}
	.nav-item .active{
		border-bottom: 2px solid #79e3f9 !important;
	}
	.navbar-collapse {
		position: relative;
		left: 0%;
		width:75%;
		overflow-y: none;
		visibility: auto;
		background-color: rgba(0, 0, 0, 0);
		transition: visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
	}
	.navbar-collapse{
		visibility: visible;
		transform: translateX(0%);
	}
	.topmenu{
		display: none;
	}
	.mtnav{
		margin-top: 0px;
	}
	.navbar-expand-lg .navbar-nav .nav-link {
		padding: 0px;
		color: rgba(255, 255, 255, .7);
	}
	.navbar-nav li{
		margin: 10px 10px 0px 10px;
	}
	.nav-link{
		border-bottom: 2px solid;
		border-color: rgba(0,113,188, 0);
		transition: .2s;
	}
	.nav-link:hover{
		border-bottom: 2px solid ;
		border-color:#79e3f9 !important;
		transition: .2s;
	}
	
	/* Fim Menu */

	/*Inicio Index*/
	.busca {
		width: 60%;
	}

	.boxform {
		padding: 55px 70px 55px 70px;
	}
	.icon {
		margin: 20px 40px;
	}
	/*Fim Index*/
	.blococontato .email p{
		font-size: .9em;
	}
	
 }
 @media (min-width: 1400px) {
/*Inicio Index*/	
.busca {
	width: 50%;
}
.boxform {
	width: 70%;
}
.centerconheca{
	width: 80%;
}
/*Fim Index*/








 }

