@charset "UTF-8";
/* Defines */
/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 100%;
  font-family: "Varela Round", sans-serif;
}

html {
  overflow-y: scroll;
  overflow-x: auto;
}

body {
  background: #eaeaea;
}

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

nav ul {
  list-style: none;
}

a {
  text-decoration: none;
  cursor: pointer;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}
a:hover, a:focus, a:active {
  opacity: 1;
}

/* Mixins */
/* Selection Event */
::-moz-selection {
  background: #9d731a;
  color: #fff;
}
::selection {
  background: #9d731a;
  color: #fff;
}

/* Scroll track bar */
::-webkit-scrollbar-track {
  background: #000;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-thumb {
  background: #9d731a;
}

/* Icons for Moleta */
.moleta-icons {
  display: inline-block;
  vertical-align: text-top;
  width: 1rem;
}
.moleta-icons svg {
  width: 100%;
  height: 100%;
}

/* Elementos SVG Globais / Padrões */
.st0 {
  fill: #fff;
}
.st0.industry, .st0.product_box, .st0.contact, .st0.home {
  fill: #9d731a;
}

/* Temas dos Ícones (Agrupados por contexto) */
.brazil .st0 {
  fill: #3c9242;
}
.brazil .st1 {
  fill: #edc226;
}
.brazil .st3 {
  fill: #2d146e;
}
.brazil .luxe {
  fill: #ffffff;
}
.brazil .ponto {
  fill: #3c9242;
}
.brazil .st5 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #3c9242;
}

.united_states .st0 {
  fill: #cb001c;
}
.united_states .st1 {
  fill: #ffffff;
}
.united_states .subtitle {
  fill: #2a3560;
}

.whatsapp .st1,
.whatsapp .st2,
.whatsapp .st3 {
  fill: #fff;
}

.whatsapp-one .st0 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #fff;
}

.rock .st0,
.rock .subtitle,
.rock .luxe {
  fill: #9d731a;
}
.rock .st1,
.rock .st3,
.rock .st5 {
  fill: #14651b;
}

.instagram .st0 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: url(#instagram);
}
.instagram .st1 {
  fill: #ffffff;
}

.instagram-one .st0 {
  fill: none;
  stroke: #fff;
  stroke-width: 0.4;
  stroke-miterlimit: 10;
}
.instagram-one .st1 {
  fill: #fff;
}

.facebook .st0 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: url(#facebook);
}
.facebook .st1 {
  fill: #fff;
}

.facebook-one .st0 {
  fill: none;
  stroke: #fff;
  stroke-width: 0.5;
}
.facebook-one .st1 {
  fill: #fff;
}

.info .st0 {
  fill: #9d731a;
}
.info .st1 {
  fill: #fff;
}

.money .st1 {
  fill: #fff;
}

