@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@600;700;800&display=swap');

:root {
  --cor-fundo: #000;
  --cor-primaria: #ff7208;
  --cor-primaria-escura: #e95f00;
  --cor-texto: #f5f5f5;
  --cor-texto-suave: rgba(255, 255, 255, 0.82);
  --cor-linha: rgba(255, 255, 255, 0.16);
  --cor-superficie: #111;
  --cor-superficie-profunda: #080808;
  --cor-foco: #fff;
  --cor-erro: #ef4444;
  --cor-erro-clara: #fca5a5;
  --raio-campo: 12px;
  --raio-card: 16px;
  --raio-pilula: 999px;
  --espaco-secao: 56px;
  --largura-conteudo: 1080px;
  --font-inter: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-space-grotesk: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Scrollbar Personalizada Laranja Moviw */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #080808;
}

::-webkit-scrollbar-thumb {
  background: var(--cor-primaria);
  border-radius: 99px;
  border: 2px solid #080808;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--cor-primaria-escura);
}

* {
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: var(--cor-primaria) #080808;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cor-fundo);
  color: var(--cor-texto);
  font-family: var(--font-inter);
  -webkit-font-smoothing: antialiased;
}

.pularConteudo {
  position: fixed;
  z-index: 1000;
  top: -120px;
  left: 12px;
  padding: 10px 18px;
  border-radius: var(--raio-campo);
  background: #fff;
  color: #000;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: top 180ms ease;
}

.pularConteudo:focus {
  top: 12px;
}

section[id] {
  scroll-margin-top: 40px;
}

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  background: var(--cor-primaria);
  color: #000;
}

a {
  color: inherit;
}

.limite {
  width: min(calc(100% - 80px), var(--largura-conteudo));
  margin-inline: auto;
}

/* ==========================================================================
   COMPONENTES UI (Sistema Visual)
   ========================================================================== */

.botao {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 26px;
  border: 1.5px solid transparent;
  border-radius: var(--raio-pilula);
  font: inherit;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  transform-origin: center center;
  transition:
    transform 240ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 240ms ease,
    color 220ms ease,
    opacity 220ms ease;
  will-change: transform;
}

.botao:hover:not(:disabled) {
  transform: scale(1.025);
}

.botao:active:not(:disabled) {
  transform: scale(0.98);
  transition-duration: 80ms;
}

.botao:focus-visible,
.campo:focus-visible,
.selecao:focus-visible {
  outline: 3px solid var(--cor-foco);
  outline-offset: 3px;
}

.botao:disabled,
.botao[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.58;
}

