.mainSobreSI{
  min-height: 100vh;
  background: #eee8df;
}

.heroSobreSI{
  position: relative;
  min-height: 905px;
  overflow: hidden;
  padding: 130px clamp(28px, 5.8vw, 82px) 34px;
  color: #182516;
  background-image:
    linear-gradient(90deg, rgba(238, 232, 223, .98) 0%, rgba(238, 232, 223, .9) 36%, rgba(238, 232, 223, .24) 63%, rgba(238, 232, 223, 0) 100%),
    url("../img/fundoSobreSI.png");
  background-color: #eee8df;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.heroSobreSI::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 45%, rgba(193, 130, 45, .12), transparent 26%),
    linear-gradient(180deg, rgba(238, 232, 223, 0) 72%, rgba(238, 232, 223, .66) 100%);
}

.conteudoHeroSobreSI{
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.etiquetaSobreSI{
  display: block;
  margin-bottom: 20px;
  color: #b0782d;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.etiquetaSobreSI::after{
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin-top: 14px;
  background: #c1822d;
}

.conteudoHeroSobreSI h1{
  width: min(720px, 100%);
  margin: 0;
  color: #172017;
  font-family: var(--font-title);
  font-size: clamp(44px, 4.55vw, 68px);
  font-weight: 500;
  line-height: 1.02;
}

.conteudoHeroSobreSI h1 span{
  color: #b87520;
}

.linhaSobreSI{
  display: block;
  width: 54px;
  height: 2px;
  margin: 24px 0 24px;
  background: #c1822d;
}

.conteudoHeroSobreSI p{
  width: min(545px, 100%);
  margin: 0 0 18px;
  color: #1b2319;
  font-family: var(--font-body);
  font-size: clamp(17px, 1.18vw, 21px);
  line-height: 1.34;
}

.destaqueSobreSI{
  margin-top: 28px !important;
  color: #b87520 !important;
  font-weight: 600;
}

.botoesSobreSI{
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.botaoSobreSI{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.botaoSobreMetodoSI{
  color: #191306;
  background: linear-gradient(90deg, #d29131, #ecb759);
}

.botaoSobreAtendimentoSI{
  color: #b87520;
  border: 1px solid rgba(193, 130, 45, .86);
  background: rgba(238, 232, 223, .62);
}

.botaoSobreSI img{
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.botaoSobreSI:hover,
.botaoSobreSI:focus-visible{
  box-shadow: 0 12px 24px rgba(52, 41, 25, .18);
  transform: translateY(-2px);
}

.rodapeHeroSobreSI{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(980px, 100%);
  margin: 28px auto 0;
  overflow: hidden;
  border: 1px solid rgba(193, 130, 45, .76);
  border-radius: 14px;
  background: linear-gradient(90deg, #0d2a13, #1f3c1d, #0d2a13);
  box-shadow: 0 18px 36px rgba(40, 44, 24, .18);
}

.itemRodapeSobreSI{
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 106px;
  padding: 18px 26px;
  border-right: 1px solid rgba(234, 190, 120, .42);
}

.itemRodapeSobreSI:last-child{
  border-right: 0;
}

.itemRodapeSobreSI > img{
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.itemRodapeSobreSI h2{
  margin: 0 0 8px;
  color: #fff7df;
  font-family: var(--font-title);
  font-size: clamp(21px, 1.45vw, 27px);
  font-weight: 500;
  line-height: 1.05;
}

.itemRodapeSobreSI p{
  margin: 0;
  color: #f4dfb9;
  font-family: var(--font-body);
  font-size: clamp(13px, .95vw, 16px);
  line-height: 1.28;
}

@media (max-width: 1080px){
  .heroSobreSI{
    min-height: auto;
    padding-top: 118px;
    background-position: 58% top;
  }

  .conteudoHeroSobreSI{
    width: min(640px, 100%);
  }

  .rodapeHeroSobreSI{
    grid-template-columns: 1fr;
    width: min(640px, 100%);
  }

  .itemRodapeSobreSI{
    border-right: 0;
    border-bottom: 1px solid rgba(234, 190, 120, .42);
  }

  .itemRodapeSobreSI:last-child{
    border-bottom: 0;
  }
}

@media (max-width: 620px){
  .heroSobreSI{
    padding: 104px 18px 28px;
    background-image:
      linear-gradient(180deg, rgba(238, 232, 223, .18) 20%, rgba(238, 232, 223, .82) 38%, rgba(238, 232, 223, .98) 62%, rgba(238, 232, 223, 1) 100%),
      url("../img/fundoSobreSI.png");
    background-position: 78% top;
  }

  .conteudoHeroSobreSI{
    width: min(414px, 100%);
    padding-top: min(68vw, 340px);
    text-align: center;
    margin-top: 125px;
  }

  .etiquetaSobreSI{
    font-size: 12px;
  }

  .etiquetaSobreSI::after,
  .linhaSobreSI{
    margin-left: auto;
    margin-right: auto;
  }

  .conteudoHeroSobreSI h1{
    width: min(414px, 100%);
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(32px, 9.6vw, 43px);
    line-height: 1;
  }

  .conteudoHeroSobreSI p{
    margin-left: auto;
    margin-right: auto;
    font-size: 17px;
  }

  .botoesSobreSI{
    flex-direction: column;
    gap: 14px;
    width: min(330px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  .botaoSobreSI{
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    font-size: 12px;
  }

  .rodapeHeroSobreSI{
    width: min(430px, 100%);
    margin-top: 30px;
  }

  .itemRodapeSobreSI{
    grid-template-columns: 56px 1fr;
    gap: 16px;
    min-height: 96px;
    padding: 18px;
    text-align: left;
  }

  .itemRodapeSobreSI > img{
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 420px){
  .conteudoHeroSobreSI h1{
    font-size: clamp(31px, 10.2vw, 42px);
  }

  .itemRodapeSobreSI{
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}
