/*inicial*/
img, object, embed, video {
	max-width: 100%;
	}
	
	body{
		background: #FFF;
	}

*{
	margin:0;
 	padding:0;
	}
 
*, *::after, *::before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	}
	
html {
	font-size: 50%;
	scroll-behavior: smooth;
}
	
.ie6 img {
	width:100%;
	}

.gridContainer { 
	margin-left:auto; 
	margin-right:auto;
	width:100%;
	}



/*atribute */
img {
	border:0;
	padding:0;
	margin:0;
	}

	
a{
	border:0;
	text-decoration:none;
	}

a:hover{
	opacity: 0.5;
	transition: 0.5s;
	transform: scale(0.98);
}



/*elements*/
	.content{
		width:100%;
		float:left;
	}

	header{
		float:left;
		width:100%;
	}
	
	section{
		float:left;
		width:100%;
	}
	
	article{
		float:left;
		width:100%;
	}
	
	footer{
		float:left;
		width:100%;
	}


/*effects */
	.inline-photo {
		opacity: 0;
		transform: translateY(9em) rotateZ(0deg);
		transition: transform 7s .50s cubic-bezier(0,1,.2,1), opacity .7s .50s ease-out;
		will-change: transform, opacity;
	}


	.inline-photo.is-visible {
		opacity: 1;
		transform: rotateZ(0deg);
	}

	.main-photo {
		transform: scale(.8);
	}

	.heading {
		transform: translate(-50%, calc(-50% + 1em));
	}

	.is-visible .main-photo {
		transform: none;
	}

	.is-visible .heading {
		transform: translate(-50%, -50%);
	}


	/*fonts */
	@font-face {
		font-family: "Poppins-Bold";
		src: url("css/Poppins-Bold.ttf");
		font-weight: bold;
	}

	@font-face {
		font-family: "Poppins-SemiBold";
		src: url("css/Poppins-SemiBold.ttf");
		font-weight: 600;
	}

	@font-face {
		font-family: "Poppins-Regular";
		src: url("css/Poppins-Regular.ttf");
		font-weight: normal;
	}

	@font-face {
		font-family: "Poppins-Light";
		src: url("css/Poppins-Light.ttf");
		font-weight: 300;
	}


	.simulator{
		float: left;
		width: 100%;
		text-align: center;
		background: #f39b00;
		padding: 25px;
		font-family: "Poppins-Bold", "Segoe UI", "Trebuchet MS";
		font-size: 20px;
		animation-name: example;
		animation-duration: 4s;
		animation-iteration-count: infinite;
	}
	
	.simulator a{
		color: #fff;
	}
	
	.simulator:hover{
		transition: 1s;
		transform: scale(1.1);
		background: #353535;
	}


