@charset "utf-8";
/* CSS Document */

html{
	padding: 0;
	margin: 0;
	/*-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-family: "Calibri";*/
}

/*html{
	height: 100%;
	font-size: 62.5%;
	background-color: #eff3f4;

}

body{
	/*height: 100%;
	font-size: 2.4rem;
	margin: 0 auto;

}

a{
	text-decoration: none;
}

.container{
	/*width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 0 20px;

	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}*/

#hero{
	/*display:flex;
	flex-wrap: wrap;
	text-align: center;
	position: relative;
	justify-content:space-around;
	align-content: center;
	align-items: center;
	/*background-image: url("../imagem/Cabecalho.jpg");*/
	width: auto;
	height: auto;
	background-cover: cover;
	background-position: top center;
	position: relative;
	z-index: 1;
	overflow: hidden;
	min-width: 100%;
	min-height: 100%;
}

#hero::after{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: black;
	opacity: 1;
	z-index: -1;
}

#hero .hero-img{
	position: relative;
	width: 100%;
	height: 0px;
	padding-bottom: 56.25%;
}

#hero .video{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#hero .hero{
	max-width: 1200px;

	padding: 0 50px;
	justify-content: center;
	margin: 0 auto;

}

#hero h1{

	font-size: 4rem;
	position: relative;
	color: white;
	text-align: left;
	text-shadow: 2px 2px 3px rgb(30, 30, 30);
}

#hero h1 span{
	color: crimson;
}

#header .nav-bar img{
	width: 25rem;
	height: auto;
}

#header{
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100vw;
	/*height: auto;	*/
}

/*#header .header{
	min-height: 8vh;
	background-color: rgba(255, 255, 255, 0.9);
	transition: .3s ease background-color;
}

#header .nav-bar{
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	max-width: 1300px;
	padding: 0 10px;
}

#header .nav-list ul{
	list-style: none;
	position: absolute;
	background-color: rgb(31, 30, 30);
	width: 100vw;
	height: 100vh;
	left: 100%;
	top: 0;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	z-index: 1;
	overflow-x: hidden;
	transition: .5s ease left;
}

#header .nav-list ul.active{
	left: 0%;
}

#header .nav-list ul a{
	font-size: 2.5rem;
	font-weight: 500;
	letter-spacing: .2rem;
	text-decoration: none;
	color: rgb(120, 120, 120);
	text-transform: uppercase;
	padding: 20px;
	display: block;
}

#header .nav-list ul a::after{
	content: attr(data-after);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	color: rgba(240, 248, 255, 0.021);
	font-size: 10rem;
	letter-spacing: 50px;
	z-index: -1;
	transition: .3s ease letter-spacing;
}

#header .nav-list ul li:hover a::after{
	transform: translate(-50%, -50%) scale(1);
	letter-spacing: initial;
}

#header .nav-list ul li:hover a{
	color: crimson;
}

#header .hamburguer{
	width: 60px;
	height: 60px;

	border: 3px solid rgb(120, 120, 120);
	border-radius: 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
	cursor: pointer;
	transform: scale(.8);
	margin-right: 20px;
}

#header .hamburguer::after{
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	border-radius: 50%;
	border: 3px solid rgb(120, 120, 120);
	animation: hamburguer_puls 1s ease infinite;
}

#header .hamburguer .bar{
	height: 2px;
	width: 30px;
	position: relative;
	background-color: rgb(120, 120, 120);
	z-index: -1;
}

#header .hamburguer .bar::after, #header .hamburguer .bar::before{
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	background-color: rgb(120, 120, 120);
	transition: .3s ease;
	transition-property: top, bottom;
}

#header .hamburguer .bar::after{
	top: 8px;
}

#header .hamburguer .bar::before{
	bottom: 8px;
}

#header .hamburguer.active .bar::before{
	bottom: 0;
}

#header .hamburguer.active .bar::after{
	top: 0;
}

/* About section */
#sobre{
	height: 100%;
}

#sobre .sobre{

	text-align: left;
	max-width: 1000px;
	margin: 0 auto;
	padding: 100px 20px;
	width: 80%;
}

#sobre .col-left{
	/*width: 15rem;
	height: 22.5rem;*/
}

#sobre .col-left img{
	width: 30rem;
	height: auto;
}

#sobre .col-right{
	width: 100%;
	margin-left: 5rem;
}

#sobre .col-right h1{
	color: #00579d;
	font-size: 5rem;
}

#sobre .col-right h2{
	font-size: 2.4rem;
	font-weight: 500;
	letter-spacing: .2rem;
	margin-bottom: 10px;
	color: #3B3B3B;
}

#sobre .col-right p{
	margin-bottom: 20px;
	font-size: 2.2rem;
	font-weight: 300;
	color: #3B3B3B;
}

img{
	max-width: 100%;
}
.gallery{
	background-color: #dbddf1;
	padding: 80px 0;
}
.gallery img{
	background-color: #ffffff;
	padding: 15px;
	width: 100%;
	box-shadow: 0 0 15px rgba(0,0,0,0.3);
	cursor: pointer;
}
#gallery-modal .modal-img{
	width: 100%;
}
/*Fim de about*/

/*Serviços*/
/*#services{
	background-color: #023a67;

}

/*#services .service{
	flex-direction: column;

	text-align: center;
	/*max-width: 1000px;
	margin: 0 auto;
}

#services .service-container{
	display: flex;
	flex-wrap: wrap;
	text-align: center;
}

#services .title-download h1{
	font-size: 2.4rem;
	/*font-weight: 500;
	letter-spacing: .2rem;
	margin-bottom: 10px;
	color: #E0DADA;
	text-align: center;
}

#services .title-download h2{
	color: #fff;
	font-size: 3.5rem;
	padding: 0 0 6rem 0;
	text-align: center;
}

#services .service-box{
	font-size: 2rem;
	color: #fff;
	width: 25rem;
	height: auto;
	padding: 2rem;
	vertical-align: middle;
	text-align: center;
	margin: 0 auto;
	/*background-color: aqua;
}*/