.primario {
  background: var(--cor-primaria);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.primario:hover:not(:disabled) {
  background: var(--cor-primaria-escura);
  box-shadow: 0 6px 18px rgba(255, 114, 8, 0.38);
}

.secundario {
  border-color: var(--cor-primaria);
  background: transparent;
  color: #fff;
}

.secundario:hover:not(:disabled) {
  background: rgba(255, 114, 8, 0.14);
  border-color: #ff8c2e;
  box-shadow: 0 4px 14px rgba(255, 114, 8, 0.22);
}

.discreto {
  border-color: var(--cor-linha);
  background: rgba(255, 255, 255, 0.06);
  color: var(--cor-texto);
}

.compacto {
  min-height: 40px;
  padding-inline: 18px;
  font-size: 13px;
}

.largo {
  width: 100%;
  min-height: 48px;
  padding: 13px 28px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.iconeBotao {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--cor-primaria);
  transition: background-color 220ms ease;
}

.iconeBotao svg {
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.botao:hover .iconeBotao {
  background: var(--cor-primaria-escura);
}

.botao:hover .iconeBotao svg {
  transform: translate(2.5px, 2.5px);
}

.selo {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  gap: 7px;
  padding: 4px 13px;
  border: 1px solid var(--cor-primaria);
  border-radius: var(--raio-pilula);
  background: rgba(255, 114, 8, 0.1);
  color: #fff;
  font-family: var(--font-space-grotesk), sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.35;
  text-transform: none;
}

.selo svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: var(--cor-primaria);
  stroke-width: 2;
}

.seloNeutro {
  border-color: var(--cor-linha);
  background: rgba(255, 255, 255, 0.05);
  text-transform: none;
}

.card {
  padding: 22px;
  border: 1px solid var(--cor-linha);
  border-radius: var(--raio-card);
  background: var(--cor-superficie);
  color: var(--cor-texto);
}

.cardElevado {
  background:
    linear-gradient(145deg, rgba(255, 114, 8, 0.12), transparent 55%),
    var(--cor-superficie);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.cardClaro {
  border-color: rgba(0, 0, 0, 0.08);
  background: #fff;
  color: #111;
}

.grupoCampo {
  display: grid;
  gap: 7px;
}

.rotulo {
  font-size: 13px;
  font-weight: 700;
}

.opcional {
  color: var(--cor-texto-suave);
  font-weight: 400;
}

.campo,
.selecao {
  width: 100%;
  min-height: 44px;
  padding: 11px 13px;
  border: 1px solid var(--cor-linha);
  border-radius: var(--raio-campo);
  background: rgba(255, 255, 255, 0.08);
  color: var(--cor-texto);
  font: inherit;
  font-size: 14px;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.selecao option {
  background: #fff;
  color: #111;
}

.campo::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.campo:hover:not(:disabled),
.selecao:hover:not(:disabled) {
  border-color: rgba(255, 255, 255, 0.28);
}

.campo:disabled,
.selecao:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.campoErro {
  border-color: var(--cor-erro) !important;
}

.ajuda,
.erro {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
}

.ajuda {
  color: var(--cor-texto-suave);
}

.erro {
  color: var(--cor-erro-clara);
}

.tituloBloco {
  display: grid;
  justify-items: start;
}

.tituloBloco h2,
.tituloBloco h3 {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--cor-primaria);
  font-family: var(--font-space-grotesk), sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
}

.tituloBloco p {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--cor-texto-suave);
  font-size: 17px;
  line-height: 1.6;
}

.tituloCentro {
  justify-items: center;
  text-align: center;
}

.secao {
  padding-block: var(--espaco-secao);
  background: #000;
}

.secaoContraste {
  background: var(--cor-superficie-profunda);
}

.secaoClara {
  background: #f5f5f2;
  color: #111;
}

.secaoClara .tituloBloco p {
  color: #5f6368;
}

.secaoClara .selo {
  color: #111;
}

/* ==========================================================================
   CABEÇALHO
   ========================================================================== */

.cabecalho {
  position: relative;
  z-index: 20;
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 40px;
  border-bottom: 1px solid var(--cor-linha);
  background: #000;
}

.marca {
  display: block;
  line-height: 0;
}

.marca img {
  width: auto;
  height: 58px;
  object-fit: contain;
}

.marca:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  display: flex;
  min-height: 640px;
  align-items: center;
  overflow: hidden;
  padding: 56px 0;
}

.heroFundo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: cover;
  object-position: center;
}

