body {
  margin: 0;
  background-color: #b5253c;
  padding: 0
}

* {
  box-sizing: border-box;
}

p,
h1,
h2,
h3,
li {
  text-transform: uppercase;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
}

a {
  color: #d3203a;
  text-decoration: none;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
}

#banner {
  display: grid;
  place-items: center;
  background-image: url('../imgs/img-fundo.jpg');
  background-position: center;
  overflow: hidden;
  height: 100svh;
  width: 100%;
}

#banner .contato {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

#banner .dados {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 60%;
  place-items: center;
}

#banner .dados a {
  color: #d3203a;
  margin-top: 20px;
}

#banner img.logo {
  width: 600px;
  max-width: 80%;
}

.telefone,
.instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

main {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
}

#infos {
  padding: 20px;
  width: 20vw;
}

#infos h2 {
  margin: 0;
}

#infos h2,
#infos p {
  color: #4e0011;
  text-transform: none;
}

#infos p {
  margin: 0;
}

#portfolio {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  background-color: #4e0011;
  width: 80vw;
  padding: 30px;
  transform: translateY(-150px);
}

#portfolio h1 {
  color: #b5253c;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
}

.lista {
  width: 50%;
}

.lista ul {
  list-style: none;
  padding: 0;
}

.lista li {
  color: #ead9c7;
  margin: 5px 0;
  font-size: 0.9rem;
}

.lista .origem {
  color: #b5253c;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

footer {
  margin-top: -100px;
  text-align: center;
  color: #4e0011;
}

@media screen and (max-width:800px) {
  main {
    flex-direction: column;
  }

  #banner .contato {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #infos {
    width: 100%;
    margin-bottom: 40px;
  }

  #portfolio {
    flex-direction: column;
    transform: translateY(-70px);
  }

  .lista {
    width: 100%;
  }
}


@media screen and (max-width:500px) {

  #banner .dados {
    grid-template-columns: 1fr;
    place-items: start;
  }

  #portfolio {
    width: 90vw;
  }

  footer {
    margin-top: 0px;
    text-align: center;
    color: #4e0011;
    font-size: 10px;
  }

}