.introducao {
	width: 100%;
	height: 400px;
	background: url("../img/bg_introducao.jpg") no-repeat center;
	background-size: cover;
	text-align: left;
	/* habilita o flex nos filhos diretos */
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
     /* centraliza na vertical */
  -ms-align-items: center;
  -webkit-align-items: center;
  align-items: center;
}

.texto_introducao {
	margin: 0 auto;
}

.texto_introducao h1 {
	padding-top: 80px;
	font-size: 60px;
	max-width: 400px;
	display: block;
	color: #fff;
	font-weight: bold;
	text-transform: uppercase;
}

.texto_introducao h1 span {
	font-family: 'Mosk500';
	color: #ef3324;
}

.retangulo_vermelho {
  background-color: rgb(239, 51, 36);
  position: absolute;
  width: 100%;
  height: 15px;
  margin-top: 10px;
 }

 /*Postagem*/

 .postagem {
 	background-color: #FFF;
 }

.tituloPostagem {
	text-align: center;
}

 .tituloPostagem h1 {
 	text-align: center;
	text-transform: uppercase;
	color: #ef3324;
	font-size: 30px;
	line-height: 35px;
	font-weight: bold;
	margin: 30px 0;	 
 }

 .tituloPostagem h1 strong {
 	color: #232323;
 }

.tituloPostagem span {
	color: #232323;
  font-size: 13px;
  float: left;
  font-weight: bold;
}

.tituloPostagem p {
	color: #ef3324;
  font-size: 13px;
  float: right;
  font-weight: bold;
}
 .textoPostagem {
 	margin: 0 auto;
	width: 900px;
	padding: 30px 0;	
 }

 .textoPostagem img {
 	border: 2px solid #232323;
 	margin: 0 auto;
 }

 .textoPostagem p {
 	padding-top: 40px;
 	text-align: justify;
 	font-size: 16px;
 	line-height: 25px;
 	color: #232323;
 }


 /*Botao Voltar*/

 .btnVoltar {
 	text-align: center;
 	margin: 50px 0;
 }

 .btnVoltarIndex {
	display: inline-block;
	margin-top: 30px;
	color: #fff;
	background: #ef3324;
	opacity: .8;
	border: 2px solid #232323;
	padding: 5px 70px;
	font-weight: normal;
	text-transform: uppercase;
	transition: .3s;
}

.btnVoltarIndex h3 {
	font-size: 15px;
	display: inline-block;
}

.btnVoltarIndex:hover {
	opacity: 1;
	transition: .3s;
}

.btnVoltarIndex i {
	font-size: 40px;
	padding: 0 0 5px 0;
	vertical-align: middle;
}

.quote {
	width: 100%;
	height: 200px;
	text-align: center;
	background: url("../img/bg_treinador.jpg") no-repeat center;
	background-size: cover;
	text-align: left;
	/* habilita o flex nos filhos diretos */
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
     /* centraliza na vertical */
  -ms-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  /* centraliza na horizontal */
  -ms-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 60px;
}

.quote blockquote {
	width: 700px;
	margin: 0 auto;
	text-align: center;
}

.quote blockquote p {
	color: #FFF;
	font-size: 16px;
	line-height: 20px;
}

.quote blockquote cite span {
	font-style: italic;
	font-size: 14px;
	color: #FFF;
}


@media only screen and (max-width: 767px) {
	.textoPostagem {
		width: 300px;
	}

	.textoPostagem img {
		width: 300px;
	}

	.textoPostagem p {
		font-size: 14px;
		line-height: 18px;
	}

	.btnVoltar {
		margin: 15px 0;
	}

	.quote {
		margin-top: 30px;
	}

	.quote blockquote {
		width: 300px;
	}
	.quote blockquote p {
		font-size: 12px;
	}
	.quote blockquote cite span {
		font-size: 10px;
	}	

}