.bannerHero {
  position: relative;
  z-index: 1;

  background: var(--bg-pattern-light);
}

.bannerHero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 50%;
  width: 100%;

  background: linear-gradient(to bottom, transparent, #fff);
}

.bannerHero__title {
  position: relative;
  z-index: 1;
  margin: 0 0 2.5rem;
  width: 100%;

  font-size: 3rem;
  font-weight: var(--regular);
  text-align: center;
  color: var(--black-1);
}

.bannerHero__title::before {
  content: '';
  position: absolute;
  bottom: 0.4rem;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 0.75rem;

  background-color: var(--primary-grey);
}

.bannerHero__title>span {
  background: var(--gradient-1);
  background-clip: text;

  font-weight: 500;
  color: transparent;
}

.aba-conteudo {
  display: none;
}

.aba-conteudo.active {
  display: block;
}

.aba-conteudo p {
  line-height: 1.7;
}

.aba-conteudo ul,
.aba-conteudo ol {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
}

.aba-conteudo li+li {
  margin-top: 0.5rem;
}

.tabela-abas {
  width: 100%;
  margin: 0 0 1.5rem;
  border-collapse: collapse;
  overflow: hidden;
  border: solid 1px var(--grey-2);
  border-radius: var(--radius-2);
}

.tabela-abas th,
.tabela-abas td {
  padding: 0.9rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: solid 1px var(--grey-2);
}

.tabela-abas th {
  background-color: var(--primary-grey);
  color: var(--primary-dark);
  font-weight: var(--semi-bold);
}

.tabela-abas tbody tr:last-child td {
  border-bottom: none;
}

@media screen and (max-width: 768px) {
  .tabela-abas {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

@media screen and (max-width: 576px) {
  .bannerHero__title {
    font-size: 2.5rem;
  }

  .paper .flex-row.gap-2>.btn-primario.outline {
    width: 100%;
  }
}
