body{
	font-family: 'Merriweather', serif;
	font-size: 14px;
	color: #515151;
}

/* HEADER */
header{
  height: 50px;
	position: fixed;
	top: 0;
	width: 100%;
  z-index: 5;
  transition: all .1s ease-in-out;
}
header.scroll{
  background-color: #21252b;
}
header h1{
  background: url(../imgs/logo.png) no-repeat;
  background-size: 100% auto;
  height: 30px;
  margin: 10px 0 0;
  overflow: hidden;
  text-indent: -9999px;
  width: 75px;
}
header nav{
  background-color: #21252b;
  height: 100%;
  left: 0;
  padding: 50px 0 0;
  position: fixed;
  top: 0;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all .2s ease-in-out;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.menuopen header nav{
  visibility: visible;
  opacity: 1;
}
header nav ul{
  transform: translateY(-30px);
  transition: all .3s cubic-bezier(0.42, 0, 0.15, 1.49);
}
.menuopen header nav ul{ transform: translateY(0); }
header nav li{
  padding-bottom: 25px;
  text-align: center;
}
header nav li a{
  color: #fff;
  font-weight: 300;
  font-size: 18px;
}
header .bt-menu{
  padding-top: 10px;
  position: absolute;
  right: 5px;
  top: 0;
  height: 40px;
  width: 40px;
}
header .bt-menu div,
header .bt-menu:after,
header .bt-menu:before{
  background-color: #2af4c0;
  content: "";
  display: block;
  height: 3px;
  margin-top: 5px;
  width: 30px;
  transform-origin: 4px 2px;
  transition: all .3s cubic-bezier(0.42, 0, 0.15, 1.49);
}
.menuopen header .bt-menu div{ opacity: 0; }
.menuopen header .bt-menu:before{
  transform: rotate(45deg);
}
.menuopen header .bt-menu:after{
  transform: rotate(-45deg);
}

/* HOME */
.home{
	background: url(../imgs/bg-intro.jpg) no-repeat center;
  background-size: cover;
	height: 100vh;
  position: relative;
}
.home:before{
  background: rgba(33,37,43,.9);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.home .box{
  color: #abacad;
  left: 0;
  padding: 0 20px;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
.home .box h2{
  color: #fff;
  font-weight: 300;
  font-style: italic;
}
.home .box .divisor{
  background-color: #fff;
  margin: 20px auto;
  height: 1px;
  opacity: .5;
  width: 120px;
}
.home .box p span{ display: block; }
.home .box .bt{
  border: 1px solid #2af4c0;
  border-radius: 4px;
  color: #2af4c0;
  display: block;
  font-size: 16px;
  font-weight: 300;
  height: 40px;
  line-height: 38px;
  margin: 60px auto 0;
  text-align: center;
  text-transform: uppercase;
  width: 160px;
}

/* SOBRE */
.sobre h2 { font-size: 24px; }
.sobre h2 strong{ font-size: 28px; }
.sobre h2 strong,
.sobre h2 span{ color: #c23135; }
.sobre .infografico{ padding-bottom: 20px; }
.sobre .infografico h3{
  font-size: 18px;
  margin-top: 30px;
  text-transform: uppercase;
}
.sobre .infografico .item1 h3{ color: #a7ce9c; }
.sobre .infografico .item2 h3{ color: #62a493; }
.sobre .infografico .item3 h3{ color: #c30910; }


/* VANTAGENS */
.vantagens{
  background: url(../imgs/bg-vantagens.gif);
  padding: 30px 0 50px;
  position: relative;
}
.vantagens .bgtit{
  background: url(../imgs/bg-tit-vantagens.png) no-repeat center;
  background-size: auto 100%;
  height: 48px;
  position: absolute;
  left: 0;
  top: -20px;
  width: 100%;
}
.vantagens h2{
  color: #418676;
  font-size: 24px;
  margin-bottom: 20px;
}
.vantagens .lista{
  border: 3px dotted rgba(255,255,255,.5);
  border-radius: 10px;
  overflow: hidden;
  padding: 15px 0 15px 15px;
}
.vantagens .lista li{
  float: left;
  padding: 0 15px 25px 0;
  text-align: center;
  width: 50%;
}
.vantagens .lista li:nth-child(2n+1){ clear: left; }
.vantagens .lista li div{
  background: #848484 no-repeat center;
  background-size: 24px auto;
  box-shadow: 4px 4px 10px rgba(0,0,0,.1) inset;
  border-radius: 50%;
  margin: 0 auto;
  height: 50px;
  width: 50px;
}
.vantagens .lista li.item1 div{ background-image: url(../imgs/ico-1.png); }
.vantagens .lista li.item2 div{ background-image: url(../imgs/ico-2.png); }
.vantagens .lista li.item3 div{ background-image: url(../imgs/ico-3.png); }
.vantagens .lista li.item4 div{ background-image: url(../imgs/ico-4.png); }
.vantagens .lista li.item5 div{ background-image: url(../imgs/ico-5.png); }
.vantagens .lista li.item6 div{ background-image: url(../imgs/ico-6.png); }
.vantagens .lista li.item7 div{ background-image: url(../imgs/ico-7.png); }
.vantagens .lista li.item8 div{ background-image: url(../imgs/ico-8.png); }
.vantagens .lista li.item9 div{ background-image: url(../imgs/ico-9.png); }
.vantagens .lista li.item10 div{ background-image: url(../imgs/ico-10.png); }
.vantagens .lista li.item11 div{ background-image: url(../imgs/ico-11.png); }
.vantagens .lista li.item12 div{ background-image: url(../imgs/ico-12.png); }
.vantagens .lista li span{
  display: block;
  font-size: 10px;
  padding-top: 10px;
}

/* PARA VOCE */
.para-voce{ 
  margin-top: -20px;
  padding-bottom: 30px;
  position: relative; 
}
.para-voce .tit{
  background: url(../imgs/bg-tit-para-voce.png) no-repeat center;
  background-size: auto 100%;
  height: 82px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.para-voce .container{ position: relative; }
.para-voce h2{
  color: #fff;
  font-size: 28px;
  margin-top: 25px;
}
.para-voce .icons ul{ 
  overflow: hidden; 
  padding: 30px 0 10px;
}
.para-voce .icons li{
  color: #a03134;
  float: left;
  font-style: italic;
  font-weight: bold;
  font-size: 12px;
  padding-bottom: 20px;
  text-align: center;
  width: 50%;
}
.para-voce .icons li div{
  background: #ecbfc0 no-repeat center;
  background-size: 30px auto;
  border-radius: 10px;
  height: 55px;
  margin: 0 auto 5px;
  width: 55px;
}
.para-voce .icons li.item1 div{ background-image: url(../imgs/ico-para-voce-1.png); }
.para-voce .icons li.item2 div{ background-image: url(../imgs/ico-para-voce-2.png); }
.para-voce .icons li.item3 div{ background-image: url(../imgs/ico-para-voce-3.png); }
.para-voce .icons li.item4 div{ background-image: url(../imgs/ico-para-voce-4.png); }
.para-voce .icons li.item5 div{ background-image: url(../imgs/ico-para-voce-5.png); }
.para-voce .icons li.item6 div{ background-image: url(../imgs/ico-para-voce-6.png); }
.para-voce h3{
  color: #a03134;
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 20px;
}
.para-voce .lista-vantagens li{
  font-size: 12px;
  position: relative;
  padding: 0 0 15px 25px;
}
.para-voce .lista-vantagens li span{
  color: #a03134;
  font-size: 18px;
  font-style: italic;
  left: 0;
  top: -5px;
  position: absolute;
}
.para-voce .lista-vantagens p{
  clear: both;
  font-style: italic;
  font-size: 16px;
}

/* AMBIENTE */
.ambiente{ position: relative; }
.ambiente .bgtit{
  background: url(../imgs/bg-tit-ambiente.png) no-repeat 0 center;
  background-size: auto 100%;
  height: 40px;
  position: absolute;
  left: 0;
  top: -20px;
  width: 100%;
}
.ambiente .tit h2{ 
  color: #c03034;
  font-size: 22px;
  font-weight: 300;
  margin-top: 0;
}
.ambiente .tit h2 strong{ font-size: 28px; }
.ambiente .conteudo{
  background: #acbdc7;
  margin: 10px 0 0;
  padding: 20px 0 60px;
  position: relative;
}
.ambiente .itens .item{
  background-color: rgba(13,26,34,.7);
  border-radius: 5px;
  color: #fff;
  margin-top: 20px;
  overflow: hidden;
  padding: 15px;
}
.ambiente .itens .item h3{
  margin: 0 0 15px;
  font-size: 18px;
  font-weight: 300;
  text-transform: uppercase;
}
.ambiente .itens .item p{
  color: #b8c7d0;
  font-size: 11px;
  font-weight: 300;
  margin-top: 15px;
  padding-right: 60px;
}
.ambiente .itens .item .img{
  background: no-repeat center;
  background-size: cover;
  box-shadow: 3px 3px 10px rgba(0,0,0,.2);
  height: 68vw;
  width: 100%;
}
.ambiente .itens .item .zoom{
  color: #c03034;
  float: right;
  font-size: 40px;
  line-height: 40px;
  float: right;
  margin-top: -50px;
}.ambiente .itens .item .zoom .texto{ display: none; }
.modal{
  background: rgba(0,0,0,.9);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transform: scale(.9);
  transition: all .4s cubic-bezier(0.73, -0.37, 0.22, 1.4);
}
.modal.ativo{
  opacity: 1;
  transform: scale(1);
  visibility: visible;
}
.modal .bt-fechar{
  height: 40px;
  position: absolute;
  right: 5px;
  top: 5px;
  width: 40px;
}
.modal .bt-fechar:before,
.modal .bt-fechar:after{
  background: #fff;
  content: "";
  height: 2px;
  left: 5px;
  position: absolute;
  top: 20px;
  width: 30px;
  transform: rotate(45deg);
}
.modal .bt-fechar:after{ 
  transform: rotate(-45deg); 
}
.modal .owl-carousel{
  margin-top: 60px;
}
.modal .owl-carousel .owl-item{
  height: 60vw;
}
.modal .owl-carousel .owl-item > div{
  background: no-repeat center;
  background-size: cover;
  height: 100%;
  width: 100%;
}
.modal .owl-carousel .owl-nav div{
  margin-top: 10px;
  top: 100%;
}
.modal h2{
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 19px 0px 0;
}

/* PLANOS */
.planos{
  margin-top: -35px;
  position: relative;
}
.planos .tit{
  background: url(../imgs/bg-tit-planos.png) no-repeat center;
  background-size: auto 100%;
  color: #fff;
  height: 206px;
  position: relative;
  z-index: 2;
}
.planos .tit h2{ 
  font-size: 28px;
  font-weight: 300;
  margin-top: 55px;
}
.planos .tit p{
  font-size: 12px;
  font-weight: 300;
}
.planos .conteudo{
  background: #2a2e31 url(../imgs/bg-planos.jpg) repeat-y center bottom;
  background-size: 960px auto;
  margin-top: -30px;
  padding-top: 30px;
}
.planos .ponta{
  background: url(../imgs/bg-planos-ponta.png) no-repeat center;
  height: 109px;
  width: 100%;
  background-size: 960px auto;
}
.planos .itens .item{
  border: 2px solid #fff;
  color: #fff;
  margin: 20px auto 0;
  padding: 20px 15px;
  width: 250px;
}
.planos .itens .item h3{
  height: 60px; 
  line-height: 1.2;
  font-size: 16px;
  margin: 0 0 10px;
  text-align: center;
  text-transform: uppercase;
}
.planos .itens .item h3 span{
  display: block;
  text-transform: none;
  font-weight: 300;
}
.planos .itens .item .preco {
  height: 120px;
  font-weight: 300;
  font-size: 18px;
  margin: -10px 0 -5px;
  text-transform: uppercase;
  text-align: center;
}
.planos .itens .item .preco strong{
  font-size: 72px;
  font-weight: 400;
} 

.planos .itens .item .precomin {height: 64px; }
.planos .itens .item .preco.precomin strong {font-size: 44px !important; }

.planos .itens .item ul{ height: 130px; }
.planos .itens .item .icon-tick{
  position: relative;
  padding: 0 0 5px 20px;
  font-weight: 300;
  font-size: 12px;
}
.planos .itens .item .icon-tick:before{
  color: #2af4c0;
  font-size: 18px;
  position: absolute;
  left: 0;
  top: 1px;
}
.planos .itens .item .bt{
  border: 2px solid #2af4c0;
  border-radius: 4px;
  color: #2af4c0;
  display: block;
  height: 40px;
  line-height: 36px;
  margin: 20px auto 0;
  text-align: center;
  text-transform: uppercase;
  width: 180px;
}

/* LOCALIZACAO */
.localizacao{
	background-color: #eaeaea;
  margin-top: -65px;
}
.localizacao .tit{
  background-color: #c1243a;
  color: #fff;
  padding-top: 30px;
}
.localizacao .tit h2{ font-size: 28px; }
.localizacao .tit p{ font-weight: 300; }
.localizacao .tit p span{ display: none; }
.localizacao .mapa{
  background: url(../imgs/mapa-mob.jpg) no-repeat center;
  background-size: cover;
  height: 300px;
  overflow: hidden;
}
.localizacao .mapa .pin{
  margin: 100px auto 0;
  display: block;
  width: 50px;
}
.localizacao .mapa .bt-rota{
  background-color: #c1243a;
  border-radius: 4px;
  display: block;
  height: 40px;
  line-height: 40px;
  margin: 50px auto;
  text-indent: 10px;
  text-transform: uppercase;
  color: #fff;
  width: 170px;
}
.localizacao .mapa .bt-rota:before{
  float: right;
  margin: 7px 10px 0 0;
  font-size: 24px;
}

/* CONTATO */
.contato{
  color: #21252b;
  margin-top: -20px;
  padding-top: 40px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.contato:before{
  background-color: #fff;
  border-top: 6px solid #519684;
  content: "";
  height: 30px;
  position: absolute;
  top: 10px;
  transform: rotate(2deg);
  left: -20px;
  width: 130%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.contato h2{
  font-weight: 300;
  font-size: 28px;
  line-height: 1;
}
.contato h2 strong{ 
  color: #519684; 
  display: block;
  font-size: 36px;
}
.contato .tipos-contatos{ 
  overflow: hidden; 
  padding: 20px 0;
}
.contato .tipos-contatos a{
  clear: both;
  color: #21252b;
  float: left;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 10px;
}
.contato .tipos-contatos a:before{
  color: #519684;
  font-size: 24px;
  float: left;
  text-align: center;
  width: 30px;
}
.contato .tipos-contatos a.icon-at:before{ font-size: 28px; }
.contato .tipos-contatos a span{ 
  float: left; 
  font-size: 14px;
}
.contato .tipos-contatos a.icon-phone{ font-size: 16px; }
.contato .tipos-contatos a.icon-phone span{ font-weight: bold; }
.contato .form{
  background-color: #519684;
  overflow: hidden;
  padding: 15px;
}
.contato .form fieldset > div{
  position: relative;
  margin-bottom: 10px;
  overflow: hidden;
}
.contato .form .campo{
  border: none;
  outline: none;
  height: 40px;
  padding: 12px 10px 0;
  width: 100%;
}
.contato .form textarea.campo{
  resize: none;
  overflow: auto;
  height: 80px;
}
.contato .form label{
  position: absolute;
  font-size: 12px;
  font-weight: 300;
  left: 10px;
  top: 12px;
  z-index: 2;
  transition: all .2s ease-in-out;
}
.contato .form .focus label{
  font-size: 8px;
  transform: translateY(-8px);
  opacity: .7;
}
.contato .form .bt-form{
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 5px;
  color: #fff;
  float: right;
  font-size: 16px;
  height: 40px;
  position: relative;
  text-align: left;
  text-indent: 10px;
  text-transform: uppercase;
  width: 130px;
}
.contato .form .bt-form:before{ 
  position: absolute; 
  font-size: 20px;
  right: 9px;
  top: 9px;
}
.contato .logo{
  display: block;
  margin: 20px auto 0;
  width: 80px;
}
.box-msg {
  background-color: #fff0ac;
  border-radius: 3px;
  box-shadow: 1px 1px 2px 1px rgba(0,0,0,.2);
  color: #343434;
  font-size: 12px;
  font-weight: 300;
  padding: 10px;
  position: absolute;
  text-align: center;
  max-width: 200px;
  top: 0;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(.6);
  transform: scale(.6);
  -webkit-transform-origin: 15px 140%;
  transform-origin: 15px 140%;
  -webkit-transition: all .4s cubic-bezier(0.73, -0.37, 0.22, 1.4);
  transition: all .4s cubic-bezier(0.73, -0.37, 0.22, 1.4);
}
.box-msg-ativo{
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.box-msg:after {
    border: 10px solid transparent;
    border-top: 14px solid #fff0ac;
    border-bottom: none;
    bottom: -10px;
  content: "";
    display: inline-block;
    height: 0;
    margin-right: 10px;
    position: absolute;
    left: 20px;
    width: 0;
}

/* FOOTER */
footer{
	background-color: #21252b;
	color: #b5b5b6;
	height: 215px;
	padding-top: 66px;
	overflow: hidden;
	position: relative;
	top: 0;
  text-align: center;
}
footer:before,
footer:after{
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    content: "";
    left: 50%;
    margin-left: -960px;
    position: absolute;
    width: 1920px;
}
footer:before{
	background-color: #fff;
    height: 104px;
    top: -58px;
    transform: skewY(2.7deg);
}
footer:after{
	background-color: #519684;
    height: 54px;
    bottom: -41px;
    transform: skewY(-1.7deg);
}
footer h2{
	font-size: 16px;
	margin: 10px 0 5px;
}
footer p{ 
	font-size: 12px;
	font-weight: 300; 
}
footer .copyright{
	font-size: 11px;
	margin-top: 15px;
}
footer .redes-sociais a{
  color: #549886;
  font-size: 32px;
  margin-left: 10px;
}

/* ICONES */
@font-face {
  font-family: 'icomoon';
  src:  url('../fonts/icomoon.eot?w4mhq5');
  src:  url('../fonts/icomoon.eot?w4mhq5#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?w4mhq5') format('truetype'),
    url('../fonts/icomoon.woff?w4mhq5') format('woff'),
    url('../fonts/icomoon.svg?w4mhq5#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}
[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-tick:before { content: "\e904"; }
.icon-chevron-right:before { content: "\e905"; }
.icon-location:before { content: "\e906"; }
.icon-zoom-in:before { content: "\e907"; }
.icon-social-twitter:before { content: "\e908"; }
.icon-social-facebook:before { content: "\e909"; }
.icon-at:before { content: "\e90a"; }
.icon-location-outline:before { content: "\e90b"; }
.icon-edit:before { content: "\e900"; }
.icon-brush:before { content: "\e901"; }
.icon-flow-merge:before { content: "\e902"; }
.icon-lightbulb:before { content: "\e903"; }
.icon-phone:before { content: "\e90c"; }