/* ═══════════════════════════════════════════════════════════════
   Página individual — House-All (aliado #1530583250471354540)
   ═══════════════════════════════════════════════════════════════
   Identidade visual própria: retrô, elegante, levemente sombria e
   cinematográfica — inspirada apenas na ATMOSFERA de Dead Plate
   (iluminação quente, texturas de papel envelhecido, tipografia de
   cartaz vintage), sem reaproveitar nenhum personagem, logo, arte
   ou texto do jogo. A House-All é o foco: nada aqui usa linguagem
   de "cardápio", "pratos" ou "clientes".

   CSS 100% independente desta página. Todas as regras vivem dentro
   de ".nv-page" e usam o prefixo "nv-" — não sobrescreve nem
   depende de nada global do site além da tipografia base. Não
   editar isto pensando em outras páginas: se algo aqui precisar
   mudar por causa de OUTRO aliado, está no arquivo errado. */

.nv-page {
  --nv-bg:         #120a0c;
  --nv-bg-alt:     #1c0f11;
  --nv-maroon:     #4a0e18;
  --nv-maroon-2:   #6b1420;
  --nv-maroon-3:   #8a1c2a;
  --nv-gold:       #b8925a;
  --nv-gold-light: #d9b878;
  --nv-cream:      #ece0c8;
  --nv-text:       #f1e6d3;
  --nv-text-dim:   #c9b8a0;
  --nv-text-mute:  #94836e;
  --nv-border:     rgba(184, 146, 90, 0.28);
  --nv-glass:      rgba(24, 13, 15, 0.62);
  --nv-glow:       0 0 26px rgba(138, 28, 42, 0.45);

  position: relative;
  isolation: isolate;
  background: var(--nv-bg);
  color: var(--nv-text);
  font-family: 'Nunito', 'Quicksand', sans-serif;
  overflow-x: clip;
  padding-bottom: 5rem;
}

.nv-page * { box-sizing: border-box; }
.nv-page a { text-decoration: none; color: inherit; }
.nv-page ::selection { background: var(--nv-maroon-3); color: var(--nv-cream); }

.nv-page h1, .nv-page h2, .nv-page h3 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ── Fundo decorativo: gradiente quente + vinheta + textura de papel ── */
.nv-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(55% 40% at 20% 6%, rgba(138, 28, 42, 0.30), transparent 62%),
    radial-gradient(50% 38% at 85% 12%, rgba(184, 146, 90, 0.14), transparent 60%),
    radial-gradient(70% 55% at 50% 100%, rgba(74, 14, 24, 0.35), transparent 62%),
    linear-gradient(180deg, var(--nv-bg) 0%, var(--nv-bg-alt) 100%);
}
.nv-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    115deg,
    rgba(184, 146, 90, 0.035) 0px,
    rgba(184, 146, 90, 0.035) 1px,
    transparent 1px,
    transparent 4px
  );
  opacity: 0.5;
}

/* ── Grão de filme sutil (SVG inline como textura, sem imagens externas) ── */
.nv-grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Voltar para Aliados ── */
.nv-back {
  position: relative;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 5.25rem 1.5rem 0;
  padding: 0.4rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--nv-text-dim);
  background: rgba(236, 224, 200, 0.03);
  border: 1px solid var(--nv-border);
  border-radius: 999px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.nv-back:hover {
  color: var(--nv-gold-light);
  border-color: var(--nv-gold);
  background: rgba(184, 146, 90, 0.08);
  transform: translateX(-2px);
}

/* ═══ HERO ═══ */
.nv-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 1.5rem 4.5rem;
  overflow: hidden;
}

.nv-hero-banner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.55) sepia(0.35) brightness(0.42) contrast(1.05);
  transform: scale(1.04);
}
.nv-hero-banner--fallback {
  background:
    radial-gradient(60% 60% at 50% 20%, rgba(138, 28, 42, 0.5), transparent 70%),
    linear-gradient(160deg, #2a1013, #120a0c 70%);
}
.nv-hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 10, 12, 0.35) 0%, rgba(18, 10, 12, 0.55) 55%, var(--nv-bg) 96%),
    radial-gradient(120% 90% at 50% 30%, transparent 40%, rgba(18, 10, 12, 0.75) 100%);
}

