/* 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: 80px;
	font-family: 'Times New Roman', Times, serif;
	margin-bottom: 50px;
}


.titulo-B{
	font-size: 50px;
	font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
	margin-bottom: 30px;
	margin-top: 30px;
}


.titulo-C{
	font-size: 30px;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	margin-bottom: 50px;
	margin-top: 50px;
}


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

/* Cores */

.cor-A{
	color: #0000ff;
}


.cor-B{
	color: #a52a2a;
}


.cor-fundo-A{
	background-color: #902923;
}


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


.cor-fundo-C{
	background-color: #748cab;
}

/* Estrutura */

header{
	height: 30px;
}


section{}


footer{
	height: 30px;
}


.container{
	background-color: ;
	width: 100%;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}


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


.item-12-col{
	grid-column: span 12;
	border: ;
	background-color: ;
	margin-bottom: 10px;
}


.item-6-col{
	grid-column: span 6;
	border: ;
	background-color: ;
	margin-bottom: 10px;
}


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


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


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