@font-face{
  font-family: 'titulo';
  src: url(../font/mortend_light.otf) format('opentype');
  font-weight: 100;
}

@font-face{
  font-family: 'titulo';
  src: url(../font/mortend_regular.otf) format('opentype');
  font-weight: 200;
}

@font-face{
  font-family: 'titulo';
  src: url(../font/mortend_bold.otf) format('opentype');
  font-weight: 300;
}

@font-face{
  font-family: 'titulo';
  src: url(../font/mortend_extrabold.otf) format('opentype');
  font-weight: 400;
}

@font-face{
  font-family: 'titulo';
  src: url(../font/mortend_extrabold_outline.otf) format('opentype');
  font-weight: 500;
}

@font-face {
  font-family: 'texto';
  src: url(../font/prodasans_thin.otf) format('opentype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'texto';
  src: url(../font/prodasans_thinitalic.otf) format('opentype');
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: 'texto';
  src: url(../font/prodasans_light.otf) format('opentype');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'texto';
  src: url(../font/prodasans_lightitalic.otf) format('opentype');
  font-weight: 200;
  font-style: italic;
}

@font-face {
  font-family: 'texto';
  src: url(../font/prodasans_book.otf) format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'texto';
  src: url(../font/prodasans_bookitalic.otf) format('opentype');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'texto';
  src: url(../font/prodasans_regular.otf) format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'texto';
  src: url(../font/prodasans_italic.otf) format('opentype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'texto';
  src: url(../font/prodasans_medium.otf) format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'texto';
  src: url(../font/prodasans_mediumitalic.otf) format('opentype');
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'texto';
  src: url(../font/prodasans_semibold.otf) format('opentype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'texto';
  src: url(../font/prodasans_semibolditalic.otf) format('opentype');
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: 'texto';
  src: url(../font/prodasans_bold.otf) format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'texto';
  src: url(../font/prodasans_bolditalic.otf) format('opentype');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'texto';
  src: url(../font/prodasans_extrabold.otf) format('opentype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'texto';
  src: url(../font/prodasans_extrabolditalic.otf) format('opentype');
  font-weight: 800;
  font-style: italic;
}

@font-face {
  font-family: 'texto';
  src: url(../font/prodasans_black.otf) format('opentype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'texto';
  src: url(../font/prodasans_blackitalic.otf) format('opentype');
  font-weight: 900;
  font-style: italic;
}

@font-face {
  font-family: 'livre';
  src: url(../font/vibrant.otf) format('opentype');
}

:root {
  --amarelo:#face69;
  --amarelo-2: #f6b026;
  --preto: #212529;
  --verde: #1a4a52;
  --verde-2: #17373d;
  --bege: #f4e7dc;
  --border-radius: 5px;
  --font-titulo: 'titulo', sans-serif;
  --font-texto: 'texto', sans-serif;
  --font-destaque: 'livre', sans-serif;
}

*{
padding: 0;margin: 0;border: 0;
}
html, body{
width: 100%;height: 100%;
}

body{
 background-color: var(--preto);
 font-family: var(--font-texto);
 overflow-x: hidden;
}

p{
  font-weight: 100;
  letter-spacing: 1px;
  font-size: 18px;
  line-height: 23px;
}

.container {
  max-width: 1200px;
}

::selection {
  background-color: var(--amarelo);
  color: var(--preto);
}

.titulo{
  position: relative;
}

.titulo h2{ 
  font-family: var(--font-titulo);
  font-weight: 300;
  text-transform: uppercase;
  color: var(--bege);
  font-size: 70pt;
  line-height: 80px;
}

.img-titulo{
  position: absolute;
  top: -60px;
  right: 0px;
  width: 200px;
}

.img-titulo img {width: 100%;}


.btn-primary{
  background-color: var(--amarelo);
  color: var(--preto);
  border-style: none;
  border-radius: 35px;
  font-family: var(--font-titulo); 
  font-weight: 400;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 15px;
  padding: 22px 24px 18px;
}


.btn-primary:hover {
  background-color: var(--amarelo-2);
  color: var(--preto);
}

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
  background-color: var(--amarelo-2);
  color: var(--preto);
}

.container-1200{width: 1200px; padding: 10px;}

.menuFixo {
  height: 70px !important;
}
#menu {
  z-index: 90;
  position: fixed;
  height: 5px;
  width: 100%;
  background-color: var(--verde);
  transition: all 1s;
}

.menu-container{
  margin-top: 5px;
}

.menu{
  padding-left: 25px;
}

.menu a{
  text-decoration: none;
  color: var(--bege);
  margin: 0;
}

.item-menu{
  border-width: 2px;
  border-radius: 25px;
  border-style: solid;
  border-color: var(--bege);
  padding: 5px 15px;
  font-family: var(--font-titulo);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 300;
  padding-top: 10px;
  transition: all 0.3s;
  letter-spacing: 1px;
  margin-left:10px;
}

.item-menu:hover{
  background-color: var(--amarelo);
  color: var(--verde);
  border-color: transparent;
}

.logo-texto {
  fill: var(--bege);
}
.logo-ovo {
  fill: var(--amarelo);
  animation: logo-ovo 2s infinite;
}
@keyframes logo-ovo {
  0% {
    fill: var(--amarelo);
  }
  50% {
    fill: var(--amarelo-2);
  }
  100% {
    fill: var(--amarelo);
  }
}

.banner{
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: none;
}

.banner .video {padding-right: 20px;}
.banner .texto{padding-left: 20px; color: var(--bege);}

.banner h1{
  font-family: var(--font-titulo);
  font-weight: 300;
  font-size: 50px;
  text-transform: uppercase;
}

.banner .ideias{
  color: var(--amarelo); 
  font-family: var(--font-destaque);
  font-size: 75pt;
  font-weight: 100;
  line-height: 30px;
  text-transform: lowercase;
  display: inline-block;
  transform: rotate(-7deg);
    -ms-transform: rotate(-7deg);	
	  -webkit-transform: rotate(-7deg);
}

.banner .resultados{
  background-color: var(--verde); 
  color: var(--bege);
  padding: 10px;
  padding-bottom: 5px;
  border-radius: var(--border-radius);
}

.passaro {
  position: absolute;
  margin-left: 420px;
  margin-top: -80px;
  width: 150px;
  height: 150px;
  background: transparent url("../img/bird.png") 0 0 no-repeat;
  transition: all .5s;
  -webkit-animation: bird 2s steps(24) infinite;
          animation: bird 2s steps(24) infinite;
}
@-webkit-keyframes bird {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 -3600px;
  }
}
@keyframes bird {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 -3600px;
  }
}

.ovo {
  position: absolute;
  margin-left: 400px;
  margin-top: -20px;
  rotate: -15deg;
  width: 100px;
  height: 100px;
  background: transparent url("../img/egg.png") 0 0 no-repeat;
  -webkit-animation: egg 0.06s steps(6) infinite;
          animation: egg 0.06s steps(6) infinite;

  animation-play-state: paused;
  animation-delay: calc(var(--scroll) * -1s);
}
@-webkit-keyframes egg {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 -600px;
  }
}
@keyframes egg {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 -600px;
  }
}

