body{ font-size: 16px; }
a, button{ transition: all .2s ease-in-out; }

.toTop{
  background-color: #7ebdac;
  box-shadow: 0 0 10px rgba(0,0,0,.3);
  border-radius: 5px 5px 0 0;
  bottom: -5px;
  height: 40px;
  left: 50%;
  margin-left: -32px;
  position: fixed;
  width: 64px;
  z-index: 10;
  transform: translateY(35px);
  transition: all .3s cubic-bezier(0.42, 0, 0.15, 1.49);
}
.toTopAtivo{
  transform: translateY(0);
}

/* HEADER */
header{
  height: auto;
  top: 10px;
  opacity: 0;
  transform: translateY(-50px);
  transition: all .4s ease-in-out;
}
header.anima{
  transform: translateY(0);
  opacity: 1;
}
header.scroll{
  transform: translateY(-10px);
}
header h1{
  cursor: pointer;
  float: left;
  height: 67px;
  margin: 15px 0 0;
  width: 172px;
  transition: all .3s ease-in-out;
}
header.scroll h1{ height: 50px; width: 100px; }
header nav{
  background: none;
  height: auto;
  left: auto;
  float: right;
  padding: 30px 0 0;
  position: relative;
  width: auto;
  visibility: visible;
  opacity: 1;
  backface-visibility: hidden;
}
header.scroll nav{ transform: translateY(-10px); }
header nav ul{
  transform: none;
  transition: none;
}
header nav li{
  padding: 0 0 0 40px;
  text-align: left;
  float: left;
}
header nav li a{
  color: #a9b1bd;
  float: left;
  font-size: 16px;
  font-weight: 300;
  height: 30px;
  position: relative;
}
header nav li a:hover{ color: #fff; }
header nav li a:after{
  background-color: #2af4c0;
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  width: 100%;
  transform-origin: 0 50%;
  transform: scaleX(0);
  transition: all .3s cubic-bezier(0.42, 0, 0.15, 1.49);
}
header nav li a:hover:after{ transform: scaleX(1); }


/* HOME */
.home{ 
  background-attachment: fixed; 
  position: relative;
  overflow: hidden;
}
.home:before{
  background: rgba(33,37,43,1);
  transition: all 1s ease-out;
}
.home.anima:before{
  background: rgba(33,37,43,.9);
}
.home .box{
  top: 50%;
  margin-top: -165px;
  transform: translateY(-50px);
  transition: all .5s cubic-bezier(0.42, 0, 0.15, 1.49) .4s;
  opacity: 0;
  position: fixed;
}
.home.anima .box{
  transform: translateY(0);
  opacity: 1;
}
.home .box.boxhide{
  opacity: 0;
  transition: all .5s cubic-bezier(0.42, 0, 0.15, 1.49);
  transform: translateY(-50px);
  visibility: hidden;
}
.home .box h2{ font-size: 70px; }
.home .box .divisor{
  margin: 40px auto;
  width: 120px;
}
.home .box p span{ font-size: 20px; }
.home .box p > br{ display: none; }
.home .box .bt{
  font-size: 18px;
  height: 45px;
  line-height: 43px;
  margin: 80px auto 0;
  width: 190px;
}
.home .box .bt:hover{
  background-color: #2af4c0;
  font-weight: 400;
  color: #2d3035;
}
.home .ponta2{
  background-color: #fff;
  bottom: -70px;
  height: 70px;
  position: absolute;
  left: -3px;
  width: 50%;
  z-index: 4;
  transition: all .4s ease-out;
  transform-origin: 100% 0;
  backface-visibility: hidden;
}
.home .ponta1{
  background-color: #fff;
  bottom: -70px;
  height: 70px;
  position: absolute;
  right: -3px;
  width: 50%;
  z-index: 4;
  transition: all .4s ease-out;
  transform-origin: 0 0;
  backface-visibility: hidden;
}
.home .ponta1.anima{ transform: rotate(-4deg); }
.home .ponta2.anima{ transform: rotate(4deg); }


/* SOBRE */
.sobre{
  background: #fff url(../imgs/bg-sobre.jpg) no-repeat center 0;
  background-size: cover;
  margin-bottom: -100px;
  padding: 80px 0 150px;
  position: relative;
  z-index: 2;
}
.sobre h2 { 
  font-size: 44px; 
  margin-bottom: 25px;
  transform: translateY(-50px);
  opacity: 0;
  transition: all .5s ease-in-out .3s;
}
.sobre h2 strong{ font-size: 56px; }
.sobre p{ 
  margin-bottom: 15px;
  font-weight: 300; 
  opacity: 0;
  text-align: justify;
  transform: translateY(-50px);
  transition: all .5s ease-in-out .5s;
}
.sobre .anima h2,
.sobre .anima p{
  transform: translateY(0);
  opacity: 1;
}
.sobre .infografico{
  background: url(../imgs/puzzle.png) no-repeat 141px 0;
  overflow: hidden;
  margin: 80px auto 20px;
  padding-top: 365px;
  width: 1030px;
  transform: translateY(-50px);
  opacity: 0;
  transition: all .5s ease-in-out;
}
.sobre .infografico.anima{
  transform: translateY(0);
  opacity: 1;
}
.sobre .infografico > div{
  float: left;
  width: 277px;
}
.sobre .infografico > div.item1{ margin-right: 51px; }
.sobre .infografico > div.item2{ margin-right: 110px; }
.sobre .infografico > div.item3{ margin-right: 0; }
.sobre .infografico p{
  color: #797979;
  font-size: 14px;
}
.sobre .infografico h3{ 
  font-size: 22px; 
  font-weight: bold; 
}
.sobre .infografico h3 div{ display: none; }

/* VANTAGENS */
.vantagens{
  min-height: 815px;
  margin: 50px 0 0;
  position: relative;
  padding-bottom: 130px;
  z-index: 4;
}
.vantagens .bgtit{
  background-size: auto;
  margin-top: -40px;
  height: 97px;
}
.vantagens h2{ 
  font-size: 50px; 
  font-weight: 300;
  margin-bottom: 50px;
}
.vantagens h2 br{ display: none; }
.vantagens .lista{ padding: 50px 0 0 25px; }
.vantagens .lista li{
  min-height: 190px;
  padding: 0 25px 0 0;
  width: 25%;
}
.vantagens .lista li:nth-child(2n+1){ clear: none; }
.vantagens .lista li:nth-child(4n+1){ clear: both; }
.vantagens .lista li div{
  background-size: auto;
  height: 80px;
  width: 80px;
}
.vantagens .lista li span{ font-size: 16px; }


/* PARA VOCE */
.para-voce{ 
  margin-top: -50px;
  padding-bottom: 20px;
  position: relative;
  z-index: 4;
}
.para-voce .tit{
  background-size: auto;
  height: 164px;
}
.para-voce h2{
  font-size: 60px;
  margin-top: 56px;
}
.para-voce .icons ul{ 
  overflow: hidden; 
  padding: 60px 0 0;
}
.para-voce .icons li{
  font-size: 13px;
  width: 190px;
}
.para-voce .icons li div{
  background-size: auto;
  height: 79px;
  margin: 0 auto 10px;
  width: 86px;
}
.para-voce h3{
  font-weight: 300;
  font-size: 31px;
  margin: 20px 0 40px;
}
.para-voce .lista-vantagens{ overflow: hidden; }
.para-voce .lista-vantagens ol{
  float: right;
  width: 530px;
}
.para-voce .lista-vantagens ol:first-child{ float: left; }
.para-voce .lista-vantagens li{
  font-size: 18px;
  font-weight: 300;
  padding: 0 0 15px 35px;
}
.para-voce .lista-vantagens li span{
  font-size: 30px;
  top: -10px;
}
.para-voce .lista-vantagens p{
  font-style: italic;
  font-size: 24px;
  padding-top: 40px;
}

/* AMBIENTE */
.ambiente{ margin-top: 100px; }
.ambiente .bgtit{
  background-size: auto;
  margin-top: -40px;
  height: 80px;
}
.ambiente .tit h2{ 
  font-size: 48px;
  margin-top: 0;
  float: left;
}
.ambiente .tit h2 strong{ font-size: 60px; }
.ambiente .tit p{ 
  color: #1b2931;
  font-weight: 300;
  float: right;
  width: 600px;
  margin: 79px 0 0 150px;
  font-size: 18px;
  text-align: right;
}
.ambiente .conteudo{
  background: #acbdc7 url(../imgs/bg-espaco.png);
  margin: -20px 0 -164px;
  padding: 40px 0 330px;
  position: relative;
}
.ambiente .itens{ clear: both; }
.ambiente .itens .item{
  float: right;
  margin-top: 60px;
  position: relative;
  padding: 25px 35px 60px;
  width: 520px;
  transition: all .8s cubic-bezier(0.42, 0, 0.15, 1.49), background .5s ease-in-out;
  transform: translateY(-40px);
  opacity: 0;
  overflow: visible;
}
.ambiente .itens .item.anima{
  transform: translateY(0);
  opacity: 1;
}
.ambiente .itens .item:hover{
  background-color: rgba(13,26,34,.8); 
}
.ambiente .itens .item:nth-child(2n+1){ float: left; }
.ambiente .itens .item h3{
  margin: 0 0 15px;
  font-size: 26px;
  font-weight: 300;
  text-transform: uppercase;
  transition: all .2s ease-in-out;
}
.ambiente .itens .item:hover h3{ color: #c03034; }
.ambiente .itens .item p{
  color: #fff;
  font-size: 17px;
  left: 40px;
  top: 80px;
  opacity: 0;
  position: absolute;
  padding: 0;
  visibility: hidden;
  width: 200px;
  transition: all .5s cubic-bezier(0.42, 0, 0.15, 1.49);
  transform: translateX(40px);
}
.ambiente .itens .item:hover p{
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.ambiente .itens .item .img{
  background-size: auto;
  float: right;
  height: 360px;
  position: relative;
  width: 450px;
  transition: all .5s cubic-bezier(0.42, 0, 0.15, 1.49);
}
.ambiente .itens .item:hover .img{
  transform: translateX(70px);
  width: 270px;
}
.ambiente .itens .item .img:after{
  background: #c23135 url(../imgs/seta-1.png) no-repeat 30px center;
  border-radius: 50%;
  box-shadow: 3px 3px 10px rgba(0,0,0,.2);
  bottom: -40px;
  content: "";
  font-weight: 700;
  font-size: 70px;
  height: 80px;
  left: 50%;
  line-height: 72px;
  margin-left: -40px;
  position: absolute;
  text-align: center;
  width: 80px;
  transition: all .5s cubic-bezier(0.42, 0, 0.15, 1.49);
}
.ambiente .itens .item:hover .img:after{
  transform: rotate(180deg);
}
.ambiente .itens .item .zoom{
  font-size: 48px;
  line-height: 48px;
  float: none;
  margin-top: 0;
  position: absolute;
  opacity: 0;
  bottom: 50px;
  transition: all .5s cubic-bezier(0.42, 0, 0.15, 1.49);
  transform: translateX(40px);
}
.ambiente .itens .item:hover .zoom{
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.ambiente .itens .item .zoom .texto{ 
  display: block;
  font-size: 14px; 
  float: right;
  text-transform: uppercase;
}
.ambiente .itens .item .zoom:hover{ color: #fff; }
.modal h2{ 
  position: absolute; 
  top: 30px;
  left: 30px;
}
.modal .bt-fechar{
  cursor: pointer;
  top: 15px;
  right: 15px;
}
.modal .container-fluid{
  height: 100%;
  padding: 110px 70px 40px;
}
.modal .owl-carousel{ 
  margin: 0 auto;
  max-width: 1200px; 
}
.modal .owl-carousel,
.modal .owl-carousel .owl-stage-outer,
.modal .owl-carousel .owl-stage-outer div{
  height: 100%;
}
.modal .owl-carousel .owl-item > div{
  background: no-repeat center;
  background-size: cover;
  width: 100%;
}
.modal .owl-carousel .owl-nav div{
  margin-top: -20px;
  left: -50px;
  top: 50%;
}
.modal .owl-carousel .owl-nav .owl-next{ left: auto; right: -50px; }

/* PLANOS */
.planos{  z-index: 3; }
.planos .tit{
  background-size: auto;
  height: 325px;
  transform: scaleY(0.4);
  opacity: 0;
  transition: all .5s cubic-bezier(0.42, 0, 0.15, 1.49);
}
.planos.anima .tit{
  opacity: 1;
  transform: scaleY(1);
}
.planos .tit h2{ 
  font-size: 60px;
  float: left;
  margin-top: 165px;
}
.planos .tit p{
  font-size: 16px;
  float: left;
  margin: 180px 0 0 60px;
  width: 490px;
}
.planos .tit .container{ position: relative; }
.planos .linha{
  border: 1px solid #fff;
  border-bottom: none;
  border-left: none;
  height: 0;
  left: 92px;
  opacity: .5;
  position: absolute;
  top: 250px;
  width: 0;
  transition: width .3s linear .3s, height .3s linear .6s;
}
.planos.anima .linha{
  height: 120px;
  width: 369px;
}
.planos .conteudo{
  background-size: auto;
  margin-top: -188px;
  height: 810px;
  padding-top: 218px;
}
.planos .ponta{
  background-size: auto;
  height: 218px;
}
.planos .itens{ 
  height: 0;
  overflow: hidden;
  margin: 15px auto 0;
  padding: 0 50px;
  text-align: center; 
  width: 1100px;
  transition: all .5s ease-out .9s;
}
.planos.anima .itens{ 
    height: 470px;
}
.planos .itens .item{
  float: left;
  margin: 49px 10px 0;
  position: relative;
  text-align: left;
  transition: all .2s ease-in-out;
  width: 230px;
}
.planos .itens .item .preco{  
  position: relative;
  padding-left: 20px;
  letter-spacing: -1px;
}
.planos .itens .item .preco2{ padding-left: 0; }
.planos .itens .item .precomin {height: 64px; }
.planos .itens .item .preco strong{
  font-size: 72px;
  letter-spacing: -4px;
}
.planos .itens .item .preco.precomin strong {font-size: 44px !important; }

.planos .itens .item .preco span{
  position: absolute;
  top: 20px;
  left: 0;
}
.planos .itens .item ul{  }
.planos .itens .item:before{
  background-color: #fff;
  content: "";
  height: 50px;
  left: 50%;
  opacity: .5;
  position: absolute;
  top: -50px;
  width: 1px;
}
.planos .itens .item:after{
  background-color: #fff;
  box-sizing: content-box;
  content: "";
  height: 1px;
  left: -12px;
  opacity: .5;
  position: absolute;
  padding: 0 12px;
  top: -51px;
  width: 100%;
}
.planos .itens .owl-item:first-child .item:after{
  left: auto;
  right: -12px;
  padding: 0 12px 0 0;
  width: 50%;
}
.planos .itens .owl-item:last-child .item:after{
  left: -12px;
  padding: 0 0 0 12px;
  width: 50%;
}
.planos .itens .item:hover{ background-color: rgba(255,255,255,.1); }
.planos .itens .item .bt{
  font-size: 14px;
  height: 45px;
  line-height: 41px;
  width: 190px;
}
.planos .itens .item .bt:hover{
  background-color: #2af4c0;
  color: #2d3035;
}


/* LOCALIZACAO */
.localizacao{ 
  margin-top: -175px; 
  overflow: hidden;
}
.localizacao .tit { 
  margin: 0 0 -80px;
  padding: 55px 0 10px;
  position: relative; 
  text-align: right;
  z-index: 2;
  transform-origin: 0 100%;
  transform: rotate(-6deg) translateY(-45px);
  transition: all .5s cubic-bezier(0.42, 0, 0.15, 1.49) .3s;
}
.localizacao .tit.anima{
  transform: rotate(0deg) translateY(0);
}
.localizacao .tit h2{ font-size: 36px; }
.localizacao .tit p span{ display: inline-block; }
.localizacao .tit p br{ display: none; }
.localizacao .mapa{
  background: url(../imgs/mapa.jpg) no-repeat center;
  background-size: auto;
  height: 600px;
}
.localizacao .mapa .pin{
  margin: 240px auto 0;
  width: 60px;
  transition: all .3s cubic-bezier(0.42, 0, 0.15, 1.49);
  opacity: 0;
  transform-origin: 50% 100%;
  transform: scale(.5) translateY(-100px);
}
.localizacao .mapa .pin.anima{
  opacity: 1;
  transform: scale(1) translateY(0);
}
.localizacao .mapa .bt-rota{
  float: right;
  height: 45px;
  line-height: 45px;
  margin: 160px auto 0;
  text-indent: 15px;
  width: 210px;
}
.localizacao .mapa .bt-rota:hover{ background-color: #ee1e3b; }
.localizacao .mapa .bt-rota:before{ margin-top: 9px; }


/* CONTATO */
.contato{
  margin-top: -80px;
  padding-top: 100px;
}
.contato:before{
  height: 80px;
  top: 22px;
  transform: rotate(1deg);
  left: -20px;
}
.contato h2{ 
  font-size: 40px ;
  margin-bottom: 20px;
}
.contato h2 strong{ font-size: 50px; }
.contato .tipos-contatos{ padding: 50px 0 0; }
.contato .tipos-contatos a{
  font-size: 24px;
  line-height: 42px;
}
.contato .tipos-contatos a:before{
  font-size: 36px;
  width: 42px;
}
.contato .tipos-contatos a.icon-at:before{ font-size: 42px; }
.contato .tipos-contatos a span{ font-size: 24px; }

.contato .form{ padding: 30px; }
.contato .form fieldset > div{ margin-bottom: 15px; }
.contato .form .campo{
  height: 50px;
  padding: 15px 15px 0;
}
.contato .form textarea.campo{ height: 120px; }
.contato .form label{
  font-size: 16px;
  left: 15px;
  top: 14px;
}
.contato .form .focus label{ font-size: 10px; }
.contato .form .bt-form:hover{
  background-color: #fff;
  color: #519684;
}
.contato .logo{
  cursor: pointer;
  float: right;
  margin-top: 50px;
  width: 141px;
}


/* FOOTER */
footer{
	height: 195px;
	padding-top: 50px;
  text-align: left;
}
footer:after{
  bottom: -38px;
  transform: skewY(-0.7deg);
}
footer h2{
	font-size: 16px;
	margin: 10px 0 5px;
}
footer p{ 
	font-size: 12px;
	font-weight: 300; 
}
footer .redes-sociais{ 
  padding-top: 50px;
  text-align: right; 
}
footer .redes-sociais a:hover{ color: #84cdba; }
