* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  padding: 16px 0;
  background-color: blue;
  color: white;
  font-size: larger;
}
header nav li {
  display: inline;
  margin-left: 16px;
  font-size: 18px;
}
header nav li a {
  color: white;
  text-decoration: none;
}
header .container,
section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header h1,
section h2,
section h3,
form button{
  font-family: 'Roboto', sans-serif;
}

.opacidade{
  position: absolute;
  opacity: 0.1;
  background-image: url(../img/LogoApolloCell.png);
  height: 600px;
  margin-left: 50px;
  top: 100px;
}

body,
input,
textarea {
  font-family: 'Roboto', sans-serif;
}

.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.container p {
  text-align: justify;
}

.marcas img {
  height: 50px;
  margin-right: 8px;
}
.marcas li {
  display: inline;
}

section .container {
  align-items: flex-start;
}
section {
  padding: 24px 0;
  color: blue;
}
section h2 {
  margin-bottom: 16px;
}
section p {
  margin-bottom: 8px;
}

.img-loja {
  margin-right: 32px;
}

#contato .container {
  display: block;
}

.metodos-contato {
  display: flex;
  justify-content: space-between;
}

form input,
textarea,
button {
  display: block;
  width: 320px;
  margin-bottom: 8px;
  padding: 8px;
}
form textarea {
  resize: none;
  height: 180px;
}

.social-links img {
  height: 24px;
}
.social-links li {
  display: inline;
  margin-right: 10px;
}
.social-links li a {
  text-decoration: none;
}

section h3 {
  margin-bottom: 16px;
}

form button {
  background-color: blue;
  color: white;
  border: none;
  cursor: pointer;
}
form button:hover {
  background-color: rgb(97, 97, 216);
}

input:focus, textarea:focus {
  outline-color: blue;
}

footer {
  background-color: blue;
  color: white;
  padding: 16px 0;
}

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

  section .container {
    max-width: 90%;
    display: inline;
  }

  header h1 {
    font-size: medium;
  }

  #sobre p {
    padding-inline: 10px;
  }
  #sobre img-loja {
    width: 350px;
  }

  #contato {
    display: inline;
  }

  .metodos-contato {
    display: inline;
  }
  .metodos-contato h3 {
    padding-bottom: 27px;
  }

  footer {
    font-size: x-small;
    width: 1400px%;
  }

  .opacidade {
    display: none;
  }

  
}
