@charset = "UTF-8"

/*-------------------------
		Simples RESET
-------------------------*/

* {
	margin: 0;
	padding: 0;
}

/*-------------------------
		Estilos Gerais
-------------------------*/



a, a:visited {
	outline: none;
	color: #389DC1;
}

a:hover {
	text-decoration: none;
}

section, footer, header, aside, nav {
	display: block;
}


/*----------------------------
		MENU
----------------------------*/


nav {
	display: inline-block;
	margin: 60px auto 45px;
	background-color: #5597B4;
	box-shadow: 0 1px 1px #CCC;
	border-radius:10px;
	align-items: center; 
}

nav a {
	display: inline-block;
	padding: 18px 30px;
	color: #FFF !important;
	font-weight: bold;
	font-size: 16px;
	text-decoration: none !important;
	line-height: 1;
	text-transform: uppercase;
	background-color: transparent;

	-webkit-webkit-transition: background-color 0.25s;
	-moz-webkit-transition: background-color 0.25s;
	-ms-webkit-transition: background-color 0.25s;
	-o-webkit-transition: background-color 0.25s;
	transition: background-color 0.25s;
}
#menu ul {
	padding:0px;
	margin:0px;
	background-color:#EDEDED;
	list-style:none;
}
#menu ul li { display: inline; }

nav a:first-child {
	border-radius: 2px 0 0 2px;
}

nav a:last-child {
	border-radius: 0 2px 2px 0;
}

nav.home .home,
nav.projects .projects,
nav.services .services,
nav.contact .contact {
	background-color: #E35885;
}




