@charset "UTF-8";
/* =========================================================
   Vistas por andar — bloco ACF
   Namespace: .vt
   ========================================================= */
.vt,
.vt *,
.vt *::before,
.vt *::after {
  box-sizing: border-box; }

.vt {
  --vt-ink: #0A0F1A;
  --vt-brass: #E3B872;
  --vt-paper: #F3F5F9;
  --vt-muted: #9AA7BC;
  --vt-glass: rgba(12, 18, 30, .52);
  --vt-line: rgba(243, 245, 249, .16);
  --vt-h: min(100svh, 480px);
  --vt-radius: 0px;
  --vt-ease: cubic-bezier(.72, 0, .2, 1);
  --vt-font: "Barlow Condensed", "Oswald", "Helvetica Neue", system-ui, sans-serif;
  --vt-font-mono: "Chivo Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  position: relative;
  width: 100%;
  height: var(--vt-h);
  margin-inline: auto;
  overflow: hidden;
  border-radius: var(--vt-radius);
  background: var(--vt-ink);
  color: var(--vt-paper);
  font-family: var(--vt-font);
  user-select: none;
  -webkit-tap-highlight-color: transparent; }

.vt:focus-visible {
  outline: 2px solid var(--vt-brass);
  outline-offset: 3px; }

.vt.alignfull {
  border-radius: 0; }

/* estado vazio (apenas no editor) */
.vt--empty {
  height: auto;
  display: grid;
  place-items: center;
  padding: 56px 24px;
  border: 1px dashed var(--vt-line);
  font-family: var(--vt-font-mono);
  font-size: 13px;
  color: var(--vt-muted); }

.vt--empty p {
  margin: 0; }

/* tela cheia: nativa e fallback iOS */
.vt:fullscreen,
.vt.is-cover {
  border-radius: 0;
  --vt-h: 100svh; }

.vt.is-cover {
  position: fixed;
  inset: 0;
  z-index: 99999;
  height: 100svh; }

html.vt-locked,
body.vt-locked {
  overflow: hidden; }

/* ---------- Swiper ----------
   As regras abaixo espelham o swiper-bundle.css apenas no mínimo necessário,
   para o bloco não quebrar caso o CSS do Swiper não esteja na página. */
.vt__swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; }

.vt__swiper .swiper-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%; }

.vt__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: var(--vt-sky, linear-gradient(180deg, #1B2A44, #0A0F1A)); }

.vt__slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity .45s ease; }

.vt__slide video.is-ready {
  opacity: 1; }

.vt__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10, 15, 26, 0.55) 0%, rgba(10, 15, 26, 0) 26%), linear-gradient(0deg, rgba(10, 15, 26, 0.72) 0%, rgba(10, 15, 26, 0) 38%); }

/* indicador de carregamento sobre o céu de fallback */
.vt__slide.is-loading::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 26px;
  margin: -13px 0 0 -13px;
  border-radius: 50%;
  border: 2px solid rgba(243, 245, 249, 0.25);
  border-top-color: var(--vt-brass);
  animation: vt-spin .8s linear infinite; }

@keyframes vt-spin {
  to {
    transform: rotate(360deg); } }
/* ---------- andar atual ---------- */
.vt__readout {
  position: absolute;
  left: clamp(16px, 4vw, 32px);
  bottom: clamp(18px, 4vw, 32px);
  z-index: 3;
  max-width: 55%;
  pointer-events: none; }

.vt__eyebrow {
  font-family: var(--vt-font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--vt-brass);
  margin: 0 0 6px; }

.vt__floor {
  font-family: var(--vt-font);
  font-size: clamp(30px, 7vw, 54px);
  font-weight: 600;
  line-height: .95;
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin: 0;
  color: var(--vt-paper);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5); }

.vt__floor span {
  display: inline-block; }

.vt.is-moving .vt__floor span {
  animation: vt-roll 0.5s var(--vt-ease) both; }

@keyframes vt-roll {
  from {
    opacity: 0;
    transform: translateY(var(--vt-roll-from, 14px)); }
  to {
    opacity: 1;
    transform: none; } }
/* ---------- régua de altura ---------- */
.vt__rail {
  position: absolute;
  left: clamp(16px, 4vw, 32px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: grid;
  gap: 7px;
  pointer-events: none; }

.vt__tick {
  width: 14px;
  height: 2px;
  background: rgba(243, 245, 249, 0.32);
  transition: width 0.35s var(--vt-ease), background 0.35s var(--vt-ease); }

.vt__tick.is-on {
  width: 26px;
  background: var(--vt-brass); }

/* ---------- botões ---------- */
.vt__btn {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--vt-line);
  background: var(--vt-glass);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  backdrop-filter: blur(14px) saturate(1.3);
  color: var(--vt-paper);
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--vt-font);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: none;
  transition: border-color 0.2s, transform 0.2s var(--vt-ease), background 0.2s; }

