/* Comentario */

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

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


/* Imagens */

	img{
		display: block;
		width: 100%;
	}

	

	.borda{

		border: 5px solid #1D12B8;



	}



	

/* Tipografia */


.titulo-a{
	font-family: "Roboto Serif", serif;
	font-weight: 100;
	color:rgb(255, 255, 255);
	font-size: 40px;
	margin-bottom: 25px;
	text-align: center;
	padding-top: 95px;
	margin-top: 45px;
	
}




.titulo-topo{
	font-family: "Roboto Serif", serif;
	font-weight: 100;
	color:rgb(255, 255, 255);
	font-size: 50px;
	margin-bottom: 10px;
	
}




.titulo-b{
	color:rgb(255, 255, 255);
	font-size: 30px;
	margin-bottom: 10px;
	text-align:left;
}



.titulo-c{
	color:rgb(255, 255, 255);
	font-size: 30px;
	margin-bottom: 10px;
	text-align:center;
}

.texto{
	font-family: "Roboto Serif", serif;
	font-weight: 400;
	color:rgb(255, 255, 255);
	font-size: 15px;
	line-height: 26px;
	margin-bottom: 7px;
}

.texto1{
	font-family: "Roboto Serif", serif;
	font-weight: 400;
	color:rgb(255, 255, 255);
	font-size: 15px;
	line-height: 26px;
	margin-bottom: 7px;
	text-align: center;
	

}
	



.texto-topo{
	font-family: "Roboto Serif", serif;
	font-weight: 400;
	color:rgb(255, 255, 255);
	font-size: 20px;
	margin-bottom: 20px;
}

.texto2{
	font-family: "Roboto Serif", serif;
	font-weight: 400;
	color:rgb(255, 255, 255);
	font-size: 15px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;



}



/* ESTRUTURA */

header{
	width: 100%;
	height: 80px;
	background-color: #E21E1E;
}

.header-centro{

width: 100%;
max-width: 900px;
margin-left: auto;
margin-right: auto;
height: 80px;
display: flex;
justify-content: space-between;


}

section{
	width: 100%;
}

footer{
	width: 100%;
	height: 80px;
	background-color: #E21E1E;
padding-top: 20px;
padding-bottom: 20px;
text-align: center;
}



footer p{
font-size: 14px;
color: white;
margin-bottom: 10px;
font-family: "Roboto Serif", serif;
font-weight: 100;



}

.container-col{

	margin-left: auto;
	margin-right: auto;
	width: 100%;
	max-width: 900px;
}


.container-cool{
	display: flex;
	flex-direction: column;
	align-items: center;

}

.imagem-container{
	display: flex;
	justify-content: center;
	gap: 20px;
}

.imagem-container img {
	max-width: 100%;
	height: auto;
}





/* COLUNAS */

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

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

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

/* FLEX */

.flex-sb{
	display: flex;
	justify-content: space-between;
}

.flex-center{
	display: flex;
	justify-content: center;
}

.flex-sa{
	display: flex;
	justify-content: space-around;
}

.flex-gap-peq{
	display: flex;
	gap:20px
}

/* CORES DE FUNDO */

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

.bc-meio{
	background-color: #B80D0E;
}

.bc-meio2{
	background-color: #F77F00;
}

.bc-claro{
	background-color: #1D12B8;
}

/*PADDINGS E MARGINS*/

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

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

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


.teste{
	width: 200px;
	height: 200px;
	background-color: aqua;
	margin-left: auto;
	margin-right: auto;
}


.box-topo{
max-width: 500px;





}




.container-topo{
 width: 100%;
 height: 500px;
 background-color: #B80D0E;
margin-left: auto;
margin-right: auto;
background-image: url(imagens/imagem_topo.jpg);
max-width: 100%;
background-repeat: no-repeat;
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
}


.logo{
	display: flex;
align-items: center;
font-size: 30px;
color: white;
font-family: "Roboto Serif", serif;
	font-weight: 100;
}


nav{
align-items: center;
display: flex;


}

ul{

display: flex;
align-items: center;


}

ul a{

	text-decoration: none;
     color: white;
	 font-size: 14px;
	 font-family: "Roboto Serif", serif;

}



ul a:hover{

	text-decoration: underline;
     color: yellow;
	 
}







li{
list-style-type: none;
padding-left: 30px;

}


/* COLUNAS RESPONSIVO */

@media only screen and (max-width: 750px){


.flex-gap-peq{
flex-wrap: wrap;
}

.col-2{

    width: 100%;
}

.col-3{

	width: 100%;
}

.col-4{
width: 48%;


}








}

