
p { text-align: center; }
 .toggle, [id^=drop] {
	display: none;
}

nav {
	margin: 10px;
	padding: 0;
	float: right;
	/*transition*/
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

nav:after {
	content: "";
	display: table;
	clear: both;
}

nav ul {
	float: right;
	padding: 0;
	margin: 0;
	list-style: none;
	position: relative;
}

nav ul li {
	margin: 0px;
	display: inline-block;
	float: center;
	background-color: invisible;
}

nav a {
	font-size: .9em;
	font-weight: 500;
	display: block;
	padding: 0 20px;
	color: #FFF;
	line-height: 40px;
	text-decoration: none;
	text-transform: uppercase;
	border: .5px solid rgba(255,204,0,0.0);
	border-width: thin;
}

nav ul li ul li:hover { 
	background:rgba(255,204,0,0.9);
	text-decoration: none;
	/*transition*/
	-webkit-transition: all 0.9s;
	-moz-transition: all 0.9s;
	-ms-transition: all 0.9s;
	-o-transition: all 0.9s;
	transition: all 0.9s;
}

nav a:hover { 
	background-color: rgba(255,204,0,0.9);
	text-decoration: none;
	/*transition*/
	-webkit-transition: all 0.9s;
	-moz-transition: all 0.9s;
	-ms-transition: all 0.9s;
	-o-transition: all 0.9s;
	transition: all 0.9s;
	
	border: .5px solid rgba(255,204,0,0.7);
	border-width: thin;
	
	/* rounded corner */
	-webkit-border-radius: 8px;
	-moz-border-radius:8px;
	border-radius: 8px;
	
	box-shadow: 0px 0px 20px rgba(255,204,0,0.0);
	
	}

nav ul ul {
	display: none;
	position: absolute;
	top: 40px;
}

nav ul li:hover > ul { 
	display: inherit; 
}

nav ul ul li {
	color: #bbcfd5;
	width: 300px;
	float: none;
	display: list-item;
	position: relative;
	/*transition*/
	-webkit-transition: all 0.8s;
	-moz-transition: all 0.8s;
	-ms-transition: all 0.8s;
	-o-transition: all 0.8s;
	transition: all 0.8s;
}

nav ul ul ul li {
	font-size: .9em;
	position: relative;
	top: -60px;
	left: 170px;
	/*transition*/
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

li > a:after { 
	content: ' ▾'; 
}

li > a:only-child:after {
	content: ''; 
}

/************************************************************************************
MAIN NAVIGATION 768px
*************************************************************************************/

@media all and (max-width : 768px) {
	
	.step{
		display:none;
	}

	nav {
		margin: 10px;
		padding: 0;
		float: left;
	}

	/* Hide the navigation menu by default */
	/* Also hide the  */
	.toggle + a,
	.menu {
		display: none;
	}

	/* Stylinf the toggle lable */
	.toggle {
		width: 40px;
		display: block;
		background-color: rgba(0,0,0,0.9);
		padding: 5px;	
		color: #FFF;
		font-size: 1.7em;
		text-decoration: none;
		text-transform: uppercase;
		text-align: center;
		border: none;
		
		/* rounded corner */
		-webkit-border-radius: 3px;
		-moz-border-radius:3px;
		border-radius: 3px;
		
		border: .5px solid rgba(255,255,255,0.95);
		border-width: thin;
	}

	.toggle:hover {
		background-color: rgba(0,0,0,0.9);
	}

	/* Display Dropdown when clicked on Parent Lable */
	[id^=drop]:checked + ul {
		display: block;
	}

	/* Change menu item's width to 100% */
	nav ul li {
		display: block;
		width: 100%;
		}

	nav ul ul .toggle,
	nav ul ul a {
		padding: 0 40px;
		text-align: left;
	}

	nav ul ul ul a {
		padding: 0 80px;
	}
	
	nav a {
		font-size: .9em;
		display: block;
		padding: 10px 15px;
		color: #FFF;
		line-height: 40px;
		text-decoration: none;
		text-transform: uppercase;
		background-color: rgba(0,0,0,0.5);
	}

	nav a:hover,
 	nav ul ul ul a {
		background-color: #000000;
	}
  
	nav ul li ul li .toggle,
	nav ul ul a,
	nav ul ul ul a{
		padding:14px 20px;	
		color: #bbcfd5;
		 
	}
  
  
	nav ul li ul li .toggle,
	nav ul ul a {
		background-color: #212121; 
	}

	/* Hide Dropdowns by Default */
	nav ul ul {
		float: none;
		position:static;
		color: #bbcfd5;
		/* has to be the same number as the "line-height" of "nav a" */
		background-color: rgba(0,0,0,0.5);
	}
		
	/* Hide menus on hover */
	nav ul ul li:hover > ul,
	nav ul li:hover > ul {
		display: none;
	}
		
	/* Fisrt Tier Dropdown */
	nav ul ul li {
		display: block;
		width: 100%;
	}

	nav ul ul ul li {
		position: static;
		/* has to be the same number as the "width" of "nav ul ul li" */ 
	}
}

/************************************************************************************
MAIN NAVIGATION 320px
*************************************************************************************/

@media all and (max-width : 330px) {

	nav ul li {
		display:block;
		width: 94%;
	}

}

/************************************************
NAV-MIN
*************************************************/

.nav-min {
	width:100%;
	margin: 0 auto;
	padding: 0;
	list-style: none;
	/*transition*/
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

.nav-min ul {
	float: left;
	padding: 0;
	margin: 0;
	list-style: none;
	position: relative;
}

.nav-min ul li {
	margin: 0 0 5px 0;
	
	display: inline-block;
	float: left;
	list-style: none;
	/*background-color: #004691;*/
}

.nav-min a {
	font-size: .9em;
	font-weight: 400;
	display: block;
	padding: 10px 0px 10px 5px;
	color: #444;
	line-height: 1.4em;
	text-align: left;
	text-decoration: none;
	text-transform: uppercase;
	list-style: none;
	border-bottom: .5px solid rgba(51,51,51,0.1);
}

.nav-min a:hover { 
	color: #FFF;
	text-decoration: none;
	background-color: #d90000;
	
	/*transition*/
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	
	/* rounded corner */
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;
}

/*************************************************************************************
MENU-PRODUTOS
**************************************************************************************/

br { clear:left }

.menu_produto {
    width: 96%;
	margin: 0 auto;
	padding: 0 0 10px 0;
}

.menu_produto ul {
	width: auto;
    margin: 5px 0; 
	padding: 5px 0;
    float: left;
}

.menu_produto ul li {
    display: inline;
}

.menu_produto ul li a {
	font-size: .9em;
    float: left;
	text-decoration: none;
	text-transform: uppercase;
    color: #000;
	margin: 2px;
    padding: 10px 15px;
    background: #f0e523;
	/*transition*/
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	/*shedow*/
	box-shadow: 1px 1px 1px rgba(0,0,0,0.2);
	/* rounded corner */
	-webkit-border-radius: 5px;
	-moz-border-radius:5px;
	border-radius: 5px;
}
/* 
.menu_produto ul li a:visited {
    color: #CCC;
	background: #686871;
}
*/
 
.menu_produto ul li a:hover, .menu_simple ul li .current {
    color: #000;
    background-color:#e9de10;
}