/*#services .service-box p{
	font-weight: 100;
}

#services .service-box img{
	height: 8rem;
}

/*Fim de serviços*/

/*Cases*/

/*#cases .title-download h1{
	font-size: 4rem;
	position: relative;
	color: white;
	text-align: left;
	text-shadow: 2px 2px 3px rgb(30, 30, 30);
}

#cases{

	height: auto;
	background-cover: cover;
	background-position: top center;
	position: relative;
	z-index: 1;
	overflow: hidden;
	min-width: 100%;

}

#cases img{
	width: 100vw;

}

#cases::after{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: black;
	opacity: 1;
	z-index: -1;
}

/*Fim Cases*/

/*Contato*/

.Contato{
	width: 100%;
	padding: 2rem;
	margin: 0 auto;
	background-color: #191919;
	color: white;
	justify-content:center;
	align-items:flex-start;
	vertical-align: middle;
}
.row{
	width: 100%;
}

.row_cell{
	width: 320px;
	height: auto;
	display:inline-block;
	text-align:justify;
	margin: 0em 0em;
	font-family: "Calibri";
	font-size: 18px;

}

.row_cell img{
	width:149px;
	height: auto;
	margin: 0 auto;
}

.row2{
	width: 200px;

}

.row_cell2{
	width:49px;
	height: auto;
	display:inline-block;
	text-align:justify;
	margin: 1em 0em;

}

.row_cell2 img{
	width:49px;
	height: auto;
	margin: 0em 0em 0;
}

#link-topo{
	color: white;
	background-color: #191919;
	padding: 10px;
	position: fixed;
	right: 10px;
	bottom: 10px;
	border-width: 1.5px;
	border-color: #AAA9A9;
	border-style: solid;
	border-radius: 5px;
}

.button {
	background-color: #29323c;
	border: 1px solid crimson;
	/*border-radius: 10px;*/
	text-decoration: none;
	padding: 10px 30px;
	color: white;
	margin: 2rem;
	display: inline-block;
	user-select: none;
	cursor: pointer;
	transition: .3s ease;
	transition-property: background-color, color;

}

/*.cases-diversos iframe{
	width: 100vw;
	height: 400px;
	max-width: 100%;
	/*border: 1px solid #fff;
	margin-top: 5rem;
	/*margin-top: 5%;
}*/

.button:hover{
	background-color: crimson;
		/*color: #29323c;*/
		border: 1px solid crimson;
}

input{
	width: 100%;
	height: 35px;
	display: block;
	margin: 15px auto;
	border-radius: 5px;
	border-width: 1px;
	border-color: #C2C2C2;
}

textarea{
	width: 100%;
	height: 20rem;
	display: block;
	margin: 15px auto;
	border-radius: 5px;
	border-width: 1px;
	border-color: #C2C2C2;
}



.close{
	position: absolute;
	top: 0;
	right: 14px;
	font-size: 32px;
	transform: rotate(45deg);
	cursor: pointer;
}

.bg-modal{
	min-height: 100vh;
	width: 100%;
	border-top:solid;
	border-width: 1px;
	border-color: #D1D1D1;
	background-color: #c4cad0;
	position:relative;
	top: 0;
	flex-direction: column;
	justify-content:center;
	align-items:center;
	display:flex;
	max-width: 1000px;
}

.modal-content{
	width: 80%;
	height: auto;
	background-color: #29323c;
	text-align: center;
	padding: 10px;
	position: relative;
	border-radius: 10px;
	box-shadow: 0px 5px 8px 0 #627386;
}


/*Fim de Contato*/

/*Footer*/

/*footer{
	background-color: #29323c;
	width: 100%;
	height: 5rem;
}

footer p{
	text-align: center;
	color: white;
	font-size: 1.5rem;
	font-weight: lighter;
	padding: 1.5rem;
}*/


/*Fim do Footer*/

.btn-whatsapp {
	text-decoration: none;
    z-index: 1;
    position: fixed;
    bottom: 20px;
    right: 20px;
	/*-webkit-filter: drop-shadow(2px 2px 2px gray);
  filter: drop-shadow(2px 2px 2px gray);*/
 }

/*modall inicio*/
.modall{
	background-color: rgba(0,0,0,.5);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	display: none;
}

.modall2{
	background-color: rgba(0,0,0,.5);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	display: none;
}

.modall-content{
	margin: 0 auto;
	max-width: 600px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #eee;
	padding: 0;
	box-shadow: 0 0 2px #fff;
}

.modall-headder, .modall-bodyy, .modall-footerr{
	padding: 10px;
}

.modall-headder{
	background-color: rgb(240, 230, 140);
}

.modall-footerr{
	background-color: rgb(220, 220, 220);
}
/*modall fim*/

@keyframes hamburguer_puls{
	0%{
		opacity: 1;
		transform: scale(1);
	}
	100%{
		opacity: 0;
		transform: scale(1.4);
	}
}



@media only screen and (min-width: 1200px){
	#header .hamburguer{
		display: none;
	}

	#header .nav-list ul{
		position: initial;
		display: block;
		height: auto;
		width: fit-content;
		background-color: transparent;
	}

	#header .nav-list ul li{
		display: inline-block;
	}

	#header .nav-list ul li a{
		font-size: 1.8rem;
	}

	#header .nav-list ul a::after{
		display: none;
	}



}