/*[Elements] */
	.container{
		width: 1000px;
		margin: 0 auto;
		height: auto;
		padding: 0;
	}	
	
	.left{
		position: relative;
		left: -50px;
	}
	
	.right{
		position: relative;
		left: 50px;
	}


	/*[BACKGROUND]*/	
	.bg-header{
		background: #FFF;
		padding: 15px 0;
		z-index: 999;
		position: relative;
		float: left;
		margin: 0;
		height: auto;
	}
	
	.bg-white{
		position: relative;
		z-index: 77;
		background: #fff;
		padding: 0;
	}

	.bg-orange{
		position: relative;
		z-index: 77;
		background: #f39b00;
		padding: 0;
	}

	#bg-parallax {
		background: url("img/bg-parallax.jpg") center center;
		background-attachment: fixed;
		background-repeat: no-repeat;
		background-size: cover;
		width: 90%;
		height: auto;
		position: relative;
		margin: 0 5%;
		max-width: 100%;
		z-index: 33;
		display: flex;
		justify-content: center;
		align-items: center;
	}
														
	#bg-parallax-b {
		background: url("img/bg-parallax-b.jpg") center center;
		background-attachment: fixed;
		background-repeat: no-repeat;
		background-size: cover;
		width: 90%;
		height: auto;
		position: relative;
		margin: 0 5%;
		max-width: 100%;
		z-index: 33;
		display: flex;
		justify-content: center;
		align-items: center;
	}
														

	
	/*HEADER*/
	
	/*logo*/
	a.logo{
		width: 370px;
		padding: 0;
		text-align: center;
		margin: 0;
		float: left;
		position: relative;
		top: 0;
		z-index: 22
	}	 
	
	a.logo img{ 
		width: 370px;
	}
	
	/*menu*/
	.nav ul {
		font-size: 16px!important;
		margin: 20px 0 0!important;
		font-weight: 500;
		padding: 0!important;
	}	

	/*dropdown*/
	.dropdown {
		position: relative;
		display: inline-block;
		width: 100%;
		z-index: 99;
	}

	.dropdown-content {
		display: none;
		position: absolute;
		min-width: 250px;
		box-shadow: 0 0 0 0!important;
		z-index: 1;
		border-radius: 10px;
		padding: 10px 0 0!important;
		left: 0;
		background: none;
	}

	.dropdown-content a {
		padding: 10px 10px!important;
		text-decoration: none;
		display: block;
		color: #fff!important;
		font-size: 14px!important;
		border-bottom: 2px solid #fff!important;
		background-color: #2e2e2d!important;
		height: auto!important;
		font-weight: normal!important;
		border-radius: 0!important;
		width: 100%!important;
		float: left!important;
		margin-bottom: 1px!important;
	}

	.dropdown-content a:hover {
		background-color: #f39b00!important;
		opacity: 1!important;
		padding: 10px 10px!important;
		border-bottom: 2px solid #fff!important;
		font-weight: lighter!important;
		color: #fff!important;
		margin-bottom: 1px!important
	}

	.dropdown:hover .dropdown-content {
		display: block;
	}

	.dropdown:hover .dropbtn {
		background-color: #f39b00!important;
	}
	

	/*nav-redes*/
	.nav-redes{
		margin: 35px 0 0;
		text-align: center;
		width: auto;
		float: right;
		position: relative;
		z-index: 88
	}
	
	.nav-redes a{
		margin: 0 5px;
		text-align: center;
		width: auto;
		float: left;
	}
	
	.nav-redes img{
		width: auto;
		height: 50px
	}
	
	/*nav-botton*/
	.nav-botton{
		margin: 20px 0 0;
		text-align: center;
		width: auto;
		float: right;
		position: relative;
		z-index: 88
	}
	
	.nav-botton a{
		margin: 0 0 0 25px;
		text-align: center;
		width: auto;
		float: right;
	}
	
	.nav-botton img{
		width: auto;
		height: 55px
	}
	
	
	
	/*banner*/
	.banner{
		width: 100%;
		margin: -90px 0 0;
		float: left;
		text-align: center
	}
	
	.banner img{
		width: 100%;
	}
	
				
	
	/* [article] */	

	/*row*/
	ul.row{
		float: left;
		width: 96%;
		margin: 0 2%;
		list-style: none
	}

	#row-a{
		background: url("img/row-a.jpg") center left no-repeat;
	}

	#row-b{
		background: url("img/row-b.jpg") center left no-repeat;
	}

	#row-c{
		background: url("img/row-c.jpg") center left no-repeat;
	}


	ul.row li {
		text-align: left;
		width: 31.3%;
		float: left; 
		margin: 220px 1% 0;
		padding: 0 2% 90px
	}

	ul.row li figure{
		text-align: center;
		margin: -130px 0 0;
	}

	ul.row li figure img{
		width: 280px
	}

	ul.row li h2{
		font-family: "Poppins-Bold", "Segoe UI", "Trebuchet MS";
		font-size: 40px;
		color: #fff;
		line-height: 1;
		margin: 0;
		font-weight: bold;
		height: 100px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	ul.row li p{
		font-family: "Poppins-Regular", "Segoe UI", "Trebuchet MS";
		font-size: 16px;
		color: #fff;
		line-height: 1.3;
		font-weight: normal;
		height: 220px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 80%
	}

	ul.row li a{
		float: left;
		width: auto;
		margin: 25px 0 0;
		text-align: center;
		background: #fff;
		color: #353535;
		font-size: 20px;
		font-family: "Poppins-SemiBold", "Segoe UI", "Trebuchet MS";
		padding: 20px;
		line-height: 1;
		font-weight: bold;
	}


	/*about*/
	.about{
		float: left;
		width: 100%;
		margin: 120px 0;
	}
	
	.about span{
		float: right;
		width: 55%;
		margin: 0;
	}
	
	.about h1{
		font-family: "Poppins-Bold", "Segoe UI", "Trebuchet MS";
		font-size: 50px;
		color: #353535;
		text-align: left;
		line-height: 0.9;
		margin: 0 0 25px;
		width: 100%;
		float: left;
		font-weight: bold
	}

	.about h2{
		font-family: "Poppins-Bold", "Segoe UI", "Trebuchet MS";
		font-size: 27px;
		color: #f39b00;
		text-align: left;
		line-height: 0.9;
		margin: 0 0 10px;
		width: 100%;
		float: left;
		font-weight: bold
	}

	.about span p{
		font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS";
		font-size: 18px;
		color: #2e2e2e;
		text-align: left;
		line-height: 1.3;
		font-weight: normal;
	}
				

	/*link*/
	.link{
		float: left;
		width: auto;
		margin: 35px 0 0;
	}

	.link a{
		float: left;
		width: auto;
		margin: 0 15px 0 0;
		text-align: center;
		background: #f39b00;
		color: #fff;
		font-size: 15px;
		font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS";
		padding: 20px 15px;
		line-height: 1;
		font-weight: bold;
	}
	
	#color-black{
		background: #353535
	}

	.redes{
		float: right;
		width: auto;
		margin: 40px 0 0;
		text-align: center
	}

	.redes a{
		margin: 0;
	}
	

	/*aside*/
	.about aside{
		float: left;
		width: 45%;
		margin: 0;
		text-align: center
	}
	
		
	.about aside img{
		width: auto;
	}
		
	


	/*contact*/
	.contact{
		float: left;
		width: 100%;
		margin: 0;
		padding: 130px 0
	}

	.contact span{
		text-align: left;
		margin: 35px 0 0;
		float: left;
		width: 35%;
	}

	.contact h2{
		font-family: "Poppins-Bold", "Segoe UI", "Trebuchet MS";
		font-size: 48px;
		line-height: 1;
		color: #fff;
	}

	.contact p{
		font-family: "Poppins-Regular", "Segoe UI", "Trebuchet MS";
		font-size: 22px;
		line-height: 1.2;
		color: #fff;
	}

	.contact p.text-min{
		font-size: 18px;
		line-height: 1.2;
	}


	.contact ul{
		float: right;
		width: 55%;
		margin: 0;
		list-style: none
	}


	.contact ul li{
		float: right;
		width: 100%;
		margin: 0 0 24px;
		list-style: none;
		text-align: left
	}

	.contact ul li a{
		color: #fff;
		font-size: 22px
	}

	.contact ul li figure{
		width: 20%;
		float: left;
		margin: 0 20px 0 0
	}

	.contact ul li figure img{
		width: auto
	}

	.contact ul li h3{
		font-family: "Poppins-Bold", "Segoe UI", "Trebuchet MS";
		margin: 15px 0 0

	}

	.contact ul li p{
		font-family: "Poppins-Regular", "Segoe UI", "Trebuchet MS";
		line-height: 1.1
	}




	/*form*/
	form{
		float: left;
		width: 100%;
		margin: 0;
	}
		
	.input{
		float: left;
		width: 100%;
		margin: 0 0 10px;
		font-size: 16px;
		color: #424242;
		padding: 12px 14px;
		font-weight: normal;
		background-color: #fff;
		text-align: left;
		border: 3px solid #e0e0e0;
		font-family: "Poppins-Light", "Segoe UI", "Trebuchet MS";
		background: url("img/bg-form-b.png") center left no-repeat #fff;
		padding-left: 65px;
		border-radius: 50px;
	}
	
	.calculator{
		width: 60%;
		font-family: "Poppins-Regular", sans-serif;
		margin: 10px 20%!important;
		background: #fff;
		color: #424242;
		text-align: center;
		padding-left: 0;
	}
	
	.send-box{
		float: right;
		width: 100%;
		text-align: center;
		margin: 0;
		position: relative;
	}
	
	.send{
		cursor: pointer;
		margin: -50px auto 0;
		width: auto;
		height: auto;
		border: 0;
		font-family: "Poppins-SemiBold", "Segoe UI", "Trebuchet MS";
		color: #fff;
		background: #f39b00;
		text-align: center;
		padding: 12px 18px;
		border-radius: 50px;
		font-size: 18px;
		line-height: 1
	}	
	
	
	#bg-perfil{
		background: url("img/bg-perfil.png") center left no-repeat #fff;
	}
	
	#bg-email{
		background: url("img/bg-email.png") center left no-repeat #fff;
	}
	
	#bg-telefone{
		background: url("img/bg-telefone.png") center left no-repeat #fff;
	}
	
	#bg-assunto{
		background: url("img/bg-assunto.png") center left no-repeat #fff;
	}
	
	#bg-comment{
		background: url("img/bg-comment.png") top left no-repeat #fff;
	}
	
	label{
		font-size: 12px;
		margin: 15px 0 0;
		font-family: "Poppins-SemiBold", "Segoe UI", "Trebuchet MS";
		color: #262626;
		width: 100%;
		float: left;
		font-weight: normal;
	}

	.send:hover{
		transition: 1s;
		opacity: 1;
		cursor: pointer;
		transform: scale(0.95)
	}
	
	.input::placeholder {
		color: #424242;
		opacity: 1; /* Firefox */
	}
	
	.input:-ms-input-placeholder { /* Internet Explorer 10-11 */
		color: #424242;
	}
	
	.input::-ms-input-placeholder { /* Microsoft Edge */
		color: #424242;
	}
	

	/*map*/
	.map{
		margin: 30px 5% 0;
		width: 90%;
		float: left;
		height: 350px;
		border: 0;
	}


	/*footer*/
	.footer{
		margin: 0 0 100px;
		width: 100%;
		float: left;
		border-top: 0;
		padding: 100px 0 0
	}

	.footer figure {
		text-align: left;
		width: auto;
		float: left; 
		margin: 0
	}

	.footer figure img {
		width: 250px;
	}
	
	.footer h3 {
		margin: 35px 0 0;
		font-size: 18px;
		font-family: "Poppins-Regular", "Segoe UI", "Trebuchet MS";
		color: #474747;
		line-height: 1.2;
		font-weight: 300;
		text-align: left;
		float: right;
		width: 70%
	}
	
	.footer h3 a{
		color: #474747;
		float: left;
		width: 100%;
		margin: 0 0 20px
	}

	.footer h3 span{
		width: 48%;
		margin: 0 1% 0;
		float: left
	}

	.footer h3 a strong{
		font-family: "Poppins-Bold", "Segoe UI", "Trebuchet MS";
		color: #f39b00
	}



	/**/
	footer h4{
		font-size: 16px;
		line-height: 1.2;
		font-family: "Poppins-Regular", "Segoe UI", "Trebuchet MS";
		font-weight: normal;
		margin: 55px 0;
		width: 100%;
		float: left;
		text-align: left
	}
	
	footer h4 a{
		color: #fff;
	}
	
	footer h4 em{
		float: left;
		width: 40%;
	}
	
	footer h4 strong{
		float: right;
		width: 60%;
		font-weight: normal;
		font-style: italic;
		text-align: right
	}
	
	
	
	/*whatsapp*/
	.whatsapp{
		position: fixed;
		width: 57px;
		height: 57px;
		bottom: 25px;
		right: 20px;
		color: #FFF;
		border-radius: 50px;
		text-align: center;
		box-shadow: 1px 1px 2px #888;
		z-index: 1000;
	}




