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

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

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

.menu a:hover {
	color: rgb(168, 72, 88);
	text-decoration: underline;
}






img {
	display: block;
}

.col-1-2 img, .col-1-3 img ,.col-1-1 img, .col-1-4 img{
width: 100%;
margin-bottom: 20px;
max-width: 200px;
}



.img-destaque {
	width: 100%;
}


/* Tipografia */

.txt-destaque {
	color: white;
	font-size: 30px;
	text-align: center;
	position: absolute;
	padding-bottom: 40px;
}

.titulo {
	font-size: 26px;
	color: #220901;
	margin-bottom: 20px;
	text-align: center;
margin-top: 30px;
font-family: "Merriweather", serif;
	font-weight: 300;
	font-style: normal;
}

.col-1-2 p,
.col-1-3 p,
.col-1-4 p {
	margin-bottom: 5px;
	color: #0b090a(32, 32, 32);
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	line-height: 26px;
}



footer p {
	font-size: 16px;
	text-align: center #0b090a;
	margin-bottom: 10px;
	color: #660708;
}

.intro {
	font-size: 27px !important;
	color: #220901 !important;
	font-family: "Merriweather", serif!important;
	font-weight: 300!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 #220901;
	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: #660708;
	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: 23%;
	margin-bottom: 10px;

}

.col-1-5{
    width: 50%;
	background-color:#c0b3b1;
	margin-bottom: 10px;
}



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

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

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

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