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

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*
body {
  font-size: 10px;
  line-height: 1.5;
}

/* Content wrapper */

.wrapper {
	width: 100%;
	margin: 0 auto;
}

.wrapper-small {
	max-width: 768px;
}
.wrapper-flush {
	width: 100%;
}
/*
 * Navigation
 */

.nav {
	position: fixed;
	width: 100%;
	z-index: 30000;
	left: 0px;
	top: 0px;
	height: auto;
	background-color: #000;
	padding-top: 5px;
	padding-bottom: 5px;
}

/** 
* Nav container 
* 1. Ensure this slides in below parent
* 2. Hide by default
* 3. Smoother scrolling experience on iOS
*/

.nav-container {
	position: fixed;
	top: 60px; /* 1 */
	left: 0;
	z-index: 30000;
	overflow-y: auto;
	visibility: hidden; /* 2 */
	width: 100%;
	height: 100%;
	min-height: 100%;
	margin: 0;
	padding: 0;
	transition: all 0.1s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
	transform: translateX(-100%); /* 2 */
	background-color: transparent;
	-webkit-overflow-scrolling: touch; /* 3 */
}

/* 1. Show when `.is-visible` class is added */

.nav-container.is-visible {
  visibility: visible; /* 1 */
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0); /* 1 */
}

/* Nav toggle */

.nav-toggle {
	line-height: 1;
	display: inline-block;
	padding: 1.25rem 1rem;
	border: 0;
	background-color: #404040;
}

/* Nav toggle icon */

.nav-toggle .icon-menu {
	position: relative;
	display: inline-block;
	width: 28px;
	height: 20px;
	vertical-align: middle;
	fill: none;
}

/* Nav toggle icon lines */

.icon-menu .line {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 4px;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  -webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000);
  background-color: #fff;
}

/* Nav toggle icon line 1 */

.icon-menu .line-1 { top: 0; }

/* When active, rotate line 1 to be lefthand part of X */

.is-active .icon-menu .line-1 {
  -webkit-transform: translateY(8px) translateX(0) rotate(45deg);
  -ms-transform: translateY(8px) translateX(0) rotate(45deg);
  transform: translateY(8px) translateX(0) rotate(45deg);
}

/* Nav toggle icon line 2 */

.icon-menu .line-2 {
  top: 50%;
  margin-top: -2px;
}

/* When active, hide line 2 */

.is-active .icon-menu .line-2 { opacity: 0; }

/* Nav toggle icon line 3 */

.icon-menu .line-3 { bottom: 0; }

/* When active, rotate line 3 to be righthand part of X */

.is-active .icon-menu .line-3 {
  -webkit-transform: translateY(-8px) translateX(0) rotate(-45deg);
  -ms-transform: translateY(-8px) translateX(0) rotate(-45deg);
  transform: translateY(-8px) translateX(0) rotate(-45deg);
}

/* Remove default list styles for menus */

.menu {
	list-style: none;
	padding: 0;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	text-align:left;
	background-color:#FFCD42;
}

.menu-subitem {
	border-top: 1px solid #ffffff;
	float: none;
	text-align: left;
	padding-right: 20px;
	padding-left: 20px;
	background-color: #444444;
}

/** 
* 1. Give menu a lighter background than its container 
* 2. Prevent menu text from being accidentally highlighted
*/

.nav-menu {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	margin-bottom: 70px;
}

/* Give menu items a top border */

.nav-menu .menu-item {
	border-top: 1px solid #bbb;
}


/* Give last menu item a bottom border */