@media (max-width: 850px) {
  
/*
	[Elements]
				 */
	.container{
		width: 90%;
	}
	
	.left{
		position: relative;
		left: 0;
	}
	
	.right{
		position: relative;
		left: 0;
	}	
	
	/*logo*/
	a.logo{
		width: 100%;
		margin: 0 0 25px
	}	 
	
	a.logo img{ 
		width: 370px;
	}
	
	/*menu*/
	.nav ul {
		margin: 0!important;
	}	
	


	/*dropdown*/
	.dropdown-content {
		display: block;
		position: relative;
	}
	
	
	/*nav-redes*/
	.nav-redes img{
		width: auto;
		height: 30px
	}
	
	/*nav-botton*/
	.nav-botton{
		margin: 20px 0 0;
		width: 100%;
	}
	
	.nav-botton a{
		margin: 0;
		float: none;
	}
	
	.nav-botton img{
		height: 40px
	}
	
	
				
	
	/* [article] */	

	/*row*/
	ul.row{
		width: 100%;
		margin: 0;
	}


	ul.row li {
		text-align: center;
		width: 31.3%;
		float: left; 
		margin: 220px 1% 0;
		padding: 0 2% 90px
	}

	ul.row li figure{
		text-align: center;
		margin: -130px 0 0;
	}

	ul.row li figure img{
		width: 280px
	}

	ul.row li h2{
		font-size: 26px;
		height: 100px;
	}

	ul.row li p{
		font-size: 15px;
		height: 220px;
		width: 100%
	}

	ul.row li a{
		float: left;
		width: 80%;
		margin: 25px 10% 0;
		font-size: 16px;
		padding: 20px 0;
	}


	/*about*/
	.about{
		width: 100%;
		margin: 70px 0;
	}
	
	.about span{
		width: 100%;
		margin: 30px 0 0;
	}
	

	/*aside*/
	.about aside{
		width: 100%;
		margin: 35px 0 0;
	}
	
		
	.about aside img{
		width: 550px;
	}
		
	


	/*contact*/
	.contact{
		float: left;
		width: 100%;
		margin: 0;
		padding: 80px 0
	}

	.contact span{
		text-align: center;
		width: 100%;
	}

	.contact h2{
		font-size: 35px;
	}

	.contact p{
		font-size: 20px;
	}


	.contact ul{
		width: 100%;
		margin: 35px 0 0;
	}


	.contact ul li{
		margin: 0 0 35px;
		text-align: center
	}

	.contact ul li figure{
		width: 100%;
		margin: 0 0 10px 0
	}



	/*form*/
	form{
		margin: 70px 0;
	}
		
	form h3{
		font-size: 30px;
		text-align: left;
		margin: 0;
		width: 40%;
	}
	


	/*footer*/
	.footer{
		padding: 70px 0 0
	}

	.footer figure {
		text-align: center;
		width: 100%;
	}

	.footer h3 {
		margin: 50px 0 0;
		width: 100%
	}
	
	.footer h3 span{
		width: 100%;
		margin: 0 0 15px;
	}

	/**/
	footer h4{
		margin: 35px 0;
		text-align: center
	}
		
	footer h4 em{
		float: left;
		width: 100%;
	}
	
	footer h4 strong{
		float: left;
		width: 100%;
		text-align: center
	}
	
	
	
	/*whatsapp*/
	.whatsapp{
		position: fixed;
		width: 35px;
		height: 35px;
		bottom: 15px;
		right: 15px;
		color: #FFF;
		border-radius: 50px;
		text-align: center;
		box-shadow: 1px 1px 2px #888;
		z-index: 1000;
	}
	
	
	
	
}








