/* ==========================================================================
   Página Vitrine — header fixo (idêntico ao index) + iframe + badge inferior
   ========================================================================== */
:root { --header-height: 80px; }

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

.header { z-index: 10; }

iframe {
  position: fixed;
  top: 80px;
  bottom: 63px;
  left: 0;
  right: 0;
  width: 100%;
  height: calc(100vh - 143px);
  border: 0;
  z-index: 1;
}

.vitrine-badge {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 63px;
  width: 100%;
  z-index: 10;
  background: var(--gray-900);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 20px;
}
.vitrine-badge p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}
.vitrine-badge .btn {
  padding: 8px 18px;
  font-size: 0.85rem;
}

@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 */
  }

  .vitrine-badge { gap: 10px; padding: 0 14px; }
  .vitrine-badge p { font-size: 0.8rem; }
}
