/* =============================================================
   Kick-Off Sports Bar — Styles
   ============================================================= */

/* ---------- tokens ---------- */
:root {
  --ink:       #f3f5fa;
  --ink-dim:   #9aa3b5;
  --bg:        #0a0e16;
  --bg-2:      #10151f;
  --paper:     #e8eef8;
  --paper-ink: #0a0e16;
  --blue:      #3d6db0;
  --blue-deep: #1d3557;
  --blue-soft: #c9dcf5;
  --red:       #3d6db0;
  --red-deep:  #1d3557;
  --line:      rgba(243,245,250,.14);
  --line-dark: rgba(10,14,22,.16);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box }

html {
  margin: 0;
  padding: 0;
  overflow-x: clip;           /* evita overflow sem quebrar position:fixed */
  scroll-behavior: smooth;
}

/* Garante smooth scroll mesmo quando overflow-x:clip muda o scroll container */
body {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ---------- typography ---------- */
.display {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .005em;
  line-height: .95;
}
.stencil {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: .95;
}
.mono {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}

h1, h2, h3, h4 { margin: 0 }
p  { margin: 0 }
a  { color: inherit; text-decoration: none }

/* =============================================================
   NAV
   ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 28px;
  background: linear-gradient(to bottom, rgba(11,15,23,.88), rgba(11,15,23,0));
}
@supports (backdrop-filter: blur(1px)) {
  .nav { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
}

/* Offset para nav fixa */
#top, #bar, #jogos, #menu, #reservar, #locate, #reviews, #faq {
  scroll-margin-top: 76px;
}

/* nav esquerda — lang + CTA */
.nav-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* nav scrolled — fundo sólido */
.nav.is-scrolled {
  background: rgba(10,14,22,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, border-color 0.3s ease;
}

/* logo central — invisível no topo, aparece ao rolar */
.nav-logo-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.nav.is-scrolled .nav-logo-center {
  opacity: 1;
  pointer-events: auto;
}
.nav-logo-scroll {
  height: 68px;
  width: auto;
  display: block;
}

/* ---- hamburger ---- */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 52;
  position: relative;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1),
              opacity   0.25s ease,
              width     0.3s ease;
}
.hamburger span:nth-child(1) { width: 26px }
.hamburger span:nth-child(2) { width: 18px }
.hamburger span:nth-child(3) { width: 26px }

/* X ao abrir */
.hamburger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg);  width: 26px }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0) }
.hamburger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); width: 26px }

/* ---- overlay do menu ---- */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 51;
  background: rgba(8,12,20,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  /* estado fechado */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1),
              visibility 0s linear 0.4s;
}
.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1),
              visibility 0s linear 0s;
}

/* botão X */
.overlay-close {
  position: absolute;
  top: 20px; right: 24px;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-overlay.is-open .overlay-close {
  opacity: 1;
  transition-delay: 0.2s;
}
.overlay-close span {
  position: absolute;
  width: 28px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
}
.overlay-close span:nth-child(1) { transform: rotate(45deg) }
.overlay-close span:nth-child(2) { transform: rotate(-45deg) }
.overlay-close:hover span { background: var(--red) }

/* logo dentro do overlay */
.overlay-logo {
  height: 88px;
  width: auto;
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.16,1,0.3,1);
}
.nav-overlay.is-open .overlay-logo {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}

