/*===================================Estilos Cabecalho===================================*/

header {
	width: 100%;
	height: auto;
	padding: 10px 0;
	background: #1a2432;
	color: white;
	position: fixed;
}

#divListaLinksNavBurguer {
	width: 110vw;
	height: auto;
	margin-left: -20px;
	background: #1a2432;
	position: absolute;
	padding-top: 30px; 
	z-index: 4;
	top: 0;
	right: -120%;
}

.listaLinksNavBurguer {
	width: auto;
	padding: 50px;
	margin: 0 auto;
}

.linksNavBurguer {
	max-width: 300px;
	height: 30px;
	margin: 0 auto 30px auto;
	padding-top: 5px;
	border-radius: 10px;
	text-align: center;
	background: #e1dcd9;
	box-shadow: 0px 0px 20px black;
}

.linksNavBurguer:hover {
	transform: scale(1.1);
	cursor: pointer;
}

.linksNavBurguer:hover > a {
	color: white;
}

.linksNavBurguer > a {
	padding: 10px 70px;
	color: black;
}

.navBurguer {
	width: 99%;
	height: 100px;
	display: none;
	align-items: center;
	justify-content: center;
	position: absolute;
}

.icon-burguer {
	display: flex;
	height: 100px;
	position: absolute;
	top: 18px;
	right: 30px;
	z-index: 5;
}

#checkbox-menu {
	position: absolute;
	opacity: 0;
}

#label-menu {
	cursor: pointer;
	position: relative;
	display: block;
	height: 22px;
	width: 30px;
}

#label-menu > span {
	position: absolute;
	display: block;
	height: 5px;
	width: 100%;
	border-radius: 30px;
	background: white;
	transition: 0.25s ease-in-out;
}

#label-menu span:nth-child(1){
	top: 0;
}

#label-menu span:nth-child(2){
	top: 8px;
}

#label-menu span:nth-child(3){
	top: 16px;
}

#checkbox-menu:checked + label span:nth-child(1){
  transform: rotate(-45deg);
  top: 8px;
}

#checkbox-menu:checked + label span:nth-child(2){
  opacity: 0;
}

#checkbox-menu:checked + label span:nth-child(3){
  transform: rotate(45deg);
  top:8px;
}

.divBarraNavegacao {
	max-width: 1310px;
	padding: 0 30px;
	margin: 0 auto;
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
}

.divLogo {
	width: auto;
	height: auto;
}

.logo {
	width: 100px;
	height: 60px;
}

.divListaLinksBarraNavegacao {
	width: auto;
	height: auto;
	display: flex;
	flex-wrap: nowrap;
	margin-top: 10px;
}

.listaLinksBarraNavegacao {
	width: auto;
	height: auto;
	display: flex;
	flex-wrap: nowrap;
}

.listaLinksBarraNavegacao > li {
	margin: 10px 30px 0 0;
}

.linkBarraNavegacao > a {
	color: white;
}

.linkBarraNavegacao:hover > a {
	color: #a67f78 ;
}

.linkBotaoOrcamentoBarraNavegacao {
	color: black;
}

.linkBotaoOrcamentoBarraNavegacao:hover {
	color: white;
}

.botaoOrcamentoBarraNavegacao {
	background: #a67f78;
	width: auto;
	height: auto;
	border-radius: 5px;
	padding: 5px 10px;
	margin-top: 5px;
}

.linkBotaoOrcamentoBarraNavegacao:hover > .botaoOrcamentoBarraNavegacao {
	transform: scale(1.1);
}

/*===================================Responsividade===================================*/

@media (max-width:1025px) {
	.navBurguer {
		display: flex;
	}

	nav {
		max-width: 250px;
		margin: inherit;
	}

	.divListaLinksBarraNavegacao {
		display: none;
	}
}