.barra {
	width:100%;
	color:#fff;
	background-color:#222222;
	margin:0 auto;
	border-top:1px solid #333333;
	border-bottom:1px solid #333333;
	display:flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.5rem 2rem 0.5rem 2rem;
	position:fixed;
	top:0;
	z-index:200;
}
.barra a {
	color:#cccccc;
	text-decoration:none;
	font-weight: bold;
}
.barra img {
	width: 60px;
}
.nav-menu {
	display:flex;
	justify-content: space-between;
	align-items: center;
	/*padding: 0.5rem 2rem;*/
	background-color:#222222;
}
.nav-menu ul {
	display:block;
	align-items: center;
	position: fixed;
	top: 40px;
	left: -100%;
	width: 100%;
	height: 100vh;
	right: 0;
}
.nav-menu li {
	margin-right: 1.5rem;
}
.nav-menu ul li {
	padding: 2rem;
	display: flex;
	justify-content: center;
	margin: 0;
	background-color:#222222;
}
.nav-menu a {
	color:#cccccc;
	text-decoration:none;
	font-weight: bold;
}
.nav-menu a:visited {
	color:#cccccc;
	text-decoration:none;
	font-weight: bold;
}
.nav-menu a:hover {
	color:#ffffff;
	text-decoration:none;
	font-weight: bold;
}
.menu-icon img {
	width: 15px;
	height: 15px;
	border-radius: 2px;
}
.menu-icon {
	display: block;
	position: fixed;
	top: 15px;
	right: 15px;
	cursor: pointer;
}
.checkbtn {
	display: block;
}
#check:checked ~ ul{
	left: 0;
	transition: all 0.25s;
}
div#botonerafoot {
	/* background-color: #EEEEEE; */
	height: 1.8em;
	/* left: 0;
	position: fixed;
	top: 0; */
	width: 100%;
}
div#botonerafoot ul {
	list-style-type: none;
	margin: 0.2em 0;
}
div#botonerafoot li {
	border: #cccccc 2px solid;
	/* float: left; */
	display:inline-block;
	margin-right: 0.6em;
}
div#botonerafoot a {
	background-color: #222222;
	color: #ffffff;
	padding: 0 0.3em;
	text-decoration: none;
}
div#botonerafoot a:hover {
	background-color: #ffffff;
	color: #222222;
}

@media (min-width: 768px) {
	.barra {
		font-size: 70%;
		padding: 0.5rem 2rem 0.5rem 2rem;
	}
	.nav-menu ul {
		display:flex;
		justify-content: none;
		align-items: center;
		padding: 0 0;
		background-color:none;
		position: relative;
		margin-right: 3rem;
		top:0;
		left:0%;
		width: 100%;
		height: 100%;
		right: 0;
	}
	.nav-menu li {
		display:flex;
		padding: 0.5rem 1rem 0.5rem 1rem;
		margin-right:0;
	}
	.nav-menu ul li {
		display: flex;
		padding: 0.5rem 1rem 0.5rem 1rem;
		justify-content: left;
		margin: 0;
	}
	.checkbtn {
		display: none;
	}
	.menu-icon, #check {
		display: none;
	}
}