section.section-sobre {
  display: flex;
  justify-content: center;
  margin: 4rem 0;
}

.container-sobre {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: var(--width-size);
  width: 100%;
}

.div-imagem-sobre {
  flex: 1 1 calc(40% - 1rem);
  text-align: center;
  background: black;
  min-width: 300px;
}

.imagem-sobre {
  height: 80vh;
}



.titulo-sobre {
  color: var(--primary);
  font-size: 3rem;
}

.descricao-sobre {
  font-size: 1.8rem;
  line-height: 2.5rem;
  z-index: 99;
}

.body-sobre {
  padding: 2rem;
  box-shadow: 2px 2px 6px #ddd;
  height: max-content;
  margin: auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-03);
  position: relative;
}

.body-sobre::before {
  content: "";
  background: url(/assets/image/dna.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  display: block;
  left: 50%;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.04;
  transform: translate(-50%, 0%);
}