header {
  /* Redes Sociais Fixas */
}
header .social {
  position: fixed;
  right: 0;
  z-index: 10;
}
@media (max-width: 480px) {
  header .social {
    display: none;
  }
}
header .social ul {
  list-style: none;
  display: flex;
  padding: 15px 0;
}
header .social ul a {
  display: inline-block;
  padding: 5px 10px;
}
header .social ul a .moleta-icons {
  width: 1.6rem;
}
header .social ul a .moleta-icons > svg .st0.facebook-one {
  fill: none;
  stroke: #fff;
  stroke-width: 0.5;
}
header .social ul a .moleta-icons > svg .st1.facebook-one {
  fill: #fff;
}
header .social ul a .moleta-icons > svg .st0.instagram-one {
  fill: none;
  stroke: #fff;
  stroke-width: 0.4;
  stroke-miterlimit: 10;
}
header .social ul p {
  color: #fff;
}
header {
  /* Menus de Navegação (Interno e On-Scroll) */
}
header nav.menu-internal,
header nav.menu-on-scroll {
  position: fixed;
  z-index: 101;
  width: 100%;
  background: #000;
  visibility: hidden;
  opacity: 0;
}
@media (max-width: 480px) {
  header nav.menu-internal,
  header nav.menu-on-scroll {
    height: 100%;
    display: flex;
  }
}
header nav.menu-internal ul,
header nav.menu-on-scroll ul {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  list-style: none;
  justify-content: center;
  align-items: center;
}
@media (max-width: 480px) {
  header nav.menu-internal ul,
  header nav.menu-on-scroll ul {
    flex-direction: column;
  }
}
header nav.menu-internal ul li a,
header nav.menu-on-scroll ul li a {
  font-weight: 300;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  display: inline-block;
  padding: 10px;
  color: #fff;
  transition: color 0.3s ease;
}
header nav.menu-internal ul li a:hover,
header nav.menu-on-scroll ul li a:hover {
  color: #9d731a;
}
header nav.menu-internal ul li a,
header nav.menu-on-scroll ul li a {
  /* Estilização da Logo da Marca */
}
header nav.menu-internal ul li a.logo img,
header nav.menu-on-scroll ul li a.logo img {
  width: 66%;
  padding: 5px;
}
@media (max-width: 480px) {
  header nav.menu-internal ul li a.logo img,
  header nav.menu-on-scroll ul li a.logo img {
    width: 30vw;
  }
}
@media (max-width: 480px) {
  header nav.menu-internal ul li a.logo,
  header nav.menu-on-scroll ul li a.logo {
    width: 100%;
  }
  header nav.menu-internal ul li a.logo img,
  header nav.menu-on-scroll ul li a.logo img {
    width: 100%;
  }
}
header nav.menu-internal ul li,
header nav.menu-on-scroll ul li {
  /* Ajuste do ícone no mobile */
}
@media (max-width: 480px) {
  header nav.menu-internal ul li a .moleta-icons,
  header nav.menu-on-scroll ul li a .moleta-icons {
    width: 2rem;
  }
}
header {
  /* Exibição específica do Menu Interno em telas maiores */
}
@media (min-width: 481px) {
  header nav.menu-internal {
    visibility: visible;
    opacity: 1;
  }
}

/* ==========================================================================
   KEYFRAMES (Movidos para a raiz para evitar duplicações e bugs de compilação)
   ========================================================================== */
