/* ============================================================
   EasyTicketPass — Fluid full-width design system
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pitch:      #0a4d3a;
  --pitch-dk:   #062f24;
  --pitch-lt:   #16704f;
  --lime:       #84cc16;
  --lime-dk:    #65a30d;
  --lime-text:  #4d7c0f;
  --gold:       #c9a961;
  --gold-dk:    #8a7437;
  --ink:        #0b1014;
  --ink-2:      #1a2128;
  --muted:      #5b6470;
  --muted-2:    #8892a0;
  --line:       #e6e9ed;
  --surface:    #ffffff;
  --bg:         #faf9f6;
  --bg-2:       #f1efe9;

  --shadow-sm:  0 1px 2px rgba(11,16,20,0.04), 0 1px 1px rgba(11,16,20,0.03);
  --shadow:     0 4px 14px rgba(11,16,20,0.06), 0 2px 4px rgba(11,16,20,0.04);
  --shadow-lg:  0 18px 40px rgba(11,16,20,0.10), 0 6px 14px rgba(11,16,20,0.05);
  --radius:     10px;
  --radius-lg:  16px;

  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans:  'Inter', 'Raleway', system-ui, -apple-system, "Segoe UI", Arial, sans-serif;

  /* Fluid padding — scales with viewport */
  --pad-x: clamp(20px, 5vw, 80px);
  --pad-y: clamp(48px, 7vw, 110px);
  --gap:   clamp(16px, 2.5vw, 32px);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  font-family: var(--sans);
  color: var(--ink);
  line-height: 1.65;
  font-size: clamp(15px, 1vw + 12px, 17px);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; }

h1, h2, h3, h4, .site-logo, .display {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.012em;
}
h1 { font-size: clamp(2.2rem, 5vw, 4.4rem); margin-bottom: 16px; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin-bottom: 18px; }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.55rem); margin-bottom: 8px; }
h4 { font-size: clamp(1rem, 1.3vw, 1.18rem); margin-bottom: 6px; }
p  { margin-bottom: 14px; color: #2c333c; }

a { color: var(--lime-text); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--lime-dk); text-decoration: underline; text-underline-offset: 3px; }