.portfolio{}

.item-portfolio{padding: 10px;}
.item-portfolio img {border-radius: var(--border-radius); width: 100%;}
.item01{width: 580px; height: 580px;}
.item02{width: 580px; height: 280px;}
.item03{width: 280px; height: 280px;}
.item04{width: 280px; height: 580px;}
.no-padding{padding: 0;}
.no-margin{margin: 0;}

#depoimentos{
  background: var(--verde) url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAD1BMVEUAAAAcSlQcSkwcTlQcRkyoy1P1AAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAohJREFUOI0lVIux4zAIVAsLNIBNA/ipAST6r+mW3Exm4iR89keWZvkFDFC3stPHYH3+lkAMeUwkW7oiq73tnHXduu6D048Xq2GVFSWrC9VXBX2qbhUHlVXYwtUbJqZSdiMu2i5rsbDRSD7xZZD2wOVDrCt89PRqsfKy5Jo/RC3+7LXNSuVhJ7ikuR6rJO825RQEXmscfEjF4qMTCeojHPBnmHEalx9y4FK15sqaL+NlxQoLZY98nPYK1w82CawGcbuQIYl9AbiL4/ZCkxVXvlV6RI4Peb6WuV34HemkH7FkwbQt05C+NhQc9Yo+pXtDFzwkEvmYpd4Ot4RCag2KIUBFRzvOzU4BR7Fa6/sI0pv8LiUPycMO6GYJ30c/hJLYHwnu3sDRTErBvS1BIwu5WE8KoAokrQ66T4s010ZuS2pAX7Xq4G4lBlmfSRy59GA0EtcSmv3Ugp3/vo7iQQr8bHUpyROWL5RZC5pnG8WVw6N9/8KUwUge6NOYAUtIbTyj7jGyMhTH6QED96uo/O0p0U29OWJNnpkZshva3w9ys4CoiOSj6/GQXd+iPHhoLYaxaDBeNkOpONuTHWdy84o/PAJiYj/p0CiZwFw7DN9vPTt4Sn1XxKw003G9uRrK7BtTopNXZaRk4JB7arYRbvV52qKTd6aTCVbSSt4gtYm5K4KxDhlTGMGlVArPsOSMVpSzh9CXzBEza8IzMTCIJHZHXdY+lnkysP2Mznjx0A8aT0/bHPt3sZw8GX3ZkY4nWUjpZgFyLO+VfRhaxll+fxsy2m3mYJ2djAtPYsTkZRnLDs9+jUL7j/hskiebEa2j46BzxDdSjI91+bcgo/46/vAoeXBV0j386fs5+AeclKCv7DB/ewAAAABJRU5ErkJggg==);
  padding-top: 210px;
  padding-bottom: 130px;
  margin: -140px -12px 0;
}

