/* ==========================================================================
   Lírius Naturais — página de vitrine (iframe)
   Depende de assets/css/style.css (variáveis, fontes, header/navbar)
   ========================================================================== */

/* PÁGINA PRINCIPAL */
html, body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 100vh;
}

/* IFRAME — acompanha a altura real do header do site (var(--header-h)) */
.vitrine-iframe {
  position: fixed;
  top: var(--header-h);
  bottom: 63px;
  left: 0;
  right: 0;
  width: 100%;
  height: calc(100vh - var(--header-h) - 63px);
  border: 0;
  z-index: 1;
  background: var(--branco);
}

/* BADGE INFERIOR — espaço reservado, sem conteúdo do MonteSite nesta página */
#montesite-footer-badge {
  position: fixed !important;
  bottom: 0 !important;
  left: 0;
  right: 0;
  width: 100%;
  height: 63px !important;
  z-index: 10 !important;
  background: var(--branco);
}

/* AJUSTE MOBILE */
@media (max-width: 760px) {
  /* Garante que os botões de navegação da vitrine não sumam no mobile */
  .vitrine-iframe {
    padding-bottom: 50px;
    height: calc(100vh - var(--header-h) - 113px); /* 63px do badge + 50px de folga */
  }
}