::selection { background: var(--gold); color: var(--ink); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

/* Full-width wrapper — no max-width, fluid horizontal padding */
.wrap { width: 100%; padding-inline: var(--pad-x); }
.wrap-narrow { width: 100%; padding-inline: var(--pad-x); max-width: 1280px; margin-inline: auto; }
.wrap-mid    { width: 100%; padding-inline: var(--pad-x); max-width: 1500px; margin-inline: auto; }

/* Sections */
section { padding-block: var(--pad-y); position: relative; }
section.sub { padding-block: clamp(36px, 5vw, 64px); }
section.flush { padding: 0; }

/* ============================================================
   Cookie banner
   ============================================================ */
.cookie {
  background: var(--ink);
  color: #d8dde3;
  padding: 12px var(--pad-x);
  font-size: 13.5px;
  border-bottom: 3px solid var(--gold);
  display: flex; gap: 16px; align-items: center; justify-content: space-between; flex-wrap: wrap;
}
.cookie p { margin: 0; color: #d8dde3; }
.cookie a { color: var(--gold); }
.cookie-actions { display: inline-flex; gap: 8px; flex-shrink: 0; }
.cookie button {
  background: var(--lime); color: var(--ink); border: none; border-radius: 6px;
  padding: 9px 22px; text-transform: uppercase; letter-spacing: 0.9px;
  font-size: 12.5px; cursor: pointer; transition: background 0.2s;
  font-weight: 700;
}
.cookie button:hover { background: var(--lime-dk); }
.cookie button.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #cfd6dc;
}
.cookie button.btn-secondary:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

/* ============================================================
   Navbar (full-width)
   ============================================================ */
.navbar {
  padding: 14px var(--pad-x);
  background: rgba(255,255,255,0.95);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}
.site-logo {
  font-size: clamp(1.3rem, 1.5vw, 1.65rem);
  letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink); font-weight: 700;
}
.site-logo .crest {
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--pitch) 0%, var(--pitch-dk) 100%);
  border-radius: 8px; position: relative; flex-shrink: 0;
}
.site-logo .crest::before {
  content: ''; position: absolute; inset: 7px;
  border-radius: 50%; border: 1.8px solid var(--gold);
}
.site-logo .crest::after {
  content: ''; position: absolute; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
}
.nav-links {
  display: flex; gap: clamp(14px, 1.8vw, 26px);
  list-style: none; flex-wrap: wrap; align-items: center;
}
.nav-links a {
  text-transform: uppercase;
  font-size: clamp(11px, 0.85vw, 13px);
  letter-spacing: 1px;
  color: var(--ink-2); font-weight: 600;
  padding: 8px 0; position: relative;
}
.nav-links a:hover { color: var(--lime-text); text-decoration: none; }
.nav-links a:hover::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--lime); }
.nav-cta {
  background: var(--lime); color: var(--ink) !important;
  padding: 10px 20px !important; border-radius: 6px; letter-spacing: 0.5px !important;
}
.nav-cta:hover { background: var(--lime-dk) !important; color: var(--ink) !important; }
.nav-cta:hover::after { display: none; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--lime); color: var(--ink);
  border-radius: 8px; text-transform: uppercase; letter-spacing: 0.8px;
  padding: 15px clamp(20px, 2.6vw, 32px);
  border: none; cursor: pointer;
  font-size: clamp(12.5px, 1vw, 14px);
  transition: background 0.2s, transform 0.05s, box-shadow 0.2s;
  font-family: inherit; font-weight: 700;
  box-shadow: 0 4px 14px rgba(132,204,22,0.25);
}
.btn:hover { background: var(--lime-dk); color: var(--ink); text-decoration: none; box-shadow: 0 6px 18px rgba(132,204,22,0.35); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.6); box-shadow: none; }
.btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; box-shadow: none; }
.btn-dark { background: var(--ink); color: #fff; box-shadow: 0 4px 14px rgba(11,16,20,0.2); }
.btn-dark:hover { background: var(--ink-2); color: #fff; box-shadow: 0 6px 18px rgba(11,16,20,0.3); }
.btn-gold { background: var(--gold); color: var(--ink); box-shadow: 0 4px 14px rgba(201,169,97,0.3); }
.btn-gold:hover { background: var(--gold-dk); color: #fff; box-shadow: 0 6px 18px rgba(201,169,97,0.4); }
.btn-block { display: flex; width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 12px; }
.btn-lg { padding: 18px 36px; font-size: 14.5px; }

/* ============================================================
   Common: section head
   ============================================================ */
.section-head { text-align: center; max-width: 820px; margin: 0 auto clamp(28px, 4vw, 48px); }
.kicker {
  display: inline-block;
  color: var(--lime-text); font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.2px;
  font-size: 11.5px; margin-bottom: 14px;
  padding: 6px 14px; background: rgba(132,204,22,0.07);
  border-radius: 100px;
}
.section-head .head-ico {
  display: inline-flex; width: 60px; height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(132,204,22,0.1), rgba(132,204,22,0.02));
  border: 1px solid rgba(132,204,22,0.2);
  align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.section-head .head-ico svg { width: 30px; height: 30px; fill: none; stroke: var(--lime-text); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ============================================================
   Hero — full viewport
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(560px, 90vh, 820px);
  padding: clamp(80px, 12vw, 140px) var(--pad-x) clamp(60px, 8vw, 100px);
  color: #fff;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  background:
    linear-gradient(160deg, rgba(6,47,36,0.88) 0%, rgba(11,16,20,0.78) 50%, rgba(11,16,20,0.92) 100%),
    url('https://images.pexels.com/photos/30651230/pexels-photo-30651230.jpeg?auto=compress&cs=tinysrgb&w=2400') center/cover no-repeat;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 90px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 90px);
  pointer-events: none;
  z-index: 1;
}
.hero > * { position: relative; z-index: 2; }
.hero h1, .hero h2, .hero p { color: #fff; }
.hero h1 { color: #fff; max-width: 1100px; }
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lime); color: var(--ink);
  font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.6px;
  padding: 9px 16px; border-radius: 100px;
  margin-bottom: 26px;
}
.hero .eyebrow::before {
  content: ''; width: 7px; height: 7px;
  background: var(--ink); border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(11,16,20,0.15);
}
.hero .eyebrow-static::before { box-shadow: none; }
.hero p.lead {
  font-size: clamp(16px, 1.4vw, 20px);
  max-width: 780px; color: #dde3e7; line-height: 1.65;
}
.hero .meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0;
  margin-top: clamp(28px, 4vw, 44px);
  padding-top: clamp(22px, 3vw, 32px);
  border-top: 1px solid rgba(255,255,255,0.16);
  max-width: 980px;
}
.hero .meta div {
  padding: 4px clamp(14px, 2vw, 28px) 4px 0;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.hero .meta div:last-child { border-right: none; }
.hero .meta .label {
  display: block; font-size: 10.5px;
  text-transform: uppercase; letter-spacing: 1.6px;
  color: var(--gold); margin-bottom: 6px; font-weight: 600;
}
.hero .meta .value {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  color: #fff; font-weight: 600; line-height: 1.15;
}
.hero .actions { margin-top: clamp(28px, 4vw, 40px); display: flex; gap: 14px; flex-wrap: wrap; }

/* Countdown */
.countdown {
  display: inline-flex; gap: clamp(10px, 1.4vw, 18px);
  margin-top: clamp(24px, 3vw, 36px);
  padding: clamp(14px, 1.6vw, 18px) clamp(18px, 2vw, 26px);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}
.countdown .unit { text-align: center; min-width: clamp(48px, 5vw, 70px); }
.countdown .num {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  color: var(--gold); font-weight: 700;
  line-height: 1; display: block;
}
.countdown .lbl {
  font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px;
  color: #cfd6dc; margin-top: 6px; display: block;
}
.countdown .sep { color: rgba(255,255,255,0.25); font-size: clamp(1.4rem, 2.4vw, 2rem); line-height: 1.5; }

/* Scroll indicator */
.scroll-cue {
  position: absolute;
  left: 50%; bottom: 24px;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 11px; text-transform: uppercase; letter-spacing: 2px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  z-index: 2;
}
.scroll-cue::after {
  content: ''; width: 1px; height: 30px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   Trust strip — full width
   ============================================================ */
.trust {
  background: var(--ink); color: #cbd2da;
  padding: clamp(24px, 3vw, 40px) var(--pad-x);
}
.trust .row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(18px, 2vw, 28px);
  max-width: 1500px; margin-inline: auto;
}
.trust .row .item {
  display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: start;
  font-size: 13.5px; color: #a9b2bc; line-height: 1.55;
}
.trust .row .item .ico {
  width: 48px; height: 48px; border-radius: 10px;
  background: linear-gradient(135deg, var(--pitch), var(--pitch-dk));
  border: 1px solid rgba(201,169,97,0.4);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust .row .item .ico svg { width: 24px; height: 24px; fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.trust .row .item strong {
  display: block; color: #fff;
  font-family: var(--serif); font-size: 1.2rem;
  margin-bottom: 4px;
}

/* ============================================================
   POSTER (event card hero) — split layout with photo
   ============================================================ */
.poster {
  background: var(--ink); color: #fff;
  padding: 0;
}
.poster .grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  min-height: clamp(480px, 70vh, 720px);
}
.poster .visual {
  position: relative; overflow: hidden;
  background:
    linear-gradient(35deg, rgba(11,16,20,0.55) 0%, transparent 50%, rgba(132,204,22,0.18) 100%),
    url('https://images.pexels.com/photos/1657323/pexels-photo-1657323.jpeg?auto=compress&cs=tinysrgb&w=2000') center/cover no-repeat;
}
.poster .visual::before {
  content: '';
  position: absolute; inset: auto 0 0 0; height: 50%;
  background: linear-gradient(to top, rgba(11,16,20,0.65), transparent);
}
.poster .visual .badge-row {
  position: absolute; top: clamp(24px, 3vw, 40px); left: clamp(24px, 3vw, 40px);
  display: flex; gap: 8px; flex-wrap: wrap;
}
.poster .visual .badge-row span {
  background: rgba(11,16,20,0.6); color: #fff;
  padding: 8px 14px; border-radius: 100px;
  font-size: 11px; text-transform: uppercase; letter-spacing: 1.4px; font-weight: 700;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
}
.poster .visual .badge-row span.live { background: var(--lime); border-color: var(--lime); }
.poster .visual .date-block {
  position: absolute; bottom: clamp(24px, 3vw, 40px); left: clamp(24px, 3vw, 40px);
  background: rgba(11,16,20,0.7); border: 1px solid rgba(201,169,97,0.4);
  border-radius: 14px; padding: 18px 22px;
  backdrop-filter: blur(10px);
  display: flex; align-items: center; gap: 16px;
}
.poster .visual .date-block .day {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700; color: var(--gold); line-height: 1;
}
.poster .visual .date-block .mo {
  font-size: 12px; text-transform: uppercase; letter-spacing: 1.6px;
  color: #fff; font-weight: 700;
}
.poster .visual .date-block .y {
  font-size: 11px; color: #c9cfd5; margin-top: 2px;
}
.poster .info { padding: clamp(40px, 5vw, 72px) clamp(28px, 4vw, 64px); display: flex; flex-direction: column; justify-content: center; }
.poster .info .label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 2px;
  color: var(--gold); font-weight: 700; margin-bottom: 16px;
}
.poster .info h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  margin-bottom: 18px;
}
.poster .info p {
  color: #cbd2da;
  font-size: clamp(15px, 1.1vw, 17px);
  margin-bottom: 22px;
}
.poster .info .row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px; margin: 22px 0 28px;
  padding: 22px 0; border-block: 1px solid rgba(255,255,255,0.12);
}
.poster .info .row .k { font-size: 10.5px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); margin-bottom: 4px; font-weight: 700; }
.poster .info .row .v { color: #fff; font-family: var(--serif); font-size: 1.2rem; font-weight: 600; line-height: 1.15; }
.poster .info .price-line {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 22px;
}
.poster .info .price-line .from { color: #b8bfc7; text-transform: uppercase; font-size: 11px; letter-spacing: 1.4px; font-weight: 600; }
.poster .info .price-line .num { font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.2rem); color: var(--gold); font-weight: 700; line-height: 1; }
.poster .info .price-line .cur { font-size: 1.4rem; color: var(--gold); }
.poster .info .ctas { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 900px) {
  .poster .grid { grid-template-columns: 1fr; }
  .poster .visual { min-height: 360px; }
}

/* ============================================================
   Description / Sobre block
   ============================================================ */
.sobre {
  background: var(--surface);
  padding-block: var(--pad-y); padding-inline: var(--pad-x);
}
.sobre .grid {
  display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 60px); align-items: start;
  max-width: 1500px; margin-inline: auto;
}
.sobre .copy h2 { color: var(--pitch); }
.sobre .copy .lead {
  font-size: clamp(17px, 1.4vw, 21px);
  color: var(--ink-2); line-height: 1.6;
  margin-bottom: 20px;
}
.sobre .copy p { color: #2c333c; font-size: clamp(15px, 1.1vw, 16.5px); line-height: 1.75; }
.sobre .copy .quote {
  margin: 24px 0;
  padding: 22px 26px;
  border-left: 4px solid var(--gold);
  background: var(--bg-2);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  color: var(--pitch-dk);
  line-height: 1.4;
  font-style: italic;
  font-weight: 600;
  border-radius: 0 8px 8px 0;
}
.sobre .ficha {
  background: linear-gradient(160deg, var(--pitch-dk), var(--ink));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.5vw, 40px);
  position: sticky; top: 100px;
}
.sobre .ficha h3 { color: var(--gold); font-size: 1.4rem; margin-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,0.14); padding-bottom: 14px; }
.sobre .ficha ul { list-style: none; padding: 0; }
.sobre .ficha ul li { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px dashed rgba(255,255,255,0.1); font-size: 14px; }
.sobre .ficha ul li:last-child { border: none; }
.sobre .ficha ul li .k { color: #b8c0c8; }
.sobre .ficha ul li .v { color: #fff; font-weight: 600; text-align: right; }
.sobre .ficha .total {
  margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: baseline; justify-content: space-between;
}
.sobre .ficha .total .lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 1.4px; color: var(--gold); font-weight: 700; }
.sobre .ficha .total .num { font-family: var(--serif); font-size: 2.2rem; color: var(--gold); font-weight: 700; line-height: 1; }
.sobre .ficha .btn { width: 100%; margin-top: 18px; }
@media (max-width: 900px) {
  .sobre .grid { grid-template-columns: 1fr; }
  .sobre .ficha { position: static; }
}

/* ============================================================
   Tickets section — full width
   ============================================================ */
.tickets-section {
  background: var(--bg-2);
  padding: var(--pad-y) var(--pad-x);
}
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(18px, 2vw, 26px);
  max-width: 1500px; margin-inline: auto;
}
.ticket {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 2.5vw, 32px) clamp(20px, 2.4vw, 28px) clamp(22px, 2.4vw, 28px);
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}
.ticket::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--lime);
}
.ticket.popular { border-color: var(--pitch-lt); transform: scale(1.02); box-shadow: var(--shadow-lg); }
.ticket.popular::before { background: var(--pitch); height: 5px; }
.ticket.vip::before { background: linear-gradient(90deg, var(--gold), var(--gold-dk)); height: 5px; }
.ticket:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ticket.popular:hover { transform: scale(1.02) translateY(-4px); }
.badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--pitch); color: #fff;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.3px;
  padding: 6px 11px; border-radius: 100px;
}
.badge.gold { background: var(--gold); color: var(--ink); }
.ticket .seat-ico {
  width: 56px; height: 56px; margin-bottom: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(10,77,58,0.08), rgba(10,77,58,0.02));
  border: 1px solid rgba(10,77,58,0.15); border-radius: 12px;
}
.ticket .seat-ico svg { width: 30px; height: 30px; fill: none; stroke: var(--pitch); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ticket.popular .seat-ico { background: linear-gradient(135deg, rgba(10,77,58,0.12), rgba(10,77,58,0.04)); border-color: rgba(10,77,58,0.3); }
.ticket.vip .seat-ico { background: linear-gradient(135deg, rgba(201,169,97,0.16), rgba(201,169,97,0.04)); border-color: rgba(201,169,97,0.45); }
.ticket.vip .seat-ico svg { stroke: var(--gold-dk); }
.ticket h3 { font-size: clamp(1.4rem, 1.8vw, 1.7rem); margin-bottom: 2px; }
.ticket .sector { font-size: 11.5px; text-transform: uppercase; letter-spacing: 1.3px; color: var(--muted); font-weight: 600; margin-bottom: 14px; }
.ticket .price { font-family: var(--serif); font-size: clamp(2.2rem, 3vw, 2.8rem); font-weight: 700; color: var(--ink); line-height: 1; margin: 8px 0 4px; }
.ticket .price .cur { font-size: 1.3rem; color: var(--lime-text); vertical-align: top; margin-right: 2px; }
.ticket .price-note { font-size: 12px; color: var(--muted); margin-bottom: 18px; }
.ticket ul { list-style: none; padding: 0; margin: 0 0 22px; flex: 1; }
.ticket ul li {
  padding: 9px 0 9px 26px; position: relative;
  font-size: 14px; color: #3a424d;
  border-bottom: 1px dashed #edeff1;
}
.ticket ul li:last-child { border-bottom: none; }
.ticket ul li::before {
  content: ''; position: absolute; left: 0; top: 13px;
  width: 14px; height: 7px;
  border-left: 2px solid var(--pitch-lt); border-bottom: 2px solid var(--pitch-lt);
  transform: rotate(-45deg);
}

/* ============================================================
   Atmosphere — full width split with real photo
   ============================================================ */
.atmosphere {
  background: var(--ink); color: #fff;
  padding: 0; position: relative; overflow: hidden;
}
.atmosphere .grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  align-items: stretch;
  min-height: clamp(380px, 55vh, 580px);
}
.atmosphere .copy { padding: clamp(40px, 5vw, 80px) clamp(28px, 4vw, 64px); display: flex; flex-direction: column; justify-content: center; }
.atmosphere .copy h2 { color: #fff; }
.atmosphere .copy p { color: #cbd2da; font-size: clamp(15px, 1.1vw, 17px); }
.atmosphere .stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 18px; margin-top: 26px;
}
.atmosphere .stat .num {
  font-family: var(--serif); font-size: clamp(2rem, 2.8vw, 2.6rem);
  color: var(--gold); font-weight: 700; line-height: 1;
}
.atmosphere .stat .lbl {
  font-size: 11px; text-transform: uppercase; letter-spacing: 1.4px;
  color: #a9b2bc; margin-top: 5px; display: block;
}
.atmosphere .visual {
  position: relative; overflow: hidden;
  background:
    linear-gradient(135deg, rgba(6,47,36,0.4) 0%, transparent 50%, rgba(11,16,20,0.4) 100%),
    url('https://images.pexels.com/photos/26694125/pexels-photo-26694125.jpeg?auto=compress&cs=tinysrgb&w=2000') center/cover no-repeat;
}
@media (max-width: 900px) {
  .atmosphere .grid { grid-template-columns: 1fr; }
  .atmosphere .visual { min-height: 280px; }
}

/* ============================================================
   Stadium
   ============================================================ */
.stadium-section { padding: var(--pad-y) var(--pad-x); }
.stadium-section .layout {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(28px, 3.5vw, 56px); align-items: start;
  max-width: 1500px; margin-inline: auto;
}
.stadium-map {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2vw, 32px);
  box-shadow: var(--shadow);
}
.stadium-map svg { width: 100%; height: auto; }
.stadium-legend {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px 20px; margin-top: 20px; font-size: 13.5px;
}
.stadium-legend .item { display: flex; align-items: center; gap: 8px; color: var(--ink-2); }
.stadium-legend .swatch { width: 14px; height: 14px; border-radius: 3px; display: inline-block; flex-shrink: 0; }
.stadium-info ul { list-style: none; padding: 0; margin: 18px 0 0; }
.stadium-info ul li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px;
  font-size: 14.5px;
}
.stadium-info ul li strong { color: var(--ink); font-weight: 600; }
.stadium-info ul li span { color: var(--muted); text-align: right; }
@media (max-width: 900px) {
  .stadium-section .layout { grid-template-columns: 1fr; }
}

