.sobre-encontro-section {
  position: relative;
  width: 100%;
  padding: 60px 0;
  overflow: hidden;
  background-color: #fcf3d1;
}

.sobre-encontro-section__row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 20px;
  text-align: center;
}

.sobre-encontro-section__title {
  max-width: 680px;
  margin: 0;
  color: #1c3051;
  font-size: clamp(30px, 7vw, 40px);
  font-weight: 900;
  line-height: 1.2em;
}

.sobre-encontro-section__logos {
  display: block;
  width: 100%;
  max-width: 440px;
  height: auto;
  margin-top: 30px;
}

.sobre-encontro-section__content {
  width: 100%;
  max-width: 760px;
  margin-top: 35px;
}

.sobre-encontro-section__content p {
  margin: 0;
  color: #1a1a1a;
  font-size: clamp(17px, 4vw, 21px);
  font-weight: 400;
  line-height: 1.65;
}

.sobre-encontro-section__content p + p {
  margin-top: 20px;
}

.sobre-encontro-section__content strong {
  font-weight: 900;
}

.sobre-encontro-section__subtitle {
  margin: 45px 0 0;
  color: #1a1a1a;
  font-size: clamp(21px, 5vw, 26px);
  font-weight: 900;
  line-height: 1.2;
}

.sobre-encontro-section__benefits {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 700px;
  margin-top: 30px;
  gap: 24px;
}

.sobre-encontro-section__benefit {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  text-align: left;
}

.sobre-encontro-section__benefit img {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.sobre-encontro-section__benefit p {
  margin: 0;
  color: #1a1a1a;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.4;
}

.sobre-encontro-section__more {
  margin: 40px 0 0;
  color: #1c3051;
  font-size: clamp(30px, 7vw, 36px);
  font-weight: 900;
  line-height: 1;
}

.sobre-encontro-section .hero-section__button {
  margin-top: 30px;
}

/* Tablet */

@media (min-width: 768px) {
  .sobre-encontro-section__benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 45px;
    row-gap: 20px;
  }

  .sobre-encontro-section__benefit {
    padding: 15px;
  }
}

/* Desktop */

@media (min-width: 1200px) {
  .sobre-encontro-section__row {
    padding-inline: 0;
  }

  .sobre-encontro-section::before,
  .sobre-encontro-section::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 0;
    width: 90px;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 90px auto;
    pointer-events: none;
  }

  .sobre-encontro-section::before {
    left: 0;
    background-image: url("/assets/images/background_before_o_que_e_o_encontro.webp");
  }

  .sobre-encontro-section::after {
    right: 0;
    background-image: url("/assets/images/background_after_o_que_e_o_encontro.webp");
  }
}