.servicos{
  background-color: var(--bege);
  color: var(--preto); 
  border-radius: var(--border-radius);  
  padding: 100px 0;
  margin-top: -100px;
}

.servicos p{
  font-weight: 400;
}

.servicos ::selection {
  background-color: var(--verde-2);
  color: var(--bege);
}

#servicos h2{
  color: var(--verde);
}

#servicos .servicos .titulo{
  text-align: center;
}

#servicos .servicos .titulo span{
  font-family: var(--font-destaque);
  font-size: 180px; 
  color: var(--preto);
  margin-top: -5px;
  display: inline-block;
  transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);	
	  -webkit-transform: rotate(-5deg);
}

#servicos-banner{
  width: 1200px;
}

.carousel-indicators {
  position: initial;
  display: block;
  margin: 0;
}

.carousel-indicators [data-bs-target] {
  text-indent: 0;
  width: 110px;
  background-color: transparent !important;
  color: var(--bege);
  font-weight: 300;
  font-size: 10px;
  text-transform: uppercase;
  margin-bottom: 100px;
  text-align: center;
  color: var(--preto);
  font-weight: 700;
  opacity: 1;
}

.carousel-indicators .img01{
  background-image: url("../img/01.png");
   background-repeat: no-repeat;
   background-position: center;
   background-size: cover;
   width: 50px;
   height: 50px;
   margin-bottom: 10px;
   transition: all .3s;
   margin-left: 30px;  
 }
 .carousel-indicators .active .img01{
  background-image: url("../img/01.gif");
  width: 70px;
  height: 70px;
  margin-left: 20px;  
  margin-top: -20px;
 }

.carousel-indicators img{
  margin-bottom: 10px;
  width: 50px;
  transition: all .3s;  
}

.carousel-inner{
  text-align: center;
}

#servicos-banner .carousel-inner .img{
  width: 400px;  
}

#servicos-banner .carousel-inner .texto{
  width: 400px;
  height: 300px;
  padding-left: 30px;
  text-align: left;
  background-color: var(--bege);
}

.carousel-inner img{
  width: 300px;
  height: 300px;
  border-radius: 300px;
}

#metodologia{
margin-top: 100px;
}

#metodologia .titulo{
  width: 180px;
}

#metodologia .titulo h2{
  rotate: 90deg;
  color: var(--bege);
}

#metodologia .item{
  margin-bottom: 30px;
  border-radius: var(--border-radius);
}

#metodologia .item .item-img{
  width: 250px;
  overflow: hidden;
  z-index: -1;
}

#metodologia .item .item-img img{
  width: 100%;
  border-radius: var(--border-radius);
}

#metodologia .item .item-text{
  padding: 0 20px;
  width: 350px;
  border: 2px var(--amarelo) solid;
  border-radius: var(--border-radius);
  padding: 30px 50px;
}

#metodologia .item-01 .item-text{
  margin-left: -20px;
  margin-top: 30px;
}

#metodologia .item-02 .item-text{
  margin-right: -20px;
  margin-top: 30px;
}