/* ============================================================
   Gallery — full width grid of real photos
   ============================================================ */
.gallery { padding: var(--pad-y) var(--pad-x); background: var(--bg); }
.gallery .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(10px, 1.2vw, 16px);
  max-width: 1600px; margin-inline: auto;
}
.gallery .tile {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  background: var(--ink-2);
  cursor: pointer;
}
.gallery .tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
  filter: saturate(0.92);
}
.gallery .tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,16,20,0.7) 100%);
  pointer-events: none;
}
.gallery .tile .cap {
  position: absolute; left: 14px; bottom: 12px; right: 14px;
  color: #fff; font-size: 12.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.2px;
  z-index: 2;
}
.gallery .tile:hover img { transform: scale(1.06); filter: saturate(1.05); }
.gallery .tile.large { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
@media (max-width: 600px) {
  .gallery .tile.large { grid-column: span 1; grid-row: span 1; aspect-ratio: 4 / 3; }
}

/* ============================================================
   Timeline (matchday)
   ============================================================ */
.timeline-section { padding: var(--pad-y) var(--pad-x); background: var(--surface); }
.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  max-width: 1500px; margin-inline: auto;
}
.timeline .step { padding: clamp(22px, 2.6vw, 32px) clamp(20px, 2vw, 28px); position: relative; border-right: 1px solid var(--line); }
.timeline .step:last-child { border-right: none; }
.timeline .step .time { font-family: var(--serif); font-size: clamp(1.6rem, 2.2vw, 2rem); font-weight: 700; color: var(--pitch); line-height: 1; margin-bottom: 6px; }
.timeline .step .label { font-size: 11px; text-transform: uppercase; letter-spacing: 1.4px; color: var(--muted); font-weight: 700; margin-bottom: 6px; }
.timeline .step .desc { font-size: 13.5px; color: #3a424d; margin: 0; }
.timeline .step.kick { background: var(--ink); }
.timeline .step.kick .time  { color: var(--gold); }
.timeline .step.kick .label { color: var(--gold); }
.timeline .step.kick .desc  { color: #d8dde3; }
@media (max-width: 700px) {
  .timeline .step { border-right: none; border-bottom: 1px solid var(--line); }
  .timeline .step:last-child { border-bottom: none; }
}

/* ============================================================
   Como chegar (transport)
   ============================================================ */
.transport { padding: var(--pad-y) var(--pad-x); background: var(--bg-2); }
.transport .grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(18px, 2vw, 28px);
  max-width: 1500px; margin-inline: auto;
}
.transport .card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 2.6vw, 32px);
  transition: box-shadow 0.2s, transform 0.15s;
}
.transport .card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.transport .card .ico {
  width: 56px; height: 56px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(10,77,58,0.1), rgba(10,77,58,0.02));
  border: 1px solid rgba(10,77,58,0.16);
  margin-bottom: 16px;
}
.transport .card .ico svg { width: 28px; height: 28px; fill: none; stroke: var(--pitch); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.transport .card h3 { color: var(--pitch); margin-bottom: 8px; }
.transport .card p { font-size: 14.5px; color: #3a424d; margin-bottom: 10px; }
.transport .card .meta { font-size: 12px; text-transform: uppercase; letter-spacing: 1.3px; color: var(--muted); font-weight: 600; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { padding: var(--pad-y) var(--pad-x); background: var(--bg); }
.faq { max-width: 920px; margin: 0 auto; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 24px; margin-bottom: 12px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.faq details:hover { border-color: #d0d4da; }
.faq details[open] { box-shadow: var(--shadow); border-color: #d0d4da; }
.faq summary {
  cursor: pointer; font-weight: 600; color: var(--ink);
  list-style: none; position: relative;
  padding-right: 32px; font-size: clamp(15px, 1.1vw, 16.5px); user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; position: absolute; right: 4px; top: 6px;
  width: 12px; height: 12px;
  border-right: 2px solid var(--lime); border-bottom: 2px solid var(--lime);
  transform: rotate(45deg); transition: transform 0.2s;
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 12px; }
.faq details p {
  margin-top: 14px; margin-bottom: 0; color: #3a424d;
  font-size: 14.5px;
  padding-top: 14px; border-top: 1px solid var(--line);
}

/* ============================================================
   Newsletter
   ============================================================ */
.newsletter {
  background:
    linear-gradient(120deg, rgba(6,47,36,0.95), rgba(11,16,20,0.92)),
    url('https://images.pexels.com/photos/14460275/pexels-photo-14460275.jpeg?auto=compress&cs=tinysrgb&w=2000') center/cover no-repeat;
  color: #fff;
  padding: var(--pad-y) var(--pad-x);
  text-align: center;
}
.newsletter h2 { color: #fff; }
.newsletter p { color: #cbd2da; max-width: 620px; margin: 0 auto 24px; }
.newsletter form {
  display: flex; gap: 10px; max-width: 540px;
  margin: 0 auto; flex-wrap: wrap;
}
.newsletter form input {
  flex: 1; min-width: 200px;
  padding: 14px 18px; border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08); color: #fff;
  font-family: inherit; font-size: 15px;
  outline: none;
}
.newsletter form input::placeholder { color: #a9b2bc; }
.newsletter form input:focus { border-color: var(--gold); background: rgba(255,255,255,0.12); }
.newsletter form button { flex-shrink: 0; }
.newsletter .note { font-size: 12px; color: #8892a0; margin-top: 14px; margin-bottom: 0; }

/* ============================================================
   Contact form section
   ============================================================ */
.contact-section { padding: var(--pad-y) var(--pad-x); background: var(--surface); }
.contact-info {
  text-align: center; margin: 0 auto 36px; max-width: 920px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.contact-info .block { padding: 18px; }
.contact-info .label { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: 1.4px; font-weight: 600; display: block; margin-bottom: 6px; }
.contact-info .val { color: var(--ink); font-size: 15px; font-weight: 500; }
.contact-info .val a { color: var(--ink); }
.contact-info .val a:hover { color: var(--lime-text); }
.form-card {
  max-width: 680px; margin: 0 auto;
  padding: clamp(28px, 3vw, 42px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.form-card h2, .form-card .subtitle { text-align: center; }
.form-card .subtitle { color: var(--muted); margin-bottom: 26px; font-size: 14.5px; }

form .field { margin-bottom: 16px; }
form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label {
  display: block; font-size: 12px; margin-bottom: 6px;
  color: var(--ink-2); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.8px;
}
input, select {
  width: 100%; padding: 13px 14px;
  border: 1.5px solid #d4d8dd; border-radius: 8px;
  font-size: 15px; outline: none;
  font-family: inherit; background: #fafbfc; color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
input:hover, select:hover { background: #fff; }
input:focus, select:focus { border-color: var(--lime); background: #fff; box-shadow: 0 0 0 3px rgba(132,204,22,0.12); }
select { appearance: none; -webkit-appearance: none; padding-right: 38px;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-2) 50%), linear-gradient(135deg, var(--ink-2) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px; background-repeat: no-repeat;
}
.form-card .btn { width: 100%; padding: 15px; margin-top: 10px; font-size: 13.5px; }

/* Consent checkbox */
.consent-check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  margin: 8px 0 4px;
  padding: 14px 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.consent-check:hover { border-color: #c9cdd3; }
.consent-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  appearance: none;
  -webkit-appearance: none;
  border: 1.8px solid var(--muted-2);
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: border-color 0.15s, background 0.15s;
  flex-shrink: 0;
  padding: 0;
}
.consent-check input[type="checkbox"]:hover { border-color: var(--lime); }
.consent-check input[type="checkbox"]:checked {
  background: var(--lime);
  border-color: var(--lime);
}
.consent-check input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px; top: 1px;
  width: 6px; height: 11px;
  border-right: 2.5px solid var(--ink);
  border-bottom: 2.5px solid var(--ink);
  transform: rotate(45deg);
}
.consent-check input[type="checkbox"]:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.consent-check span {
  font-size: 12.5px;
  line-height: 1.55;
  color: #2c333c;
  user-select: none;
}
.consent-check span a { color: var(--lime-text); text-decoration: underline; }
.consent-check.invalid {
  border-color: #c8102e;
  background: rgba(200,16,46,0.04);
}
.consent-error {
  display: none;
  margin: 6px 2px 0;
  font-size: 12px;
  color: #c8102e;
  font-weight: 500;
}
.consent-error.show { display: block; }
.form-next {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.success {
  display: none; margin-top: 18px;
  padding: 14px 16px;
  background: rgba(10,77,58,0.06); color: var(--pitch);
  border: 1px solid rgba(10,77,58,0.18);
  border-radius: 8px; text-align: center; font-size: 14.5px; font-weight: 500;
}
.success.show { display: block; animation: slideIn 0.3s ease; }
@keyframes slideIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   Mobile sticky CTA
   ============================================================ */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0;
  background: var(--ink); color: #fff;
  padding: 12px 16px;
  display: none; align-items: center; justify-content: space-between; gap: 12px;
  z-index: 55; border-top: 3px solid var(--lime);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.2);
}
.mobile-cta .info .price { font-family: var(--serif); font-size: 1.4rem; color: var(--gold); font-weight: 700; line-height: 1; }
.mobile-cta .info .lbl { font-size: 10.5px; text-transform: uppercase; letter-spacing: 1.3px; color: #b8bfc7; }
.mobile-cta .btn { box-shadow: none; }

/* ============================================================
   Page hero (sub-pages)
   ============================================================ */
.page-hero {
  background:
    linear-gradient(160deg, rgba(6,47,36,0.92) 0%, rgba(11,16,20,0.86) 100%),
    url('https://images.pexels.com/photos/30651230/pexels-photo-30651230.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
  color: #fff;
  padding: clamp(60px, 8vw, 100px) var(--pad-x) clamp(56px, 7vw, 80px);
  border-bottom: 4px solid var(--gold);
}
.page-hero .inner { max-width: 1280px; margin-inline: auto; }
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero p { color: #d8dde3; max-width: 720px; font-size: 16.5px; margin: 0; }
.page-hero .breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 12px; text-transform: uppercase; letter-spacing: 1.4px;
  color: var(--gold); margin-bottom: 18px;
}
.page-hero .breadcrumb a { color: #cfd6dc; }
.page-hero .breadcrumb a:hover { color: #fff; }
.page-hero .breadcrumb span.sep { color: rgba(255,255,255,0.35); }

.page-content {
  max-width: 920px;
  margin: -36px auto 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.5vw, 52px);
  box-shadow: var(--shadow);
  position: relative;
}
.page-content .lead { color: var(--muted); margin-bottom: 28px; font-size: 17px; line-height: 1.65; }
.page-content h2 {
  margin-top: 36px; padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: clamp(1.3rem, 2vw, 1.6rem); color: var(--pitch);
}
.page-content h2:first-of-type { border-top: none; padding-top: 0; margin-top: 6px; }
.page-content ul, .page-content ol { margin: 14px 0 18px 22px; }
.page-content li { margin-bottom: 8px; color: #2c333c; }
.page-content table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 14.5px; }
.page-content th, .page-content td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.page-content th { background: var(--bg-2); font-weight: 600; color: var(--ink); }
.page-content tr:hover td { background: #fafbfc; }

/* ============================================================
   Footer (full width)
   ============================================================ */
footer {
  background: var(--ink); color: #aab2bb;
  padding: clamp(40px, 5vw, 70px) var(--pad-x) 24px;
  font-size: 14px; margin-top: 40px;
  border-top: 3px solid var(--gold);
}
footer .grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 42px);
  margin-bottom: 36px;
  max-width: 1500px; margin-inline: auto;
}
footer a { color: #cfd6de; }
footer a:hover { color: #fff; text-decoration: none; }
footer h4 { color: #fff; font-size: 1.15rem; margin-bottom: 14px; font-family: var(--serif); }
footer .col p, footer .col li { color: #a3acb5; font-size: 13.5px; line-height: 1.65; }
footer ul { list-style: none; padding: 0; }
footer ul li { margin-bottom: 8px; }
footer .copy {
  border-top: 1px solid #1f262e; padding-top: 22px;
  text-align: center; color: #6e7681; font-size: 13px;
  max-width: 1500px; margin-inline: auto;
}
footer .copy .marks { display: inline-flex; gap: 16px; margin-left: 8px; }
footer .copy .marks span { color: #4a525c; }
@media (max-width: 820px) {
  footer .grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  footer .grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Mobile tweaks
   ============================================================ */
@media (max-width: 720px) {
  .navbar { flex-direction: column; align-items: flex-start; }
  .nav-links {
    gap: 12px; width: 100%; justify-content: flex-start;
    overflow-x: auto; padding-bottom: 4px; -webkit-overflow-scrolling: touch;
  }
  .nav-links a { white-space: nowrap; font-size: 11.5px; }
  .form-card { padding: 26px 22px; }
  .page-content { padding: 28px 24px; }
  form .field-row { grid-template-columns: 1fr; }
  .mobile-cta { display: flex; }
  main { padding-bottom: 76px; }
  .ticket.popular { transform: none; }
  .ticket.popular:hover { transform: translateY(-4px); }
  .scroll-cue { display: none; }
}
