/* Fontes locais — apenas pesos usados no layout (Sora 400–700; Noto 400 no rodapé) */
@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/gstatic-sora-4.ttf") format("truetype");
}
@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/gstatic-sora-5.ttf") format("truetype");
}
@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../assets/fonts/gstatic-sora-6.ttf") format("truetype");
}
@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/gstatic-sora-7.ttf") format("truetype");
}
@font-face {
  font-family: "Noto Sans Sora Sompeng";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/gstatic-noto-sora-sompeng-1.ttf") format("truetype");
}

/* Font Awesome — subset sólido (ícones usados na página) */
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../assets/fonts/fa-solid-900.woff2") format("woff2");
}
.fa,
.fas {
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
.fa-angle-double-right::before {
  content: "\f101";
}
.fa-fingerprint::before {
  content: "\f577";
}
.fa-check-circle::before {
  content: "\f058";
}
.fa-plus::before {
  content: "\f067";
}
.fa-minus::before {
  content: "\f068";
}
.fa-chevron-down::before {
  content: "\f078";
}
.fa-chevron-up::before {
  content: "\f077";
}
.fa-phone-alt::before {
  content: "\f879";
}
.fa-mail-bulk::before {
  content: "\f674";
}

/* Reset mínimo */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Sora", sans-serif;
}
img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}
p {
  margin: 0 0 1em;
}
p:last-child {
  margin-bottom: 0;
}
ul {
  margin: 0;
  padding-left: 1.2em;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.container--hero {
  max-width: 1200px;
}
/* Estágio alinhado ao contentor Elementor (max 1200px): blobs posicionam-se relativamente a esta caixa, não à viewport inteira */
.hero__stage {
  position: relative;
  z-index: 1;
}
.container--narrow {
  max-width: 804px;
}
.container--consignado,
.container--process,
.container--partners {
  max-width: 1100px;
}
.container--faq {
  max-width: 804px;
}

/* Cabeçalho — colunas post-8 (só quando nav/CTA visíveis, alinhado a Elementor desktop) */
.site-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
@media (min-width: 1025px) {
  .site-header__inner {
    display: grid;
    grid-template-columns: 22.104% 44.228% minmax(0, 1fr);
    align-items: flex-start;
    gap: 0;
    justify-content: stretch;
  }
  .site-header__brand {
    grid-column: 1;
  }
  .site-header__nav {
    grid-column: 2;
  }
  .site-header__cta {
    grid-column: 3;
    justify-self: end;
  }
}
.site-header__brand {
  margin: 14px 0 0;
  text-align: start;
  flex: 0 0 auto;
}
.site-header__brand img {
  width: 70%;
}
.site-header__nav-list {
  list-style: none;
  margin: 6% 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 36px;
}
.site-header__nav-list a {
  font-family: "Sora", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #808080;
  text-decoration: none;
  transition: color 0.3s;
}
.site-header__nav-list a:hover {
  color: #606060;
}
.site-header__cta {
  margin: 4% 0 -2%;
}

@media (max-width: 1024px) {
  .site-header__nav,
  .site-header__cta {
    display: none;
  }
}

.site-header {
  background: #fff;
}
@media (max-width: 767px) {
  .site-header {
    padding: 6px 0 10px;
  }
  .site-header__brand {
    text-align: center;
    width: 100%;
    margin-top: 8px;
  }
  .site-header__brand img {
    width: 42%;
  }
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  text-decoration: none;
  font-family: "Sora", sans-serif;
  font-weight: 500;
  border-radius: 999px;
  cursor: pointer;
  border: none;
}
.btn--header {
  font-size: 14px;
  padding: 19px 44px;
  color: #fff;
  background: transparent;
  background-image: radial-gradient(at top left, #0000e8 0%, #56a9e2 100%);
}
.btn--primary {
  font-size: 17px;
  padding: 19px 65px;
  color: #fff;
  background-color: #0000e8;
}
.btn--primary .fas,
.btn--header .fas {
  color: #fff;
}
@media (max-width: 767px) {
  .btn--primary {
    font-size: 13px;
    padding: 19px;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: 77px 0 110px;
  overflow: hidden;
}
.hero__blobs {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}
.hero__blob {
  position: absolute;
  width: auto;
  max-width: none;
}
.hero__blob--1 {
  left: -686px;
  top: 544px;
  width: 34%;
}
.hero__blob--2 {
  left: 592px;
  top: 2949px;
  width: 34%;
}
.hero__blob--3 {
  left: 617px;
  top: 1430px;
  width: 24%;
}
.hero__blob--4 {
  left: -714px;
  top: 3736px;
  width: 86%;
}
.hero__panel {
  position: relative;
  z-index: 1;
  border-radius: 55px;
  padding: 100px 65px 65px;
  background-image: url("../assets/images/2026/02/Sem-Tituffaslo-2.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: background 0.3s, border-radius 0.3s;
}
.hero__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.hero__copy {
  flex: 1 1 50%;
  max-width: 50%;
  padding-right: 12px;
}
.hero__visual {
  flex: 1 1 50%;
  max-width: 50%;
}
.hero__visual img {
  width: 96%;
  margin: -13% -41% -15% -17%;
  object-fit: contain;
  object-position: center center;
}
.hero__title {
  margin: 6% 0 0;
  font-family: "Sora", sans-serif;
  font-size: 51px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -1.7px;
  color: #fff;
}
.hero__title-accent {
  color: #4fc3f7;
}
.hero__lead {
  margin: 1em 0;
  font-family: "Sora", sans-serif;
  font-size: 19px;
  font-weight: 400;
  color: #d1d1d1;
}

/* Wrapper só afeta mobile (faixa branca full-bleed); no desktop é neutro */
.hero-stats-wrap {
  position: relative;
  z-index: 1;
}
.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 6%;
  margin-bottom: -7%;
}
.hero-stats__spacer {
  flex: 1 1 54.999%;
  min-height: 1px;
}
.stat-pill {
  flex: 0 1 22.445%;
  max-width: 22.445%;
  text-align: start;
}
.stat-pill:last-child {
  flex-basis: 22.193%;
  max-width: 22.193%;
}
.stat-pill__value {
  margin: 0 0 6px;
  font-family: "Sora", sans-serif;
  font-size: 35px;
  font-weight: 600;
  color: #464646;
}
.stat-pill__label {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #8b8b8b;
}

/* Hero — desktop: homem ancorado à base do cartão (referência; não altera mobile ≤767px) */
@media (min-width: 768px) {
  .hero__panel {
    padding: 96px 60px 0 65px;
    overflow: hidden;
  }
  .hero__grid {
    align-items: stretch;
  }
  .hero__copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-bottom: 56px;
    box-sizing: border-box;
  }
  .hero__visual {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    align-self: stretch;
  }
  .hero__visual img {
    width: auto;
    max-width: 122%;
    min-width: 260px;
    height: auto;
    max-height: min(540px, 52vw);
    margin: -5% -14% 0 0;
    object-fit: contain;
    object-position: bottom center;
    display: block;
  }
}

@media (max-width: 767px) {
  /* Fundo branco à volta do cartão (sem faixa preta no section.hero) */
  .hero {
    padding: 0;
    background: #fff;
    overflow-x: clip;
  }
  .hero__blobs {
    display: none;
  }
  /* Brilho azul/ciano por gradientes em camadas sobre a arte (referência 2) */
  .hero__panel {
    border-radius: 48px;
    padding: 48px 22px 0;
    margin-bottom: 0;
    overflow: hidden;
    background-color: #050816;
    background-image: radial-gradient(
        ellipse 95% 80% at 8% 38%,
        rgba(0, 120, 255, 0.55) 0%,
        rgba(0, 0, 0, 0) 58%
      ),
      radial-gradient(ellipse 90% 75% at 92% 52%, rgba(79, 195, 247, 0.42) 0%, rgba(0, 0, 0, 0) 56%),
      radial-gradient(ellipse 110% 70% at 50% 92%, rgba(0, 60, 200, 0.38) 0%, rgba(0, 0, 0, 0) 62%),
      linear-gradient(165deg, rgba(0, 25, 80, 0.35) 0%, rgba(0, 0, 0, 0) 45%),
      url("../assets/images/2026/02/2806.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .hero__grid {
    flex-direction: column;
    align-items: center;
  }
  .hero__copy,
  .hero__visual {
    flex: 1 1 100%;
    max-width: 100%;
    padding-right: 0;
    width: 100%;
  }
  .hero__copy {
    padding: 0 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero__title {
    margin: 0 auto;
    max-width: 17.5em;
    text-align: center;
    font-size: 26px;
    line-height: 1.2;
  }
  .hero__lead {
    margin: 12px auto 0;
    max-width: 20rem;
    text-align: center;
    font-size: 14px;
    line-height: 1.45;
    color: #d8d8d8;
  }
  .hero__copy .btn--primary {
    margin-top: 18px;
    align-self: center;
  }
  /* Imagem centralizada; base cortada pelo canto arredondado do painel */
  .hero__visual {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 10px;
    width: 100%;
  }
  .hero__visual img {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto -14%;
    display: block;
    object-fit: cover;
    object-position: center bottom;
  }
  /* Faixa branca full-bleed */
  .hero-stats-wrap {
    position: relative;
    z-index: 1;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 0;
    padding: 28px 20px 34px;
    background: #fff;
    box-sizing: border-box;
  }
  /* Colunas alinhadas à esquerda com espaço entre elas (referência) */
  .hero-stats {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
    align-items: flex-start;
  }
  .hero-stats__spacer {
    display: none;
  }
  .stat-pill,
  .stat-pill:last-child {
    flex: 0 1 47%;
    max-width: 47%;
    padding: 0;
    box-sizing: border-box;
    text-align: left;
  }
  .stat-pill__value {
    font-size: 25px;
    font-weight: 700;
    color: #0a0a0a;
  }
  .stat-pill__label {
    font-size: 13px;
    color: #7a7a7a;
  }
}

/* Consignado */
.section--consignado {
  background-image: url("../assets/images/2026/02/82sfsafsa20.png");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  border-bottom: 1px solid #a7a7a75c;
  padding: 176px 0 200px;
}
.consignado__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.consignado__figure {
  flex: 1 1 50%;
  max-width: 50%;
}
.consignado__figure img {
  margin: -88% -12% -40% -12%;
}
.consignado__card {
  flex: 1 1 50%;
  max-width: 50%;
  background-color: #e9e9e963;
  border-radius: 33px;
  padding: 54px;
  align-self: center;
}
.consignado__kicker {
  font-family: "Sora", sans-serif;
  font-size: 41px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -1.8px;
  color: #292929;
}
.consignado__text {
  font-family: "Sora", sans-serif;
  font-size: 19px;
  font-weight: 500;
  color: #929292;
}

@media (max-width: 767px) {
  /* Bloco único claro: “cápsula” com cantos inferiores grandes + ilustração sobreposta às métricas */
  .section--consignado {
    position: relative;
    z-index: 2;
    margin-top: -36px;
    padding: 8px 20px 48px;
    border-bottom: none;
    background-image: linear-gradient(180deg, #fbfdff 0%, #e3eef8 36%, #eef4fb 100%);
    background-color: #f2f7fc;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 0 0 52px 52px;
    box-shadow: 0 18px 48px rgba(15, 45, 90, 0.07);
  }
  .container--consignado {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .consignado__grid {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .consignado__figure,
  .consignado__card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .consignado__figure {
    text-align: center;
    padding: 0 4px;
  }
  .consignado__figure img {
    width: 92%;
    max-width: 380px;
    margin: -12px auto 0;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 36px rgba(0, 35, 90, 0.14));
  }
  .consignado__card {
    margin: 6px 0 0;
    padding: 30px 22px 40px;
    border-radius: 32px 32px 26px 26px;
    background-color: #eef1f5;
    align-self: stretch;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  }
  .consignado__kicker {
    margin: 0 0 12px;
    font-size: 27px;
    line-height: 1.2;
    color: #1a1a1a;
  }
  .consignado__text {
    text-align: start;
    font-size: 15px;
    line-height: 1.55;
    color: #6e6e6e;
  }
}

/* Benefícios */
.section--benefits {
  padding: 54px 0;
}
.section__title {
  margin: 0 0 20px;
  text-align: center;
  font-family: "Sora", sans-serif;
  font-size: 43px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -2px;
  color: #161616;
}
.benefits-card {
  border-radius: 33px;
  padding: 65px;
  background-color: #000;
  background-image: url("../assets/images/2026/02/Sem-Tituffaslo-2.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.benefit-row {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 15px 22px;
  border-radius: 22px;
  margin-bottom: 0;
}
.benefit-row + .benefit-row {
  margin-top: 0;
}
.benefit-row__icon {
  flex: 0 0 auto;
  font-size: 30px;
  line-height: 1;
  background: transparent !important;
  box-shadow: none !important;
}
.benefit-row__icon .fas {
  color: #fff !important;
}
.benefit-row__title {
  margin: 0 0 16px;
  font-family: "Sora", sans-serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 0.6;
  letter-spacing: -1.2px;
  color: #fff;
}
.benefit-row__desc {
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

@media (max-width: 767px) {
  .section--benefits {
    padding: 33px 0;
  }
  .section__title {
    margin: 0 11%;
    font-size: 30px;
  }
  .benefits-card {
    padding: 22px;
  }
  .benefit-row {
    gap: 18px;
  }
  .benefit-row__icon {
    font-size: 24px;
  }
  .benefit-row__title {
    margin-bottom: 11px;
    font-size: 21px;
    line-height: 1.2;
  }
}

/* Processo */
.section--process {
  padding: 98px 0;
}
.process-shell {
  background-color: #f5f5f5;
  border-radius: 33px;
  padding: 98px;
}
.section__title--process {
  margin-bottom: 2rem;
}
.section--process .section__title {
  font-weight: 500;
  letter-spacing: -1.8px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.process-card {
  min-width: 0;
  background: #fff;
  border-radius: 22px;
  padding: 35px;
}
.process-card__icon svg {
  display: block;
  width: 48px;
  height: auto;
}
.process-card__title {
  margin: 0 0 16px;
  font-family: "Sora", sans-serif;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.9px;
  color: #131313;
}
.process-card__desc {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #8b8b8b;
}

.section--process .section__title--process {
  text-align: center;
  color: #161616;
}

@media (max-width: 767px) {
  .section--process {
    padding: 22px;
  }
  .section--process .process-shell {
    padding: 22px;
  }
  .section__title--process {
    font-size: 27px;
    line-height: 1.2;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-card {
    padding: 25px;
  }
  .process-card__title {
    font-size: 22px;
  }
  .process-card__desc {
    font-size: 13px;
  }
}

/* Parceiros */
.section--partners {
  position: relative;
  padding: 98px 0;
  background-image: url("../assets/images/2026/02/8xsaxsa20.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.partners-panel {
  position: relative;
  z-index: 2;
  border-radius: 33px;
  padding: 98px 65px;
  background-color: #f5f5f5;
  background-image: url("../assets/images/2026/02/Sem-Tituffaslo-2.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.partners-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 33px;
  background: #131313;
  opacity: 0.5;
  pointer-events: none;
}
.partners-panel > * {
  position: relative;
  z-index: 1;
}
.partners__title {
  margin: 0 0 1.5rem;
  text-align: center;
  font-family: "Sora", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -1.4px;
  color: #fff;
}
/* Image-box Elementor: posição esquerda + wrapper text-align center */
.partner-card {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 3px;
  max-width: 100%;
  margin: 0 17% 0;
  padding: 35px;
  background: #fff;
  border-radius: 22px;
  text-align: center;
}
.partner-card + .partner-card {
  margin-top: 2%;
}
.partner-card__figure {
  margin: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-card__figure img {
  transition-duration: 0.3s;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
}
.partner-card__body {
  flex: 1 1 auto;
  min-width: 0;
  text-align: center;
}
.partner-card__body p {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #585858;
  margin: 0;
}
.partner-card--uy .partner-card__figure {
  width: 22%;
  max-width: 22%;
  flex: 0 0 22%;
}
.partner-card--facta .partner-card__figure,
.partner-card--bmg .partner-card__figure,
.partner-card--c6 .partner-card__figure,
.partner-card--crefisa .partner-card__figure {
  width: 32%;
  max-width: 32%;
  flex: 0 0 32%;
}
.partner-card--v8 .partner-card__figure {
  width: 21%;
  max-width: 21%;
  flex: 0 0 21%;
  margin-right: 67px;
}

@media (max-width: 767px) {
  .section--partners {
    padding: 52px 20px 24px;
    border-radius: 44px 44px 0 0;
    overflow: hidden;
  }
  .partners-panel {
    padding: 22px;
    background-image: url("../assets/images/2026/02/2806.jpg");
  }
  .partners__title {
    margin: 0 44px;
    font-size: 25px;
  }
  /* Empilha logo + texto como no image-box mobile do Elementor */
  .partner-card {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    margin: 0;
    padding: 22px 20px;
  }
  .partner-card + .partner-card {
    margin-top: 6%;
  }
  .partner-card--uy .partner-card__figure,
  .partner-card--facta .partner-card__figure,
  .partner-card--bmg .partner-card__figure,
  .partner-card--c6 .partner-card__figure,
  .partner-card--crefisa .partner-card__figure,
  .partner-card--v8 .partner-card__figure {
    width: 52%;
    max-width: 220px;
    flex: 0 0 auto;
    margin-right: 0;
  }
  .partner-card__body {
    width: 100%;
  }
  .partner-card__body p {
    font-size: 13px;
  }
  .partner-card--v8 .partner-card__figure {
    margin-bottom: 8px;
  }
}

/* FAQ */
.section--faq {
  padding: 54px 0 98px;
}
.faq__heading {
  margin: 0 0 1.5rem;
  text-align: center;
  font-family: "Sora", sans-serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -1.3px;
  color: #161616;
}
.faq__item {
  border-bottom: 1px solid #e0e0e0;
}
.faq__item:last-child {
  border-bottom: none;
}
.faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  padding: 25px;
  background: #ececec;
  border: none;
  cursor: pointer;
  font: inherit;
}
.faq__trigger-icons {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
}
.faq__icon--open {
  display: none;
}
.faq__trigger.is-open .faq__icon--closed {
  display: none;
}
.faq__trigger.is-open .faq__icon--open {
  display: inline-block;
}
.faq__trigger-text {
  flex: 1;
  min-width: 0;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #3a3a3a;
  text-align: left;
}
.faq__trigger.is-open .faq__trigger-text {
  color: #161616;
}
.faq__trigger .fas {
  color: #3a3a3a;
}
.faq__trigger.is-open .fas {
  color: #161616;
}
.faq__panel {
  padding: 0 25px 25px;
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #7a7a7a;
}
.faq__panel[hidden] {
  display: none !important;
}

@media (max-width: 767px) {
  .section--faq {
    padding: 40px 20px 44px;
    background-color: #f4f4f4;
  }
  .faq__heading {
    margin: 0 0 18px;
    font-size: 27px;
    color: #161616;
  }
  .faq__list {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }
  .faq__item {
    margin-bottom: 12px;
    border-bottom: none;
    border-radius: 18px;
    overflow: hidden;
    background: #ececec;
  }
  .faq__item:last-child {
    margin-bottom: 0;
  }
  .faq__trigger {
    background: transparent;
    padding: 18px 16px;
    border-radius: 0;
  }
  .faq__trigger.is-open {
    padding-bottom: 12px;
  }
  .faq__trigger-text {
    font-size: 14px;
  }
  .faq__panel {
    font-size: 12px;
    background: #fff;
    padding: 0 16px 16px;
    border-radius: 0 0 14px 14px;
  }
}

/* Rodapé */
.site-footer {
  background: #000;
  padding: 100px 0 0;
}
.site-footer__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.site-footer__col {
  flex: 1 1 200px;
  min-width: 160px;
}
@media (min-width: 768px) {
  .site-footer__grid {
    display: grid;
    grid-template-columns: 30.182% 21.636% 24.339% 23.804%;
    gap: 0;
    align-items: start;
  }
  .site-footer__col {
    min-width: 0;
  }
}
.site-footer__brand-block img {
  width: 59%;
}
.site-footer__tagline {
  margin-top: 12px;
  font-family: "Sora", sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #fff;
}
.site-footer__heading {
  margin: 0 0 12px;
  font-family: "Sora", sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #fff;
}
.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__links a {
  font-family: "Sora", sans-serif;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1px;
  color: #808080;
  text-decoration: none;
}
.site-footer__links--inline {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0 33px;
}
.site-footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 0;
  font-family: "Noto Sans Sora Sompeng", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #c2c2c2;
}
.site-footer__contact li + li {
  margin-top: 9px;
}
.site-footer__contact-icon .fas {
  color: #1c61c4;
}
.site-footer__brand-block {
  flex: 1 1 30.182%;
}
.site-footer__grid > .site-footer__col:nth-child(2) {
  margin-left: 22px;
}

.site-footer__bar {
  margin-top: 48px;
  border-top: 1px solid #ffffff26;
  padding: 12px 0;
  background: #000;
}
.site-footer__legal {
  margin: 0 0 -15px;
  text-align: center;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}

@media (max-width: 767px) {
  .site-footer {
    padding: 40px 24px 0;
  }
  .site-footer__grid > .site-footer__col:nth-child(2) {
    margin-left: 0;
  }
  .site-footer__col {
    margin-bottom: 26px;
  }
  .site-footer__col:last-child {
    margin-bottom: 0;
  }
  .site-footer__heading {
    margin: 0 0 10px;
  }
  .site-footer__links {
    margin-top: 12px;
  }
  .site-footer__links--inline {
    margin-top: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .site-footer__links a {
    font-size: 14px;
  }
  .site-footer__links--inline a {
    font-size: 14px;
  }
  .site-footer__contact li {
    font-size: 14px;
  }
  .site-footer__bar {
    margin-top: 36px;
  }
  .site-footer__legal {
    font-size: 11px;
  }
}
