@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,700');

@font-face{
	font-family: 'Mosk500';
	src: url("../fonts/Mosk-Medium-500.ttf");
}

@font-face{
	font-family: 'Mosk700';
	src: url("../fonts/Mosk-Bold-700.ttf");
}

 
/*Estilos Gerais */

html, body {
  position: relative;
  height: 100%;
} 

body {
	font-family: 'Montserrat', Arial, sans-serif;
  font-size: 14px;
  /*padding-top: 100px;*/
}

img {
	display: block;
	max-width: 100%;
}


.formphp label.nao-aparece, .formphp input.nao-aparece {
	display: none !important;
}

#form-erro span, #form-send span  {
	font-size: 18px;
	line-height: 25px;
	margin-bottom: 10px;
	display: block;
}

#form-send {
	color: #31aa39;
}

#form-erro {
	color: #f64540;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0; 
}

.btnConsulta {
	display: inline-block;
	margin-top: 60px;
	color: #fff;
	background: #ef3324;
	opacity: .8;
	border: 2px solid #fff;
	padding: 7px 20px;
	font-weight: normal;
	text-transform: uppercase;
	transition: .3s;
}

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

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

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

.btnConsulta.btn_preto {
	margin: 10px auto;
	border: 2px solid #363636;
	padding: 0 10px;
}

.btnConsulta.btn_preto h3 {
	font-size: 12px;
}

/* Header */

.login {
	z-index: 999;
	top: 0;
	width: 100%;
	height: 35px;
	position: fixed;
	background-color: #ef3324;
	color: #fff;
}

.login h2 {
	font-size: 12px;
	font-weight: normal;
	padding-top: 10px;
}

.login span a {
	color: #232323;
	text-decoration: underline; 
}

.menu {
	margin-top: 35px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  background-color: transparent;
  /*box-shadow: 0 2px 2px -2px #000; */
  border-bottom: 2px solid #7a7a7a;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; 
}

.menu img#logo {
  display: inline-block;
  width: 60px;
  height: auto;
  margin: 5px 0 0 20px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; 
}

.menu nav {
	text-align: right;
	padding: 10px 20px 0 0;
}

.menu nav ul {
	padding: 0px;
	margin: 0px;
}

.menu nav li {
	display: inline-block;
	text-align: right;
}

.menu nav li a {
	font-family: 'Montserrat', Arial, sans-serif;
	display: block;
	color: #fff;
	padding: 15px 10px;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 2px;
	float: left;
}

/*.menu nav li a::after {
	content: '';
	display: block;
	background: #ee3324;
	height: 2px;
	width: 0;
	margin-top: 3px;
	-webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.menu nav li a:hover::after, .menu nav li a.active::after {
	width: 100%;
}*/

.menu nav ul li a span {
	color: #ee3324;
}

.menu.smaller {
	background-color: #232323;
	-webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

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

.mobile_btn {
	display: block;
	color: red;
	width: 36px;
	height: 36px;
	border-top: 4px solid;
	margin: 20px 20px 5px 0;
	float: right;
	position: relative;
	cursor: pointer;
	-webkit-backface-visibility: hidden;
}

.mobile_btn::after, .mobile_btn::before {
	content: '';
	display: block;
	height: 4px;
	margin-top: 6px;
	background: currentColor;
	position: relative;
	transition: transform .2s ease;
}

.mobile_btn.active {
	border-top-color: transparent;
}

.mobile_btn.active::after {
	margin-top: 0px;
	top: 2px;
	transform: rotate(45deg);
}

.mobile_btn.active::before {
	margin-top: 0px;
	top: 6px;
	transform: rotate(135deg);
}

.menu_nav.mobile_menu {
	position: fixed;
	background: #232323;
	padding: 10px;
	top: 100px;
	right: 0px;
	opacity: 0;
	visibility: hidden;
	transform: translate3d(60px, 0px, 0px);
	transition: .3s;
}

.menu_nav.mobile_menu.active {
	opacity: 1;
	visibility: visible;
	transform: translate3d(0px, 0px, 0px);
}

.menu_nav.mobile_menu li {
	display: block;
}

.menu_nav.mobile_menu li a {
	width: 100%;
	text-align: center;
}

}

/* Introdução */