@media (max-width: 550px) {

	/*logo*/
	a.logo img{ 
		width: 300px;
	}
	
	
		
				
	
	/* [article] */	

	/*row*/
	ul.row{
		width: 100%;
		margin: 0;
	}


	ul.row li {
		width: 96%;
		margin: 90px 2% 50px;
		padding: 0 2% 50px
	}


	ul.row li h2{
		height: auto;
	}

	ul.row li p{
		height: auto;
	}

	ul.row li a{
		width: 60%;
		margin: 25px 20% 0;
	}


	/*about*/
	.about{
		width: 100%;
		margin: 50px 0;
	}
	
	.about span{
		margin: 0;
	}
	
	.about h1{
		font-size: 40px;
		text-align: center;
		margin: 0 0 15px;
	}

	.about h2{
		font-size: 25px;
		text-align: center;
		line-height: 1.3
	}
	
	
	
	/*link*/
	.link a{
		float: left;
		width: 31.3%;
		margin: 0 1%;
		text-align: center;
		background: #f39b00;
		color: #fff;
		font-size: 15px;
		font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS";
		padding: 20px 15px;
		line-height: 1;
		font-weight: bold;
	}
	
	
	.redes a img{
		width: 0;
	}
	
	
	
	
	/*aside*/		
	.about aside img{
		width: 350px;
	}
		
	


	/*contact*/
	.contact h2{
		font-size: 30px;
	}

	.contact p{
		font-size: 16px;
	}
	
	.contact ul li figure img{
		width: 60px
	}

	.contact ul li p{
		font-size: 18px
	}



	/*form*/
	form{
		margin: 0;
	}
		
	form h3{
		font-size: 20px;
		text-align: center;
		margin: 0 0 25px;
		width: 100%;
	}
	
	form span{
		margin: 0;
		width: 100%;
	}

	/*footer*/
	.footer{
		padding: 50px 0 0;
		text-align: center
	}


	.footer h3 {
		margin: 50px 0 0;
		width: 100%;
		text-align: center
	}
	
	.footer h3 a{
		width: 100%;
		margin: 0;
		margin-bottom: 10px;
	}
	
}




@keyframes example {
  0%   {background-color: #f39b00; left:0px; top:0px; }
  25%  {background-color: #353535; left: 0; top:0px; transform: scale(1.1)}
  50%  {background-color: #f39b00; left: 0; top: 0; }
  75%  {background-color: #353535; left: 0; top:0; transform: scale(1.1)}
  100% {background-color: #f39b00; left:0px; top:0px;  }
}






/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}