#objetivos {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  height: 100%;
  padding: 0;
}

.info {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0rem 1rem 1rem 1rem;
}

.info h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: #2f5f33;
  display: none;
}

.info p {
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.7;
}

.image {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  padding: 2rem;
}

.image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 40rem;
}

@media (min-width: 768px) {
  #objetivos {
    flex-direction: row;
  }

  .info {
    width: 55%;
    padding: 4rem 2rem 0 2rem;
  }

  .image {
    width: 40%;
    padding: 2rem;
    max-height: 40rem;
  }

  .info h2 {
    display: block;
  }
}