#metodologia .item-03 .item-text{
  margin-left: -20px;
  margin-top: 30px;
}

#metodologia .item-04 .item-text{
  margin-right: -20px;
  margin-top: 30px;
}

#metodologia .item .item-text h3{
  font-family: var(--font-titulo);
  font-weight: 300;
  text-transform: uppercase;
  color: var(--amarelo);
}

#metodologia .item .item-text p{
  margin: 0;
}

#quemsomos{
  background-color: var(--bege);
  color: var(--preto);  
  padding-top: 130px;
}

.quemsomos{
  width: 1200px;
  padding: 10px;
}

#quemsomos .titulo h2{
  color: var(--verde);
}





.footer_01{ 
  display: inline-block;
  animation: rotate 5s linear infinite;
}
.st1{fill: var(--bege);}

.footer_02{
  margin-left: -103px;
}
.st2{fill:var(--amarelo-2);}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.redes-sociais{
padding-top: 30px;
}

.redes-sociais .item{
  background-color: var(--verde);
  color: var(--bege);
  text-align: center;
  padding-top: 12px;
  border-radius: 20%;
  margin-right: 15px;
  width: 50px;
  height: 50px;
  transition: all .3s;
}

.redes-sociais .item:hover{
  background-color: var(--amarelo);
  color: var(--preto);
  aspect-ratio: 3 / 4;
  border-radius: 100% / 125% 125% 80% 80%;
  height: 60px;
  padding-top: 17px;
  margin-top: -5px;
}



.bg {
  z-index: -1;
  position: fixed;
  background-color: var(--preto);
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  width: 200%;
  height: 200vh;
  background: transparent url('../img/noise.png') repeat 0 0;
  background-repeat: repeat;
  animation: bg-animation .2s infinite;
}

@keyframes bg-animation {
    0% { transform: translate(0,0) }
    10% { transform: translate(-5%,-5%) }
    20% { transform: translate(-10%,5%) }
    30% { transform: translate(5%,-10%) }
    40% { transform: translate(-5%,15%) }
    50% { transform: translate(-10%,5%) }
    60% { transform: translate(15%,0) }
    70% { transform: translate(0,10%) }
    80% { transform: translate(-15%,0) }
    90% { transform: translate(10%,5%) }
    100% { transform: translate(5%,0) }
}

.logo-constucao{
  text-align: center;
  padding: 100px 0;
  position: relative;
}

.logo-constucao h1{
  margin-bottom: 30px;
}

.logo-constucao span{
  background-color: var(--verde); 
  color: var(--bege);
  padding: 10px;
  padding-bottom: 5px;
  border-radius: var(--border-radius);
  font-family: var(--font-titulo);
  font-weight: 200;
  text-transform: uppercase;
  font-size: 25px;
}


.logo-constucao .logo{
  max-width: 600px;
  width: 100%;
  padding: 0 50px;
}

.texto-contrucao{
  text-align: center;
  padding: 0 50px;
}

.texto-contrucao h2{
  font-family: var(--font-titulo);
  text-transform: uppercase;
  font-weight: 300;
  font-size: 20px;
}

.logo-constucao-mobile{
  text-align: center;
  padding: 100px 0 20px;
  position: relative;
}

.logo-constucao-mobile h1{
  margin-bottom: 30px;
}

.logo-constucao-mobile span{
  background-color: var(--verde); 
  color: var(--bege);
  padding: 10px;
  padding-bottom: 5px;
  border-radius: var(--border-radius);
  font-family: var(--font-titulo);
  font-weight: 200;
  text-transform: uppercase;
  font-size: 25px;
}


.logo-constucao-mobile .logo{
  max-width: 600px;
  width: 100%;
  padding: 0 50px;
}

@keyframes squiggly-anim{
  0% {
    filter:url('#squiggly-0');
  }
  25% {
    filter:url('#squiggly-1');
  }
  50% {
    filter:url('#squiggly-2');
  }
  75% {
    filter:url('#squiggly-3');
  }
  100% {
    filter:url('#squiggly-4');
  }
}

@media (min-width: 769px) {
.target{
  animation:squiggly-anim .34s linear infinite;
  color: var(--amarelo);
  font-family: var(--font-destaque);
  font-size: 25px;
  line-height: 20px;
  margin-top: -40px;
  position: absolute;
  left: 50%;
  margin-left: 270px;  
  top: 50%;
  text-align: left;
  rotate: -10deg;
}
}