/* links grandes */
.overlay-links {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.overlay-links li {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.45s ease,
              transform 0.45s cubic-bezier(0.16,1,0.3,1);
}
.nav-overlay.is-open .overlay-links li:nth-child(1) { transition-delay: 0.12s }
.nav-overlay.is-open .overlay-links li:nth-child(2) { transition-delay: 0.18s }
.nav-overlay.is-open .overlay-links li:nth-child(3) { transition-delay: 0.24s }
.nav-overlay.is-open .overlay-links li:nth-child(4) { transition-delay: 0.30s }
.nav-overlay.is-open .overlay-links li {
  opacity: 1;
  transform: translateY(0);
}
.overlay-links a {
  font-family: 'Anton', sans-serif;
  font-size: clamp(52px, 9vw, 104px);
  text-transform: uppercase;
  color: var(--ink);
  letter-spacing: .01em;
  line-height: 1.0;
  opacity: 0.82;
  transition: opacity 0.2s, color 0.2s;
}
.overlay-links a:hover {
  opacity: 1;
  color: var(--red);
}

/* language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: .45;
  padding: 4px 0;
  transition: opacity .2s;
  line-height: 1;
}
.lang-btn:hover  { opacity: .8 }
.lang-btn.active { opacity: 1 }
.lang-sep {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink);
  opacity: .25;
  user-select: none;
}

.nav .cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border: 1px solid var(--ink);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  background: transparent;
  color: var(--ink);
  transition: all .2s;
}
.nav .cta:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 760px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 100px 32px 80px; /* top: nav height + breathing room */
}

/* ---------- hero slideshow ---------- */
.bg-slides {
  position: absolute; inset: 0; z-index: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center center;
  filter: brightness(.52) contrast(1.05) saturate(1.05);
  opacity: 0;
  transition: opacity 0.9s ease;
}
/* will-change só no slide activo — evita alocar GPU para todos os slides */
.hero-slide.is-active {
  opacity: 1;
  will-change: opacity;
}
.hero .vignette {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(60% 50% at 50% 35%, rgba(0,0,0,0) 40%, rgba(0,0,0,.55) 100%),
    linear-gradient(to bottom, rgba(11,15,23,.25) 0%, rgba(11,15,23,0) 30%, rgba(11,15,23,.9) 100%);
}
.hero .grain {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  opacity: .07;
  mix-blend-mode: overlay;
  background-image: radial-gradient(rgba(255,255,255,.4) 1px, transparent 1px);
  background-size: 3px 3px;
}

.hero-content {
  position: relative; z-index: 3;
  width: 100%; max-width: 1400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

/* lockup */
.lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}
/* logo no hero */
.hero-logo {
  height: 72px;
  width: auto;
  display: block;
  margin: 0 auto 20px;
  filter: drop-shadow(0 2px 16px rgba(0,0,0,.55));
}

.lockup .super {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: .4em;
  color: rgba(243,245,250,.85);   /* mais visível que --ink-dim */
  text-transform: uppercase;
  margin-bottom: 28px;
  text-shadow: 0 1px 8px rgba(0,0,0,.7);
}
.lockup .super .bar { height: 1px; width: 60px; background: rgba(243,245,250,.6) }

.lockup .tag {
  font-family: 'Inter Tight';
  font-weight: 300;
  font-size: clamp(16px, 1.6vw, 22px);
  color: #fff;
  max-width: 680px;
  line-height: 1.55;
  text-shadow: 0 1px 10px rgba(0,0,0,.65);
}
.lockup .tag b { font-weight: 600 }

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border: 1px solid currentColor;
  background: transparent;    /* FIX: <button> tem bg branco por default no browser */
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
}
.btn.primary { background: var(--red); border-color: var(--red); color: #fff }
.btn.primary:hover { background: #fff; color: var(--red); border-color: #fff }
.btn.ghost   { color: var(--ink); background: transparent }
.btn.ghost:hover { background: var(--ink); color: var(--bg) }
.btn .arrow  { font-family: 'JetBrains Mono'; font-size: 14px }

.hero-meta {
  position: absolute;
  bottom: 24px; left: 0; right: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--ink-dim);
  text-transform: uppercase;
}
.hero-meta .star-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}
.hero-meta .star-rating .stars { color: var(--red) }

/* =============================================================
   SECTIONS — shared
   ============================================================= */
section { position: relative; z-index: 2 }
.pad { padding: 120px 32px }
.container { max-width: 1280px; margin: 0 auto }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono';
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--red);
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--red);
  display: inline-block;
}

