/* ===== Página Vitrine - layout fixo ===== */
html, body {
  margin: 0;
  height: 100vh;
  overflow: hidden;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--off-white, #f4f7fb);
}

/* Header e navbar reaproveitam .header/.nav de css/style.css,
   garantindo navegação idêntica em todas as páginas do site. */
.nav__link[aria-current="page"]::after { width: 100%; }

/* IFRAME CENTRAL */
#vitrineFrame {
  position: fixed;
  top: 80px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: calc(100vh - 80px);
  border: 0;
  display: block;
  background: #fff;
}

@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 - 130px) !important; /* Ajuste compensatório */
  }
}
