/*********************************************
** Header 
*********************************************/

#header {
	width: 100%;
	float: left;
}

/* Top Header */

#header .topHeader {
	float: left;
	width: 100%;
	max-width: 100%;
	background: url('../../../uploads/2024/11/bg-top-header.jpg') center bottom no-repeat;
	background-size: cover;
	padding: 40px 0;
}

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

/* Menu */

#header .topHeader .menuPrincipal {
	flex: 1;
	display: flex;
	justify-content: center;
}

#header .topHeader .menuPrincipal ul.menu {
	padding: 0;
	margin: 0;
}

#header .topHeader .menuPrincipal ul.menu li {
	list-style: none;
	float: left;
	position: relative;
	transition: all 0.1s linear;
	border-radius: 10px 10px 0 0;
}

#header .topHeader .menuPrincipal ul.menu li.menu-item-has-children > a::after {
	font-family: FontAwesome;
	display: inline-block;
	padding-left: 6px;
	vertical-align: middle;
	content: "\f107";
}

#header .topHeader .menuPrincipal ul.menu li + li {
	margin-left: 5px;
}

#header .topHeader .menuPrincipal ul.menu li a {
	color: #00056E;
    font-size: 17px;
    line-height: 17px;
    transition: all 0.1s linear;
    font-weight: 600;
    cursor: pointer;
	display: inline-block;
	padding: 15px;
	border-bottom: solid 1px transparent;
}

#header .topHeader .menuPrincipal ul.menu li.menu-item-has-children:hover {
	background: #fff;
}

#header .topHeader .menuPrincipal ul.menu li.menu-item-has-children:hover > a {
	color: #000CF4;
	border-bottom: solid 1px #d8dae5;
}

/* Submenu */

#header .topHeader .menuPrincipal ul.menu li ul {
	position: absolute;
	background-color: #fff;
	border-radius: 0 0 10px 10px;
	width: 100%;
	overflow: hidden;
	display: none;
	z-index: 999;
	padding: 5px 0 7px 0;
	top: 100%;
}

#header .topHeader .menuPrincipal ul.menu li:hover ul {
	display: block;
}

#header .topHeader .menuPrincipal ul.menu li ul li {
	float: left;
	width: 100%;
	margin: 0;
	border-radius: 0;
}

#header .topHeader .menuPrincipal ul.menu li ul li a {
	color: #00056E;
    border-radius: 0;
    float: left;
	padding: 5px 20px 5px 20px;
	border: 0;
	font-size: 14px;
	text-transform: uppercase;
}

/* Botão Whatsapp */

#header .linkWhatsapp {
	display: flex;
    align-items: center;
    border: solid 2px #000CF4;
    border-radius: 25px;
    padding: 10px 20px;
    transition: all 0.1s linear;
}

#header .linkWhatsapp i {
	color: #000CF4;
	font-size: 20px;
	line-height: 20px;
}

#header .linkWhatsapp span {
	color: #000CF4;
	font-size: 15px;
	font-weight: 500;
	margin-left: 10px;
	line-height: 20px;
}

#header .linkWhatsapp:hover {
	background-color: #000CF4;
}

#header .linkWhatsapp:hover span,
#header .linkWhatsapp:hover i {
	color: #fff;
}

/* Botão Menu Mobile */

#header #botaoMenuMobile {
	display: none;
}

/* Bottom Header */

#header .bottomHeader {
	float: left;
	width: 100%;
	background: #000CF4;
	padding: 15px 0;
}

#header .bottomHeader .menuSecundario {
	float: left;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

#header .bottomHeader .menuSecundario ul.menu {
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
}

#header .bottomHeader .menuSecundario ul.menu li {
	list-style: none;
	float: left;
	position: relative;
}

#header .bottomHeader .menuSecundario ul.menu li.menu-item-has-children > a::after {
	font-family: FontAwesome;
	display: inline-block;
	padding-left: 6px;
	vertical-align: middle;
	content: "\f107";
}

#header .bottomHeader .menuSecundario ul.menu li + li {
	margin-left: 40px;
}

#header .bottomHeader .menuSecundario ul.menu li a {
	color: #FFFFFF;
    font-size: 16px;
    line-height: 16px;
    transition: all 0.1s linear;
    font-weight: 500;
    cursor: pointer;
    display: inline-block;
    padding: 12px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#header .bottomHeader .menuSecundario ul.menu li.linkMatricula a {
	background: #B338B7;
    border-radius: 7px;
    padding: 15px 20px;
}
#header .bottomHeader .menuSecundario ul.menu li.linkMatricula a:hover {
	color: #B338B7;
	background: #fff;
}

