/* Modal fechado */
.modalSobre {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #3e3e3c;
  z-index: 1000;
  overflow-y: auto;
  flex-direction: column;
}

/* Modal aberto */
#modalSobre.active {
  display: flex;
}

.modalSobre-interface-wrapper {
  max-width: 1000px; /* largura máxima */
  margin: 0 auto; /* centraliza */
}

.modalSobre-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #333;
}

.close-modalSobre {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 1.5rem;
  cursor: pointer;
}

/* COMEÇO DO ESTILO DA SECTION --> sobre-nos */
.sobre-nos {
  display: flex;
  gap: 4%;
  align-items: center;
  padding: 2%;
}

section.sobre-nos h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

section.sobre-nos p {
  margin: 1rem 0rem;
  text-align: justify;

}

section.sobre-nos #section-texto {
  max-width: 650px;
}

.img-sobre-nos {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(500px, 100%);
}

.img-sobre-nos img {
  width: 100%;
  border-radius: 15px;
}