/* =============================================================
   INTRO
   ============================================================= */
.intro {
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.intro .head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.intro h2 {
  font-family: 'Anton';
  font-size: clamp(40px, 5.6vw, 84px);
  text-transform: uppercase;
  line-height: .95;
  letter-spacing: -.005em;
}
.intro h2 em { font-style: normal; color: var(--red) }
.intro .body {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  max-width: 520px;
}
.intro .body p + p { margin-top: 18px }
.intro .body b { color: #fff; font-weight: 600 }

/* photo strip */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.photo-strip .ph {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: #1a1f29;
}
.photo-strip .ph:nth-child(2) { transform: translateY(40px) }
.photo-strip .ph:nth-child(4) { transform: translateY(40px) }
.photo-strip .ph:nth-child(6) { transform: translateY(40px) }
.photo-strip .ph img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.95) contrast(1.02);
  transition: transform .8s ease;
}
.photo-strip .ph:hover img { transform: scale(1.05) }
.photo-strip .ph .cap {
  position: absolute;
  left: 10px; bottom: 10px;
  font-family: 'JetBrains Mono';
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--ink);
  background: rgba(11,15,23,.7);
  padding: 4px 8px;
}

/* stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 120px;
}
.stats .cell {
  padding: 36px 24px;
  border-right: 1px solid var(--line);
}
.stats .cell:last-child { border-right: none }
.stats .num {
  font-family: 'Anton';
  font-size: 64px;
  line-height: 1;
  color: var(--ink);
}
.stats .num .accent { color: var(--red) }
.stats .lbl {
  margin-top: 10px;
  font-family: 'JetBrains Mono';
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* =============================================================
   MARQUEE
   ============================================================= */
.marquee {
  background: var(--red);
  color: #fff;
  border-top: 1px solid var(--red-deep);
  border-bottom: 1px solid var(--red-deep);
  overflow: hidden;
  padding: 18px 0;
}
.marquee .track {
  display: flex;
  gap: 48px;
  animation: scroll 38s linear infinite;
  white-space: nowrap;
}
.marquee .item {
  font-family: 'Anton';
  font-size: clamp(28px, 4vw, 56px);
  text-transform: uppercase;
  letter-spacing: .02em;
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.marquee .dot {
  width: 10px; height: 10px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
}

@keyframes scroll {
  from { transform: translateX(0) }
  to   { transform: translateX(-50%) }
}

/* =============================================================
   DESPORTOS
   ============================================================= */
.desportos {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.desportos .head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}
.desportos h2 {
  font-family: 'Anton';
  font-size: clamp(36px, 5vw, 72px);
  text-transform: uppercase;
  line-height: .95;
}
.desportos h2 em { color: var(--red); font-style: normal }
.desportos .body {
  font-size: 17px;
  line-height: 1.6;
  max-width: 480px;
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.sport {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background .25s;
}
.sport:last-child { border-right: none }
.sport:hover { background: rgba(61,109,176,.06) }
.sport .num {
  font-family: 'JetBrains Mono';
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--ink-dim);
}
.sport .name {
  font-family: 'Anton';
  font-size: 32px;
  text-transform: uppercase;
  line-height: .95;
  margin-top: 18px;
}
.sport .desc {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.5;
  margin-top: 14px;
}
.sport .icon {
  position: absolute;
  right: 24px; top: 24px;
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono';
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--ink-dim);
}
.sport.featured {
  background: var(--red);
  color: #fff;
}
.sport.featured .num,
.sport.featured .desc  { color: rgba(255,255,255,.8) }
.sport.featured .icon  { border-color: rgba(255,255,255,.35); color: rgba(255,255,255,.8) }

/* =============================================================
   VICTORY SHOT
   ============================================================= */
