@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.imagem {
  padding: 10px calc((100% - 1100px) / 2);
  padding-top: 30px;
}

.imagem img {
  object-fit: cover;
  width: 1200px;
  height: 280px;
  margin: 0 auto;
}


.top {
  padding: 10px calc((100% - 1100px) / 2);
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}

.top h2 {
  padding-top: 40px;
  padding-bottom: 15px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: left;
  color: green;
}

.top p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: justify;
  padding-bottom: 10px;
}

.missao {
  padding: 10px calc((100% - 1100px) / 2);
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}

.missao h2 {
  padding-top: 30px;
  padding-bottom: 15px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: left;
  color: green;
}

.missao p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: justify;
  padding-bottom: 10px; 
}

.valores {
  padding: 10px calc((100% - 1100px) / 2);
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  padding-bottom: 60px;
}

.valores h2 {
  padding-top: 7px;
  padding-bottom: 15px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: left;
  color: green;
  min-width: 700px;
}

.valores p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: justify;
  padding-bottom: 10px;
}

.valores span {
  color: #222222;
  font-weight: bold;
}

  @media (max-width: 700px) {

  .imagem {
    margin-top: 30px;
    padding: 10px;
  }

  .top {
    padding: 10px;
  }

  .top p{
    text-align: left;
  }

  .missao {
    padding: 10px;
  }

  .missao p{
    text-align: left;
  }
  
  .valores {
    padding: 10px;
  }

  .valores h2 {
    
    min-width: 0;
  }

  .valores p {    
    text-align: left;
  }
    
}