/* ---------------------------------
ADMINISTRA O ESTILO DO CABEÇALHO 
E RODAPÉ DO SITE
--------------------------------- */

:root {
	--header-height: 70px;
	--header-icon-size: 24px;
  	--logo-width: 220px;
  	--menu-desktop-widht: 240px;
	}
body{
	background-color: #CCCCCC;
	}
#main{
	position: relative;
	width: 100%;
	max-width: 1400px;
	margin: 10px auto auto auto;
	padding-bottom: 0px;
	margin-bottom: 30px;
	background-color: #FFF;
	-moz-box-shadow: 0px 0px 7px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0px 0px 7px rgba(0,0,0,0.2);
	box-shadow: 0px 0px 7px rgba(0,0,0,0.2);
	}
#header{
	position: sticky;
	top: 0px;
	left: 0px;
	right: 0px;
	display: table;
	width: 100%;
	z-index: 999;
	margin-bottom: 0px;
	}
.header{
	background-color: #FFFFFF;
	position: relative;
	width: 100%;
	max-width: 1400px;	
	margin: auto;
	height: var(--header-height);
	display: grid;
	grid-template-columns: var(--logo-width) auto 100px var(--header-height) var(--header-height) var(--header-height);
	grid-gap: 0px;
	gap: 0px;
	border-bottom: solid 5px var(--main-color-dark);
	-moz-box-shadow: 0px 2px 3px rgba(0,0,0,0.15); 
	-webkit-box-shadow: 0px 2px 3px rgba(0,0,0,0.15); 
	box-shadow: 0px 2px 3px rgba(0,0,0,0.15);
	}
#menu-icon{
	display: none;
	background-color: var(--main-color);
	}
.header > *{
/*	border: solid 1px #F60;*/
	}
.header-icon > *{
	width: 100%;
	height: 100%;
	display: flex;
	align-content: center;
	justify-content: center;
	align-items: center;
	}
.header-icon > * > svg{
	fill: var(--main-color); !important;
	width: var(--header-icon-size);
	height: var(--header-icon-size);
	}
#header #logo{
	display: table;
	height: 100%;
	}
#header #logo > a{
	display: flex;
	width: var(--logo-width);
	margin-top: 0px;
	margin-left: 0px;
	height: 100%;
	align-items: center;
	justify-content: center;
	}
#header #logo > a > img{
	max-width: 75%;
	max-height: 75%;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	-ms-transition: all 1s ease;
	transition: all 1s ease;
/*	*/
	}
#menu-header{
	height: calc(100% - 5px);
	display: flex;
	align-content: center;
	justify-content: center;
	align-items: center;
	background-color: #F6F6F6;
	}
#menu-header > ul{
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
	display: flex;
	justify-content: space-evenly;
	/*	align-items: center;*/
	align-items: stretch;
	}
#menu-header > ul > li{
	position: relative;
	display: block;
	margin: 0px;
	padding: 0px;
	flex: 1;
	border-right:solid 1px rgba(0,0,0,0.05);
	border-left: solid 1px rgba(255,255,255,0.5);
	display: flex;
	align-content: center;
	justify-content: center;
	align-items: center;
	}
#menu-header > ul > li:first-child{
	border-left:none;
	}
#menu-header > ul > li:last-child{
	border-right:none;
	}
#menu-header > ul > li > a{
	color: var(--main-color);
	width: 100%;
	font-family: var(--font-ui);
	font-size: 1rem;
	font-weight: normal;
	line-height: var(--header-height);
	text-align: center;
	text-decoration: none;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	transition: all 0.4s ease;
	}
#menu-header > ul > li > a:hover{
	background-color: rgba(0,0,0,0.1);
	text-decoration: underline;
	}
#menu-header > ul > li > ul{
	opacity: 0;
	position: absolute;
	top: 100%;
	left: 0px;
	width: var(--menu-desktop-widht);
	margin: 0px;
	padding: 0px;
	background-color: #FFF;
	-moz-box-shadow: 1px 1px 3px rgba(0,0,0,0.2); 
	-webkit-box-shadow: 1px 1px 3px rgba(0,0,0,0.2); 
	box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
	pointer-events: none;
	}
#btn-install-area{
	width: 100%;
	display: flex;
	align-content: center;
	justify-content: center;
	align-items: center;
	}
