h1,h2,h3,h4,h5 {
  font-weight: 400;
  margin: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
}

ul {
  list-style: none;
  margin: 0;
}

.cabecalho {
  background-color: #181818;
  width: 100%;
  height: 60px;
}

.texto-cabecalho {
  position: relative;
  text-align: center;
  color: #F9F9F9;
  top: 20px;
}

.titulo {
  text-align: center;
  font-weight: bold;
  margin: 15px;
}

.area-banner {
  width: 100%;
  height: 378px;
  background-image: linear-gradient( rgba(0, 0, 0, 0.5) 100%, rgba(0, 0, 0, 0.5)100%), url('./img/logo-jordan.png') ;
  background-size: cover;
  position: relative;
}

.conteudo-banner {
  color: #F9F9F9;
  margin: 0 7% ;
  padding: 130px 0;
}

.conteudo-banner h1 {
  font-weight: bold;
  font-size: 32px;
}

.conteudo-banner p {
  font-weight: 500;
  font-size: 18px;
  line-height: 35px;
}

.campo-destaques {
  margin: 50px;
}

.texto-frete {
  text-align: center;
  color: #474747;
  font-weight: 500;
}

.lista-produtos {
  max-width: 1600px;
  margin: 0 auto 100px;
}

.itens img {
  background-color: #EBE9EA;
  padding: 50px 20px;
  border-radius: 10px;
  border: 2px solid transparent;
}

.itens img:hover {
  border: 2px solid #873eff;
  border-radius: 10px;
  cursor: pointer;
  transition: .5s;
}

.itens li {
  width: 300px;
} 

.itens ul{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 15px;
}

.rodape {
  height: 60px;
  background-color: #181818;
}
.texto-rodape {
  color: #F9F9F9;
  text-align: center;
  position: relative;
  top: 20px;
}

@media screen and (max-width: 1300px) {
  .itens ul{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
  }
}

@media screen and (max-width: 1000px) {
  .itens ul{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding-inline-start: 0;
    margin-left: 100px;
  }
}

@media screen and (max-width: 850px) {
  .itens ul{
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    padding-inline-start: 0;
    margin: 0;
  }
  .itens li {
    margin: auto;
  }
  .area-banner {
    background-image: linear-gradient( rgba(0, 0, 0, 0.5) 100%, rgba(0, 0, 0, 0.5)100%), url('./img/logo-mobile.png') ;
  }
  .conteudo-banner {
    padding: 80px 0;
  }
  .conteudo-banner h1 {
    font-size: 26px;
  }
  .conteudo-banner p {
    font-size: 14px;
  }
}