.victory {
  background: var(--paper);
  color: var(--paper-ink);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
}
.victory .grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.victory .img {
  aspect-ratio: 4/5;
  background: #1a1f29 url("assets/kick-off-sports-bar-lisboa-victory-shot.webp") center / cover;
  position: relative;
}
.victory .img::after {
  content: "01";
  position: absolute;
  left: -40px; top: -20px;
  font-family: 'Anton';
  font-size: 240px;
  color: transparent;
  -webkit-text-stroke: 1px var(--red);
  opacity: .5;
  line-height: 1;
}
.victory .copy h2 {
  font-family: 'Anton';
  font-size: clamp(40px, 6vw, 96px);
  text-transform: uppercase;
  line-height: .9;
}
.victory .copy h2 .accent { color: var(--red) }
.victory .copy .quote {
  font-family: 'Big Shoulders Display';
  font-weight: 500;
  font-size: 24px;
  line-height: 1.35;
  margin: 28px 0;
  color: var(--paper-ink);
  border-left: 2px solid var(--red);
  padding-left: 24px;
}
.victory .copy .body {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(10,14,22,.7);
  max-width: 520px;
}
.victory .copy h2 { color: var(--paper-ink) }
.victory .eyebrow { color: var(--red) }
/* botão ghost adaptado ao fundo claro */
.victory .btn.ghost {
  color: var(--paper-ink);
  border-color: var(--paper-ink);
}
.victory .btn.ghost:hover {
  background: var(--paper-ink);
  color: var(--paper);
}

/* =============================================================
   AGENDA
   ============================================================= */
.agenda {
  background: var(--paper);
  color: var(--paper-ink);
  border-bottom: 1px solid var(--line-dark);
}
.agenda .head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  gap: 40px;
  flex-wrap: wrap;
}
.agenda h2 {
  font-family: 'Anton';
  font-size: clamp(40px, 6vw, 88px);
  text-transform: uppercase;
  line-height: .9;
  color: var(--paper-ink);
}
.agenda h2 em { color: var(--red); font-style: normal }

.agenda .week-toggle {
  display: flex;
  gap: 0;
  border: 1px solid var(--line-dark);
}
.agenda .week-toggle button {
  background: transparent;
  border: none;
  padding: 14px 22px;
  font-family: 'JetBrains Mono';
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  border-right: 1px solid var(--line-dark);
  color: var(--paper-ink);
  transition: background .15s;
}
.agenda .week-toggle button:last-child { border-right: none }
.agenda .week-toggle button.on {
  background: var(--paper-ink);
  color: var(--paper);
}

.match-list { border-top: 1px solid var(--line-dark) }
.match {
  display: grid;
  grid-template-columns: 120px 200px 1fr 160px 160px;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
  transition: background .2s;
  cursor: pointer;
}
.match:hover { background: rgba(11,15,23,.04) }
.match .date {
  font-family: 'JetBrains Mono';
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--paper-ink);
}
.match .date .day {
  display: block;
  font-family: 'Anton';
  font-size: 40px;
  line-height: .9;
  letter-spacing: 0;
  margin-bottom: 2px;
}
.match .comp {
  font-family: 'JetBrains Mono';
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #666;
}
.match .teams {
  font-family: 'Anton';
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: -.005em;
  line-height: 1;
}
.match .screen {
  font-family: 'JetBrains Mono';
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #666;
}
.match .screen .pill {
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid var(--line-dark);
  color: var(--paper-ink);
}
.match .book { text-align: right }
.match .book a {
  font-family: 'JetBrains Mono';
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 12px 18px;
  border: 1px solid var(--paper-ink);
  display: inline-block;
  transition: all .2s;
}
.match:hover .book a {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.match.featured .teams { color: var(--red) }

/* =============================================================
   MENU
   ============================================================= */
.menu-sec {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.menu-sec .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.menu-sec h2 {
  font-family: 'Anton';
  font-size: clamp(40px, 5.5vw, 84px);
  text-transform: uppercase;
  line-height: .92;
  margin-bottom: 14px;
}
.menu-sec .intro-text {
  font-size: 17px;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 48px;
  color: var(--ink);
}

.menu-card {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  margin-top: 36px;
}
.menu-card .lbl {
  font-family: 'JetBrains Mono';
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
  display: block;
}
.menu-card ul { list-style: none; padding: 0; margin: 0 }
.menu-card li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  font-family: 'Big Shoulders Display';
  font-weight: 500;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--ink);
}
.menu-card li:last-child { border-bottom: none }
.menu-card li .dots {
  flex: 1;
  height: 1px;
  border-bottom: 1px dotted var(--line-dark);
  margin: 0 8px;
  transform: translateY(-4px);
  opacity: .25;
}
.menu-card li .note {
  font-family: 'JetBrains Mono';
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--ink-dim);
}

