 @import url('https://fonts.googleapis.com/css2?family=Baloo+Da+2:wght@400;500;600;700&family=Josefin+Slab:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Mulish:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&display=swap');
 
*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	list-style: none;
	text-decoration: none;
}
.container{

}
:root{
	--primary-font:"Baloo Da 2",serif;
	--secundary-font:"Josefin Slab", serif;
	--action-font:"Mulish",serif;
}
html{
	scroll-behavior: smooth;
}

										/*Float hamburguer*/
.hamburguer{
	position: fixed;
	font-size: 2.5rem;
	z-index: 99;
	right: 2rem;
	top: 1rem;
	cursor: pointer;
	color: white;
	transition: 1s 0.05s;
}
.hamburguer i{
	text-shadow: 1px 1px 4px black;
	transition: 1s;
}
.hamburguer i:hover{
	color: #ff5400;
}
.show-menu .hamburguer{
	right: 17rem;
}										
										/*Header*/
header{
	width: 100%;
	height: 100vh;
	overflow: hidden;
	position: relative;
}
header .img-wrapper{
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.9);
}
.img-wrapper > img{
	width: 100%;
	height: 100vh;
	object-fit: cover;
	opacity: 0.5;
	animation: zoom 25s;
}
@keyframes zoom{
	0%{
		transform: scale(1.3);
	}
	100%{
		transform: scale(1.0);
	}
}
.banner{
	position: absolute;
	top: 30%;
	left: 15%;
	text-shadow: .2rem .2rem 2px rgba(0,0,0,.4);
}
.banner h1{
	color: white;
	font-size: 3.5rem;
	font-weight: lighter;
	font-family: var(--primary-font);
	line-height: 3.5rem;
	margin-bottom: 2rem;
	animation: moveBanner 1s 0.5s forwards;
	opacity: 0;
}
.banner p{
	font-family: var(--secundary-font);
	color: white;
	font-size: 2rem;
	margin-bottom: 2rem;
	animation: moveBanner 1s 0.7s forwards ;
	opacity: 0;
}
.banner button{
	font-family: var(--action-font);
	color: white;
	background: #c21500;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to left, #ff5400, #c21500);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to left, #ff5400, #c21500); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	cursor: pointer;
	padding: 1rem 3rem;
	border: none;
	text-transform: uppercase;
	font-size: 1rem;
	letter-spacing: .1rem;
	border-radius: 5px;
	animation: moveBanner 1s 0.9s forwards;
	opacity: 0;
	transition: .3s;
}
.banner button:hover{
	opacity: 0.90;
	color: black;
}
@keyframes moveBanner{
	0%{
		transform: translateY(10rem) rotateY(-30deg);

	}
	100%{
		transform: translateY(0rem) rotateY(0);
		opacity: 1;
	}
}
										/*SideBar*/

