 /* Comentario */

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

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

/*Tipografia*/



.titulo-A{
	font-size: 20px;
	font-family: Georgia, 'Times New Roman', Times, serif;
	margin-bottom: 30px;
	

}

.titulo-B {
	font-size: 40px;
	font-family: Arial, Helvetica, sans-serif;
	margin-bottom: 30px;
	margin-left: 40px;
}

.texto{
    font-size: 16px;
	line-height: 26px;
	color: black;
	margin-bottom: 10px;
}



/*cores*/


.cor-A{
	color: #ce0303
	
	
}

.cor-B {
	color: #e80a0a;
}

.cor-C{
	color: #0660b983;
}

.cor-fundo-A{
	background-color: #330101;


}
.cor-fundo-B {
	background-color: #c00202;


}


.cor-fundo-C {
	background-color: #c54e4e;


}







/*Estrutura*/

header{
	
}

section{
	
}

footer{
	
}

.container{

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

.grelha-12-col{
	display: grid;
	grid-template-columns: repeat(12,1fr);
	gap: 20px;
	

}

.item-12-col{
	grid-column:span 12;
	margin-bottom: 10px;
	font-size: 40px;
}

.item-6-col {
	grid-column: span 6;
	margin-bottom: 10px;
	font-size: 30px;
}

.item-4-col {
	grid-column: span 4;
	
	margin-bottom: 10px;
}

.item-3-col {
	grid-column: span 3;
	
	margin-bottom: 10px;
}


/*MARGIN 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-top: 30px;
	padding-bottom: 30px;
}