/* 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-vermelho{
         color: #D71F37;
         font-size: 30px;
         margin-bottom: 10px;
		 font-family: "Roboto Serif", serif;
		 font-weight: 400;
	}

	.titulo-azul{
		color: #46D2FE;
		font-size: 30px;
		margin-bottom: 10px;
		font-family: "Roboto Serif", serif;
		font-weight: 100;
   }

	.h1e{
		 color: #181818;
		 font-size: 30px;
         margin-bottom: 10px;
		 font-family: "Roboto Serif", serif;
		 font-weight: 200;		
			}
 
	.texto{
		 color: #b3b3b3;
		 font-size: 14px;
		 line-height: 24px;
		 margin-bottom: 10px;
		 font-family: "Roboto Serif", serif;
		 font-weight: 400;
	}

	.texto2{
		color: #202020;
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 10px;
		font-family: "Roboto Serif", serif;
		font-weight: 400;
   }


/* ESTRUTURA */

header{
	width: 100%;
}

section{
	width: 100%;
}

footer{
	width: 100%;
}

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

}

.logo{
	color: #ffffff;
	font-size: 30px;
	font-family: "Roboto Serif", serif;
	font-weight: 400;

}

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

nav ul{
	display: flex;

}

nav a{
	color: #ffffff;
	text-decoration: none;
	font-size: 18px;
	font-family: "Roboto Serif", serif;
	font-weight: 400;
}

nav a:hover{
	color: #46D2FE;
	text-decoration: underline;
}


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

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

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

footer p{
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-family: "Roboto Serif", serif;
	font-weight: 400;
}

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

}

.jonh{
	text-align: center;
	margin-left: 20px;
	margin-right: 20px;

}

.dav{
	text-align: center;
	margin-left: 20px;
	margin-right: 20px;

}

.d-container{
	width: 100%;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
	align-items: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url(imagens/lastpage.jpg);
	justify-content: center;
	display: flex;

}



/* COLUNAS */

.col-h1{
	width: 70%;
	margin-bottom: 10px;
}

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

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

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


/* FLEX */

.flex{
	display: flex;
}

.gap-pequeno{
	gap: 20px;
}

.gap-medio{
	gap: 30px;
}

.gap-grande{
	gap: 40px;
}


/* CORES DE FUNDO */

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

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

.bc-claro{
	background-color: #3f0111;
}


/* MARGENS 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: 2%;
}


    /*
  Colunas Responsivo
   */

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

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

	.col-3{
		width: 100%;
	}

	.col-4{
		width: 48%;
	}
   }