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

header.fixo {
    background: #0d4cbd;
}

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

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

header.fixo .principal {
	padding: 10px 0;
}

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

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

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(--amarelo);
	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;
}

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

header .menu ul li {
	position: relative;
}

header .menu ul li a {
	text-transform: uppercase;
	color: #fff;
	font-weight: 600;
	padding: 10px 15px;
	display: block;
	transition: all .4s;
	border-radius: 40px;
	text-align: center;
	line-height: 1;
	font-size: 17px;
	font-weight: 400;
}

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(--amarelo);
}

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

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

header .menu ul li.inscrevase a {
	background: var(--amarelo);
    color: #000;
	font-weight: 500;
}

header .menu ul li.entrar a {
	background: #fff;
    color: #000;
    margin-left: 20px;
	font-weight: 500;
}

header .menu ul li.inscrevase a:hover,
header .menu ul li.entrar a:hover {
    background: var(--amarelo-hover);
}

/* Intro */
section.intro {
	background: #101010;
	position: relative;
}


section.intro:after {
	content: '';
	display: block;
	width: 50%;
	top: 0;
	left: 0;
	height: 100%;
	position: absolute;
	background: url(../img/bg-slider.jpg) center center no-repeat;
	background-size: cover;
	z-index: 1;
}

section.intro .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
	position: relative;
	z-index: 2;
}

section.intro .social {
	position: absolute;
	left: calc(100% - 85px);
	top: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 30px;
	background: var(--azul);
	max-width: 70px;
	width: 70px;
	height: 100%;
}

section.intro .social a {
	color: #fff;
	font-size: 18px;
	transition: all .3s;
}

section.intro .social a:hover {
	color: var(--amarelo);
}

section.intro .social:before {
	content: '';
	width: 1px;
	height: 60px;
	background: #fff;
	display: block;
}

section.intro .social:after {
	content: '';
	width: 5000px;
	height: 100%;
	position: absolute;
	left: 100%;
	top: 0;
	background: var(--azul);
	display: block;
}

section.intro .container .left {
    max-width: 50%;
	min-width: 50%;
}

section.intro h3 {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
	color: #fff;
}

section.intro h3:before {
    content: '';
    width: 60px;
    height: 1px;
	background: #fff;
    display: table;
    border-radius: 6px;
}

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

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

section.intro img {
	display: block;
}


/* Diferenciais */
section.diferenciais {
    border-top: 1px #1E1E21 solid;
    border-bottom: 1px #1E1E21 solid;
    padding: 30px 0;
}

section.diferenciais .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

section.diferenciais h3 {
    font-size: 22px;
}

/* Title Pages */
section.title__page {
	background:url(../img/imagem-topo.jpg) center center no-repeat var(--azul-escuro);
	background-size: cover;
	display: flex;
	padding:90px 0;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center center;
}

section.title__page h1 {
	color: #fff;
	font-size: 60px;
	font-weight: 200;
	text-align: center;
	font-weight: bold;
	text-transform: uppercase;
	font-family: var(--font-bold);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex-direction: column;
}

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

/* Menu Responsivo */
.menu__responsivo {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999999;
	background: var(--azul-escuro);
	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: 180px;
}

.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(--amarelo);
	color: #000;
}

.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 */
}