@import url(https://fonts.googleapis.com/css?family=Montserrat:300&subset=latin-ext);

body {
-moz-osx-font-smoothing:grayscale;
-ms-flex-direction:column;
-webkit-box-direction:normal;
-webkit-box-orient:vertical;
-webkit-font-smoothing:antialiased;
background:#f5f5f5;
color:#777;
display:flex;
flex-direction:column;
font-family:Montserrat, sans-serif;
font-size: 1em;
/*font-weight:500;*/
margin:0;
min-height:100vh;
/*padding:5%;*/
}

.titulo1 {
	font-weight: 500;
	font-size: 2.2rem;
	color: #222;
	text-align: center;
}
.titulo2 {
	font-weight: 300;
	font-size: 1.8rem;
	color: #222;
	text-align: center;
}

.titulo3{
	font-weight: 900;
	font-size: 1.5rem;
	color: #222;
	text-align: center;
}
.titulo4{
	font-weight: 700;
	font-size: 1.2rem;
	color: #222;
	text-align: center;
}

.texto_G{
	font-size: 1.5em;
	padding-left: 5%;
	padding-right: 5%;
}

.texto_M{
	font-size: 1.2em;
	padding-left: 5%;
	padding-right: 5%;
}

.texto_P{
	font-size: 1em;
	padding-left: 5%;
	padding-right: 5%;
}


.explicacao{
	padding-left: 5%;
	padding-right: 5%;
	width: 70%;
	font-size: 1em;
}

nav {
	margin: 0 auto;
	max-width: 1000px;
	background: #006AD1;
	box-shadow:0 3px 15px rgba(0,0,0,.15);
}

nav::after {
	display: block;
	content: '';
	clear: both;
}

nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

nav ul li {
	float: left;
	position: relative;
}

nav ul li a {
	display: block;
	color: rgba(255, 255, 255, .9);
	text-decoration: none;
	padding: 1rem 2rem;
	border-top: 2px solid transparent;
	border-bottom: 2px solid transparent;
	transition: all .2s ease-in-out;
}

nav ul li a:hover,
nav ul li a:focus {
	background: rgba(0, 0, 0, .4);

}

nav ul li a:focus {
	color: white;
}

nav ul li a:not(:only-child)::after {
	padding-left: 4px;
	content: ' ▾';
}

nav ul li ul li {
	min-width: 190px;
}

nav ul li ul li a {
	background: transparent;
	color: #555;
	border-bottom: 1px solid #DDE0E7;
}

nav ul li ul li a:hover,
nav ul li ul li a:focus {
	background: #eee;
	color: #111;
}


footer {
color: #555;
font-size:12px;
margin-top:5em;
text-align:center;
}

footer a {
color:#008FEA;
text-decoration:none;
}