.sidebar{
	width: 20rem;
	height: 100vh;
	background-color: white;
	position: fixed;
	top: 0;
	right: -20rem;
	transition: 1s;
	z-index: 98;
}
.show-menu .sidebar{
	right: 0;
}
.menu{
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.menu-item{
	text-align: center;
	margin-bottom: .5rem;
}
.menu-link{
	font-family: var(--action-font);
	font-size: 2rem;
	color: #555;
	transition: color .5s;
}
.menu-link:hover{
	color: #ff5400;
}
.social-media{
	position: absolute;
	bottom: 2rem;
	width: 100%;
	display: flex;
	justify-content: space-evenly;
}
.social-media i{
	background-color: #555;
	color: white;
	height: 2.5rem;
	width: 2.5rem;
	font-size: 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	transition: background-color .5s;
}
.social-media i:hover{
	background-color: #ff5400;
}

										/*Conhecimentos*/
.sessao-conhecimentos{
	background-color: #f5f5f5;
}
.sessao-header{
	display: flex;
	justify-content: center;
}
.sessao-header h1{
	font-family: var(--primary-font);
	font-size: 3rem;
	color: #4b4b4b;
	border-bottom: solid 3px #ff5400;
	margin-bottom: 1.5rem;
}
.conhecimentos{
	display: grid;
	grid-template-columns: repeat(16, 1fr);
	grid-template-rows: repeat(6, 7rem);
	grid-row-gap: .5rem;
}
.conhecimento:nth-child(1){
	grid-column: 4/7;
	grid-row: 1/3;
}.conhecimento:nth-child(2){
	grid-column: 3/6;
	grid-row: 3/5;
}.conhecimento:nth-child(3){
	grid-column: 4/7;
	grid-row: 5/-1;
}.conhecimento:nth-child(4){
	grid-column: 11/14;
	grid-row: 1/3;
}.conhecimento:nth-child(5){
	grid-column: 12/15;
	grid-row: 3/5;
}.conhecimento:nth-child(6){
	grid-column: 11/14;
	grid-row: 5/-1;
}
.conhecimento-img-wrapper{
	grid-column: 7/11;
	grid-row: 2/6;
	width: 100%;
}
.conhecimento-img-wrapper img{
	object-fit: cover;
	width: 100%;
}
.conhecimento-header{
	display: flex;
	align-items: center;
	justify-content: center;
	color: #4b4b4b;
}
.conhecimento-header i{
	font-size: 3rem;
}
.conhecimento:nth-child(1) i{
	color: #fc5700;
}
.conhecimento:nth-child(2) i{
	color: #233ce0;
}
.conhecimento:nth-child(3) i{
	color: #8f52cd;
}
.conhecimento:nth-child(4) i{
	color: #42dea2;
}
.conhecimento:nth-child(5) i{
	color: #f5e919;
}
.conhecimento:nth-child(6) i{
	color: #242520;
}
.conhecimento-header h3{
	font-family: var(--secundary-font);
	font-size: 2rem;
	padding-left: 1rem;
}
.conhecimento:nth-child(1) .conhecimento-header h3,
.conhecimento:nth-child(2) .conhecimento-header h3,
.conhecimento:nth-child(3) .conhecimento-header h3{
	text-transform: uppercase;
}

.conhecimento-texto{
	font-family: var(--secundary-font);
	margin-top: .5rem;
}
										/*projetos*/

.projetos{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}	
.card{
	width: 18rem;
	height: 25rem;	
	position: relative;
}
.card-img-wrapper{
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.8);
	border-radius: .5rem;
}
.card-img-wrapper img{
	object-fit: cover;
	width: 100%;
	height: 100%;
	opacity: .8;
	border-radius: .5rem;
	transition: .5s;
}
.card:hover .card-img-wrapper img{
	opacity: .5;
}	
.card-info{
	opacity: 0;
	visibility: hidden;
	transition: .5s;
	position: absolute;
	bottom: 0;
	padding: 2rem;
	text-shadow: 0.4rem 0.1rem 0.3rem rgba(0,0,0,.4);
}
.card-info h2{
	font-family: var(--primary-font);
	font-size: 2rem;
	font-weight: normal;
	color: #eee;
}	
.card-info h3{
	font-family: var(--action-font);
	font-weight: bolder;
	font-size: 1rem;
	color: #ff5400;
	margin-bottom: 1.5rem;
}	
.card-info p{
	font-family: var(--secundary-font);
	color: #eee;
	width: 80%;
	margin-bottom: 2rem;
}
.btn{
	background-color: #ff5400; 
	border: none;
	color: white;
	border-radius: .5rem;
	font-size: 1rem;
	box-shadow: 0 .1rem .8rem rgba(0,0,0,.4);
	cursor: pointer;
}
.card-info button{
	width: 8rem;
	height: 2.5rem;
}	
.card-info button:hover{
	opacity: .9;
	color: black;
}
.card:hover .card-info{
	bottom: 1rem;
	opacity: 1;
	visibility: visible;
}					
										/*Contato*/
.sessao-contato{
	margin-top: 2rem;
	width: 100%;
	height: 100vh;
	background-color: #272727;
	display: flex;
	align-items: center;
	justify-content: center;
}
.contato-wrapper{
	width: 60%;
	height: 30rem;
	display: flex;
	box-shadow: 0 2rem 3rem rgba(0,0,0,.6);
}
.contato-left-side{
	width: 35%;
	background: linear-gradient(rgba(15,15,15,.6),rgba(22,22,22,.9)),
	 url("../images/contato1.jpg");
	background-size: cover;
}
.contato-right-side{
	width: 65%;
	background-color: #eee;
	padding: 1rem 3rem 3em 3rem;
}
.sessao-contato h1{
	width: 100%;
	text-align: center;
	font-family: var(--primary-font);
	color: #272727;
	font-size: 3rem;
	font-weight: lighter;
}
.sessao-contato form{
	display: flex;
	flex-direction: column;
	align-items: center;
}
.input-wrapper{
	position: relative;
	width: 100%;
	margin-top: 1rem;
}
.field{
	background:transparent;
	border:none;
	width: 100%;
	font-size:1.3rem;
	font-family: var(--secundary-font);
	border-bottom: 1px dashed #636363;
	outline: none;
	margin-top: 2rem;
}
.input-wrapper textarea{
	font-size: 1rem;
	line-height: 1.3rem;
	height: 1.5rem;
	resize: vertical;
	max-height: 5rem;
}
.field-label{
	position: absolute;
	top: 2rem;
	left: 0;
	font-family: var(--secundary-font);
	text-transform: uppercase;
	font-size: 1.2rem;
	transition: .3s;
}
.field:focus ~ label{
	top: 0rem;
	font-size: 1rem;
}
.field:focus{
	border-bottom: 1px solid;
}
.btn-submit{
	font-size: 1.2rem;
	text-transform: uppercase;	
	margin-top: 1rem;
	width: 100%;
	height: 2rem;
	transition: .3s;
}
.btn-submit:hover{
	color: black;
	opacity: .9;
}
										/*orçamento*/
