/* Comentario */

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

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

}

img {
	display: block;
}

/* header-container */

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

}



/* Tipografia */

.texto {
	font-size: 16px;
	line-height: 26px;
	color: #ffffff;
	font-family: Arial, Helvetica, sans-serif;

}

.texto-2 {
	font-size: 30px;
	line-height: 26px;
	color: #ffffff;
	margin-top: 120px;
	font-family: Arial, Helvetica, sans-serif;

}
.título {
	font-size: 30px;
	color: #cec5c5;
	margin-top: 10px;
	
	

}

.texto-footer{
	font-size: 10px;
	line-height: 26px;
	color: #ffffff;
	margin-bottom: 10px;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
	
}

.logo{
    font-size: 20px;

}
/* Cores */

.bc-escuro {
	background-color: #666;
}

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

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

.bc-marca {
	background-color: #283e9e;
}

.bc-zul-u {
	background-color: #223569;
}

.bc-zul-d {
	background-color: #3a4461;
}

/* Margens e Paddings */

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

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

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

.pad-t-b-atoa{
	
	padding-bottom: 50px;
}


/* Divs */
header {
	width: 100%;
	height: 80px;
	background-color: #243157;
}

section {
	width: 100%;
}

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

.container-inicio {
	width: 800px;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: space-between;
	height: 385px;


}

.container-footer{
	width: 800%;
	height: 100%;
	margin-right: auto;
	padding-right: auto;
}
footer {
	width: 100%;
	height: 155PX;
	background-color: #223569;

}


nav ul {
	display: flex;
	width: 150px;
	justify-content: space-between;

}


nav li {
	list-style-type: none;

}

/* Colunas */

.col-1-2 {
	width: 48%;
	padding:15px;


}

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

.col-1-3 img {
	margin-bottom: 20px;
}

.col-1-3 {
	width: 28%;
	padding: 15px;


}

.col-1-4 {
	width: 23%;

}


/* links */

nav a {
	color: #000000;
	text-decoration: none;
}

nav a:hover {
	color: #777;
	text-decoration: underline dotted 3px;
}