/*-- Primeira Impress�o 1 --*/
/*-- Css que serve apenas para a Primeira Impress�o 1 --*/

.banner-0 .columns-division-top {
  display: flex;
}

.banner-0 .product-categories {
    flex: 0 0 calc(100% / 4);
    height: auto;
}

.banner-0 .banners {
    flex: 0 0 calc(75% - 20px);
    margin-left: 20px;
}

.banner-0 .flex-column-side {
    height: 100%;
}

.banner-0 .title-vertical-menu {
  width: 100%;
  border-radius: 5px 5px 0px 0px;
  background-color: var(--third-color);
  display: grid;
  align-content: center;
  padding: 0px 20px;
  height: 10%;
}

.title-vertical-menu h3 {
  color: var(--white);
  font-size: 18px;
}

.banner-0 .main-banner {
  width: 100%;
  border-radius: 5px;
  background-color: transparent;
  aspect-ratio: 207/80;
  margin-bottom: 19px;
}

.banner-0 .main-banner a {
  border-radius: 5px;
  display: inline-block;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.banner-0 .small-banners-over-fold {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

.banner-0 .small-banners-over-fold li {
  height: 100%;
  background: var(--theme-secondary-color);
  border-radius: 5px;
}

.banner-0 .small-banners-over-fold li a {
  border-radius: 5px;
  display: inline-block;
  align-items: center;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.banner-0 .small-banners-over-fold li a img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  aspect-ratio: 34/23;
}

/********/
/*-- Menu vertical do primeira impress�es --*/

.banner-0 .vertical-menu-impressao {
    background-color: var(--white);
    border-radius: 5px 5px 0px 0px;
    display: grid;
    max-height: 600px;
    height: 90%;
    overflow: auto;
    transition: .5s ease max-height;
}

.banner-0 .vertical-menu-impressao ul{
    height: 100%;
}

.banner-0 .vertical-menu-impressao::-webkit-scrollbar {
  width: 8px;
  background-color: transparent;
}
.banner-0 .vertical-menu-impressao::-webkit-scrollbar-thumb {
  background-color: var(--third-color);
}

.banner-0 .vertical-menu-impressao ul li {
  height: 10%;
  padding-left: 20px;
  display: grid;
  align-content: center;
}

.banner-0 .vertical-menu-impressao li:nth-child(even) {
  position: relative;
  z-index: 1;
}

.banner-0 .vertical-menu-impressao li:nth-child(even)::before {
  content: "";
  background-color: var(--first-color);
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: 0.1;
  z-index: -1;
}

.banner-0 .vertical-menu-impressao li a {
  color: var(--third-color);
  font-size: 16px;
  font-weight: bold;
  text-overflow: ellipsis;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.banner-0 .vertical-menu-impressao li a:hover {
  color: var(--first-color);
}

@media only screen and (max-width: 1023px) {
  .banner-0 .vertical-menu-impressao {
    max-height: 500px;
  }

  .banner-0 .banners {
    margin-left: 0px;
  }

  .banner-0 .vertical-menu-impressao li a {
    height: 50px;
  }

  .banner-0 .small-banners-over-fold {
    grid-template-columns: 1fr 1fr 1fr;
    width: max-content;
  }

  .banner-0 .small-banners-over-fold li {
    height: 50vw;
  }

  .banner-0 .main-banner {
    display: none;
  }

  .banner-0 .list-overflow-wrap-1 {
    overflow-x: scroll;
    width: 100%;
    margin-left: 0;
  }

  .banner-0 .columns-list-flod {
    grid-auto-flow: column;
    grid-template-columns: auto !important;
    max-height: 455px;
  }

  .banner-0 .columns-list-flod li {
    width: auto;
  }

  .banner-0 .vertical-menu-impressao {
    border-radius: 0px;
    height: auto;
    max-height: auto;
    display: none;
  }

  .banner-0 .title-vertical-menu {
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    border-radius: 5px;
  }

  .banner-0 .columns-division-top {
    flex-direction: column;
    row-gap: 20px;
  }
  .banner-0 .title-vertical-menu{
    height: 50px;
  }

}

@media (max-width: 600px) {
  .banner-0 .list-overflow-wrap-1 {
    width: 100%;
  }
}

.arrow-flex-end {
  display: flex;
  justify-content: flex-end;
  cursor: pointer;
}

@media (min-width: 1023px) {
  .arrow-flex-end {
    display: none;
  }

  .vertical-menu-impressao {
    display: block !important;
  }
}

@media only screen and (max-width: 1418px){
  .banner-0 .product-categories {
    min-height: calc(100% - 15px);
  }
}