/* Menu Mobile */

#boxMenuMobile {
	display: none;
}

@media only screen and (max-width: 1100px) {

	#header .topHeader #logo {
		max-width: 35%;
	}

	#header .bottomHeader .menuSecundario ul.menu li + li {
		margin-left: 20px;
	}

}

@media only screen and (max-width: 950px) {

	#header {
		position: relative;
	}

	#header .topHeader {
		padding: 0;
	}

	#header .topHeader .container {
		align-items: initial;
		padding: 0;
	}

	/* Logo */

	#header .topHeader #logo {
		max-width: 100%;
		flex: 1;
		margin: 15px;
	}

	#header .topHeader #logo img {
		max-width: 80%!important;
	}

	/* Menu Principal */

	#header .topHeader .menuPrincipal {
		display: none;
	}

	/* Link Whatsapp */

	#header .linkWhatsapp {
		display: none;
	}

	/* Botão Menu Mobile */

	#header #botaoMenuMobile {
		background: #000CF4;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 25px;
        cursor: pointer;
	}

	/* Menu Secundário */

	#header .bottomHeader {
		display: none;
	}

	/* Menu Mobile */

	#boxMenuMobile {
        background: #000CF4;
        position: absolute;
		display: none;
        top: 100%;
        right: 0;
        width: 300px;
        max-width: 80%;
        z-index: 1;
        border-radius: 0 0 0 20px;
		-webkit-box-shadow: -7px 8px 5px 0px rgba(0,0,0,0.22);
		-moz-box-shadow: -7px 8px 5px 0px rgba(0,0,0,0.22);
		box-shadow: -7px 8px 5px 0px rgba(0,0,0,0.22);
	}

	#boxMenuMobile .menuTipos {
		float: left;
		width: 100%;
		padding: 30px;
	}

	#boxMenuMobile .menuTipos ul {
		float: left;
		padding: 0;
		margin: 0;
		width: 100%;
	}

	#boxMenuMobile .menuTipos ul li {
		float: left;
		width: 100%;
		list-style: none;
	}

	#boxMenuMobile .menuTipos ul li.linkMatricula {
		display: none;
	}

	#boxMenuMobile .menuTipos ul li + li {
		margin-top: 8px;
	}

	#boxMenuMobile .menuTipos ul li a {
		color: #fff;
        font-size: 16px;
        font-weight: 600;
		text-transform: uppercase;
	}

	#boxMenuMobile .menuInstitucional {
		float: left;
		width: 100%;
		padding: 30px;
		background: #000abe;
	}

	#boxMenuMobile .menuInstitucional ul {
		float: left;
		padding: 0;
		margin: 0;
		width: 100%;
	}

	#boxMenuMobile .menuInstitucional ul li {
		float: left;
		width: 100%;
		list-style: none;
	}

	#boxMenuMobile .menuInstitucional ul li + li {
		margin-top: 5px;
	}

	#boxMenuMobile .menuInstitucional ul li a {
		color: #fff;
        font-size: 16px;
        font-weight: 600;
		text-transform: uppercase;
	}

	#boxMenuMobile .menuInstitucional ul li ul {
		margin-top: 5px;
	}

	#boxMenuMobile .menuInstitucional ul li ul li a {
		font-weight: 300;
        font-size: 14px;
	}

	#boxMenuMobile .whatsAppEMatricula {
		float: left;
		width: 100%;
		padding: 0 30px 30px 30px;
		background: #000abe;
		border-radius: 0 0 0 20px;
	}

	#boxMenuMobile .whatsAppEMatricula .linkWhatsappMobile {
		float: left;
        width: 100%;
        border: solid 1px #5C64FF;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
	}

	#boxMenuMobile .whatsAppEMatricula .linkWhatsappMobile i {
		color: #106dff;
		font-size: 24px;
	}

	#boxMenuMobile .whatsAppEMatricula .linkWhatsappMobile span {
		color: #fff;
        text-transform: uppercase;
        font-weight: 600;
        line-height: 19px;
        margin-left: 10px;
        letter-spacing: 1px;
        font-size: 14px;
	}

	#boxMenuMobile .whatsAppEMatricula .linkMatriculaMobile {
		float: left;
		width: 100%;
		margin-top: 10px;
	}

	#boxMenuMobile .whatsAppEMatricula .linkMatriculaMobile a {
		color: #fff;
        background: #B338B7;
        border-radius: 12px;
        width: 100%;
        float: left;
        text-align: center;
        padding: 15px 0;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 1px;
	}

}