.sessao-orcamento{
	width: 100%;
	height: 100vh;
	background: url("../images/bg-orcamento.jpg");
	object-fit: cover;
	display: flex;
	justify-content: center;
	align-items: center;
}			
.orcamento-wrapper{
	position: relative;
	width: 60%;
	height: 80%;
	background: #ffffff99;/*ultimo parâmetro opacidade*/
	border-radius: 10px;
	box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.9);
}	
.orcamento-wrapper h1{
	position: absolute;
	top: -2.5rem;
	left: 2rem;
	background: #c21500;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to left, #ff5400, #c21500);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to left, #ff5400, #c21500); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	color: white;
	padding: 0 3rem;
	font-family: var(--primary-font);
	font-size: 3rem;
	font-weight: lighter;
	box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,.9);
	border-radius: 10px;
}	
.orcamento-wrapper form{
	margin: 4rem;
	display: grid;
	grid-template-columns: auto 1fr;
	column-gap: 1rem;
	grid-row-gap: 2rem;
}	
.orcamento-wrapper label{
	font-family: var(--secundary-font);
	font-size: 1.5rem;
	font-weight: bold;
	text-align: right;
}	
.orcamento-wrapper input[type="number"]{
	font-family: var(--secundary-font);
	width: 4rem;
	font-size: 2rem;
	outline: none;
	border-radius: 10px;
	border: none;
	padding: 0.3rem;
}	
.orcamento-wrapper input[type="checkbox"]{
	display: inline-block;
	width: 1rem;
	text-align: left;
}
.sessao-orcamento #valorTotal{
	font-family: var(--secundary-font);
	font-size: 1.5rem;
	font-weight: bold;
	text-align: right;
	grid-column: 1;
}
.btn-orcamento{
	text-transform: uppercase;
	padding: 1rem;
	cursor: pointer;
	transition: .3s;
	grid-column: 2;
}
.btn-orcamento:hover{
	color: black;
	opacity: .9;
}
										/*rodape*/
footer{
	width: 100%;
	height: 10rem;
	background: #17181b;
	display: flex;
	justify-content: center;
	align-items: center;
}	
.footer-content{
	width: 60%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer-content p{
	font-family: var(--secundary-font);
	color: #a7a7a7;
	font-size: 1.7rem;
}
.social-list li{
	display: inline-block;
}	
.social-list a{
	margin:0 2rem;
	color: #a7a7a7;
	font-size: 1.3rem;
	transition: .3s;
}
.social-list a:hover{
	color: #ff5400;
}
#link-topo{
	position: fixed;
	right: 2rem;
	bottom: 3rem;
	width: 3rem;
	height: 3rem;
	background-color: #ff5400;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: .3s;
	color: white;
	box-shadow: 0 .3rem .3rem rgba(0,0,0,.8);
}	
#link-topo i{
	font-size: 2rem;
	line-height: 2rem;
}	
#link-topo:hover{
	opacity: .9;
	color: black;
}						
										/*preloader*/
.preloader{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: #03070d;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 100;
	transition: .4s;
}
.spinner{
	width: 80px;
	height: 80px;
	border: 8px solid #03070d;
	border-top: 8px solid #ff5400;
	border-bottom: 8px solid #ff5400;
	border-radius: 50%;
	animation: giragira 1.2s infinite;
}
@keyframes giragira{
	0%{
		transform: rotate(0deg);
	}
	100%{
		transform: rotate(360deg);
	}
}
										/*responsivo*/