#btn-install{
	display: block;
	width: 80px;
	height: 28px;
	border:solid 1px rgba(0,0,0,0.1);
	-moz-border-radius: 5px; 
	-webkit-border-radius: 5px;
	background-color: var(--color-alert);
	-moz-box-shadow: 1px 1px 3px rgba(0,0,0,0.1); 
	-webkit-box-shadow: 1px 1px 3px rgba(0,0,0,0.1); 
	box-shadow: 1px 1px 3px rgba(0,0,0,0.1);
	cursor: pointer;
	}
#btn-install:hover{
	background-color: var(--color-alert-dark);
	cursor: pointer;
	}
#btn-install > svg{
	margin: 6px 3px 0px 6px;
	height: 14px;
	fill: #FFF;
	}
#btn-install > label{
	color: #FFF;
	font-family: var(--font-ui);
	font-size: 0.75em;
	line-height: 26px;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	cursor: pointer;
	}
#menu-notify{
	position: relative;
	}
#menu-notify[data-active='0'] > svg{
	display: none;
	}
#menu-notify[data-active='1'] > svg{
	position: absolute;
	top: 18px;
	right: 10px;
	width: 16px;
	height: 16px;
	fill: #0C3;
	}
#menu-notify[data-active='1'] > div > svg{
	fill: #CCC;
	}

#sidebar{ position: fixed; top: var(--header-height); left: 0px; bottom: 0px; right: 0px; z-index: 5000; pointer-events: none; }
#sidebar.active{ background-color: rgba(0,0,0,0.4); pointer-events: all; }
#sidebar > #sidebar-content{ position: absolute; top: 0px; left: -400px; bottom: 0px; min-width: 280px; background-color: var(--main-color); border-right: solid 2px var(--main-color-light); padding: 0px; -moz-box-shadow: 2px 2px 8px rgba(0,0,0,0.4);  -webkit-box-shadow: 2px 2px 8px rgba(0,0,0,0.4);  box-shadow: 2px 2px 8px rgba(0,0,0,0.4); -webkit-transition: all 0.4s ease; -moz-transition: all 0.4s ease; -o-transition: all 0.4s ease; -ms-transition: all 0.4s ease; transition: all 0.4s ease; }
#sidebar.active > #sidebar-content{ left: 0px; }
#sidebar-content > ul{ margin: 0px; padding: 15px; }
#sidebar-content > ul > li{ list-style: none; padding: 0px; margin: 0px; }
#sidebar-content > ul > li > a{ font-family: var(--font-ui); font-size: 1em; text-decoration: none; text-transform: uppercase; display: block; padding: 10px 15px; color: #FFF; }
#sidebar-content > ul > li > a:hover{ background-color: rgba(0,0,0,0.1); transition: 0.6s; }
#sidebar-content > ul > li > ul{ margin: 0 0 10px 0; padding: 0; }
#sidebar-content > ul > li > ul > li{ margin: 0; padding: 0; list-style: none; }
#sidebar-content > ul > li > ul > li > a{ font-size: 1.1em; padding: 4px 0px 4px 30px; display: block; color: rgba(255,255,255,0.65); }
#sidebar-content > ul > li > ul > li > a:hover{ background-color: var(--main-color-dark); }

#sidebar-content > div > ul{ margin: 0; padding: 10px 20px; display: block; }
#sidebar-content > div > ul > li{ margin: 0; padding: 5px 10px; font-family: var(--font-ui); font-size: 0.9em; list-style: none; border-left: solid 10px rgba(0,0,0,0.1); }
#sidebar-content > div > ul > li > a{ color: #FFF; }

#btn-install-area[data-active='0'] > div{
	display: none;
	}
#btn-install-area[data-active='1'] > div{
	display: block;
	}
#content{
/*	margin-top: var(--header-height);*/
	}
#footer{

	}
.footer{
	background-color: var(--main-color);
	display: grid;
	grid-template-columns: 1fr 2fr;
	grid-gap: 10px;
	gap: 10px;
	padding: 20px;
	}
.footer > div > img{
	max-width: 180px;
	}
.footer > div.redes-sociais{
	background-color: #FFF;
	-moz-border-radius: 5px; 
	-webkit-border-radius: 5px;
	display: flex;
	align-content: center;
	justify-content: center;
	align-items: center;
	}
.footer > div.redes-sociais > ul{
	display: flex;
	margin: 0;
	padding: 0;
	}
.footer > div.redes-sociais > ul > li{
	list-style: none;
	}
.footer > div.redes-sociais > ul > li > a{
	display: block;
	padding: 10px;
	}
.footer > div.redes-sociais > ul > li > a > svg{
	width: 32px;
	height: 32px;
	fill: var(--main-color);
	}
