section.para-quem {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  margin: 40px 0 100px;
}

section.para-quem h2 {
  font-size: 32px;
}

section.para-quem h2 em {
  position: relative;

  font-style: normal;
  color: var(--highlight);
}

section.para-quem h2 em::after {
  content: '';
  position: absolute;
  top: -16px;
  left: -10px;
  
  height: 68px;
  width: 108%;

  background-image: url('../assets/circle.svg');
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

section.para-quem div.boxes {
  position: relative;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  align-items: center;
  column-gap: 30px;

  margin: 56px 0 74px;
}

section.para-quem div.boxes::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -116px;

  height: 154px;
  width: 146px;

  background-image: url('../assets/curved_arrow.svg');
  background-size: contain;
  background-repeat: no-repeat;

  z-index: 1;
}

section.para-quem div.arrow-mobile {
  display: none;
}


section.para-quem div.boxes div.info-box {
  display: flex;
  flex-direction: column;

  height: 240px;
  min-width: 240px;
  padding: 54px 30px 18px;

  background: var(--white);
  border-top: 3px solid var(--highlight);
  border-radius: 0px 0px 10px 10px;

  z-index: 2;
}

section.para-quem div.boxes div.info-box img {
  width: 40px;
  height: 40px;

  margin-bottom: 18px;
}

section.para-quem div.boxes div.info-box div h4 {
  font-size: 14px;
  color: var(--neutral-black);

  margin-bottom: 12px;
}

section.para-quem div.boxes div.info-box div p {
  font-size: 14px;
  color: var(--grey);
}

section.para-quem h3 {
  position: relative;

  width: 55%;

  font-size: 22px;
  line-height: 30px;
  text-align: center;

  margin-bottom: 16px;
}

section.para-quem h3::before,
section.para-quem h3::after {
  content: '';
  position: absolute;

  top: -22px;

  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

section.para-quem h3::before {
  width: 55px;
  height: 58px;

  left: -40px;

  background-image: url('../assets/left_highlight.svg');
}

section.para-quem h3::after {
  width: 48px;
  height: 62px;
  right: -28px;

  background-image: url('../assets/right_highlight.svg');
}

section.para-quem span {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  height: 155px;

  font-size: 32px;
  font-weight: 700;

  background-image: url('../assets/signature.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

@media (max-width: 768px) {
  section.para-quem h2 {
    font-size: 14px;
  }

  section.para-quem h2 em::after {
    top: -26px;
    left: -6px;

    width: 110%;

    background-image: url('../assets/circle_mobile.svg');
  }

  section.para-quem div.boxes {
    justify-content: normal;

    max-width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;

    padding: 0 25px;

    margin: 24px 0 0;
  }

  section.para-quem div.boxes div.info-box {
    min-height: 288px;
  }

  section.para-quem div.boxes::after {
    display: none;
  }

  section.para-quem div.arrow-mobile {
    display: block;

    height: 85px;
    width: 100%;

    background-image: url('../assets/curved_arrow_mobile.svg');
    background-position: 26px -22px;
    background-repeat: no-repeat;
    background-size: contain;
  }

  section.para-quem h3 {
    width: 80%;
    font-size: 14px;
    line-height: 20px;

    margin-bottom: 4px;
  }

  section.para-quem h3::after {
    height: 58px;
    right: -32px;
  }

  section.para-quem span {
    font-size: 15px;
    height: 75px;
  }
}