@charset "utf-8";
/* CSS Document */

/******************** MENU MOBILE ********************/

#botao-menu {
	width:50px;
	height:50px;
	background:url('icon-bars.png') center/30px no-repeat;
	background-color: rgb(255,2,195);  /* rosa choque */
	position:fixed;
	top:10px;
	left:10px;
	cursor:pointer;
	z-index:200;
}

#menu-bg { /* Fundo preto */
	display:none;
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,0.9);
	position:fixed;
	top:0;
	left:0;
	z-index:300;
}

#menu-mob { /* Menu */
	width:330px;
	height:100%;
	margin-left:-330px; /*aqui*/
	background-color:#FFF;
	position:fixed;
	top:0;
	left:0;
	z-index:350;
}

#menu-mob-bar { /* Barra Fechar */
	width:330px;
	height:40px;
}

#menu-mob-bar > #close { /* Botão Fechar */
	float:right;
	width:40px;
	height:40px;
	background:url('icon-close.png') center/17px no-repeat;
	background-color:rgb(255,2,195);  /* rosa choque */
	cursor:pointer;
	transition:500ms;
}

#menu-mob-bar > #close:hover {
	background-color:#000;
}

#menu-mob-area { /* Área */
	width:270px;
	height:500px;
	margin-left:30px;
}

#menu-mob-area > .line { /* linha */
	float:left;
	width:270px;
	border-top:1px solid #EDEDED;
}

#menu-mob-area > a.ma {
	float:left;
	width:240px;
	padding: 10px 0;
	text-decoration:none;
	/* FONTE */
    font-family:'history_sans_pro_medium';
	font-size:16px;
	line-height:150%;
	color:#000;
	/* interno */
	display:flex;
	flex-direction:column;
	justify-content:center;
}

#menu-mob-area > a.home {
	border-top:none;
	color:rgb(255,2,195);  /* rosa choque */
}

#menu-mob-area a:hover {
	color:rgb(255,2,195);  /* rosa choque */
}

#menu-mob-area > .button {
	float:left;
	width:30px;
	height:40px;
	/* interno */
	text-align:center;
	display:flex;
	align-items:center;
}

#menu-mob-area > .button > span {
	float:left;
	width:30px;
	height:30px;
	cursor:pointer;
	background:url(icon-plus-2.png) center/17px no-repeat;
	/* interno */
	display:flex;
	align-items:center;
	transition:all .3s;
}

#menu-mob-area > span:hover {
	color:rgb(255,2,195);  /* rosa choque */
}

.submenu-mob {
	float:left;
	margin-bottom:15px;
	display:none;
}

.submenu-mob > a.mb {
	float:left;
	width:270px;
	height:30px;
	padding-left:20px;
	text-decoration:none;
	/* FONTE */
    font-family:'history_sans_pro_medium';
	font-size:13px;
	line-height:17px;
	color:#000;
	display:flex;
	align-items:center;
}

.submenu-mob a.mb:hover {
	color:rgb(255,2,195);  /* rosa choque */
}

#menu-mob-contato {
	width:90%;
	margin-left:5%;
	position:absolute;
	bottom:0;
	margin-bottom:10px;
}

#menu-mob-contato > .area {
	width:100%;
	margin-bottom:7px;
	font-family:'Montserrat-Regular'; /* Fonte */
	font-size:13px;
	color:#444;
	display:flex;
	align-items:center;
}

#menu-mob-contato > .area > img {
	width:15px;
	height:15px;
	margin-right:5px;
}