/* elemento decorativo: vela acesa, canto do hero */
.nv-hero-candle {
  position: absolute;
  right: 6%;
  bottom: 8%;
  width: 10px;
  height: 46px;
  z-index: 1;
  opacity: 0.75;
  display: none;
}
.nv-candle-body {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 10px;
  height: 34px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--nv-cream), #cbb98f);
  box-shadow: 0 0 14px rgba(217, 184, 120, 0.25);
}
.nv-candle-flame {
  position: absolute;
  bottom: 32px;
  left: 1px;
  width: 8px;
  height: 16px;
  border-radius: 50% 50% 50% 50% / 65% 65% 35% 35%;
  background: radial-gradient(ellipse at 50% 70%, #fff3cf 0%, #f2b24a 45%, #b8925a 80%, transparent 100%);
  filter: blur(0.3px);
  animation: nv-flicker 2.6s ease-in-out infinite;
  transform-origin: bottom center;
}
@keyframes nv-flicker {
  0%, 100% { transform: scaleY(1) translateX(0); opacity: 0.95; }
  25%      { transform: scaleY(0.94) translateX(-0.5px); opacity: 0.85; }
  50%      { transform: scaleY(1.06) translateX(0.5px); opacity: 1; }
  75%      { transform: scaleY(0.97) translateX(-0.3px); opacity: 0.9; }
}

.nv-hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nv-ally-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 1rem;
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nv-gold-light);
  background: rgba(184, 146, 90, 0.08);
  border: 1px solid var(--nv-border);
  border-radius: 999px;
  margin-bottom: 1.4rem;
}
.nv-star { color: var(--nv-gold); }

.nv-hero-icon-wrap {
  position: relative;
  width: 108px;
  height: 108px;
  margin-bottom: 1.3rem;
}
.nv-hero-icon-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--nv-border);
  box-shadow: var(--nv-glow);
}
.nv-hero-icon,
.nv-hero-icon--placeholder {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--nv-gold);
  background: var(--nv-maroon);
}
.nv-hero-icon--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--nv-gold-light);
}

.nv-hero-title {
  font-size: clamp(2.1rem, 6vw, 3.2rem);
  line-height: 1.12;
  color: var(--nv-cream);
  margin: 0 0 0.75rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

.nv-hero-desc {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--nv-text-dim);
  margin: 0 0 1.6rem;
  max-width: 52ch;
}

.nv-hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.nv-stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--nv-text);
  background: var(--nv-glass);
  border: 1px solid var(--nv-border);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.nv-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6fbf7a;
  box-shadow: 0 0 8px rgba(111, 191, 122, 0.7);
  display: inline-block;
}

.nv-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.nv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.nv-btn--primary {
  color: var(--nv-cream);
  background: linear-gradient(180deg, var(--nv-maroon-3), var(--nv-maroon));
  border: 1px solid var(--nv-gold);
  box-shadow: 0 8px 24px rgba(74, 14, 24, 0.45);
}
.nv-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(74, 14, 24, 0.6);
}
.nv-btn--ghost {
  color: var(--nv-gold-light);
  background: transparent;
  border: 1px solid var(--nv-border);
}
.nv-btn--ghost:hover {
  border-color: var(--nv-gold);
  background: rgba(184, 146, 90, 0.08);
  transform: translateY(-2px);
}

.nv-hero-scroll {
  position: relative;
  z-index: 2;
  margin-top: 2.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nv-text-mute);
}

/* ═══ SECTIONS (comuns) ═══ */
.nv-section {
  max-width: 880px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.nv-section-eyebrow {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--nv-gold);
  margin-bottom: 0.6rem;
}
.nv-section-title {
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  color: var(--nv-cream);
  margin: 0 0 2rem;
}
.nv-section-title span { color: var(--nv-gold-light); font-style: italic; }

/* "Sobre" — cartão estilo papel envelhecido */
.nv-about-card {
  position: relative;
  padding: 2.2rem 2rem 2rem;
  background:
    linear-gradient(160deg, rgba(184, 146, 90, 0.05), transparent 60%),
    var(--nv-glass);
  border: 1px solid var(--nv-border);
  border-radius: 6px;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.25);
}
.nv-about-quote {
  position: absolute;
  top: -0.6rem;
  left: 1.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--nv-maroon-3);
  opacity: 0.6;
  line-height: 1;
}
.nv-about-text {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--nv-text-dim);
  margin: 0;
}
.nv-about-text--sub {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--nv-border);
  color: var(--nv-text-mute);
  font-size: 0.98rem;
}

