/* Página Vitrine — usa o header/nav de styles.css para manter a navbar idêntica em todo o site */

html,
body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 100vh;
}

.vitrine-frame {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 63px;
  width: 100%;
  height: calc(100vh - var(--header-height) - 63px);
  border: 0;
}

#montesite-footer-badge {
  position: fixed !important;
  bottom: 0 !important;
  height: 63px !important;
  z-index: 10 !important;
}

@media (max-width: 768px) {
  /* Garante que os botões de navegação da vitrine não sumam no mobile */
  .vitrine-frame {
    padding-bottom: 50px !important;
    height: calc(100vh - var(--header-height) - 113px) !important; /* Ajuste compensatório */
  }
}
