@CHARSET "ISO-8859-1";

*{
	font-family: 'Open Sans', sans-serif;
	font-family: 'Roboto', sans-serif;
	font-family: 'Roboto Condensed', sans-serif;
	font-family: 'PT Sans Narrow', sans-serif;
	font-family: 'Palanquin', sans-serif;
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
    font-weight: 400;
    letter-spacing: 0;
}

/************    VARIAVEIS    ************/
:root {
	--grey-900: #212121;
	--grey-800: #424242;
	--grey-700: #616161;
	--grey-600: #757575;
	--grey-500: #9e9e9e;
	--grey-400: #bdbdbd;
	--grey-300: #e0e0e0;
	--grey-200: #eeeeee;
	--grey-100: #f5f5f5;
	--grey-50:  #fafafa;
	
	--white: #ffffff;
	
}

html{
	background-color: #ffffff;
}

body{
	padding: 0px;
	margin:0 auto;
	line-height: 2;
	overflow-x: hidden;
}

a{
	text-decoration: none;
}

img{
	border:0px;
}

input, a, textarea, select, checkbox, radiobutton, button{
	outline-color: none;
	outline-style: none;
	outline-width: 0px;
}

::selection {
    background: #FFCDD2;
    color: #fff;
    text-shadow: none;
}