.victory-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--red);
  color: #fff;
  padding: 18px 22px;
  margin-top: 32px;
  font-family: 'Big Shoulders Display';
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: .04em;
}

/* =============================================================
   BIG IMAGE
   ============================================================= */
.bigimg {
  position: relative;
  height: 80vh;
  min-height: 560px;
  width: 100%;
  background: url("assets/sports-bar-lisbon-futebol-ao-vivo.webp") center 40% / cover no-repeat;
  display: flex;
  align-items: flex-end;
}
.bigimg::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,15,23,.85), rgba(11,15,23,0) 60%);
}
.bigimg .inner {
  position: relative; z-index: 2;
  padding: 0 32px 80px;
  width: 100%; max-width: 1280px;
  margin: 0 auto;
}
.bigimg h2 {
  font-family: 'Anton';
  font-size: clamp(48px, 8vw, 140px);
  text-transform: uppercase;
  line-height: .88;
  color: #fff;
  max-width: 1000px;
}
.bigimg h2 em { color: var(--red); font-style: normal }
.bigimg .sub {
  font-family: 'JetBrains Mono';
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 24px;
  opacity: .9;
}

/* =============================================================
   SPLIT — reservas / eventos
   ============================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  border-bottom: 1px solid var(--line);
}
.split .cell {
  padding: 88px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}
.split .cell.left  { background: var(--paper); color: var(--paper-ink) }
.split .cell.right {
  background: var(--bg-2);
  color: var(--ink);
  border-left: 1px solid var(--line);
}
.split h3 {
  font-family: 'Anton';
  font-size: clamp(36px, 4.5vw, 64px);
  text-transform: uppercase;
  line-height: .95;
}
.split .body {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 18px;
  max-width: 480px;
}
.split .micro {
  font-family: 'JetBrains Mono';
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .7;
  margin-top: 24px;
}
.split .cell.left .btn       { color: var(--paper-ink); border-color: var(--paper-ink) }
.split .cell.left .btn:hover { background: var(--paper-ink); color: var(--paper) }

/* =============================================================
   REVIEWS
   ============================================================= */
