/* Footer Reveal Effect */

/* Footer fixo no fundo - O MAIS BAIXO (z-index: -7) */
footer.footer-section {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: -7 !important;
  pointer-events: auto !important;
}

/* Todos os links e botões do footer devem ser clicáveis */
footer.footer-section * {
  pointer-events: auto !important;
}

/* Page-wrapper precisa ter position relative para a overlay funcionar (z-index: -5) */
.page-wrapper {
  position: relative !important;
  background: #fff;
  border-radius: 0 0 35px 35px;
  z-index: 0 !important;
}

/* Camada branca que cobre o footer - DENTRO do page-wrapper (z-index: -6) */
.footer-reveal-overlay {
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #fff;
  z-index: -6 !important;
  pointer-events: none;
  border-radius: 0 0 35px 35px;
}

/* Botão de scroll deve ficar acima de tudo */
.scroll-top {
  z-index: 999 !important;
}
