#section_segmentos {
  background-image: none; /* Background para o mobile */
  background-color: #2e6543;
  color: var(--white-200);
  padding: 4rem 1.25rem;
  text-align: center;

  & .box_content {
    display: flex;
    flex-direction: column;
    gap: 3rem;

    & h2 {
      font-weight: bold;
      font-size: 2.375rem;
      line-height: 1.08;
    }

    & .list_segmentos {
      display: flex;
      flex-direction: column;
      gap: 2.25rem;

      & .card_segmento {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background-color: #fff;
        border-radius: 10px;
        padding: 20px 34px;
        color: var(--gray-200);
        text-align: start;

        & > div {
          display: flex;
          align-items: center;
          justify-content: start;
          gap: 12px;

          & h3 {
            font-weight: bold;
            font-size: 1.5rem;
          }
        }

        & p {
          font-weight: 500;
          font-size: 1.125rem;
        }
      }
    }
  }
}

@media (min-width: 768px) {
  #section_segmentos {
    padding: 4rem;
  }
}

@media (min-width: 992px) {
  #section_segmentos {
    padding: 4rem 8rem;

    & .box_content {
      & h2 {
        font-size: 3rem;
      }
    }
  }
}

@media (min-width: 1200px) {
}

@media (min-width: 1400px) {
}

@media (min-width: 1600px) {
  #section_segmentos {
    & > div > div > div {
      flex: 0 0 auto;
      width: 50%;
    }
  }
}