@media screen and (max-width: 1024px){

			/*Conhecimentos*/
	.sessao-header{
		padding: 1rem 0;
	}
	.conhecimento-header{
		/*display: flex;*/
		align-items: center;
		justify-content: center;
		/*color: #4b4b4b;*/
	}
	.conhecimentos{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-around;
		align-items: center;
	}
	.conhecimento{
		width: 40%;
		text-align: justify;
	}
	.conhecimento-header h3{
		font-size: 2rem;
		/*padding-left: 1rem;*/
		/*padding-top: 1rem;*/
	}
	.conhecimento-texto{
		font-size: 1.2rem;
		margin-top: 1rem;
		padding-bottom: 1rem;
		border-bottom: 2px dashed #ff5400;
	}
	.conhecimento-img-wrapper{
		width: 50%;
	}
					/*projetos*/
	.card{
		width: 40%;
		height: 25rem;
		padding: 1rem 0;	
	}
	.card-info{
		bottom: 0;
		padding: 3rem;
	}
					/*contato*/
	.contato-wrapper{
		width: 90%;
	}
					/*orçamento*/
	.orcamento-wrapper{
		width: 90%;
	}
	.orcamento-wrapper h1{
		padding: 0 3rem;
		font-size: 2rem;
	}
					/*footer*/
	.footer-content{
		width: 90%;
	}
	.social-list a{
		margin:0 1rem;
		font-size: 2rem;
	}
}	
@media screen and (max-width: 600px){

				/*apresentacao*/
	.banner{
		top: unset;
		left: 10%;
		bottom: 20%;
	}
	.banner h1{
		font-size: 3rem;
		line-height: 3rem;
		margin-bottom: 2rem;
	}
	.banner p{
		font-size: 1.5rem;
		margin-bottom: 1.5rem;
	}
	.banner button{
		padding: 1rem 3rem;
		font-size: 1rem;
	}	
				/*Conhecimentos*/
	
					/*projetos*/

	.card{
		width: 70%;
		height: 30rem;	
	}	
					/*orçamento*/
	.orcamento-wrapper{
		height: auto;
	}
	.orcamento-wrapper form{
		margin: 1rem;
		margin-top: 2rem;
		column-gap: 1rem;
		grid-row-gap: .5rem;
	}	
	.orcamento-wrapper label{
		font-size: 1.2rem;
	}	
					/*footer*/

	.footer-content{
		width: 95%;
	}
	.social-list a{
		margin:0 .8rem;
		font-size: 1.5rem;
	}	
}	
@media screen and (max-width: 425px){
			/*hamburguer*/

	.hamburguer{
		right: 1rem;
		font-size: 2rem;
	}
			/*link topo*/

	#link-topo{
		right: 1rem;
		width: 2.5rem;
		height: 2.5rem;
	}
	#link-topo i{
		font-size: 1.5rem;
		line-height: 1.5rem;
	}	
			/*Sessão header*/

	.sessao-header h1{
		font-size: 2rem;
	}		
			/*Conhecimentos*/

	.conhecimento{
		padding: 1rem;
		width: 90%;
		text-align: center;
	}
	.conhecimento-header h3{
		font-size: 2.2rem;
		/*padding-top: 1.5rem;*/
	}
	.conhecimento-texto{
		border-bottom: none;
	}
	.conhecimento-img-wrapper{
		width: 80%;
	}
			/*projetos*/

	.sessao-projetos .sessao-header{
		padding-bottom: 0;
	}
	.card{
		width: 80%;
	}
	.card-info{
		padding: 2rem;
	}	
			/*contato*/
	.contato-left-side{
		width: 10%;
	}
	.contato-right-side{
		width: 90%;
		padding: 1rem 2rem 3em 2rem;
	}	
	.sessao-contato h1{
		font-size: 2.5rem;
	}
	.field{
		font-size:1rem;
	}
			/*orçamento*/
	.orcamento-wrapper{
		width: 90%;
	}
	.orcamento-wrapper h1{
		padding: 0 1rem;
		font-size: 1.5rem;
		top: -2rem;
	}			
	.orcamento-wrapper form{
		margin: 1rem;
		margin-top: 2rem;
	}	
	.orcamento-wrapper label{
		font-size: 1.2rem;
	}	
			/*footer*/

	.footer-content{
		width: 100%;
		height: 50%;
		flex-direction: column;
		justify-content: space-between;
	}
	.social-list a{
		margin:0 .5rem;
		font-size: 1.5rem;
	}	

}								
										/*Fim*/