.introducao {
	width: 100%;
	height: 100%;
	background: url("../img/bg_consultonline.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: 50px;
	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;
 }

.consultoria {
	margin-top: 50px;
	margin-bottom: 80px;	
}



/* consultoriaonline */

.consultonline {
	width: 100%;
	height: 100%;
	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_consultonline {
	margin: 0 auto;
}

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

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





/* Consultoria Esportiva */

.consultoriaEsportiva, .consultoriaNutricional {
	margin: auto;
	width: 450px;
}

.consultoriaEsportiva a {
	text-decoration: none;
	color: #232323;
}

.consultoriaEsportiva a:hover {
	opacity: 0.89;
	transition: .2s;
}

.imgConsultoriaEsportiva {
  height: 250px;
  position: relative;
  background-size: cover;
  text-align: center; 
  display: flex;
  align-items: center;
  justify-content: center;
}

.textoConsultoriaEsportiva {
	text-align: left;
	background-color: #363636;
	padding: 25px ; 
}

.textoConsultoriaEsportiva p {
	font-family: 'Montserrat';	
	font-size: 22px;
	line-height: 34px;
	color: white;	
	text-transform: uppercase;	
}

.textoConsultoriaEsportiva h3 {
	font-size: 12px;
	text-transform: uppercase;
	color: #FFF;	
}

.textoConsultoriaEsportiva strong {
	color: #ef3324;
}

.textoConsultoriaEsportiva span  {
	color: #ef3324; /* vermelho */
	font-family: 'Montserrat';	
	font-size: 40px;	
	line-height: 50px;
	text-transform: uppercase;
	font-weight: bold;	
}

.textoConsultoriaEsportiva i {
	font-size: 40px;
	font-weight: normal;	
	color: white;
	padding-left: 50px;
}

.textoEsportiva p {
	text-align: left;
	max-width: 400px;
	padding: 30px;
	font-family: 'Mosk500';
	font-size: 14px;
	font-weight: normal;
}

.retantugloVermelhoConsultoria {
  background-color: rgb(239, 51, 36);
  width: 100%;
  height: 10px;
}

/* Consultoria Nutricional */

.imgConsultoriaNutricional {
	width: 100%;
  height: 250px;
  position: relative;
  background-size: cover;
  text-align: center; 
  display: flex;
  align-items: center;
  justify-content: center;
}

.textoConsultoriaNutricional {
	text-align: left;
	background-color: #363636;
	padding: 25px ; 
}

.textoConsultoriaNutricional p {
	font-family: 'Montserrat';	
	font-size: 22px;
	line-height: 34px;
	color: white;	
	text-transform: uppercase;	
}

.textoConsultoriaNutricional h3 {
	font-size: 12px;
	text-transform: uppercase;
	color: #FFF;	
}

.textoConsultoriaNutricional strong {
	color: #ef3324;
}

.textoConsultoriaNutricional span  {
	color: #ef3324; /* vermelho */
	font-family: 'Montserrat';	
	font-size: 40px;	
	line-height: 50px;
	text-transform: uppercase;
	font-weight: bold;	
}

.textoConsultoriaNutricional i {
	font-size: 40px;
	font-weight: normal;	
	color: white;
	padding-left: 50px;
}

.textoNutricional p {
	text-align: left;
	max-width: 400px;
	padding: 30px;
	font-family: 'Mosk500';
	font-size: 14px;
	font-weight: normal;
}

/* Treinador */

.treinador {
	width: 100%;
	height: 100%;
	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;
}

.textoTreinador {
	margin-bottom: 100px;
}

.textoTreinador h1 {
	margin-top: 80px;
	font-weight: bold;
	font-family: 'Montserrat';
	font-size: 18px;
	line-height: 25px;
	color: white;
	text-transform: uppercase;		
}

.textoTreinador strong {
	font-weight: bold;
	color: #ef3324;
} 

.textoTreinador h2 {
	font-size: 42px;
	line-height: 58px;
	text-transform: uppercase;
	font-weight: bold;
	color: #ef3324;	
}

.textoTreinador p {	
	max-width: 300px;
	font-family: 'Mosk500';
	font-size: 14px;
	line-height: 20px;
	color: white;
	margin-top: 50px;
}

.textoTreinador2 {
	font-family: 'Mosk700';
	font-weight: bold;
}

/* Como funciona */
.comoFunciona {
	text-align: center;
	margin-top: 80px;
}

.comoFunciona h1 {
	text-transform: uppercase;
	color: #363636;
	font-size: 20px;
	line-height: 25px;
	font-weight: bold;
}

.comoFunciona strong {
	text-transform: uppercase;
	color: #ef3324;
	font-size: 20px;
}

.comoFunciona h2 {
	color: #ef3324;
	font-size: 38px;
	line-height: 45px;
	text-transform: uppercase;
	font-weight: bold;
	padding-bottom: 60px;
}

.imgComoFunciona {
	margin: 0 auto;
	padding-top: 50px;
}

/*Como funciona2*/

.itemComoFunciona {
	margin: 0 auto;
	/*background-color: #363636;*/
	margin-bottom: 100px;
}

.itemComoFunciona h3 {	
	background-color: #FFF;
	font-family: 'Mosk500';
	font-size: 24px;
	line-height: 20px;
	color: #363636;
	padding-bottom: 20px;
	text-transform: uppercase;
}

.itemComoFunciona strong {
	font-weight: bold;
	color: #ef3324;
} 

.itemComoFunciona img {
	width: auto;
	height: 80px;
	margin: 0 auto;
}

.itemComoFunciona p {
	padding-top: 20px;
	max-width: 350px;
	margin: 0 auto;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	text-transform: uppercase;
}

/* Resultados - Alunos */

.resultadosAlunos {		
	background-color: #ef3324;
	margin-top: 80px;
	padding: 80px 0;	
}

.resultadosAlunos h1 {
	text-align: center;
	text-transform: uppercase;
	color: #363636;
	font-size: 20px;
	line-height: 25px;
	font-weight: bold;
}

.resultadosAlunos strong {
	text-align: center;
	text-transform: uppercase;
	color: white;
	font-size: 20px;
}

.resultadosAlunos h2 {
	text-align: center;
	color: white;
	font-size: 38px;
	line-height: 45px;
	text-transform: uppercase;
	font-weight: bold;
}

.resultadosAlunos img {
	width: 380px;
	height: 381px;
}

.resultadosTodosAlunos {
	text-align: center;
	margin-top: 50px;	
}

.imgResultadosAluno1 {
	border: 2px solid white;
}

.resultadosTodosAlunos2 {
	padding-top: 20px;
}

/* Planos e Preços */

.plano2 {
	margin-top: 100px;
}

.plano2 p {
	/*max-width: 600px;*/
	text-align: center;
	font-size: 16px;
	margin: 00px 0 60px 0;
}

.planosPrecos {		
	background-color: #FFF;	
	margin-top: 80px;
}

.planosPrecos h1 {
	text-align: center;
	text-transform: uppercase;
	color: #363636;
	font-size: 20px;
	line-height: 25px;
	font-weight: bold;
}

.planosPrecos strong {
	text-align: center;
	text-transform: uppercase;
	color: #ef3324;
	font-size: 20px;
}

.planosPrecos h2 {
	text-align: center;
	color: #ef3324;
	font-size: 38px;
	line-height: 45px;
	text-transform: uppercase;
	font-weight: bold;
	padding-bottom: 50px;
}

.planos button {
	display: inline-block;
	margin: 10px auto;
	color: #fff;
	background: #ef3324;
	opacity: .8;
	border: 2px solid #363636;
	padding: 5px 75px;
	font-weight: normal;
	text-transform: uppercase;
	transition: .3s;
}

.planos button:hover {
	background: #363636;	
	border: 2px solid #ef3324;	
	color: #FFF;
	opacity: .89;

	font-weight: normal;
}

.planos button h3 {
	font-size: 15px;
	display: inline-block;
	vertical-align: middle;
}

.planos button i {
	font-size: 30px !important;
	padding: 0 0 0 10px;
	vertical-align: middle;
}

/*Basic*/

.planos {
	text-align: center;
	padding-bottom: 30px;
	border-bottom: 10px solid #363636;
}

.planos h1 {
	color: #363636;
	text-transform: uppercase;
	font-size: 18px;
}

.planos h1 strong {
	color: #ef3324;
	font-size: 18px;
}

.planos h4 {
	color: #363636;
	font-size: 30px;
	line-height: 36px;
	font-weight: bold;
}

.planos h4 strong {
	color: #ef3324;
	font-weight: bold;
	font-size: 70px;
	line-height: 70px;
}

.planos p {
	color: #363636;
	font-family: 'Mosk500';
	font-size: 13px;
	line-height: 20px;
}

.planos p strong {
	text-transform: none;
	font-size: 13px;
	color: #363636;
	font-weight: bold;
}	

.planos1 h1 {
	color: #ef3324;
}

.planos1 h2 {
	color: #363636;
	font-size: 16px;
}


.planoUnico2 {
	width: 100%;

}

.planoUnico {
	width: 100%;
   display: flex;
   flex-direction: row;
   justify-content: center;
   align-items: center
}


/* Depoimentos */
.depoimentos {
	background-color: #ef3324;
	margin-top: 80px;
	padding: 80px 0;
}

.depoimentos h1 {
	text-align: center;
	text-transform: uppercase;
	color: #363636;
	font-size: 20px;
	line-height: 25px;
	font-weight: bold;
}

.depoimentos strong {
	text-align: center;
	text-transform: uppercase;
	color: white;
	font-size: 20px;
}

.depoimentos h2 {
	text-align: center;
	color: white;
	font-size: 38px;
	line-height: 45px;
	text-transform: uppercase;
	font-weight: bold;
}

/* Quote */

.depoimentosClientes {
	width: 900px;
	margin: 0 auto;
}

.slick-slider {
  margin: 30px auto 50px;
}

.slick-prev,
.slick-next {
  color: white;
  opacity: 1;
  height: 40px;
  width: 40px;
  margin-top: -20px;
}
.slick-prev path,
.slick-next path {
  fill: rgba(255, 255, 255, 0.4);
}
.slick-prev:hover path,
.slick-next:hover path {
  fill: #FFFFFF;
}

.slick-prev {
  left: -35px;
}

.slick-next {
  right: -35px;
}

.slick-prev:before,
.slick-next:before {
  content: none;
}

.slick-dots li button:before {
  color: rgba(255, 255, 255, 0.4);
  opacity: 1;
  font-size: 8px;
}

.slick-dots li.slick-active button:before {
  color: #FFFFFF;
}

.quote-container {
  min-height: 200px;
  font-size: 36px;
  margin: 0 20px;
  position: relative;
}
.quote-container:hover {
  cursor: -webkit-grab;
  cursor: grab;
}
.quote-container .portrait {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 140px;
  width: 140px;
  overflow: hidden;
}
.quote-container .portrait img {
  display: block;
  height: auto;
  width: 100%;
}
.quote-container .quote {
  position: relative;
  z-index: 600;
  padding: 40px 0 40px 180px;
  margin: 0;
  font-size: 20px;
  font-style: italic;
  line-height: 1.4 !important;
  font-family: Calibri;
  color: white;
}
.quote-container .quote p {
  position: relative;
  margin-bottom: 20px;
}
.quote-container .quote p:first-child:before {
  content: '\201C';
  color: rgba(255, 255, 255, 0.44);
  font-size: 7.5em;
  font-weight: 700;
  opacity: 1;
  position: absolute;
  top: -.4em;
  left: -.2em;
  text-shadow: none;
  z-index: -10;
}
.quote-container .quote cite {
  display: block;
  font-size: 14px;
}
.quote-container .quote cite span {
  font-size: 16px;
  font-style: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.dragging .quote-container {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.octogon {
  -webkit-clip-path: polygon(50% 0%, 38.11% 6.7%, 24.99% 6.72%, 18.06% 18.44%, 6.7% 25%, 6.56% 38.64%, 0% 50%, 6.7% 61.89%, 6.7% 75%, 18.44% 81.94%, 25% 93.3%, 38.64% 93.44%, 50% 100%, 61.88% 93.3%, 75% 93.3%, 81.94% 81.56%, 93.3% 74.9%, 93.44% 61.36%, 100% 50%, 93.3% 38.11%, 93.3% 25%, 81.56% 18.06%, 74.96% 6.7%, 61.36% 6.56%, 50% 0%);
  clip-path: url(#octogon);
  height: 140px;
  width: 140px;
}

/* Fim Quote */


/* Blog */

.blog {		
	background-color: #232323;	
}

.blog h1 {
	text-align: center;
	text-transform: uppercase;
	color: #FFF;
	font-size: 20px;
	line-height: 25px;
	font-weight: bold;
	margin-top: 30px;
}

.blog strong {
	text-align: center;
	text-transform: uppercase;
	color: #ef3324;
	font-size: 20px;
}

.blog h2 {
	text-align: center;
	color: #ef3324;
	font-size: 38px;
	line-height: 45px;
	text-transform: uppercase;
	font-weight: bold;
	padding-bottom: 50px;
}

.blogPost1 {	
	padding-bottom: 30px;
	border-bottom: 10px solid #ef3324;
	margin-bottom: 50px;
	height: 500px;
}


.blogPost1 p {
	color: #FFF;
	font-size: 10px;
	font-weight: bold;
	padding: 20px 0;
	text-transform: uppercase;
}

.blogPost1 h1 {
	color: #ef3324;
	font-size: 17px;
	font-weight: bold;
	height: 60px;
	text-transform: uppercase;
}

.blogPost1 strong {
	color: #FFF;	
	font-size: 17px;
}

.blogPost1 span {
	font-family: 'Mosk500';
	font-size: 14px;	
	text-align: left;
	padding-top: 20px;
	color: #e3e3e3;
}

.blogPost1 a {
	color: #FFF; 
	text-transform: uppercase;	
	text-decoration: underline; 	
	font-size: 13px;
}

.rodape {
	width: 100%;
	height: 35px;
	background-color: #ef3324;
}
/*certificado*/

.certificado {
	margin: 0 auto;
	/*background-color: #363636;*/
	margin-bottom: 100px;
}


.certificado img {
	width: auto;
	height: 80%;
	margin: 0 auto;
}

