/* Comentario */

/* 
nome de uma tag{...}
#nome de uma tag com id{...}
.nome de uma tag com uma classe{...}
 */

* {
	margin: 0px;
	padding: 0px;

}


header {
	width: 100%;
	height: 90px;
	background-color: #E0E1DD;
	position: fixed;
	z-index: 2;
}

.header-centro {
	width: 100%;
	max-width: 900px;
	height: 90px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 40px;
	color: #0D1B2A;

}

.menu {
	list-style-type: none;
	display: flex;

}

.menu li a {
	color: rgb(13, 41, 83);
	padding-left: 10px;
	padding-right: 10px;
	text-decoration: none;

}

.menu a:hover {
	color: green;
	text-decoration: underline;

}





/* Tipografia */


.intro {
	font-size: 27px !important;
	color: #1a4473 !important;
	margin-bottom: 10px !important;

	font-family: "Open Sans", sans-serif !important;
	font-weight: 300 !important;
	font-style: normal !important;
}

.titulo {
	font-size: 70px;
	color: blue;
	margin-bottom: 10px;

}

.col-1-2 p {
	font-size: 16px;
	line-height: 26px;
	margin-bottom: 5px;
	color: #0D1B2A;
	font-family: "Merriweather", serif;
	font-weight: 300;
	font-style: normal;
}


.col-1-3 p {
	font-size: 16px;
	line-height: 26px;
	margin-bottom: 5px;
	color: #1B263B;

	font-family: "Merriweather", serif;
	font-weight: 300;
	font-style: normal;

}

.col-1-4 p {
	font-size: 16px;
	line-height: 26px;
	margin-bottom: 5px;
	color: #415A77;

	font-family: "Merriweather", serif;
	font-weight: 300;
	font-style: normal;

}

.txt-destaque {
	position: absolute;
	color: #E0E1DD;
	font-size: 35px;
}

/* Divs*/

.container-col {
	width: 100%;
	max-width: 900px;
	height: 300px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: space-between;
}

.padding-menu {
	padding-top: 140px;
	padding-bottom: 50px;
}

.container-destaque-img {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	max-width: 900px;
	position: relative;
	border-bottom: 4px;
	display: flex;
	justify-content: center;
	align-items: center;

}

.img {
	display: block;
}

.img-destaque {
	width: 100%;
}

/* Colunas */

.col-1-2 {
	width: 48%;
	margin-bottom: 10px;
}

.col-1-3 {
	width: 31%;
	margin-bottom: 10px;
}

.col-1-4 {
	width: 23%;
	margin-bottom: 10px;
}

/* Cores */

.bc-escuro {
	background-color:  #1B263B;
}

.bc-meio-tom {
	background-color:#415A77;
}

.bc-claro {
	background-color: #778DA9 ;
}


/* Margens e Paddings */

.pad-t-b-alto {
	padding-top: 80px;
	padding-bottom: 80px;
}

.pad-t-b-medio {
	padding-top: 40px;
	padding-bottom: 40px;
}

.pad-t-b-baixo {
	padding-top: 20px;
	padding-bottom: 20px;
}



footer {
	width: 100%;
	padding-top: 50px;
	padding-bottom: 50px;
	background-color: #E0E1DD;

}



footer p {
	font-size: 16px;
	margin-top: 12px;
	color: rgb(66, 66, 131);
	text-align: center;
}