* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  background-color: rgba(40, 101, 255, 0.82);
  color: #fff;
  padding: 30px;
  font-family: Overlock SC;
}

img {
  max-width: 100%;
  display: inline-block;
}

a {
  color: inherit;
  text-decoration: none;
  display: block;
}

a {
  transition: 0.3s;
}
a:hover {
  scale: 1.2;
}
ul {
  list-style: none;
}

body {
  background: #2865ffd1;
  height: 90vh;
}

header {
  max-width: 1600px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.lista-header {
  display: flex;
  justify-content: space-between;
}

.item-header a {
  font-weight: 400;
  font-size: 2rem;
  padding: 10px 20px;
  background-color: #2865ffd1;
  border-radius: 100px;
}

footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px;
}

footer h2 {
  text-align: center;
}

main {
  display: grid;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  background-color: #2865ffd1;
  border-radius: 50px;
  padding: 50px;
  justify-content: center;
}

.lista-de-itens {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.branco {
  display: flex;
  background-color: #fff;
  justify-content: center;
  padding: 150px 0px;
  width: 280px;
  border-radius: 50px;
  cursor: pointer;
}
.produto {
  max-width: 300px;
  border-radius: 50px;
  margin-top: -45px;
}

.troca {
  width: 100px;
}
.enviar {
  width: 100px;
}
input {
  position: absolute;
  opacity: 0;
}
.main-btn {
  font-size: 2rem;
  text-align: center;
  padding: 10px 80px;
  background-color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  margin: 0 auto;
  border-radius: 50px;
}
.texto-troca {
  font-family: Overlock SC;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.1rem;
  text-align: center;
  margin-top: 20px;
}

body::after {
  content: "";
  background: url(/imagens/setaDireita.png) no-repeat;
  position: absolute;
  width: 32px;
  height: 32px;
  right: 60px;
  top: 50%;
  cursor: pointer;
}

body::before {
  content: "";
  background: url(/imagens/setaDireita.png) no-repeat;
  position: absolute;
  width: 32px;
  height: 32px;
  left: 60px;
  top: 50%;
  transform: rotate(180deg);
  cursor: pointer;
}

@media (max-width: 1300px) {
  body::after {
    display: none;
  }
  body::before {
    display: none;
  }
}

@media (max-width: 900px) {
  #escudo {
    max-width: 60px;
  }
  .lista-de-itens {
    flex-direction: column;
    gap: 0px;
  }
  .produto {
    width: 300px;
    margin-top: 0px;
    height: 300px;
    object-fit: cover;
    object-position: top;
  }

  .troca {
    width: 80px;
  }
  .branco {
    padding: 90px 0px;
  }
  .enviar {
    width: 100px;
  }
  .texto-troca {
    margin-bottom: 20px;
  }
  .main-btn {
    font-size: 1.2rem;
    padding: 20px 15px;
  }
  footer {
    position: initial;
  }
}

@media (max-width: 600px) {
  .lista-de-itens {
    grid-template-columns: auto;
    gap: 20px 0px;
  }
  main {
    margin-top: 0;
  }
  footer {
    position: initial;
  }
  .item-header a {
    font-size: 1.5rem;
  }
  .troca {
    width: 80px;
  }
  .branco {
    padding: 70px 0px;
    width: 250px;
  }

  .produto {
    width: 250px;
    height: 250px;
  }
}
