/* Transparent */
.navbar {
  background: transparent;
  box-shadow: none;
  transition: all 0.3s ease;
}

.navbar__top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, transparent, rgba(0, 0, 0, 0.5));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.navbar__top:hover::after {
  opacity: 1;
}

.navbar__top .navbar-brand,
.navbar__top .header-nav {
  z-index: 2;
}

.navbar.is-scrolled .navbar__top::after {
  content: none;
}

#home {
  margin-top: -72px;
  background: #232323;
}

/* Topo */
#home #topo {
  position: relative;
  width: 100%;
  height: 90dvh;
}

@media (min-width: 1999px) {
  #home #topo {
    height: 1080px;
  }
}

#home #topo .wrapper {
  position: absolute;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

#home #topo .container-custom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

#home #topo .item {
  color: #fff;
}

#home #topo .item span.title {
  display: block;
  font-size: 40px;
  font-weight: 600;
}

#home #topo a {
  text-decoration: none;
}

#home #topo .btn-transp {
  border: none;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

#home #topo .btn-transp:hover {
  background: #FFFFFF;
  color: #000 !important;
}

#home #topo .btn-transp:hover path {
  fill: #000 !important;
  stroke: #000 !important;
}

#home #topo video {
  display: block;
  position: absolute;
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
}
@media (max-width: 991px) {
  #home #topo .container-custom {
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 32px;
  }
}
/* Transparent */

/* Projetos */
#home #projetos .wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  color: #fff;
}

#home #projetos .wrapper .item {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

#home #projetos .wrapper .item p {
  flex: 1;
}

#home #projetos .wrapper a {
  text-decoration: none;
  color: #fff;
}

#home #projetos .wrapper a:hover {
  text-decoration: underline;
}

#home #projetos .wrapper .btn-vermais {
  display: flex;
  align-items: center;
  gap: 8px;
}

#home #loop-projetos .wrapper {
  display: flex;
  gap: 32px;
}
#home #loop-projetos .item {
  position: relative;
  width: 25%;
  height: 70dvh;
  transition: all 0.3s ease;
}
#home #loop-projetos .item:hover {
  width: 100%;
}
#home #loop-projetos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.3s ease;
}
#home #loop-projetos .descricao {
  opacity: 0;
  position: absolute;
  top: 16px;
  left: 16px;
  transition: all 0.3s ease;
}
#home #loop-projetos .item:hover .descricao {
  opacity: 1;
}
#home #loop-projetos .item:hover .descricao {
  opacity: 1;
}
#home #loop-projetos .btn-transp {
  border: none;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}
#home #loop-projetos .btn-transp:hover {
  background: #FFFFFF;
  color: #000 !important;
}
#home #loop-projetos .btn-transp:hover path {
  fill: #000 !important;
  stroke: #000 !important;
}
@media (max-width: 991px) {
  #home #projetos .wrapper {
    grid-template-columns: 1fr;
  }
  #home #loop-projetos .wrapper {
    flex-direction: column;
  }
  #home #loop-projetos .item {
    width: 100%;
    height: auto;
    aspect-ratio: 2/1;
  }
  #home #loop-projetos .descricao {
    opacity: 1;
  }
}
/* Fim projetos */

/* Experiências */
#home #exp video {
  width: 100%;
}
/* Showrooms */
#home #showrooms .wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  color: #fff;
}

#home #showrooms .wrapper .item {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

#home #showrooms .wrapper .item p {
  flex: 1;
}

#home #showrooms .wrapper a {
  text-decoration: none;
  color: #fff;
}

#home #showrooms .wrapper a:hover {
  text-decoration: underline;
}

#home #showrooms .wrapper .btn-vermais {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 991px) {
  #home #showrooms .wrapper {
    grid-template-columns: 1fr;
  }
}
/* Fim showrooms */