@media (max-width: 768px) {
  .target{
    animation:squiggly-anim .34s linear infinite;
    color: var(--amarelo);
    font-family: var(--font-destaque);
    font-size: 25px;
    line-height: 20px;
    margin-top: 40px;
  }
}

.logo-constucao .arrow{
  width: 30px;
  fill: var(--amarelo);
  margin-top: 13px;
  rotate: 10deg;
}

.logo-constucao-mobile .arrow{
  width: 30px;
  fill: var(--amarelo);
  margin-top: -170px;
  margin-left: -60px;
  rotate: 150deg;
}


.logo-constucao-mobile{display: none;}

@media (max-width: 768px) {
  .logo-constucao {
    display: none;
  }
  .logo-constucao-mobile {
    display:block;
  }
}


#slider {
  display: grid;
  grid-template-columns: repeat(2, .25fr);
  justify-content: space-between;
  transform: translate3d(-25%,0,0);
  animation: anima 5s linear infinite;
  margin-top: 130px;
  margin-bottom: -130px;
}

@keyframes anima{
  from {transform: translate3d(-25%,0,0)}
  to {transform: translate3d(75%,0,0)}
}

#footer-provisorio{
  padding: 120px 0 170px;
}

#footer-provisorio h2{
  margin-top: 30px;
  color: var(--bege);
  font-family: var(--font-titulo);
  font-weight: 200;
  text-transform: uppercase;
  font-size: 50px;
}

@media (max-width: 768px) {
  #footer-provisorio h2{
    font-size: 20px;
  }
  #footer-provisorio .item{
    font-size: 14px !important;
  }
}

#footer-provisorio .item{
  border: 2px var(--amarelo) solid;
  padding: 10px 30px 8px;
  border-radius: 40px;
  margin-left: 10px;
  text-transform: uppercase;
  transition: all .5s;
  font-size: 30px;
  font-weight: 700;
}

#footer-provisorio .item svg{
  fill: var(--amarelo);
  height: 30px;
  transition: all .7s;
  margin-top: -5px;
}

#footer-provisorio .item:hover{
  background-color: var(--amarelo);
  color: var(--preto);
}

#footer-provisorio .item:hover svg{
    fill: var(--verde);
    rotate: -15deg;
}

#footer-provisorio a{
  text-decoration: none;
  color: var(--bege);
}

.scroll-downs {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  
  width :34px;
  height: 55px;
}
.mousey {
  width: 3px;
  padding: 10px 15px;
  height: 35px;
  border: 2px solid #fff;
  border-radius: 25px;
  opacity: 0.75;
  box-sizing: content-box;
}
.scroller {
  width: 3px;
  height: 10px;
  border-radius: 25%;
  background-color: #fff;
  animation-name: scroll;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(.15,.41,.69,.94);
  animation-iteration-count: infinite;
}
@keyframes scroll {
  0% { opacity: 0; }
  10% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(15px); opacity: 0;}
}

.contato {
  background: var(--bege);
  color: var(--preto);
  bottom: 0;
  left: 0;
  padding: 20px;
  position: fixed;
  right: 0;
  text-align: right;
  z-index: 99;
}

.contato a{
  text-transform: uppercase;
  font-family: var(--font-titulo);
  color: var(--preto);
  text-decoration: none;
  margin-left: 30px;
  transition: all .5s;
}

.contato a:hover{
  color: var(--verde);
  text-decoration: underline;
}

.contato .logo-texto{
  fill: var(--preto);
}

.contato .logo{
  padding: 0;
  text-align: left;
}

.contato .info{
  padding-top: 7px;
}

@media (max-width: 768px) {
  .contato {
    padding: 10px;
  }
  .contato a{
    font-size: 12px;   
  }
}



.loading{
position: absolute;
width: 100%; height: 100%;
background-color: var(--verde);
display: flex;
justify-content: center;
align-items: center;
}

.loading .ovo {
  position: absolute;
  margin-left: 0;
  margin-top: 0;
  rotate:0deg;
  width: 100px;
  height: 100px;
  background: transparent url("../img/egg.png") 0 0 no-repeat;
  -webkit-animation: egg 1.5s steps(6) infinite;
          animation: egg 1.5s steps(6) infinite;
}

.content{
  display: none;
}

