body {
  h2 {
    font-size: 2rem;
    line-height: 2.75rem;
    font-weight: normal;
    color: rgba(0, 0, 0, 0.92); /* blackAlpha.900 aproximado */
    padding-bottom: 1rem;
  }

  h3 {
    font-size: 1.5rem;
    font-weight: 600; /* semibold */
    color: rgba(0, 0, 0, 0.92);
  }

  p {
    font-size: 0.875rem;
    line-height: 1.5rem;
    font-weight: normal;
    color: rgba(0, 0, 0, 0.92);
    padding-bottom: 1.5rem;
  }

  @media (min-width: 48em) {
    p {
      font-size: 1rem;
    }
  }

  p img {
    margin-right: 5px;
    display: inline-block;
  }

  .mobile {
    display: block;
  }

  .desktop {
    display: none;
  }

  @media (min-width: 48em) {
    .mobile {
      display: none;
    }

    .desktop {
      display: block;
    }
  }

  p.titleImg {
    font-size: 0.75rem;
    font-weight: 400;
    color: #7e7e7e;
    padding: 0.5rem 0 0 3%;
  }

  @media (min-width: 48em) {
    p.titleImg {
      padding: 0.5rem 0 0 0;
    }
  }

  .heroSection h2 {
    font-size: 2.5rem;
    line-height: 3.5rem;
    font-weight: normal;
    color: white;
    margin: 1rem 0;
  }

  @media (min-width: 48em) {
    .heroSection h2 {
      font-size: 3rem;
    }
  }

  .heroSection .title-bigger {
    font-size: 4.1rem;
    line-height: 3.8rem;
    font-weight: normal;
  }

  @media (min-width: 48em) {
    .heroSection .title-bigger {
      font-size: 6.875rem;
      line-height: 6.55rem;
    }
  }

  .heroSection h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin: 1rem 0;
  }

  @media (min-width: 48em) {
    .heroSection h3 {
      font-size: 1.75rem;
    }
  }

  .heroSection p {
    font-size: 1rem;
    line-height: 1.75rem;
    font-weight: normal;
    color: white;
    margin: 1rem 0;
  }

  .heroSection .buttonOrange {
    margin-top: 0;
    padding: 1rem 2rem;
  }

  .titleWithComplemente::before {
    content: 'ao ano';
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    position: absolute;
    right: 0;
    top: 3.7rem;
    letter-spacing: 0;
  }

  @media (min-width: 48em) {
    .titleWithComplemente::before {
      top: 2.5rem;
    }
  }

  .formOpen p {
    color: rgba(0, 0, 0, 0.92);
  }

  .formOpen a {
    background: none;
    padding: 0;
    display: inline;
  }

  .thanksPage .content-next-steps {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  @media (min-width: 48em) {
    .thanksPage .content-next-steps {
      justify-content: space-between;
      flex-direction: row;
    }
  }

  .footerSection p,
  .footerSection a {
    color: #fff;
    font-size: 0.75rem; /* "xs" geralmente é 12px */
    line-height: 1rem;
    font-weight: 500;
  }
}

::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-track {
  background-color: #2c2c2c;
}
::-webkit-scrollbar-thumb {
  background-color: #9f9f9f;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #7e7e7e;
}