.heroCamada {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.heroConteudo {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.heroTexto {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

h1,
h2,
h3 {
  font-family: var(--font-space-grotesk), sans-serif;
}

h1 {
  max-width: 540px;
  margin: 14px 0 0;
  color: var(--cor-primaria);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  text-wrap: balance;
}

.heroTexto > p {
  max-width: 468px;
  margin: 14px 0 0;
  color: var(--cor-texto-suave);
  font-size: 17px;
  line-height: 1.6;
}

.acoesHero {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.indicadores {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.indicadores li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 600;
  color: var(--cor-texto);
}

.indicadores li svg {
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  color: var(--cor-primaria);
  stroke-width: 2.2;
}

/* Animações de Entrada do Hero */
.heroTexto > *:nth-child(1) { animation: heroFadeUp 650ms cubic-bezier(0.16, 1, 0.3, 1) 0ms both; }
.heroTexto > *:nth-child(2) { animation: heroFadeUp 700ms cubic-bezier(0.16, 1, 0.3, 1) 80ms both; }
.heroTexto > *:nth-child(3) { animation: heroFadeUp 700ms cubic-bezier(0.16, 1, 0.3, 1) 160ms both; }
.heroTexto > *:nth-child(4) { animation: heroFadeUp 700ms cubic-bezier(0.16, 1, 0.3, 1) 240ms both; }
.heroTexto > *:nth-child(5) { animation: heroFadeUp 700ms cubic-bezier(0.16, 1, 0.3, 1) 320ms both; }
.heroImagem { animation: heroScaleUp 850ms cubic-bezier(0.16, 1, 0.3, 1) 160ms both; }

@keyframes heroFadeUp {
  from {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
  }
}

@keyframes heroScaleUp {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateX(-50%) scale(0.96);
  }
  to {
    opacity: 1;
    filter: blur(0px);
    transform: translateX(-50%) scale(1);
  }
}

@media (max-width: 767px) {
  @keyframes heroScaleUp {
    from {
      opacity: 0;
      filter: blur(8px);
      transform: scale(0.96);
    }
    to {
      opacity: 1;
      filter: blur(0px);
      transform: scale(1);
    }
  }
}

.heroImagem {
  position: relative;
  left: 50%;
  width: 115%;
  max-width: none;
  transform: translateX(-50%);
}

.heroImagem img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.42));
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   FAIXA DE BENEFÍCIOS (Marquee Infinito)
   ========================================================================== */

.faixaBeneficios {
  overflow: hidden;
  border-block: 1px solid var(--cor-linha);
  background: var(--cor-primaria);
  color: #fff;
  user-select: none;
}

.faixaTrilho {
  display: flex;
  width: max-content;
  animation: marqueeInfinito 22s linear infinite;
  will-change: transform;
}

.faixaBeneficios:hover .faixaTrilho {
  animation-play-state: paused;
}

.faixaGrupo {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.faixaGrupo span {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 13px 22px;
  font-family: var(--font-space-grotesk), sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.faixaGrupo span b {
  font-size: 14px;
  color: #fff;
  opacity: 0.85;
}

@keyframes marqueeInfinito {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   SEÇÃO DESAFIOS
   ========================================================================== */

.gradeDesafiosSecao {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
  align-items: start;
}

.secaoDesafios .tituloBloco > span,
.secaoSolucao .tituloBloco > span,
.secaoDepoimentos .tituloBloco > span,
.secaoFormulario .tituloBloco > span,
.secaoFaq .tituloBloco > span,
.secaoDesafios [class*="tituloBloco"] > span,
.secaoSolucao [class*="tituloBloco"] > span,
.secaoDepoimentos [class*="tituloBloco"] > span,
.secaoFormulario [class*="tituloBloco"] > span,
.secaoFaq [class*="tituloBloco"] > span {
  min-height: 25px;
  padding: 3px 12px;
  border-color: rgba(255, 255, 255, 0.18);
  background: #242424;
  font-size: 12px;
}

.secaoDesafios .tituloBloco h2,
.secaoDesafios h2 {
  max-width: 520px;
  font-size: 34px !important;
}

.secaoDesafios .tituloBloco > p {
  max-width: 520px;
}

.imagemDesafios {
  display: grid;
  width: 80%;
  place-items: center;
  margin: 22px auto 0;
}

.imagemDesafios img {
  width: 100%;
  height: auto;
  border-radius: 28px;
  object-fit: contain;
}

.listaDesafios {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Cascata Escalonada Descendente (Slide-Down Cascade) para os Cards de Desafios */
.listaDesafios > .cardDesafio {
  opacity: 0;
  transform: translateY(-28px);
  will-change: opacity, transform;
}

.secaoDesafios.desafiosAtivos .listaDesafios > .cardDesafio {
  animation: desafioSlideDown 680ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes desafioSlideDown {
  from {
    opacity: 0;
    transform: translateY(-28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.secaoDesafios.desafiosAtivos .listaDesafios > .cardDesafio:nth-child(1) { animation-delay: 100ms; }
.secaoDesafios.desafiosAtivos .listaDesafios > .cardDesafio:nth-child(2) { animation-delay: 280ms; }
.secaoDesafios.desafiosAtivos .listaDesafios > .cardDesafio:nth-child(3) { animation-delay: 460ms; }
.secaoDesafios.desafiosAtivos .listaDesafios > .cardDesafio:nth-child(4) { animation-delay: 640ms; }

.cardDesafio {
  padding: 22px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.cardDesafio > svg,
.cardSolucao > svg {
  width: 30px;
  height: 30px;
  color: var(--cor-primaria);
  stroke-width: 2;
}

.cardDesafio h3,
.cardSolucao h3 {
  margin: 14px 0 0;
  font-size: 16px;
  font-family: var(--font-inter), sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

.cardDesafio p,
.cardSolucao p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13.5px;
  line-height: 1.55;
}

/* ==========================================================================
   SEÇÃO SOLUÇÃO (Sistema de Cotas)
   ========================================================================== */

.secaoSolucao {
  padding-block: 56px !important;
}

.secaoSolucao .tituloBloco h2 {
  max-width: 700px;
  font-size: 38px !important;
}

.secaoSolucao .tituloBloco > p {
  max-width: 720px;
}

.gradeSolucao {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 22px;
  margin-top: 44px;
}

.cardSolucao {
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.acaoCentralizada {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.textoFechamentoSolucao {
  max-width: 620px;
  margin: 28px auto 0;
  color: #fff;
  font-family: var(--font-space-grotesk), sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

/* ==========================================================================
   SEÇÃO PROCESSO (Linha do Tempo)
   ========================================================================== */

.limiteProcesso {
  max-width: 900px;
}

.secaoProcesso .tituloBloco h2 {
  max-width: 760px;
  font-size: 38px !important;
}

.secaoProcesso .tituloBloco > p {
  max-width: 760px;
}

.secaoProcesso .tituloBloco {
  margin-bottom: 44px;
}

.secaoProcesso .tituloBloco > span {
  min-height: 23px;
  padding: 2px 12px;
  border-color: var(--cor-primaria);
  background: transparent;
  font-size: 12px;
}

.linhaDoTempo {
  position: relative;
  display: grid;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.linhaDoTempo::before {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: rgba(255, 255, 255, 0.15);
  content: "";
  transform: translateX(-50%);
}

.linhaDoTempo::after {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 50%;
  width: 3px;
  height: var(--progresso-timeline, 0%);
  background: var(--cor-primaria);
  content: "";
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--cor-primaria);
  transition: height 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.linhaDoTempo li {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px minmax(0, 1fr);
  column-gap: 28px;
  align-items: center;
  margin-bottom: 30px;
}

.conteudoEtapa {
  display: grid;
  grid-column: 1;
  justify-items: end;
  text-align: right;
}

.linhaDoTempo li:nth-child(even) .conteudoEtapa {
  grid-column: 3;
  justify-items: start;
  text-align: left;
}

.conteudoEtapa > svg {
  width: 30px;
  height: 30px;
  margin-bottom: 6px;
  color: var(--cor-primaria);
  stroke-width: 2;
}

.conteudoEtapa strong {
  color: var(--cor-primaria);
  font-family: var(--font-space-grotesk), sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}

.conteudoEtapa h3 {
  margin: 4px 0 6px;
  font-size: 15px;
  font-family: var(--font-inter), sans-serif;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.25;
  text-transform: uppercase;
}

.conteudoEtapa p {
  max-width: 340px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13.5px;
  line-height: 1.6;
}

.marcadorEtapa {
  display: grid;
  width: 46px;
  height: 46px;
  grid-column: 2;
  grid-row: 1;
  place-self: center;
  place-items: center;
  border: 3px solid var(--cor-primaria);
  border-radius: 50%;
  background: #000;
}

.marcadorEtapa i {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--cor-primaria);
}

/* ==========================================================================
   SEÇÃO PÚBLICO (Para quem é)
   ========================================================================== */

.secaoPublico {
  padding-block: 56px !important;
  background: var(--cor-primaria) !important;
  color: #111;
}

.limitePublico {
  max-width: 1080px;
}

.tituloSobreLaranja h2,
.tituloSobreLaranja h3 {
  max-width: 620px !important;
  color: #fff !important;
  font-size: 38px !important;
}

.tituloSobreLaranja > p {
  max-width: 680px !important;
  color: #fff !important;
}

.tituloSobreLaranja > span {
  border-color: rgba(255, 255, 255, 0.48) !important;
  background: rgba(255, 255, 255, 0.16) !important;
  color: #fff !important;
}

.tituloSobreLaranja > span svg {
  color: #fff !important;
}

.gradePerfis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
  width: 100%;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}

.cardPerfil {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  min-height: 190px;
  padding: 26px 20px;
  border-radius: var(--raio-card);
  box-sizing: border-box;
  text-align: center;
}

.cardPerfil > svg {
  width: 30px;
  height: 30px;
  color: var(--cor-primaria);
  stroke-width: 2;
  flex-shrink: 0;
}

.cardPerfil h3 {
  width: 100%;
  max-width: 100%;
  margin: 14px 0 0;
  color: #111827;
  font-family: var(--font-inter), sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.3;
}

.cardPerfil p {
  width: 100%;
  max-width: 100%;
  margin: 8px 0 0;
  color: #6b7280;
  font-size: 13.5px;
  line-height: 1.5;
}

.acaoSobreLaranja {
  margin-top: 19px;
}

.acaoSobreLaranja .botao,
.acaoSobreLaranja [class*="botao"],
.acaoSobreLaranja a {
  background: #000 !important;
  color: #fff !important;
  border: 1px solid #000 !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28) !important;
  transform-origin: center center;
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1), background-color 220ms ease, box-shadow 240ms ease, border-color 220ms ease !important;
  will-change: transform;
}

.acaoSobreLaranja .botao:hover,
.acaoSobreLaranja [class*="botao"]:hover,
.acaoSobreLaranja a:hover {
  background: #1c1c1c !important;
  color: #fff !important;
  border-color: #1c1c1c !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.42) !important;
  transform: scale(1.025) !important;
}

.acaoSobreLaranja .botao:active,
.acaoSobreLaranja [class*="botao"]:active,
.acaoSobreLaranja a:active {
  background: #111 !important;
  transform: scale(0.98) !important;
}

.acaoSobreLaranja .iconeBotao,
.acaoSobreLaranja [class*="iconeBotao"] {
  background: rgba(255, 255, 255, 0.16) !important;
}

.acaoSobreLaranja .iconeBotao svg,
.acaoSobreLaranja [class*="iconeBotao"] svg {
  color: #fff !important;
  stroke: #fff !important;
}

/* ==========================================================================
   SEÇÃO AUTORIDADE
   ========================================================================== */

.secaoAutoridade {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: center;
  padding: 56px 40px;
  background: var(--cor-primaria);
}

.limiteAutoridade {
  width: 100%;
  margin-inline: auto;
}

.painelAutoridade {
  display: grid;
  min-height: 440px;
  place-items: center;
  align-content: center;
  padding: 48px 24px;
  border-radius: 28px;
  background: #000;
  text-align: center;
}

.painelAutoridade h2 {
  max-width: 640px;
  margin: 0;
  color: #fff;
  font-family: var(--font-inter), sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  text-wrap: balance;
}

.painelAutoridade p {
  max-width: 640px;
  margin: 14px 0 24px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  line-height: 1.6;
}

/* ==========================================================================
   SEÇÃO DEPOIMENTOS
   ========================================================================== */

.secaoDepoimentos {
  padding-block: 56px !important;
}

.secaoDepoimentos .tituloBloco h2 {
  max-width: 710px;
  font-size: 38px !important;
}

.secaoDepoimentos .tituloBloco > p {
  max-width: 720px;
}

.gradeDepoimentos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 44px;
}

.cardDepoimento {
  display: flex;
  height: 200px;
  flex-direction: column;
  overflow: hidden;
  padding: 22px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.cabecalhoDepoimento {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
}

.cabecalhoDepoimento h3 {
  min-width: 0;
  margin: 0;
  font-family: var(--font-inter), sans-serif;
  font-size: 16px;
  overflow-wrap: anywhere;
}

.cabecalhoDepoimento span {
  color: var(--cor-primaria);
  font-size: 15px;
  letter-spacing: 2px;
  white-space: nowrap;
}

.cardDepoimento > p {
  margin: 6px 0 0;
  color: #f8fafc;
  font-size: 13.5px;
  font-style: italic;
  line-height: 1.5;
}

.cardDepoimento > strong {
  display: block;
  margin-top: auto;
  padding-top: 8px;
  color: var(--cor-primaria);
  font-size: 13px;
}

/* ==========================================================================
   SEÇÃO FORMULÁRIO
   ========================================================================== */

.secaoFormulario {
  padding-block: 56px !important;
}

.gradeAreaFormulario {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  max-width: 1080px;
}

.apresentacaoFormulario {
  padding-top: 0;
}

.secaoFormulario .tituloBloco h2 {
  max-width: 460px;
  font-size: 38px !important;
}

.secaoFormulario .tituloBloco > p {
  max-width: 470px;
}

.imagemFormulario {
  display: block;
  margin-top: 18px;
}

.imagemFormulario img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
  object-fit: cover;
}

.formulario {
  display: grid;
  gap: 0;
  padding: 26px 24px;
  border: 1px solid var(--cor-primaria);
  border-radius: 16px;
  background: var(--cor-superficie);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.3);
}

.formulario button {
  font-weight: 700;
}

.gradeFormulario {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.formulario input:not([type="checkbox"]),
.formulario select {
  min-height: 38px;
  padding-block: 8px;
}

.formulario .rotulo,
.formulario [class*="rotulo"],
.grupoCanais legend {
  font-size: 12.5px;
  font-weight: 600;
}

.formulario .grupoCampo,
.formulario [class*="grupoCampo"] {
  gap: 5px;
}

.grupoCanais {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.grupoCanais legend {
  padding: 0;
}

.opcoesCanais {
  display: grid;
  gap: 7px;
  margin-top: 8px;
}

.opcoesCanais label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.opcoesCanais input {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: var(--cor-primaria);
}

.opcoesCanais span {
  color: #fff;
  font-size: 12px;
}

.opcoesCanais input:focus-visible,
.consentimentoFormulario input:focus-visible {
  outline: 3px solid var(--cor-foco);
  outline-offset: 3px;
}

.consentimentoFormulario {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 9px;
  align-items: start;
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  line-height: 1.45;
  cursor: pointer;
}

.consentimentoFormulario input {
  width: 14px;
  height: 14px;
  margin: 1px 0 0;
  accent-color: var(--cor-primaria);
}

.consentimentoFormulario a {
  color: #fff;
  text-decoration-color: var(--cor-primaria);
  text-underline-offset: 2px;
}

.avisoFormularioIndisponivel {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}

.microcopyFormulario {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 10px;
  line-height: 1.45;
  text-align: center;
}

.mensagemCampoErro {
  margin: 5px 0 0;
  color: var(--cor-erro-clara) !important;
  font-size: 11px;
  line-height: 1.4;
}

.retornoFormulario {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: var(--raio-campo);
  font-size: 12px;
  line-height: 1.5;
}

.retornosucesso {
  border: 1px solid rgba(74, 222, 128, 0.35);
  background: rgba(74, 222, 128, 0.1);
  color: #bbf7d0;
}

.retornoerro {
  border: 1px solid rgba(239, 68, 68, 0.35);
  background: rgba(239, 68, 68, 0.1);
  color: var(--cor-erro-clara);
}

/* ==========================================================================
   SEÇÃO FAQ
   ========================================================================== */

.limiteFaq {
  max-width: 760px;
}

.secaoFaq {
  position: relative;
  padding-block: 56px !important;
}

.secaoFaq .tituloBloco h2 {
  max-width: 690px;
  font-size: 38px !important;
}

.secaoFaq::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--cor-primaria), transparent);
  content: "";
}

.listaFaq {
  display: grid;
  gap: 10px;
  margin-top: 36px;
}

.listaFaq details {
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 28px;
  background: rgba(0, 0, 0, 0.1);
  transition: border-color 240ms ease, background-color 240ms ease, box-shadow 240ms ease;
}

.listaFaq details:hover {
  border-color: rgba(255, 114, 8, 0.35);
  background: rgba(255, 114, 8, 0.03);
}

.listaFaq details[open] {
  border-color: var(--cor-primaria);
  background: rgba(255, 114, 8, 0.05);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.listaFaq summary {
  position: relative;
  display: flex;
  min-height: 0;
  align-items: center;
  padding: 16px 52px 16px 20px;
  font-family: var(--font-inter), sans-serif;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
  transition: color 200ms ease;
}

.listaFaq summary::-webkit-details-marker {
  display: none;
}

.listaFaq summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  color: var(--cor-primaria);
  content: "+";
  font-size: 22px;
  font-weight: 500;
  transform: translateY(-50%);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), color 200ms ease;
}

.listaFaq details[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
}

.listaFaq summary:focus-visible {
  outline: 3px solid var(--cor-foco);
  outline-offset: 3px;
}

.listaFaq details p {
  margin: 0;
  padding: 0 20px 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.55;
  animation: faqReveal 280ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes faqReveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover e Efeitos de Cards */
.cardDesafio,
.cardSolucao,
.cardDepoimento {
  transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1), border-color 180ms ease, box-shadow 180ms ease;
  will-change: transform;
}

.cardDesafio:hover,
.cardSolucao:hover,
.cardDepoimento:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 114, 8, 0.4) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.cardPerfil {
  transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 180ms ease;
  will-change: transform;
}

.cardPerfil:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

/* ==========================================================================
   RODAPÉ
   ========================================================================== */

.rodape {
  border-top: 0;
  background: #000;
}

.rodapeConteudo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 760px;
  padding-block: 56px;
  text-align: center;
}

.rodapeConteudo img {
  width: auto;
  height: 48px;
}

.rodapeConteudo p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.6;
}

.rodapeConteudo span {
  margin-top: -8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.6;
}

/* ==========================================================================
   RESPONSIVIDADE (Tablets e Mobile)
   ========================================================================== */

@media (max-width: 900px) {
  .heroConteudo {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 28px;
  }

  .heroImagem {
    align-self: end;
  }

  .gradeDesafiosSecao,
  .gradeAreaFormulario {
    gap: 36px;
  }

  .gradePerfis {
    gap: 12px;
  }

  .gradeSolucao {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .limite {
    width: min(calc(100% - 36px), var(--largura-conteudo));
  }

  .cabecalho {
    min-height: 68px;
    padding: 14px 18px;
  }

  .marca img {
    height: 38px;
  }

  .botaoCabecalho {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 0 20px;
    font-size: 14px;
  }

  .hero {
    min-height: auto;
    padding: 40px 0 20px;
  }

  .heroCamada {
    background: rgba(0, 0, 0, 0.35);
  }

  .heroConteudo,
  .gradeDesafiosSecao,
  .gradeAreaFormulario {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  h1 {
    font-size: clamp(28px, 8.2vw, 34px) !important;
    line-height: 1.15 !important;
    max-width: 340px;
  }

  .tituloBloco h2,
  .tituloBloco h3,
  .secaoDesafios h2,
  .secaoSolucao .tituloBloco h2,
  .secaoProcesso .tituloBloco h2,
  .tituloSobreLaranja h2,
  .secaoFormulario .tituloBloco h2,
  .secaoFaq .tituloBloco h2,
  .secaoDepoimentos .tituloBloco h2 {
    font-size: clamp(24px, 7vw, 32px) !important;
    line-height: 1.18 !important;
  }

  .tituloBloco p,
  .heroTexto > p {
    font-size: 15.5px;
    line-height: 1.55;
  }

  .heroTexto > p {
    margin-top: 14px;
    max-width: 360px;
  }

  .acoesHero {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    width: 100%;
    margin-top: 22px;
    align-items: center;
    justify-content: flex-start;
  }

  .acoesHero > a,
  .acoesHero > button {
    flex: 0 0 auto;
    min-height: 44px;
    padding-inline: 18px;
    font-size: 14px;
  }

  .indicadores {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
  }

  .indicadores li {
    padding: 4px 12px;
    font-size: 11.5px;
    background: rgba(255, 114, 8, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .heroImagem {
    position: static;
    left: auto;
    width: 100%;
    max-width: 480px;
    margin: 12px auto 0;
    transform: none;
    display: flex;
    justify-content: center;
  }

  .heroImagem img {
    margin: 0 auto;
  }

  .imagemDesafios {
    height: auto;
  }

  .listaDesafios {
    margin-top: 10px;
  }

  .gradeSolucao,
  .gradePerfis,
  .gradeDepoimentos {
    grid-template-columns: 1fr;
  }

  .gradeSolucao {
    gap: 14px;
    margin-top: 34px;
  }

  .cardSolucao,
  .cardPerfil {
    min-height: auto;
  }

  .linhaDoTempo {
    margin-top: 0;
  }

  .secaoProcesso .tituloBloco {
    margin-bottom: 32px;
  }

  .linhaDoTempo::before,
  .linhaDoTempo::after {
    left: 23px;
  }

  .linhaDoTempo li {
    min-height: 132px;
    grid-template-columns: 74px 1fr;
    column-gap: 0;
  }

  .conteudoEtapa,
  .linhaDoTempo li:nth-child(even) .conteudoEtapa {
    grid-column: 2;
    justify-items: start;
    text-align: left;
  }

  .marcadorEtapa {
    grid-column: 1;
    justify-self: start;
  }

  .gradePerfis {
    gap: 12px;
  }

  .secaoAutoridade {
    padding: 18px;
  }

  .painelAutoridade {
    min-height: 360px;
  }

  .painelAutoridade h2 {
    font-size: 31px;
  }

  .secaoDepoimentos {
    padding-bottom: 64px !important;
  }

  .gradeDepoimentos {
    gap: 14px;
  }

  .imagemFormulario {
    height: auto;
  }

  .formulario {
    padding: 20px;
  }
}

@media (max-width: 380px) {
  .cabecalho {
    gap: 8px;
  }

  .marca img {
    height: 34px;
  }

  .cabecalho .botaoCabecalho {
    padding-inline: 14px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html,
  body {
    scroll-behavior: auto;
  }

  .botao,
  .campo,
  .selecao {
    transition: none;
  }
}
