/* Comentario */

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

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


	header{
		position: fixed;
		width: 100%;
		height: 90px;
		background-color: rgb(0, 0, 0);
		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:rgb(255, 255, 255);
	}

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

.menu li a{
	color:#ffffff;
	padding-left: 10px;
	padding-right: 10px;
	text-decoration: none;
}

.menu a:hover{
color: rgb(255, 0, 0);
text-decoration: underline;
}

	
	



img{
	display: block;
	}


.img-destaque{
	width: 100%;
}

/* Tipografia */

.txt-destaque{
	color:rgb(255, 255, 255);
	font-size: 30px;
	text-align: center;
	position: absolute;
	padding-bottom: 40px;
}

.titulo{
	font-size: 30px;
	color:rgb(255, 255, 255);
	margin-bottom: 10px;

	font-family: "Open Sans", sans-serif;
	font-weight:700;
	font-style: normal;
}

.col-1-2 p,.col-1-3,.col-1-4 p{
	font-size: 16px;
	line-height: 26px;
	margin-bottom: 5px;
	color: rgb(255, 254, 254);

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

footer p{
	font-size: 16px;
	text-align: center;
	margin-bottom: 10px;
	color: rgb(255, 255, 255);
}

.intro {
font-size: 30px!important;
color: rgb(255, 255, 255)!important;
margin-bottom: 10px!important;

font-family: "Merriweather", serif!important;
font-weight: 400!important;
font-style: normal!important;
}


/* Divs */

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

.container-destaque-img{
	width: 100%;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	border-bottom: 4px solid rgb(27, 1, 122);
position: relative;
display: flex;
justify-content: center;
align-items: flex-end;
}

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

footer{
	width: 100%;
	background-color: rgb(0, 0, 0);
	padding-top: 50px;
	padding-bottom: 50px;
}

/* Colunas */

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

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

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

}

.col-1-2 img, .col-1-3 img, .col-1-4 img{
	width: 100%;
}



/* Cores */
.bc-escuro{
	background-color:#000000 ;
}

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

.bc-claro{
	background-color:#d80000 ;
}

/* 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;
}



