/* ---------- Página da vitrine (layout fixo, sem rolagem) ---------- */
.vt-body {
  overflow: hidden;
  height: 100vh;
}

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

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