@keyframes animateLogo {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes changeLetterColor {
  0%, 100% {
    color: #fff;
  }
  50% {
    color: #9d731a;
  }
}
@keyframes changePLC {
  0%, 100% {
    color: #000;
  }
  50% {
    color: #9d731a;
  }
}
/* ==========================================================================
   SEÇÕES DA PÁGINA
   ========================================================================== */
.home-page {
  display: flex;
  flex-wrap: wrap;
  /* Banner Principal */
}
.home-page .item-banner-text {
  min-height: 100vh;
  width: 100%;
  display: flex;
}
.home-page .item-banner-text nav ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
  background: #000;
  align-items: center;
}
@media (max-width: 480px) {
  .home-page .item-banner-text nav ul {
    flex-direction: column;
  }
}
.home-page .item-banner-text nav ul li {
  padding: 0 10px;
}
.home-page .item-banner-text nav ul li a {
  font-weight: 300;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: #fff;
  font-size: 0.8rem;
  margin-bottom: 0;
  width: 100%;
  background: none;
  transition: color 0.3s ease;
}
.home-page .item-banner-text nav ul li a i svg .st0.home {
  fill: #fff;
  transition: fill 0.3s ease;
}
.home-page .item-banner-text nav ul li a:hover {
  color: #9d731a;
}
.home-page .item-banner-text nav ul li a:hover i svg .st0.home {
  fill: #9d731a;
}
.home-page .item-banner-text .text-banner-single,
.home-page .item-banner-text .text-banner {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}
.home-page .item-banner-text .text-banner-single .home-nav,
.home-page .item-banner-text .text-banner .home-nav {
  animation: animateLogo infinite 5s ease-in-out;
}
.home-page .item-banner-text .text-banner-single p,
.home-page .item-banner-text .text-banner-single h3 {
  width: 100%;
}
.home-page .item-banner-text .image-banner {
  position: fixed;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-size: cover !important;
  animation-duration: 4s;
}
.home-page .item-banner-text h2,
.home-page .item-banner-text h4,
.home-page .item-banner-text h3 {
  font-weight: 300;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  font-size: 3rem;
  width: 80%;
  margin-top: 40px;
}
.home-page .item-banner-text h4 {
  font-size: 2rem;
}
.home-page .item-banner-text p {
  color: #fff;
  font-size: 1rem;
  width: 80%;
}
.home-page .item-banner-text a {
  display: flex;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  padding: 10px;
  width: 38%;
  opacity: 1;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .home-page .item-banner-text a {
    display: none;
  }
}
.home-page .item-banner-text a img {
  width: 66%;
}
.home-page {
  /* Seção Sobre (About) */
}
.home-page .about {
  background: #000;
  color: #fff;
  padding: 10px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
  position: relative;
}
@media (max-width: 480px) {
  .home-page .about {
    align-items: center;
  }
}
.home-page .about h3,
.home-page .about p {
  font-weight: 300;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  line-height: 1.5rem;
  z-index: 1;
}
.home-page .about h3 {
  width: 100%;
  font-size: 1.7rem;
  font-weight: 300;
  margin: 60px 0;
}
@media (max-width: 480px) {
  .home-page .about h3 {
    font-size: 1.2rem;
    margin: 100px 0 0 0;
  }
}
.home-page .about h3 span:nth-child(1) {
  animation: changeLetterColor infinite 5s;
}
.home-page .about p {
  font-size: 0.9rem;
  margin-bottom: 30px;
}
@media (min-width: 481px) {
  .home-page .about p {
    width: 70%;
  }
}
@media (max-width: 480px) {
  .home-page .about p {
    margin-bottom: 118px;
  }
}
.home-page .about img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.home-page {
  /* Seção Projetos (Slider e Grid) */
}
.home-page .projects {
  width: 100%;
  background: #fff;
  color: #000;
  min-height: 100vh;
}
.home-page .projects .galerias-box {
  width: 98vw;
  overflow: hidden;
  position: relative;
}
.home-page .projects .galerias-box .galerias {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  display: flex;
}
.home-page .projects .galerias-box .galerias .gallery-projects {
  width: 100vw;
}
.home-page .projects .galerias-box .gallery-left,
.home-page .projects .galerias-box .gallery-right {
  position: absolute;
  top: 50%;
  z-index: 1;
  cursor: pointer;
  width: 1.7rem;
  transform: translateY(-50%);
}
.home-page .projects .galerias-box .gallery-left {
  left: 0;
}
.home-page .projects .galerias-box .gallery-right {
  left: 96vw;
}
.home-page .projects {
  /* Lista de Projetos (Grid de Thumbnails) */
}
.home-page .projects ul {
  position: relative;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home-page .projects ul li {
  width: 24%;
  height: 218px;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-page .projects ul li span {
  position: absolute;
  top: 12%;
  left: 0;
  z-index: 1;
  width: 100%;
  text-align: center;
  transform: translateY(-160%);
  transition: transform 0.4s ease-in-out;
}
.home-page .projects ul li span p,
.home-page .projects ul li span h4 {
  width: 100%;
  font-weight: 300;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 1px 1px 2px #000;
}
.home-page .projects ul li span h4 {
  font-size: 2.2rem;
  padding: 5px;
  line-height: 3.5rem;
}
.home-page .projects ul li span p {
  line-height: 2rem;
  font-size: 0.9rem;
}
.home-page .projects ul li a {
  color: #000;
}
.home-page .projects ul li a img {
  transition: transform 0.5s ease;
}
.home-page .projects ul li:hover span {
  transform: translateY(0);
}
.home-page .projects ul li:hover a img {
  transform: scale(1.1);
}
.home-page .projects h3 {
  max-width: 1170px;
  margin: 0 auto;
  font-weight: 300;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  line-height: 1.5rem;
  font-size: 1.7rem;
  margin: 60px 0;
  padding: 0 10px;
}
@media (max-width: 480px) {
  .home-page .projects h3 {
    margin: 35px 0 0 0;
    font-size: 1.2rem;
    line-height: 1.2rem;
  }
}
.home-page .projects h3 span:nth-child(1) {
  animation: changePLC infinite 5s;
}
@media (max-width: 480px) {
  .home-page .projects .projects-categories {
    padding-top: 20px;
  }
  .home-page .projects .projects-categories .collumn {
    padding: 0;
  }
}

section.perfil {
  display: flex;
  flex-wrap: wrap;
  padding-top: 130px;
}
@media (max-width: 480px) {
  section.perfil {
    padding-top: 70px;
  }
}
@media (min-width: 481px) {
  section.perfil img {
    width: 25%;
    margin-bottom: 30px;
    margin-left: 5%;
  }
}
@media (max-width: 480px) {
  section.perfil img {
    width: 100%;
  }
}
section.perfil .text {
  padding: 10px;
}
@media (min-width: 481px) {
  section.perfil .text {
    width: 70%;
    padding: 0 40px;
  }
}
section.perfil .text h2 {
  text-transform: uppercase;
  font-size: 2.5rem;
  color: #6b6b6b;
  line-height: 1.2;
  letter-spacing: 0.05rem;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  section.perfil .text h2 {
    font-size: 2rem;
    line-height: 1.3;
  }
}
section.perfil .text p {
  line-height: 1.6;
  letter-spacing: 0.05rem;
}
@media (max-width: 480px) {
  section.perfil .text p {
    line-height: 1.5;
  }
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #fff;
}
@media (min-width: 481px) {
  footer {
    min-height: 100vh;
  }
}
footer {
  /* Barra de Navegação Inferior */
}
footer nav {
  background: #000;
  width: 100%;
}
footer nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  list-style: none;
}
footer nav ul li {
  font-weight: 300;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  font-size: 0.7rem;
  line-height: 2rem;
}
@media (max-width: 480px) {
  footer nav ul li {
    padding: 10px;
  }
}
footer nav ul li p {
  background: #000;
  padding: 5px;
}
footer nav ul li a {
  font-weight: 300;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: #fff;
  font-size: 0.8rem;
  width: 160px;
  transition: color 0.2s ease;
}
footer nav ul li a:hover {
  color: #9d731a;
}
@media (max-width: 480px) {
  footer nav ul li a {
    width: 50%;
    padding: 10px;
  }
}
footer nav ul li .moleta-icons {
  padding-right: 5px;
  width: 1.3rem;
}
footer nav ul li img {
  margin: 10px;
}
@media (max-width: 480px) {
  footer nav ul li img {
    margin: 5px;
  }
}
footer {
  /* Título do Rodapé */
}
footer h3 {
  font-weight: 300;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  width: 100%;
  font-size: 1.7rem;
  font-weight: 300;
  margin: 60px 0;
  padding: 10px;
}
@media (max-width: 480px) {
  footer h3 {
    margin: 10px 0 0 0;
    font-size: 1.2rem;
  }
}
footer {
  /* Formulário de Contato */
}
footer form {
  padding: 10px;
}
@media (min-width: 481px) {
  footer form {
    width: 50%;
  }
}
footer form textarea,
footer form label,
footer form input {
  font-weight: 300;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  line-height: 1.5rem;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 10px;
  width: 100%;
}
footer form textarea,
footer form input {
  padding: 8px 10px;
  border-radius: 5px;
  border: solid 1px #000;
  background: #000;
  text-transform: uppercase;
  color: #fff;
  font-size: 0.8rem;
  font-weight: normal;
  background: none;
  color: #000;
}
footer form input[type=submit] {
  width: auto;
  padding: 8px 10px;
  border-radius: 5px;
  border: solid 1px #000;
  background: #000;
  text-transform: uppercase;
  color: #fff;
  font-size: 0.8rem;
  font-weight: normal;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
footer form input[type=submit]:hover {
  opacity: 0.8;
}
footer {
  /* Dados de Contato Laterais */
}
footer .data-contact {
  padding: 5px;
}
@media (min-width: 481px) {
  footer .data-contact {
    width: 50%;
  }
}
footer .data-contact li {
  font-weight: 300;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  list-style: none;
  line-height: 1.5rem;
  width: 100%;
  font-size: 0.9rem;
}

.open-gallery {
  cursor: pointer;
}

.gallery-presentation {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  background: #000;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  align-items: center;
}
.gallery-presentation li {
  overflow: hidden;
  display: none;
}
.gallery-presentation li img {
  height: 90vh;
}

.close-gallery,
.prev-single-gallery,
.next-single-gallery {
  position: absolute;
  color: #fff;
  padding: 5px;
  font-size: 1.1rem;
  line-height: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.close-gallery {
  top: 0;
  right: 0;
}

.prev-single-gallery {
  top: 50%;
  left: 0;
}

.next-single-gallery {
  top: 50%;
  right: 0;
}

.gallery-zoom {
  width: 100%;
  text-align: center;
}

#star_1_ {
  background: #ff0;
}

.erro404 {
  max-width: 1170px;
  margin: auto;
  color: #000;
  padding: 10px 0;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.erro404 a {
  color: #000;
  width: 100%;
  text-align: center;
  display: inline-block;
}
.erro404 h2 {
  align-items: center;
  font-size: 1.6rem;
  margin-bottom: 5px;
}
.erro404 h3 {
  align-items: center;
  font-size: 1.4rem;
  margin-bottom: 5px;
}
.erro404 ul {
  padding-left: 10px;
  margin: 5px 0;
}
.erro404 img {
  height: 76vh;
  padding: 10px 0;
}

.st0.logo {
  fill: #003461;
}

.st1.logo {
  clip-path: url(#SVGID_2_);
}

.subtitle.logo {
  clip-path: url(#SVGID_4_);
  fill: url(#SVGID_5_);
}

.st3.logo {
  clip-path: url(#SVGID_7_);
}

.luxe.logo {
  clip-path: url(#SVGID_9_);
  fill: url(#SVGID_10_);
}

.st5.logo {
  clip-path: url(#SVGID_12_);
}

.ponto.logo {
  clip-path: url(#SVGID_14_);
  fill: url(#SVGID_15_);
}

.st7.logo {
  clip-path: url(#SVGID_17_);
}

.ponto2.logo {
  clip-path: url(#SVGID_19_);
  fill: url(#SVGID_20_);
}

.st9.logo {
  clip-path: url(#SVGID_22_);
}

.st10.logo {
  clip-path: url(#SVGID_24_);
  fill: url(#SVGID_25_);
}

.st11.logo {
  clip-path: url(#SVGID_27_);
}

.st12.logo {
  clip-path: url(#SVGID_29_);
  fill: url(#SVGID_30_);
}

.st13.logo {
  clip-path: url(#SVGID_32_);
}

.st14.logo {
  clip-path: url(#SVGID_34_);
  fill: url(#SVGID_35_);
}

.st15.logo {
  clip-path: url(#SVGID_37_);
}

.pinheiro.logo {
  clip-path: url(#SVGID_39_);
  fill: url(#SVGID_40_);
}

.st17.logo {
  fill: #ffffff;
}

@keyframes changeFillColor {
  0% {
    fill: #000;
  }
  10% {
    fill: #85611a;
  }
  20% {
    fill: #faf6be;
  }
  30% {
    fill: #dabc5d;
  }
  40% {
    fill: #e6cb65;
  }
  50% {
    fill: #faf6be;
  }
  60% {
    fill: #d68967;
  }
  70% {
    fill: #9d731a;
  }
  80% {
    fill: #fff;
  }
  90% {
    fill: #d68967;
  }
  100% {
    fill: #000;
  }
}
/*

    LAB

*/
section.icons {
  max-width: 1170px;
  margin: 0 auto;
}
section.icons ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
section.icons ul li {
  margin: 10px;
  text-align: center;
}
section.icons ul li p {
  margin-bottom: 10px;
}
section.icons ul li i.moleta-icons {
  width: 2rem;
}

.especial {
  border: solid 1px #9d731a;
  width: 50px;
  height: 50px;
  position: absolute;
  left: 50px;
  top: 50px;
  display: inline-block;
  animation: moveEspecial infinite 5s linear;
}

.view-image {
  position: fixed;
  z-index: 1000;
  background: #000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: #fff;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 15px;
}
.view-image img {
  max-width: 100%;
  max-height: 100%;
}
.view-image svg {
  width: 1rem;
  position: absolute;
  top: 0;
  right: 0;
  margin: 15px;
}

.newGallery {
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-around;
}
.newGallery .collumn {
  width: 24.5%;
}

.projects-categories {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  background: #fff;
}
.projects-categories h3 {
  width: 100%;
  padding: 20px 10px;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
  font-weight: normal;
}
.projects-categories .collumn {
  width: 25%;
}
@media (max-width: 480px) {
  .projects-categories .collumn {
    width: 100%;
  }
}
.projects-categories .collumn {
  padding: 0 5px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.projects-categories .collumn a {
  width: 100%;
  display: inline-block;
  position: relative;
  margin: 0.5%;
  overflow: hidden;
}
.projects-categories .collumn a h4 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  color: #fff;
  background: rgba(0, 0, 0, 0.5882352941);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-weight: normal;
  transform: translateY(-100%);
}
.projects-categories .collumn a:hover h4 {
  transition: transform 2s;
  transform: translateY(0);
}

.projeto nav.menu-on-scroll {
  position: fixed;
  z-index: 20;
  width: 100%;
  background: #000;
}
.projeto nav.menu-on-scroll ul {
  max-width: 1170px;
  margin: auto;
  display: flex;
  list-style: none;
  justify-content: center;
  align-items: center;
}
.projeto nav.menu-on-scroll ul li a {
  font-weight: 300;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  display: inline-block;
  padding: 10px;
  color: #fff;
}
.projeto nav.menu-on-scroll ul li a img {
  width: 68%;
}
.projeto nav.menu-on-scroll ul li a:hover {
  transition: color 1s;
  color: #9d731a;
}
.projeto .projects-categories {
  padding-top: 100px;
}

.responsive-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
  justify-content: space-around;
  align-items: center;
}
.responsive-menu a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
}
.responsive-menu a img {
  width: 100%;
  padding: 10px;
}
.responsive-menu a svg {
  width: 2rem;
}

.banner-box {
  position: relative;
  overflow: hidden;
  height: 98vh;
  width: 100%;
}
.banner-box .slide {
  position: absolute;
  left: 100%;
  top: 0;
  transition: left 0.5s;
}
.banner-box .slide h3 {
  position: absolute;
  left: 10%;
  bottom: 38%;
  background: #000;
  color: #fff;
  padding: 10px;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
}

@media (min-width: 480px) {
  .read-more {
    display: none;
  }
}
.read-more {
  background: #916a1a;
  padding: 20px;
  display: inline-block;
  width: 100%;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 10px;
}

.projects-masonry {
  -moz-column-count: 4;
       column-count: 4;
  -moz-column-gap: 20px;
       column-gap: 20px;
  width: 100%;
}
.projects-masonry .project-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.projects-masonry .project-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.projects-masonry .project-item h4 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.projects-masonry .project-item:hover h4 {
  opacity: 1;
}
.projects-masonry .project-item:hover img {
  transform: scale(1.05);
}
@media (max-width: 1024px) {
  .projects-masonry {
    -moz-column-count: 3;
         column-count: 3;
  }
}
@media (max-width: 768px) {
  .projects-masonry {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media (max-width: 480px) {
  .projects-masonry {
    -moz-column-count: 1;
         column-count: 1;
  }
}/*# sourceMappingURL=style.css.map */