/************    HEADER    ************/
header {
    top: 0;
    z-index: 10;
    width: 100%;
    background-color: #ffffff;
    position: fixed;
    box-shadow: 0 3px 3px -3px rgba(0, 0, 0, 0.2);
    -o-box-shadow: 0 3px 3px -3px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 3px 3px -3px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 3px 3px -3px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

.header {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 80%;
	margin: 0 auto;
	padding: 0px;
}

.header-logotipo{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
    z-index: 100;
    float: left;
    order: 2;
    justify-content: center;
	align-items: center;
    width: 33.333%;
}
.header-logotipo a{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
    justify-content: center;
	align-items: center;
}
.header-logotipo img{
	height: 90px;
	margin: 5px;
}

.header-menus{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	order: 1;
	width: 33.333%;
}

.header-redes-sociais{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: flex-end;
	align-self: center;
	order: 3;
	width: 33.333%;
}

.header-redes-sociais a i{
	color: #808080;
    padding: 5px;
    font-size: 30px;
}

.header-redes-sociais a:HOVER i{
	color: #ff5252;
}

/*******      MENU       *******/
ul.menu{
	border: none;
	list-style: none;
	text-align: left;
	padding: 0px;
	margin: 0px;
	display: flex;
}
ul.menu li{
	padding: 0px;
	margin: 0px;
	list-style: none;
	display: inline-block;
 	position: relative;
}
ul.menu li a{
	padding: 0 10px;
	text-decoration: none;
	display: block;
	transition: line-height 0.3s linear;
	line-height: 100px;
	color: #606060;
	text-decoration: none;
	font-weight: 400;
	border-top: 2px solid transparent;
	font-family: 'Palanquin', sans-serif;
	font-size: 14px;
}
ul.menu li a:HOVER{
	color: #fff !important;
	background-color: #ff8a80;
	border-bottom: 2px solid #ff8a80;
}
ul.menu li.openup a{
	color: #fff;
	background: #ff5252;
	border-bottom: 2px solid #ff5252;
}
ul.menu li.openup a i.icon{
	color: #fff;
}
ul.menu li a:HOVER i.icon{
	color: #b30000;
}
ul.menu li ul{
	background: #FFF;
  	box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
ul.menu li ul.menu{
	position: absolute;
	display: none;
	z-index: 999;
}
ul.menu li ul.menu li a{
	line-height: 40px;	
}
ul.menu ul li{
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: relative;
}
ul.menu ul.menu{
	min-width: 200px;
}
ul.menu ul.menu li{
	width: 100%;
}
ul.menu li:hover ul, ul.menu li.over ul{display:block;}
.header-menu-botao{
	height: 72px;
	width: 40px;
	font-size: 25px;
}
.header-menu-botao>a+ul.menu{
	transition:transform 0.7s,opacity 0.7s;
}
.header-menu-botao:not(.active)>a+ul.menu{
/* 	transform:translateX(250px); */
	transform:translateX(-250px);
	opacity: 0;
}
.header-menu-botao.active>a+ul.menu{
	transform:translateX(0px);
	opacity: 1;
/* 	right: 0px; */
	left: 0px;
}
.header-menu-botao a{
	display: block;
	justify-content: center;
	text-align: center;
}
.header-menu-botao a i{
	line-height: 72px;
	align-self: center;
	color: #b30000;
}
/**** BLOG *****/
.section-blog{
	background-color: #EEE;
	padding: 30px 0px;
}
.blog{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	margin: 0 auto;
	width: 80%;
}

.blog span{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	font-family: 'Roboto Condensed', sans-serif;
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
	color: #7f888f;
}

.blog span i{
	padding: 0px 20px;
	color: #7f888f;
}	
.blog a i{
	padding: 10px;
	font-size: 50px;
	color: #7f888f;
}	
.blog a i:HOVER{
	color: #b71c1c;
}	


/************    MAPA SITE    ************/
.section-mapa-site{
	background-color: #e0e0e0;
}

.mapa-site{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-direction: row;
	width: 80%;
	margin: 0 auto;
	padding: 20px 0px;
}

.mapa-site-menu{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: space-around;
	align-items: flex-start;
	flex-direction: row;
}
.mapa-site-menu ul{
	list-style: none;
	padding: 0px 10px;
}

.mapa-site-menu ul li.titulo-menu{
	width: 100%;
}
.mapa-site-menu ul li.titulo-menu a{
	font-family: 'Roboto', sans-serif;
	color: #424242;
    font-weight: 600;
    font-size: 16px;
}

.mapa-site-menu ul li.item-menu{
	border: 0px;
	width: 100%;
}
.mapa-site-menu ul li.item-menu a{
	color: #424242;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    text-decoration: none;
}
.mapa-site-menu ul li a:HOVER{
	color: #b71c1c;
}

.mapa-site-menu-produtos{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
	padding: 15px;
}
.mapa-site-menu-produtos a.titulo{
	font-family: 'Roboto', sans-serif;
	color: #424242;
    font-weight: 600;
    font-size: 16px;
    border-bottom: 1px solid #424242;
	width: 100%;
}
.mapa-site-menu-produtos a:HOVER{
	color: #b71c1c;
}

.mapa-site-3c{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 10%;
}

.mapa-site-contato{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
	width: 30%;
}

.mapa-site-contato-linha{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: space-around;
	align-items: flex-start;
	flex-direction: row;	
}
.mapa-site-contato-linha i{
	color: #424242;
	padding: 20px;
    font-size: 30px;
}
.mapa-site-contato-linha p{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
}
.mapa-site-contato-linha p span{
	font-family: 'Roboto', sans-serif;
	color: #535353;
	font-weight: 700;
	font-size: 14px;
}
.mapa-site-contato-linha p a{
	font-family: 'Roboto', sans-serif;
	color: #424242;
	font-size: 14px;
}
.mapa-site-contato-linha p a:HOVER{
	color: #b71c1c;
}

.mapa-site-contato-linha-redes-sociais{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: row;
	justify-content: center;
    align-items: center;
    align-self: flex-end;
}
.mapa-site-contato-linha-redes-sociais a i{
	color: #535353;
	padding: 10px;
    font-size: 30px;
}

.mapa-site-contato-linha-redes-sociais a i:HOVER{
	color: #b71c1c;
}


	
	
/************    FOOTER    ************/
footer {
	font-family: 'Palanquin', sans-serif;
	color: #ffffff;
    font-size: 12px;
    text-align: center;
    background-color: #424242;
    padding: 10px;
}
.footer{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	width: 80%;
	margin: 0 auto;
}
.footer span{
	font-size: 13px;
}

a.msitec {
    color: #FA8258;
    font-size: 13px;
}

object{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
    justify-content: center;
	align-items: center;
	height: 100%;
}


/* ****** ***********      MOBILE       ************* ******* */
@media (max-width: 1117px) {
	.header-menus{
		width: auto;
	}
	.header-logotipo{
		width: auto;
	}
	.header-redes-sociais{
		width: auto;
	}
}
	
@media (min-width: 970px) {
	.header-menu-botao{
		display: none;
	}
}

@media (max-width: 969px) {
	header{
		position: relative;
		margin-top: 0px;
		opacity: 1;
	}
	.header{
		width: 100%;
	}
	.header-menu{
		display: none;
	}
	.header-menu-botao{
		display: block;
	}
	
	.header-menu-botao>.menu{
		 box-shadow: 0 2000px 0 2000px rgba(0,0,0,.1);
	}
	.menu{
		width: 250px;
	    background-color: #ffffff;
	    font-family: 'Open Sans', sans-serif;
		font-weight: 300;
		font-size: 16px;
	    position:relative !important;
/* 	    right: 0px !important; */
	    left: 0px !important;
/* 	    float: right; */
 		float: left;
/* 	    margin-right: -5px !important; */
	    margin-left: -5px !important;
    }
	.menu li,.menu ul{
		display: block;
    	width: 100%;
	}
	.menu li>ul{
	    float: left;
    	left: 0;
    	display:none !important;
    }
	.header-menu-botao a i.buttom{
		line-height: 85px;
		font-size: 24px;
	}
	.header-menu-botao a i.icon{
		margin: 0px 10px;
	}
    .header-menu-botao>.menu>li.active>ul{
    	display:block !important;
    }
    .header-menu-botao>.menu>li.active ul.menu>li:hover>ul{
    	display:block !important;
    }
    ul.menu{
		display: block;
	}
    ul.menu li a{
    	color: #424242;
		line-height: 60px;
		text-align: left;
		border-top: 0px;
		border-bottom: 2px solid transparent;
		font-weight: 600;
    }
	ul.menu li a:hover{
		background-color: #eeeeee;
		color: #424242 !important;
		font-weight: 600;
    	line-height: 60px;
		border-top: 0px;
		border-bottom: 2px solid #9e9e9e;
    }
	ul.menu li.openup a{
		border-top: 0px;
	}
	
	.mapa-site{
		flex-direction: column;
	}
	.mapa-site-menu{
		width: 100%;
	}
	.mapa-site-3c{
		width: 100%;
	}
	.mapa-site-contato{
		width: 100%;
		margin-top: 15px;
	}
}

@media (max-width: 754px) {
	.footer{
		flex-direction: column;
	}
	.mapa-site-contato-linha p span{
		word-break: break-word;
	    word-wrap: break-word;
	}
	.mapa-site-contato-linha p a{
		word-break: break-word;
	    word-wrap: break-word;
	}
	.blog span i{
		display: none;
	}	
}

@media (max-width: 524px) {
	.mapa-site-menu{
		width: 90%;
	}
	.mapa-site-3c{
		width: 90%;
	}
	.mapa-site-contato{
		width: 90%;
	}
	.mapa-site-contato-linha-redes-sociais{
		align-self: center;
	}
	
	.blog{
		flex-direction: column;
	}
	.blog span{
		font-size: 30px;
	}
}

@media (max-width: 459px) {
	.header-redes-sociais{
		display: none;
	}
	.header{
		flex-direction: column;
		width: 100%;
	}
	.header-logotipo{
		width: calc(100% - 20px);
		order: 1;
	}
	.header-logotipo a{
		width: 100%;
	}
	.header-logotipo img{
		max-width: 100%;
		margin: 10px;
	}
	.header-menus{
		order: 2;
		width: 100%;
		background-color: #ff5252;
	}
	.header-menu-botao a i.buttom{
		color: #fff;
		line-height: 72px;
	}
	
	.mapa-site-menu{
		flex-direction: column;
	}
}