/* ==========================================================================
   Página Vitrine — layout fixo: header (80px) + iframe + badge (63px)
   ========================================================================== */

html.vitrine-html,
body.vitrine-page {
  height: 100vh;
  overflow: hidden;
  margin: 0;
}

body.vitrine-page {
  --header-height: 80px;
}

.vitrine-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 10;
}

.vitrine-header .header__inner {
  height: 80px;
}

.vitrine-main {
  position: relative;
}

.vitrine-iframe {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 143px);
  bottom: 63px;
  border: 0;
  display: block;
  background: var(--white);
}

.vitrine-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 63px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  color: var(--gray-300);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

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