@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Encode+Sans+Semi+Expanded:wght@300;400;600;700;900&display=swap');

p { text-align: center; }
 .toggle, [id^=drop] {
	display: none;
}

nav {
	width: 1045px;
	margin: 0;
	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:left;
	padding: 0;
	margin: 0;
	list-style: none;
	position: relative;
}

nav ul li {
	margin: 5px 0 0 0;
	display: inline-block;
	float: left;
	background: #f9faf5;
}

nav a {
	font-family: 'Encode Sans Semi Expanded', sans-serif;
	font-size: .9em;
	font-weight: 600;
	display: block;
	padding: 10px 30px;
	color: #1b2b76;
	line-height: 40px;
	text-decoration: none;
	text-transform: uppercase;
}

nav ul li ul li:hover { 
	background-color: #0394b8;
	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 {
	color: rgba(255,255,255,0.8);
	background-color: #0394b8;
	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 ul ul {
	display: none;
	position: absolute;
	top: 40px;
}

nav ul li:hover > ul { 
	display: inherit;
	background-color: #D3917E;
}

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 980px
*************************************************************************************/

@media all and (max-width : 980px) {
	
	nav {
		float: right;
		width: 780px;
		margin: 15px 0 0 0;
		padding: 0;
		/*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 ul {
		float:left;
		padding: 0;
		margin: 5px 0 0 0;
		list-style: none;
		position: relative;
	}

}
/************************************************************************************
MAIN NAVIGATION 810px
*************************************************************************************/

@media all and (max-width : 810px) {
	
	.step{
		display:none;
	}

	nav {
		margin: 0 0 0 0;
		width:100%;
	}
	
	nav a {
	font-size: 1em;
	}

	/* Hide the navigation menu by default */
	/* Also hide the  */
	.toggle + a,
	.menu {
		display: none;
	}

	/* Stylinf the toggle lable */
	.toggle {
		display: block;
		background-color: #FFF;
		padding:12px 20px;	
		color: #0394b8;
		text-decoration:none;
		text-transform: uppercase;
		border:none;
	}

	.toggle:hover {
		background-color: #0394b8;
	}

	/* 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;
	}

	nav ul ul ul a {
		padding: 0 80px;
		margin: 0 0 0 0;
	}

	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:12px 20px;	
		color: rgba(255,255,255,0.5);
		font-size:1em; 
		margin: 0 0 0 0;
	}
  
  
	nav ul li ul li .toggle,
	nav ul ul a {
		background-color: #0394b8;
	}

	/* Hide Dropdowns by Default */
	nav ul ul {
		float: none;
		position:static;
		color: rgba(255,255,255,0.5);
		/* has to be the same number as the "line-height" of "nav a" */
	}
		
	/* 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;
	background: #FFF;
}

.nav-min ul {
	width:100%;
	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: .8em;
	font-weight: 500;
	display: block;
	padding: 10px 0px 10px 5px;
	color: #999;
	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: #0394b8;
	/*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;
}

/************************************************
PAGINAÇÃO DE PRODUTOS
*************************************************/

#navigation{
	text-align: center;
	width: 100%;
	height: auto;
	margin: 40px auto;
	padding: 10px 0;
}

.retrocede {
	width: 100px;
	font-size: .8em;
	margin: 0;
	padding: 10px 15px;
	color: #FFF;
	line-height: 1.4em;
	text-decoration: none;
	text-transform: uppercase;
	list-style: none;
	background: #DC260E; 
	
	/* rounded corner */
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}

.avanca {
	width: 50px;
	font-size: .8em;
	margin: 0;
	padding: 10px 15px;
	color: #FFF;
	line-height: 1.4em;
	text-decoration: none;
	text-transform: uppercase;
	list-style: none;
	background: #DC260E; 
	
	/* rounded corner */
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}

.depois {
	width: 50px;
	font-size: .8em;
	margin: 0;
	padding: 10px 15px;
	color: #FFF;
	line-height: 1.4em;
	text-decoration: none;
	text-transform: uppercase;
	list-style: none;
	background: rgba(220,38,14,0.8);
	
	/* rounded corner */
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}

.agora {
	font-size: .8em;
	margin: 0;
	padding: 10px 15px;
	color: #FFF;
	line-height: 1.4em;
	text-decoration: none;
	text-transform: uppercase;
	list-style: none;
	background: #DC260E; 
	
	/* rounded corner */
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}

/*************************************************************************************
MENU-PRODUTOS
**************************************************************************************/

br { clear:left }

.menu_produto {
    max-width: 1200px;
	margin: 0 auto;
	overflow:auto;
}

.menu_produto ul {
	width: 2000px;
    margin: 5px 0; 
	padding: 5px 0;
    float: left;
	overflow:auto;
}

.menu_produto ul li {
    display: inline;
}

.menu_produto ul li a {
	font-size:.7em;
    float: left;
	text-decoration: none;
	text-transform: uppercase;
    color: #FFF;
	margin: 2px;
    padding: 10px 15px;
    background: #242427;
	/*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: #FFF;
    background-color:#0D4FAB;
}