.nav-menu > .menu-item:last-child { border-bottom: 1px solid #bbb;}

/* Darker background color on hover, and when toggled */

.nav-menu > .menu-item:hover,
.nav-menu > .menu-item.is-active  {
	background-color: #101010;

}
.nav-menu > .menu-item a:hover,
.nav-menu > .menu-item.is-active a {

	color:#FFF;
}

/* 1. Menu links are block level, by default */

.nav-menu .menu-link {
	display: block; /* 1 */
	text-decoration: none;
	padding: 0.75rem 1rem;
	color:#FFF;
}

/* 1. Menu items with dropdowns appear clickable */


.has-dropdown {
  position: relative;
  cursor: pointer; /* 1 */
}

/* 1. Parent menu links inlined so you can toggle the dropdown */

.has-dropdown > .menu-link {
	display: inline-block;
}

/* 1. Add an icon to menu items that have sub menus */

.has-dropdown:after {
	font-size: 41px;
	position: absolute;
	top: 0px;
	right: 1rem;
	bottom: 0;
	content: "+"; /* 1 */
	color: #fff;
}

/* 1. Switch icon to n-dash when toggled */

.has-dropdown.is-active:after { content: "\2013"; /* 1 */ }

/**
 * Dropdowns
 * 1. Hide dropdowns by default
 */

.nav-dropdown {
	display: none; /* 1 */
	background-color: #717171;
	color: #FFF;
}

/* 1. Show dropdown when toggled */

.has-dropdown.is-active > .nav-dropdown { display: block; /* 1 */ }

/* 2nd level dropdown */

.nav-dropdown .nav-dropdown {
	background-color: #aaa;
}

.nav-dropdown .menu-item { border-color: #a0a0a0; }

.nav-dropdown .nav-dropdown .menu-item {
  background-color: #b0b0b0;
  border-color: #909090;
}

/* Main content area */

.content { margin-top: 60px; }
.content .wrapper { padding: 1rem 0; }

@media (min-width: 1100px) {
.nav-menu .menu-link {
	display: block; /* 1 */
	text-decoration: none;
	padding: 0.75rem 1rem;
	font-size:80%;
	color:#ffffff;	
}
.menu {
	background-color: #000917;
	text-align: center;
	
}

.menu-subitem {
	background-color: #101010;
}

.menu-item {
	width: 14%;
	
}

.menu-item a {
	color: #FFFFFF;
}
.nav {
	background-color: #999999;
	padding: 0px;
}
.nav,
 .nav-container,
 .nav-container.is-visible {
	position: relative;
	top: auto;
	left: auto;
	z-index: 30000;
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	width: 1100px;
	margin-right: auto;
	margin-left: auto;
}

.nav-container,
 .nav-container.is-visible {
	visibility: visible;
	height: auto;
	min-height: 0px;
	overflow-y: visible;
}

.nav-toggle { display: none; }

/* 1. Display menu items inline */
.nav-menu > .menu-item,
 .nav-menu > .menu-item.is-active {
  display: inline-block; /* 1 */
  background-color: transparent;
  border: 0;
  
}

.nav-menu
{
	margin-bottom:0px;
		-webkit-transition: 0.1s ease-out;
	-moz-transition: .1s ease-out;
	-o-transition: .1s ease-out;
	transition: .1s ease-out;
}

/* Remove bottom border on last child */
.nav-menu > .menu-item:last-child { border: 0; }
.nav-menu .menu-item {
  -webkit-transition: background-color 0.1s ease-in-out,  color 0.1s ease-in-out;
  transition: background-color 0.1s ease-in-out,  color 0.1s ease-in-out;
  -webkit-transition: .1s ease-out;
	-moz-transition: .1s ease-out;
	-o-transition: .1s ease-out;
	transition: .1s ease-out;
}

/* Remove +/- icons */
.has-dropdown:after { content: "" !important; }

/* Add a caret to top-level menu items that have dropdowns */
.nav-menu > .has-dropdown:after {
	position: absolute;
	top: 50%;
	right: 1rem;
	width: 0;
	height: 0;
	margin-top: -2px;
	margin-left: -4px;
	content: "";
	border-top-width: 5px;
	border-right-width: 5px;
	border-bottom-width: 0;
	border-left-width: 5px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #ffffff;
	border-right-color: transparent;
	border-bottom-color: transparent;
	border-left-color: transparent;
}
/* Increase padding to compensate for caret */
.has-dropdown > .menu-link {
	width:100%;
}

/* Re-style dropdowns for larger screens */
.nav-dropdown {
	display: block;
	opacity: 0;
	position: absolute;
	top: 100%;
	width: 250px;
	margin: 0;
	padding: 0.5rem 0;
	background-color: #000917;
	box-shadow: 0 0 4px hsla(0, 0%, 0%, 0.15);
	visibility: hidden;
	-webkit-transition: visibility 0s linear 0.1s,  opacity 0.1s ease-out;
	transition: visibility 0s linear 0.1s,  opacity 0.1s ease-out;	
	
}

.has-dropdown:hover > .nav-dropdown {
	visibility: visible;
	opacity: 1;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	background-color: #000917;
}
.has-dropdown:hover > .nav-dropdown a{
	color:#FFF; 
}

.nav-dropdown .menu-item { border: 0;  }
.nav-dropdown .menu-subitem { border: 0; 
	-webkit-transition: .1s ease-out;
	-moz-transition: .1s ease-out;
	-o-transition: .1s ease-out;
	transition: .1s ease-out;}

.nav-dropdown .menu-item:hover,
 .nav-dropdown .nav-dropdown .menu-item:hover {
	background-color: #000917;
}
.nav-dropdown .menu-subitem:hover, .nav-dropdown .nav-dropdown .menu-subitem:hover {
	background-color: #000917;
}


.nav-dropdown .nav-dropdown,
 .nav-dropdown .nav-dropdown .menu-item { background-color: #dedede; }

.nav-dropdown .nav-dropdown {
	z-index: 9998;
	top: 0;
	left: 100%;
}

.content { margin-top: 0; float:left; }

/* destaque laranja*/
.ativo{
	position: relative;
	background: #FF00FF;
	background-color: #101010;
	display: block;
	color: #FFF !important;
	text-align: center;
}

.nav-menu > .ativo-drop:after {
border-top-color: #fff;
}

.ativo:after {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(98, 213, 89, 0);
	border-top-color: #101010;
	border-width: 9px;
	margin-left: -9px;
}
}