/* "A casa" — cards estilo fichas antigas */
.nv-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.nv-card {
  position: relative;
  padding: 1.6rem 1.4rem;
  background: var(--nv-glass);
  border: 1px solid var(--nv-border);
  border-radius: 6px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.nv-card:hover {
  transform: translateY(-3px);
  border-color: var(--nv-gold);
}
.nv-card-mark {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--nv-gold);
  margin-bottom: 0.5rem;
}
.nv-card-title {
  font-size: 1.15rem;
  color: var(--nv-cream);
  margin: 0 0 0.5rem;
}
.nv-card-text {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--nv-text-mute);
  margin: 0;
}

.nv-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.6rem;
}
.nv-tag {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--nv-gold-light);
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--nv-border);
  border-radius: 999px;
  background: rgba(184, 146, 90, 0.06);
}

/* "Estatísticas" — ficha/livro-razão */
.nv-ledger {
  background: var(--nv-glass);
  border: 1px solid var(--nv-border);
  border-radius: 6px;
  padding: 0.4rem 1.6rem;
}
.nv-ledger-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 1rem 0;
  border-bottom: 1px dashed var(--nv-border);
}
.nv-ledger-row:last-child { border-bottom: none; }
.nv-ledger-label {
  font-size: 0.95rem;
  color: var(--nv-text-mute);
  white-space: nowrap;
}
.nv-ledger-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(201, 184, 160, 0.25);
  height: 1px;
  transform: translateY(-4px);
}
.nv-ledger-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--nv-gold-light);
  white-space: nowrap;
}

/* ═══ ALIANÇA ═══ */
.nv-alliance {
  max-width: 720px;
  margin: 2rem auto 0;
  padding: 3.5rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--nv-border);
  border-bottom: 1px solid var(--nv-border);
}
.nv-alliance-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  margin-bottom: 1.4rem;
}
.nv-alliance-icons img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--nv-gold);
}
.nv-alliance-link {
  font-size: 1.3rem;
  color: var(--nv-gold);
}
.nv-alliance-title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: var(--nv-cream);
  margin: 0 0 1rem;
}
.nv-alliance-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--nv-text-dim);
  max-width: 56ch;
  margin: 0 auto;
}

/* ═══ CTA FINAL ═══ */
.nv-cta {
  position: relative;
  max-width: 640px;
  margin: 3rem auto 0;
  padding: 2rem 1.5rem 1rem;
  text-align: center;
}
.nv-cta-empty-chair {
  display: block;
  width: 34px;
  height: 34px;
  margin: 0 auto 1.2rem;
  opacity: 0.5;
  background: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b8925a' stroke-width='1.2'%3E%3Cpath d='M5 10V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v5'/%3E%3Cpath d='M5 10h14v6H5z'/%3E%3Cpath d='M6 16v4M18 16v4'/%3E%3C/svg%3E");
}
.nv-cta-title {
  font-size: clamp(1.7rem, 4.2vw, 2.3rem);
  color: var(--nv-cream);
  margin: 0 0 0.7rem;
}
.nv-cta-sub {
  font-size: 1rem;
  color: var(--nv-text-dim);
  margin: 0 0 1.8rem;
}

/* ═══ RODAPÉ DA PÁGINA ═══ */
.nv-page-footer {
  text-align: center;
  padding: 3rem 1.5rem 0;
  color: var(--nv-text-mute);
}
.nv-page-footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--nv-cream);
  margin: 0 0 0.3rem;
}
.nv-page-footer-seal {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--nv-gold);
  margin: 0 0 1rem;
}
.nv-page-footer-back {
  font-size: 0.85rem;
  color: var(--nv-text-mute);
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nv-page-footer-back:hover {
  color: var(--nv-gold-light);
  border-color: var(--nv-gold);
}

/* ═══ Reveal progressivo ═══ */
.nv-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.nv-reveal.nv-in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .nv-reveal { opacity: 1; transform: none; transition: none; }
  .nv-candle-flame { animation: none; }
}

/* ═══ Responsivo ═══ */
@media (min-width: 720px) {
  .nv-hero-candle { display: block; }
}
@media (max-width: 720px) {
  .nv-cards-grid { grid-template-columns: 1fr; }
  .nv-ledger { padding: 0.2rem 1.1rem; }
  .nv-alliance-icons img { width: 46px; height: 46px; }
}
@media (max-width: 420px) {
  .nv-hero { padding: 2.4rem 1.1rem 3.5rem; }
  .nv-back { margin: 4.75rem 1rem 0; }
}