.footer > div.redes-sociais > ul > li > a:hover > svg{
	fill: var(--main-color-dark);
	}
.redes-sociais-item[data-active='0']{
	display: none;
	}
.redes-sociais-item[data-active='1']{
	display: block;
	}

@media (max-width: 1600px) {

}
@media (max-width: 1200px) {
	#main{
		margin: 0px;
		}
}
@media (max-width: 1024px) {
	:root {
		--header-height: 70px;
		--header-icon-size: 24px;
	  	--logo-width: 200px;
		}
	#menu-header > ul > li > a{
		font-size: 0.9rem;
		}
	.footer-logo > img{
		max-width: 100px;
		}
	.footer-menus > ul > li > a{
		font-size: 0.9rem;
		}
	.footer-menus > ul > li > ul > li > a{
		font-size: 0.82rem;
		}
}
@media (max-width: 840px) {
	:root {
		--header-height: 60px;
		--header-icon-size: 22px;
		--logo-width: 180px;
		}
	#main{
		padding-bottom: 85px;
		}
	#menu-header > ul > li > a{
		font-size: 0.8rem;
		}
}
@media (max-width: 720px) {
	:root {
		--header-height: 60px;
		--header-icon-size: 22px;
	  	--logo-width: 150px;
		}
	.header{
		grid-template-columns: var(--header-height) var(--logo-width) auto var(--header-height) var(--header-height) var(--header-height) var(--header-height);
		}
	#header #logo > a{
		position: absolute;
		top: 0px;
		display: flex;
		width: var(--logo-width);
		margin-top: 0px;
		margin-left: 0px;
		height: 100%;
		align-items: center;
		justify-content: center;
		}
	#header #logo > a > img{
		max-width: 90%;
		max-height: 90%;
		image-rendering: pixelated;
		}
	#menu-icon{
		display: block;
		}
	#menu-icon * > svg{
		fill: #FFF !important;
		}
	#menu-header{
		display: block;
		position: fixed;
		right: 0px;
		top: var(--header-height);
		left: 0px;
		bottom: 0px;
		pointer-events: none;
		z-index: 5000;
		-webkit-transition: all 0.4s ease;
		-moz-transition: all 0.4s ease;
		-o-transition: all 0.4s ease;
		-ms-transition: all 0.4s ease;
		transition: all 0.4s ease;
		background: none !important;
		}
	#menu-header > ul{
		display: block;
		position: absolute;
		padding: 20px;
		height: auto;
		top: 0px;
		left: calc(var(--menu-desktop-widht) * -1);
		bottom: 0px;
		width: var(--menu-desktop-widht);
		background-color: var(--main-color-dark);
		-webkit-transition: all 0.4s ease;
		-moz-transition: all 0.4s ease;
		-o-transition: all 0.4s ease;
		-ms-transition: all 0.4s ease;
		transition: all 0.4s ease;
		}
	#menu-header > ul > li{
		display: block;
		height: auto !important;
		border:none;
		}
	#menu-header > ul > li > a{
		display: block;
		padding-right: 10px;
		height: 40px;
		line-height: 40px;
		font-size: 1rem;
		text-align: right;
		}
	#menu.active #menu-header{
		pointer-events: all;
		background-color: rgba(255,255,255,0.8);
		}
	#menu.active #menu-header > ul{
		left: 0px;
		}
	#btn-install{
		width: 28px;
		}
	#btn-install > label{
		display: none;
		}
	.footer{
		display: block;
		}
	.footer > div:nth-child(1){
		text-align: center;
		padding: 10px;
		}
	
}
@media (max-width: 600px) {
	.footer-menus > ul{
		grid-template-columns: repeat(2, 1fr);
		}
	.footer-menus > ul > li > a{
		margin-bottom: 10px;
		margin-top: 10px;
		}
}
@media (max-width: 480px) {
	:root {
		--header-height: 45px;
		--header-icon-size: 20px;
	  	--logo-width: 140px;
/*	  	--menu-desktop-widht: 240px;*/
		}
	#main{
		padding-bottom: 120px;
		}
	.header{
		border-bottom: none;
		}	
	#btn-install{
		width: 28px;
		}
	.footer > div > img{
		margin-bottom: 10px;
		}
	.footer > div.redes-sociais > ul > li > a{
		display: block;
		padding: 5px;
		}
	.footer > div.redes-sociais > ul > li > a > svg{
		width: 22px;
		height: 22px;
		}
}
@media (max-width: 320px) {
	
}