#banner img{
  /* background: url('../img/bannerhome.webp') center center no-repeat;
  background-size: cover;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  height: 100vh;
  position: relative; */
  width: 100%;
  height: auto;
}

#carouselBanner,
#carouselBanner-track{
  height: 100%;
}

.splide{
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#banner > div{
  text-align: center;
}

#banner h1{
  color: var(--azul-escuro);
  mix-blend-mode: multiply;
  font-size: 15vw;
  font-weight: 800;
  line-height: 1;
}

#banner span{
  background-color: var(--azul-escuro);
  color: var(--branco);
  display: block;
  width: 100%;
  background-color: rgba(4, 12, 172, .84);
}

#arteara{
  display: grid;
  grid-template-columns: 1fr;
  padding: 3rem 0;
  align-items: center;
}

#arteara > div{
  width: 90%;
  margin: 0 auto;
}

#arteara > div h2{
  color: var(--cinza);
  font-size: 5rem;
  font-weight: 900;
  text-transform: lowercase;
}

#arteara > img{
  width: 100%;
  height: auto;
}

#arteara > div span{
  display: block;
  width: 100%;
  color: var(--azul-escuro);
  border-bottom: 1px solid;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

#arteara > div p{
  margin-top: 1rem;
}

#arteara > div a{
  text-decoration: none;
  color: var(--azul-escuro);
  display: flex;
  gap: .5rem;
  margin-top: 1rem;
}

#arteara > div a::before{
  content: url('../img/mais.webp');
}

#linhas{
  background: url('../img/bgnecessidades.webp') center center no-repeat;
  background-size: cover;
  padding: 6rem 0;
  color: var(--branco);
}

#linhas .container{
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-self: center;
  gap: 5rem;
}

#linhas h3,
#linhas h4{
  font-size: 1.5rem;
  font-weight: bold;
}

#linhas .container > div{
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  gap: 2rem;
}

#linhas .container > div > div{
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

#linhas a{
  text-decoration: none;
  color: inherit;
  border: 1px solid;
  padding: 1rem;
}

@media screen and (min-width: 993px){

  #banner h1{
    font-size: 9vw;
  }
  #arteara{
    grid-template-columns: repeat(12, 1fr);
  }

  #arteara > div{
    grid-column-start: span 3;
    grid-column-end: 8;
    width: 100%;
    margin: 0;
  }

  #arteara > img{
    grid-column-start: span 4;
    grid-column-end: 13;
    width: 100%;
    height: auto;
  }

  #linhas .container > div{
    grid-template-columns: repeat(5, 1fr);
  }

}