/* TITULO DO INSTITUCIONAL */
.section-container {
  width: 100%;;
  background: #ffffffe8;
  padding: 50px;
  text-align: justify;
  color: black;
}

.section-title {
  padding: 20px;
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
}

.section {
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  margin-bottom: 60px;
}
.section.visible {
  opacity: 1;
  transform: translateY(0);
}
.section img {
  max-width: 100%;
  border-radius: 8px;
  margin: 15px 0;
  display: block;
}