.reviews {
  background: var(--bg);
  padding: 120px 32px;
  border-bottom: 1px solid var(--line);
}
.reviews .head {
  text-align: center;
  margin-bottom: 64px;
}
.reviews h2 {
  font-family: 'Anton';
  font-size: clamp(36px, 5vw, 72px);
  text-transform: uppercase;
  margin-top: 14px;
}
.reviews h2 em { color: var(--red); font-style: normal }
.reviews .badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  margin-top: 24px;
  font-family: 'JetBrains Mono';
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.reviews .badge .stars { color: var(--red); font-size: 14px; letter-spacing: .05em }
.reviews .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  border: 1px solid var(--line);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--bg-2);
}
.review .stars { color: var(--red); letter-spacing: .1em; font-size: 14px }
.review .quote {
  font-family: 'Big Shoulders Display';
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  color: var(--ink);
}
.review .who {
  margin-top: auto;
  font-family: 'JetBrains Mono';
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* =============================================================
   FAQ — com animação suave
   ============================================================= */
.faq {
  background: var(--bg-2);
  padding: 120px 32px;
  border-bottom: 1px solid var(--line);
}
.faq .grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}
.faq h2 {
  font-family: 'Anton';
  font-size: clamp(40px, 5.5vw, 80px);
  text-transform: uppercase;
  line-height: .9;
}
.faq h2 em { color: var(--red); font-style: normal }
.faq .list { display: flex; flex-direction: column }
.faq details {
  border-top: 1px solid var(--line);
}
.faq details:last-child { border-bottom: 1px solid var(--line) }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: 'Anton';
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.1;
  color: var(--ink);
  padding: 24px 0;
  user-select: none;
}
.faq summary::-webkit-details-marker { display: none }
.faq summary .plus {
  font-family: 'JetBrains Mono';
  font-size: 18px;
  color: var(--red);
  transition: transform .35s cubic-bezier(0.34,1.56,0.64,1);
  flex-shrink: 0;
}
.faq details[open] summary .plus { transform: rotate(45deg) }

/* a animação suave é controlada por JS (max-height) */
.faq .answer {
  overflow: hidden;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-dim);
  max-width: 640px;
}

/* =============================================================
   LOCALIZAÇÃO
   ============================================================= */
.locate {
  background: var(--bg);
  padding: 120px 32px;
  border-bottom: 1px solid var(--line);
}
.locate .grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
.locate h2 {
  font-family: 'Anton';
  font-size: clamp(60px, 9vw, 160px);
  text-transform: uppercase;
  line-height: .88;
}
.locate h2 em { color: var(--red); font-style: normal }
.locate .info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 14px;
}
.locate .info .row .lbl {
  font-family: 'JetBrains Mono';
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.locate .info .row .val {
  font-family: 'Big Shoulders Display';
  font-weight: 500;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.3;
}
.locate .map-links { display: flex; gap: 12px; flex-wrap: wrap }

/* =============================================================
   FOOTER
   ============================================================= */
footer {
  background: #06080d;
  color: var(--ink);
  padding: 80px 32px 32px;
  border-top: 1px solid var(--line);
}
footer .grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
footer h4 {
  font-family: 'JetBrains Mono';
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
  font-weight: 500;
}

/* logo no footer */
.footer-logo {
  height: 76px;  /* +20% sobre 64px */
  width: auto;
  display: block;
  margin-bottom: 18px;
}

footer .desc {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.6;
  max-width: 340px;
}
footer ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer ul a {
  font-family: 'Big Shoulders Display';
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--ink);
  letter-spacing: .01em;
  transition: color .2s;
}
footer ul a:hover { color: var(--red) }
footer .legal {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: 'JetBrains Mono';
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  flex-wrap: wrap;
}
.legal-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.legal-right a {
  color: var(--ink-dim);
  transition: color .2s;
}
.legal-right a:hover { color: var(--ink) }
.pontiz-credit { opacity: .6 }
.pontiz-credit:hover { opacity: 1 !important }

/* =============================================================
   REVEAL — animação de entrada ao scroll
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity  0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* =============================================================
   TESTIMONIALS CAROUSEL — colunas com scroll infinito
   ============================================================= */
.t-columns {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 56px;
  max-height: 700px;
  overflow: hidden;
  /* fade suave no topo e rodapé */
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 18%, black 78%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 78%, transparent);
}

.t-col {
  flex: 1;
  min-width: 0;
  max-width: 380px;
}

.t-col-track {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: tScrollUp 30s linear infinite;
  will-change: transform;
}

/* pausa ao passar o rato */
.t-col:hover .t-col-track { animation-play-state: paused }