.vt__btn:hover {
  border-color: rgba(227, 184, 114, 0.55);
  background: var(--vt-glass); }

.vt__btn:active {
  transform: scale(0.97); }

.vt__btn:focus-visible {
  outline: 2px solid var(--vt-brass);
  outline-offset: 3px; }

.vt__controls {
  position: absolute;
  top: clamp(14px, 3.5vw, 26px);
  right: clamp(14px, 3.5vw, 26px);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px; }

.vt__controls .vt__btn {
  width: 46px;
  height: 46px;
  padding: 0;
  justify-content: center; }

.vt__fs svg,
.vt__play svg {
  width: 18px;
  height: 18px; }

.vt__fs .vt-ico-exit {
  display: none; }

.vt.is-full .vt__fs .vt-ico-exit {
  display: block; }

.vt.is-full .vt__fs .vt-ico-open {
  display: none; }

/* play/pause: mostra a ação que o clique executa */
.vt__play .vt-ico-play {
  display: none; }

.vt.is-paused .vt__play .vt-ico-play {
  display: block; }

.vt.is-paused .vt__play .vt-ico-pause {
  display: none; }

.vt.is-paused .vt__play {
  border-color: rgba(227, 184, 114, 0.55);
  color: var(--vt-brass); }

/* ---------- seletor de andar ---------- */
.vt__picker {
  position: absolute;
  right: clamp(14px, 3.5vw, 26px);
  bottom: clamp(18px, 4vw, 32px);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px; }

.vt__toggle {
  height: 46px;
  padding: 0 8px 0 18px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase; }

.vt__toggle-label {
  font-weight: 600; }

.vt__chev {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(243, 245, 249, 0.1);
  transition: transform 0.3s var(--vt-ease); }

.vt__toggle[aria-expanded="true"] .vt__chev {
  transform: rotate(180deg); }

.vt__chev svg {
  width: 14px;
  height: 14px; }

.vt__panel {
  order: -1;
  width: 220px;
  max-height: min(46svh, 340px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid var(--vt-line);
  background: var(--vt-glass);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  backdrop-filter: blur(18px) saturate(1.3);
  display: grid;
  gap: 2px;
  transform-origin: bottom right;
  transition: opacity 0.25s var(--vt-ease), transform 0.25s var(--vt-ease), visibility 0.25s; }

.vt__panel[hidden] {
  display: grid;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px) scale(0.96); }

.vt__opt {
  appearance: none;
  border: 0;
  background: none;
  color: var(--vt-muted);
  font-family: var(--vt-font);
  font-size: 16px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background .18s, color .18s; }

.vt__opt::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: .45;
  flex: none; }

.vt__opt:hover {
  background: rgba(243, 245, 249, 0.08);
  color: var(--vt-paper); }

.vt__opt[aria-current="true"] {
  color: var(--vt-brass);
  background: rgba(227, 184, 114, 0.1); }

.vt__opt[aria-current="true"]::before {
  opacity: 1;
  box-shadow: 0 0 0 4px rgba(227, 184, 114, 0.18); }

.vt__opt:focus-visible {
  outline: 2px solid var(--vt-brass);
  outline-offset: -2px; }

/* ---------- dica de swipe ---------- */
.vt__hint {
  position: absolute;
  left: 50%;
  bottom: clamp(18px, 4vw, 32px);
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-family: var(--vt-font-mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(243, 245, 249, 0.7);
  pointer-events: none;
  transition: opacity .4s; }

.vt__hint svg {
  width: 12px;
  height: 12px;
  animation: vt-bob 2.2s ease-in-out infinite; }

@keyframes vt-bob {
  0%, 100% {
    transform: translateY(2px); }
  50% {
    transform: translateY(-2px); } }
.vt.is-touched .vt__hint {
  opacity: 0; }

/* ---------- fallback quando o autoplay é bloqueado ---------- */
.vt__tap {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: rgba(10, 15, 26, 0.28);
  color: var(--vt-paper);
  cursor: pointer; }

.vt__tap[hidden] {
  display: none; }

.vt__tap svg {
  width: 64px;
  height: 64px;
  padding: 18px;
  border-radius: 50%;
  border: 1px solid var(--vt-line);
  background: var(--vt-glass);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px); }

@media (max-width: 560px) {
  .vt__rail {
    display: none; }

  .vt__toggle {
    padding-left: 14px;
    font-size: 14px; }

  .vt__panel {
    width: 190px; } }
@media (prefers-reduced-motion: reduce) {
  .vt__panel,
  .vt__btn,
  .vt__slide video {
    transition-duration: .01ms !important; }

  .vt__floor span,
  .vt__hint svg {
    animation: none !important; } }
