@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');
body {    font-family: 'DM Sans', sans-serif;
    background-color: rgb(253, 248, 234);
}

.sobre-container {
  max-width: 1100px;
  margin: 20px auto 40px;
  padding: 10px 20px 30px;
  

}

.sobre-titulo {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  margin: 10px 0 25px;
  letter-spacing: 0px;
  text-decoration: underline;
}

.sobre-grid {
  display: flex;
  gap: 30px;
  align-items: stretch;
  margin-top: 45px;
}

.sobre-texto {
 border-radius: 10px;
  padding: 18px 20px;
  font-size: 15px;
  line-height: 1.5;
  color: #000000;
  height: 100%;
  width: 115vh;
  border: 1px solid #eee;
  background: #fff;
}
.sobrenos-line{
   text-align: center;
   width: 335px;
  height: 4px;
  background: #f60;
  border-radius: 10px;
  margin: 12px auto 0;
}

.sobre-texto p {
  margin: 0 0 16px;
}

.sobre-imagem {
  flex: 1;
 
  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  height: 100%;
}

.sobre-imagem img {
 max-width: 93%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.44);

}

/* Responsivo */
@media screen and (max-width: 1000px) and (orientation: portrait) {
  .sobre-grid {
    flex-direction: column;
    margin-top: 15px;
  }
  .sobrenos-line {
  text-align: center;
  width: 280px;
  }
  .sobre-texto {
  font-size: 16px;
  height: 100%;
  width: 46vh;
  }
}