/* ==========================================================================
   SHOWROOM — estilos específicos (reusa .amb-*, .cta-final de home.css)
   ========================================================================== */

/* ============ HERO ============ */
.sr-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--dark-bg);
}

.sr-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sr-hero-bg img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.sr-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(15, 10, 8, 0.88) 0%, rgba(15, 10, 8, 0.45) 45%, rgba(15, 10, 8, 0.25) 100%);
}

.sr-hero-content {
  position: relative;
  z-index: 2;
  color: var(--text-light);
  padding-bottom: clamp(4rem, 10vh, 7rem);
  padding-top: 8rem;
}

.sr-hero-eyebrow {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.sr-hero-title {
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--text-light);
  margin-bottom: 1.75rem;
}

.sr-hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 52ch;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.sr-hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-light);
}

.sr-hero-scroll svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  animation: srBob 1.8s var(--ease-out) infinite;
}

.sr-hero-scroll:hover { color: rgba(255, 255, 255, 0.7); }

@keyframes srBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@media (prefers-reduced-motion: reduce) {
  .sr-hero-scroll svg { animation: none; }
}

/* ============ EXPERIÊNCIA — reusa .amb-* mas alinha cabeçalho à esquerda ============ */
.experiencia .amb-head .section-title { text-align: left; margin-left: 0; }

/* ============ TOUR 360 ============ */
.tour-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.tour-tab {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 0.7rem 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.tour-tab:hover { border-color: rgba(23, 18, 15, 0.3); color: var(--text-main); }

.tour-tab.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-light);
}

.tour-stage {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--dark-surface);
  box-shadow: var(--shadow-lg);
}

.tour-viewer {
  width: 100%;
  height: clamp(380px, 62vh, 640px);
}

/* Pannellum overrides — esconde a moldura padrão e deixa controles discretos */
.tour-viewer .pnlm-load-box { background: var(--dark-surface); }
.tour-viewer .pnlm-controls-container { display: none; }
.tour-viewer .pnlm-panorama-info { display: none; }
.tour-viewer .pnlm-about-msg { display: none; }

.tour-hint {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  background: rgba(15, 10, 8, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.tour-hint svg { width: 17px; height: 17px; fill: currentColor; }

.tour-stage.interacted .tour-hint { opacity: 0; }

/* Botão girar / pausar */
.tour-toggle {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  background: rgba(15, 10, 8, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.55rem 1.05rem 0.55rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.tour-toggle:hover { background: rgba(15, 10, 8, 0.78); }

.tour-toggle svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Alterna ícone play/pause conforme estado .paused */
.tour-toggle .ic-play { display: none; }
.tour-toggle.paused .ic-pause { display: none; }
.tour-toggle.paused .ic-play { display: inline; }

/* ============ LOCALIZAÇÃO ============ */
.local-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.local-info .section-title { text-align: left; margin: 0 0 2.5rem; }

.local-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2.75rem;
}

.local-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}

.local-list svg {
  width: 22px;
  height: 22px;
  fill: var(--primary-color);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.local-list strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.local-list span {
  font-size: 1.02rem;
  color: var(--text-main);
  line-height: 1.55;
}

.local-actions {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.local-map {
  height: clamp(340px, 50vh, 480px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-color: var(--dark-surface);
}

.local-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  filter: grayscale(0.25) contrast(1.02);
}

@media (max-width: 880px) {
  .local-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .local-info .section-title { margin-bottom: 2rem; }
}
