.sobre {
  margin: auto;
  padding: 5rem 0;
}

.container_sobre {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  gap: 2rem;
  flex-wrap: nowrap;
}

.sobre_right {
  flex: 1 1 50%;
}

.sobre_right hr {
  border: 1px solid var(--color-1);
  width: 150px;
  margin: 10px 0;
}

.sobre_right p {
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 24px;
}

.sobre_left {
  flex: 1 1 30%;
}

.sobre_left img {
  border-radius: 10px;
  width: 100%;
  border: none;
  box-shadow: 0px 4px 10px #0002;
  height: 100%;
  object-fit: cover;
}

.sobre_botao {
  width: 100%;
  padding-right: var(--padding-right);
  & > a {
    display: block;
    width: inherit;
    text-align: center;
    text-decoration: none;
    background-color: var(--color-1);
    border: 0;
    padding: 10px;
    color: white;
    border-radius: 99px;
    font-size: 20px;
    margin-top: 20px;
    transition: 0.3s all ease-in-out;
    cursor: pointer;
    &:hover {
      background-color: var(--color-2);
    }
  }
}

@media (width <= 750px) {
  .container_sobre {
    flex-direction: column-reverse;
  }
  .sobre_left img {
    height: 250px;
  }

  .sobre_right h1 {
    text-align: center;
    font-size: 28px;
  }

  .sobre_right hr {
    margin: 10px auto;
    width: 90px;
  }
  .sobre {
    margin: auto;
    padding: 4rem 0;
  }
}
