header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	background: transparent;
}

header.fixo {
    background: #00000087;
}

header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-width: 100%;
	width: 100%;
}

header .principal {
	padding: 25px 25px;
	transition: all .3s;
}

header.fixo .principal {
	padding: 15px 25px;
}

header .logo img {
	transition: all .3s;
	width: 120px;
}

header.fixo .logo img {
	width: 80px;
}

header .social {
	display: flex;
	align-items: center;
	gap: 15px;
}

header .social svg {
	width: 20px;
	height: 20px;
	fill: #fff;
}

header .social a:hover svg {
	fill: var(--verde);
}

header .agendamento .cta__primary {
	align-items: center;
	padding: 10px 20px;
	width: 200px;
	justify-content: center;
}

header .agendamento .cta__primary:focus {
	background: var(--marrom);
	color: #fff;
}

header .agendamento .cta__primary .lines,
.chama__responsivo .lines {
	display: flex;
	gap: 2px;
	flex-direction: column;
}

header .agendamento .cta__primary .lines span,
.chama__responsivo .lines span {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--dourado);
	transition: all .3s;
}

.chama__responsivo {
	display: flex;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	border: 1px #dedede solid;
	cursor: pointer;
}

header .agendamento .cta__primary .lines span:last-child {
	width: 25px;
}

header .agendamento .cta__primary:hover .lines span,
header .agendamento .cta__primary:focus .lines span {
	width: 24px;
	background: #fff;
}

header .menu .menu-menu-header-container {
	width: 100%;
	display: flex;
	justify-content: center;
	border-top: 1px #dedede solid;
}

header .menu ul {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 15px 0;
	transition: all .3s;
	gap:1px;
}

header.fixo .menu ul {
	margin: 5px 0;
}

header .menu ul li {
	position: relative;
}

header .menu ul li a {
	color: #fff;
	font-weight: 600;
	padding: 15px 20px;
	display: block;
	transition: all .4s;
	text-align: center;
	line-height: 1;
	font-size: 17px;
	font-weight: 400;
	font-family: var(--font-secundaria);
	border: 1px solid transparent;
}

header .menu ul li.destaque a {
	background: var(--dourado);
	color: #fff;
	font-family: var(--font);
}

header .menu ul li.destaque a:hover {
	background: var(--dourado-hover);
	color: #fff;
}

header .menu ul.sub-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 270px;
	flex-direction: column;
	background: var(--azul);
	box-shadow: -1px 14px 10px #0003;
	border-radius: 0 0 10px 10px;
	padding: 15px;
	display: none;
	margin: 0;
}

header .menu ul.sub-menu li {
	width: 100%;
	padding: 10px 0;
}

header .menu ul.sub-menu li span {
	display: block;
	color: #6b6b6b;
	padding-top: 5px;
	font-size: small;
}

header .menu ul.sub-menu li:hover span {
	color: #fff;
}

header .menu li.menu-item-has-children:hover ul.sub-menu {
	display: flex;
}

header .menu li:hover>a,
header .menu a:hover,
header .menu .orcamento a {
	color: var(--dourado);
	border-color: var(--dourado);
}

header .menu .orcamento {
	margin-left: 10px;
}

header .menu li:last-child a {
	border-right: 0;
}

/* Intro */
section.intro {
	background: url(../img/intro-bg.jpg) center center no-repeat #000;
	background-attachment: fixed;
	background-size: cover;
	position: relative;
	min-height: 820px;
	display: flex;
	align-items: center;
	justify-content: center;
}

section.intro .container {
	position: relative;
	z-index: 2;
	text-align: center;
	padding-top: 130px;
}

section.intro h2 {
    font-size: 60px;
    margin-bottom: 20px;
	color: #fff;
	font-family: var(--font);
}

section.intro p {
    color: #fff;
    font-size: 22px;
    margin-bottom: 50px;
    line-height: 1.4;
}

section.intro img {
	display: block;
}

section.intro .cta__primary {
	margin: auto;
}


/* Title Pages */
section.title__page {
	background:url(../img/title-sobre.jpg) center center no-repeat #000;
	background-size: cover;
	display: flex;
	padding:120px 0;
	padding-top: 290px;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center center;
}

section.title__page h1 {
	color: #fff;
	font-size: 58px;
	font-weight: 200;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex-direction: column;
	line-height: 50px;
}

section.title__page p {
	font-size: 16px;
	line-height: 1.2;
	text-align: center;
	color: #fff;
	max-width: 650px;
	margin: auto;
	margin-top: 30px;
}

section.title__page .cta__primary {
	margin: auto;
	margin-top: 40px;
}

/* Menu Responsivo */
.menu__responsivo {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #000;
	height: 100%;
	overflow: auto;
	width: 300px;
	box-shadow: 0 0 30px #00000028;
}

.menu__responsivo .logo {
	margin: 30px;
	text-align: center;
}

.menu__responsivo .logo img {
	max-width: 120px;
}

.menu__responsivo ul {
	border-top: 1px #1E1E21 solid;
}

.menu__responsivo ul li a {
	text-align: center;
	font-weight: bold;
	display: block;
	text-align: center;
	color: #fff;
	padding: 15px;
	font-size: 18px;
	border-bottom: 1px #1E1E21 solid;
}

.menu__responsivo ul.sub-menu li a {
	font-size: 13px;
}

.menu__responsivo ul.sub-menu {
	background: var(--azul);
	display: none;
}

.menu__responsivo ul li a:hover {
	background: var(--dourado);
	color: #fff;
}

.menu__responsivo ul li.orcamento,
.menu__responsivo ul li.whatsapp {
	display: none;
}

.menu__responsivo ul li.menu-item-has-children>a {
	position: relative;
}

.menu__responsivo ul li.menu-item-has-children>a::after {
	content: '';
	position: absolute;
	display: block;
	right: 20px;
	top: calc(50% - 10px);
	transform: rotate(135deg) translateY(-50%);
	width: 10px;
	height: 10px;
	border-top: 2px var(--amarelo) solid;
	border-right: 2px var(--amarelo) solid;
}

.telefone-mobile {
	display: none;
	/* Initially hide the buttons on desktop */
}