/* respeita preferência de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  .t-col-track { animation: none }
}

@keyframes tScrollUp {
  from { transform: translateY(0) }
  to   { transform: translateY(-50%) }
}

/* card individual */
.t-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 26px 28px;
  flex-shrink: 0;
  transition: border-color .3s;
}
.t-card:hover { border-color: rgba(61,109,176,.5) }

.t-stars {
  color: var(--red);
  font-size: 13px;
  letter-spacing: .08em;
  margin-bottom: 14px;
}

.t-quote {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 20px;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.t-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--c, #3d6db0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Anton';
  font-size: 13px;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: .04em;
}

.t-name {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.25;
}

.t-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 3px;
}

.reviews-cta {
  text-align: center;
  margin-top: 56px;
}

/* colunas visíveis por resolução */
.t-col-2 { display: none }
.t-col-3 { display: none }
@media (min-width: 640px)  { .t-col-2 { display: block } }
@media (min-width: 1024px) { .t-col-3 { display: block } }

/* =============================================================
   COOKIE BANNER — seguindo regras CLAUDE.md para position:fixed
   ============================================================= */
.cookie-banner {
  /* regra CLAUDE.md: width:100vw em vez de right:0 para evitar overflow */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  overflow: hidden;
  box-sizing: border-box;
  z-index: 200;
  background: rgba(10,14,22,.97);
  border-top: 1px solid var(--line);
  padding: 20px 32px;
  /* GPU layer própria para evitar artefactos em scroll */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease, visibility 0s linear 0s;
}
.cookie-banner.is-hidden {
  transform: translateY(100%) translateZ(0);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.4,0,1,1), opacity 0.3s ease, visibility 0s linear 0.4s;
}

.cookie-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.5;
  flex: 1;
  min-width: 240px;
}
.cookie-text a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity .2s;
}
.cookie-text a:hover { opacity: .75 }
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-actions .btn {
  padding: 10px 20px;
  font-size: 11px;
}

/* =============================================================
   RESPONSIVE — ≤ 980 px
   ============================================================= */
@media (max-width: 980px) {
  .nav { padding: 14px 20px }

  .pad { padding: 80px 22px }

  .intro .head       { grid-template-columns: 1fr; gap: 32px }
  .photo-strip       { grid-template-columns: repeat(3,1fr) }
  .photo-strip .ph:nth-child(n) { transform: none }

  .stats             { grid-template-columns: repeat(2,1fr) }
  .stats .cell:nth-child(2) { border-right: none }
  .stats .cell       { border-bottom: 1px solid var(--line) }

  .desportos .head   { grid-template-columns: 1fr; gap: 24px }
  .sports-grid       { grid-template-columns: 1fr 1fr }
  .sport             { border-right: 1px solid var(--line) }
  .sport:nth-child(2n) { border-right: none }

  .victory .grid     { grid-template-columns: 1fr; gap: 40px }

  .menu-sec .grid    { grid-template-columns: 1fr; gap: 48px }

  .bigimg            { height: 60vh; min-height: 420px }

  .split             { grid-template-columns: 1fr }
  .split .cell       { padding: 56px 32px }
  .split .cell.right { border-left: none; border-top: 1px solid var(--line) }

  .match             { grid-template-columns: 90px 1fr; row-gap: 8px }
  .match .comp,
  .match .screen,
  .match .book       { grid-column: 2 }
  .match .book       { text-align: left; margin-top: 4px }

  .reviews           { padding: 80px 22px }
  .reviews .grid     { grid-template-columns: 1fr }

  .faq               { padding: 80px 22px }
  .faq .grid         { grid-template-columns: 1fr; gap: 32px }

  .locate            { padding: 80px 22px }
  .locate .grid      { grid-template-columns: 1fr; gap: 32px }

  footer .grid       { grid-template-columns: 1fr 1fr; gap: 32px }

  .hero-meta         { display: none }
  .hero-ctas         { flex-direction: column; align-items: center }

  .nav-left          { gap: 12px }
  .nav .cta          { padding: 9px 14px; font-size: 11px }
}
