/* 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;
	width: 100%;
}



/* TEXTO */

	.titulo-A{
		font-family: "Roboto Serif", serif;
color: red;
font-size: 50px;
margin-top: 30px;

	}


	.titulo-B{
		font-family: "Roboto Serif", serif;
		font-weight: 250;
color: rgb(255, 255, 255);
font-size: 20px;
margin-bottom: 10px;
text-align: center;

	}

	.titulo-V{
		font-family: "Roboto Serif", serif;
		font-weight: 555;
		color: #ffffff;
		font-size: 25px;
		margin-top: 44px;
	text-align: center;
	}
		



.titulo-C{
	font-family: "Roboto Serif", serif;
	font-weight: 400;
	color: #FCB874;
	font-size: 30px;
	margin-bottom: 10px;
	text-align: center;
}



	.texto{
		font-family: "Roboto Serif", serif;
		font-weight: 200;
		color: white;
		font-size: 17px;
		line-height: 30px;
		margin-bottom: 20px;
		text-align:center

	}

	.texto4{
		font-family: "Roboto Serif", serif;
		font-weight: 150;
		color: white;
		font-size: 20px;
		line-height: 25px;
		margin-bottom: 20px;
		text-align: center;

	}


	.intro{
		font-family: "Roboto Serif", serif;
		font-weight: 200;
		color: white;
		font-size: 16px;
		line-height: 24px;
		margin-bottom: 10px;
	}

.intro-texto{
	font-family: "Roboto Serif", serif;
	font-weight: 555;
	color: rgb(0, 0, 0);
	font-size: 24px;
	line-height: 34px;
	margin-bottom: 50px;
	max-width: 600;
	margin-left: auto;
	margin-right: auto;
	text-align: center;

}
.intro-textinho{
	font-family: "Roboto Serif", serif;
	font-weight: 150;
	color: white;
	font-size: 16px;
	line-height: 34px;
	margin-bottom: 40px;
	max-width: 600;
	margin-left: auto;
	margin-right: auto;
	text-align: center;

}

	

/* ESTRUTURA */

	.teste{
		width: 50%;
		height: 600px;
		background-color: yellow;
	}


	header{
		width: 100%;
	}

	section{
		width: 100%;
	}


	footer{
		width: 100%;
	}
  
	.header-container{
		width: 100%;
		max-width: 900px;
		background-color: 430000;
		margin-left: auto;
		margin-right: auto;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.logo{
		color: #000000;
		font-size: 30px;
		font-family: "Roboto Serif", serif;
		font-weight: 700;
		}
		
		nav li{
		list-style-type: none;
		padding-left: 30px;
		}
		
		nav ul{
		display: flex;
		}
		
		nav a{
		color: rgb(0, 0, 0);
		text-decoration: none;
		font-size: 18px;
		font-family: "Roboto Serif", serif;
		font-weight: 400;
		}
		
		nav a:hover{
		color: yellow;
		text-decoration: underline;
		}

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

	.container-topo{
		height: 300px;
		width: 100%;
		max-width: 900px;
		margin-left: auto;
		margin-right: auto;
		background-image: url(imagens/iron\ maiden.jpg);
		background-size: cover;
		background-repeat: no-repeat;
	    display: flex;
		justify-content: center;
		align-items: center;
	}

     .caixa-topo{
		text-align: center;}
		



	.footer-container{
		width: 100%;
		max-width: 900px;
		background-color:#430000;
		margin-left: auto;
		margin-right: auto;
	}
	
	footer p{
		color: white;
		margin-bottom: 10px;
		text-align: center;
		font-size: 18px;
		font-family: "Roboto Serif", serif;
font-weight: 400;
	}


	.caixa-topo{
		text-align: center;
		margin-bottom: 50px;
		
	}
                       
	/* COLUNAS */

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

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

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

	/* FLEX */

	.flex{
		display: flex;
			
}

	.gap-peq{
		gap:20px;
	}

	.gap-med{
		gap:30px;
	}
	.gap-gran{
		gap:40px;
	}


	/* CORES DE FUNDO */

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

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

	.bc-claro{
		background-color: #5F0101;
	}
	
	/* MARGINS E PADDINGS */

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

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

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

   /*Colunas Responsivo */

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


	.col-2{
		width: 100%;
		flex: auto;
	}

	.col-3{
		width: 33.333%;
	}

	.col-4{
		width: 25%;
	}

   }
   
