/* ═══════════════ RESET & BASE ═══════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent:      #FF3D00;
  --accent-dark: #CC3100;
  --accent-glow: rgba(255, 61, 0, 0.35);
  --bg:          #000000;
  --bg-2:        #080808;
  --bg-3:        #0f0f0f;
  --bg-card:     #111111;
  --border:      rgba(255,255,255,0.07);
  --text:        #ffffff;
  --text-muted:  #888888;
  --font-title:  'Bebas Neue', sans-serif;
  --font-body:   'Montserrat', sans-serif;
  --nav-h:       100px;
  --radius:      8px;
  --tr:          0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ═══════════════ SHARED HELPERS ═══════════════ */
.section-kicker {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-h2 {
  font-family: var(--font-title);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-h2 em {
  font-style: normal;
  color: var(--accent);
}

/* ═══════════════ NAVBAR ═══════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: calc(var(--nav-h) + env(safe-area-inset-top));
  padding-top: env(safe-area-inset-top);
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background var(--tr), box-shadow var(--tr);
}

#navbar.scrolled {
  background: rgba(0,0,0,0.97);
  box-shadow: 0 1px 0 rgba(255,61,0,0.25), 0 4px 24px rgba(0,0,0,0.8);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo img { height: 80px; width: auto; object-fit: contain; filter: drop-shadow(0 0 4px rgba(255,255,255,0.6)) drop-shadow(0 0 10px rgba(255,255,255,0.3)); }

.logo-fallback {
  font-family: var(--font-title);
  font-size: 1.6rem;
  letter-spacing: 4px;
  color: var(--accent);
  display: none;
}

.nav-links { display: flex; align-items: center; gap: 32px; position: absolute; left: 50%; transform: translateX(-50%); }

.nav-links a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--tr);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--tr);
}

.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--tr);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════ BUTTONS ═══════════════ */
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-title);
  font-size: 1.3rem;
  letter-spacing: 3px;
  padding: 16px 40px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: background var(--tr), transform var(--tr), box-shadow var(--tr);
}

.btn-hero:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px var(--accent-glow);
}

.btn-ev {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid var(--accent);
  border-radius: 2px;
  transition: background var(--tr), color var(--tr), transform var(--tr), box-shadow var(--tr);
  align-self: flex-start;
}

.btn-ev:hover {
  background: var(--accent);
  color: #fff;
  transform: translateX(4px);
  box-shadow: 4px 0 20px var(--accent-glow);
}

.btn-ev-featured {
  background: var(--accent);
  color: #fff;
}

.btn-ev-featured:hover {
  background: var(--accent-dark);
  box-shadow: 4px 0 28px var(--accent-glow);
}

.btn-ig {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 14px 28px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  transition: border-color var(--tr), color var(--tr), transform var(--tr);
}

.btn-ig:hover {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
  transform: translateY(-2px);
}

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative;
  height: 100vh;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  max-width: none;
  display: block;
  filter: saturate(0.6);
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  /* retrato → paisagem: troca largura/altura e rotaciona */
  width: max(100vw, 100vh * 1.778);
  height: max(100vh, 100vw * 1.778);
  min-width: 100vw;
  min-height: 100vh;
  transform: translate(-50%, -50%) rotate(-90deg);
  object-fit: cover;
  object-position: center center;
  max-width: none;
  max-height: none;
  display: block;
  filter: saturate(0.65) brightness(0.9);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.6) 80%, rgba(0,0,0,1) 100%),
    linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%);
}

.hero-center {
  position: absolute;
  bottom: 100px;
  left: 0; right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  gap: 24px;
}

.hero-logo-corner {
  position: absolute;
  top: calc(var(--nav-h) + 24px);
  right: 28px;
  z-index: 2;
}

.hero-logo-corner img {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.8));
  max-width: none;
}

.hero-h1 {
  font-family: var(--font-title);
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.88;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-shadow: 0 4px 40px rgba(0,0,0,0.8);
  margin-bottom: 20px;
}

.hero-h1 em {
  font-style: normal;
  color: var(--accent);
  display: block;
  text-shadow: 0 0 60px rgba(255,61,0,0.5);
}

.hero-tagline {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.hero-tagline strong { color: var(--accent); }

.hero-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 1;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 18px 24px;
  flex-wrap: wrap;
}

.hero-bar span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-bar span i { color: var(--accent); }

.hbar-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ═══════════════ EVENTOS ═══════════════ */
.events-section {
  background: var(--bg);
  padding: 100px 0 0;
}

.events-header {
  max-width: 1240px;
  margin: 0 auto 64px;
  padding: 0 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.events-header-left { display: flex; flex-direction: column; }

.events-header-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: right;
  line-height: 1.7;
}

.events-header-note small {
  color: rgba(255,255,255,0.3);
  font-size: 0.72rem;
}

/* Each event panel — full-width horizontal strip */
.ev-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
}

.ev-panel.ev-alt .ev-panel-img  { order: 2; }
.ev-panel.ev-alt .ev-panel-content { order: 1; }

.ev-panel-img {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  min-height: 520px;
}

.ev-panel-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  max-width: none;
  display: block;
  transition: transform 0.7s ease;
  filter: saturate(0.75) brightness(0.85);
}

.ev-panel:hover .ev-panel-img img { transform: scale(1.06); }

.img-top-z { object-position: center 20%; transform: scale(1.25); }
.ev-panel:hover .ev-panel-img .img-top-z { transform: scale(1.31); }

.ev-panel-img.no-img { background: #060606; }

.ev-top-bg {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255,61,0,0.08) 0%, transparent 70%),
    #070707;
}

.ev-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 100%);
}

.ev-alt .ev-panel-overlay {
  background: linear-gradient(to left, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 100%);
}

.ev-featured-label {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 5px 14px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: pulse-badge 2.5s infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,61,0,0.5); }
  50%       { box-shadow: 0 0 0 8px rgba(255,61,0,0); }
}

.ev-panel-content {
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  background: var(--bg-2);
  position: relative;
  overflow: visible;
}

.ev-panel-content::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  opacity: 0.4;
  transition: opacity var(--tr);
}

.ev-panel:hover .ev-panel-content::before { opacity: 1; }

.ev-alt .ev-panel-content::before { left: auto; right: 0; }

.ev-type-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
}

.ev-number {
  font-family: var(--font-title);
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.05);
  position: absolute;
  bottom: 20px; right: 36px;
  user-select: none;
  pointer-events: none;
  transition: color var(--tr);
}

.ev-panel:hover .ev-number { color: rgba(255,61,0,0.08); }

.ev-alt .ev-number { right: auto; left: 36px; }

.ev-name {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
}

.ev-name span { color: var(--accent); }

.ev-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 8px 0 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.ev-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.ev-info li i { color: var(--accent); width: 12px; flex-shrink: 0; margin-top: 2px; }
.ev-info li strong { color: var(--text); }

.ev-featured { border-top: 1px solid rgba(255,61,0,0.3); }
.ev-featured .ev-panel-content { background: #0d0402; }

/* ═══════════════ TOP SECTION ═══════════════ */
.top-section {
  background: var(--bg-3);
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.top-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}

.top-visual {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

.top-dias-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
  position: relative;
}

.top-dias-num {
  font-family: var(--font-title);
  font-size: clamp(8rem, 15vw, 14rem);
  line-height: 0.85;
  color: var(--accent);
  text-shadow: 0 0 100px rgba(255,61,0,0.35);
}

.top-dias-label {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 4vw, 4rem);
  letter-spacing: 8px;
  color: rgba(255,255,255,0.2);
}

.top-stat-row {
  display: flex;
  gap: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  width: 100%;
}

.top-stat { display: flex; flex-direction: column; gap: 2px; }

.tstat-num {
  font-family: var(--font-title);
  font-size: 2.4rem;
  letter-spacing: 1px;
  color: var(--text);
  line-height: 1;
}

.tstat-num sup { font-size: 1.2rem; color: var(--accent); }

.tstat-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.top-text { display: flex; flex-direction: column; gap: 16px; }

.top-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 480px;
}

.top-pillars {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.top-pillars li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.05);
  border-left: 2px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: background var(--tr), border-color var(--tr);
}

.top-pillars li:hover { background: rgba(255,61,0,0.05); border-left-color: var(--accent); }

.top-pillars li > i {
  font-size: 1.3rem;
  color: var(--accent);
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.top-pillars li > div { display: flex; flex-direction: column; gap: 2px; }
.top-pillars li strong { font-size: 0.88rem; font-weight: 700; color: var(--text); }
.top-pillars li small { font-size: 0.75rem; color: var(--text-muted); line-height: 1.4; }

/* ═══════════════ GEAR SECTION ═══════════════ */
.gear-section {
  background: var(--bg);
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.gear-header {
  max-width: 1240px;
  margin: 0 auto 60px;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gear-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 8px;
}

.gear-cats {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}

.gear-cat {
  background: var(--bg-3);
  padding: 36px 28px;
  transition: background var(--tr);
}

.gear-cat:hover { background: #111; }

.gear-cat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,61,0,0.15);
}

.gear-cat-head i { font-size: 1.2rem; color: var(--accent); }

.gear-cat-head h4 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--text);
}

.gear-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  counter-reset: gear-counter;
}

.gear-list li {
  counter-increment: gear-counter;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.gear-list li::before {
  content: counter(gear-counter, decimal-leading-zero);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(255,61,0,0.08);
  border: 1px solid rgba(255,61,0,0.18);
  padding: 1px 5px;
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 2px;
  min-width: 28px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

/* ═══════════════ AGENDA ═══════════════ */
.agenda-section {
  background: var(--bg-2);
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.agenda-header-row {
  max-width: 1240px;
  margin: 0 auto 60px;
  padding: 0 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.agenda-hint {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 7px;
  opacity: 0.6;
}

.agenda-hint i { color: var(--accent); }

.agenda-timeline {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.at-item {
  display: grid;
  grid-template-columns: 80px 48px 1fr;
  align-items: stretch;
  min-height: 80px;
  cursor: default;
  transition: background var(--tr);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.at-item:hover { background: rgba(255,255,255,0.015); }
.at-item.featured { background: rgba(255,61,0,0.03); }
.at-item.featured:hover { background: rgba(255,61,0,0.06); }

.at-month {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 1.3rem;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.15);
  padding: 20px 0;
  border-right: 1px solid rgba(255,255,255,0.04);
}

.at-item.featured .at-month { color: var(--accent); }

.at-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  position: relative;
}

.at-line::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255,255,255,0.06);
}

.at-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid rgba(255,61,0,0.3);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  margin-top: 4px;
}

.at-dot-muted { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.08); }

.at-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 20px 0 20px 24px;
}

.at-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255,61,0,0.08);
  border: 1px solid rgba(255,61,0,0.2);
  border-radius: 2px;
  padding: 2px 8px;
  width: fit-content;
}

.at-tag-fire { background: rgba(255,61,0,0.15); border-color: rgba(255,61,0,0.4); }
.at-tag-muted { color: var(--text-muted); background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.06); }

.at-body strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  transition: color var(--tr);
}

.at-item:hover .at-body strong { color: var(--accent); }
.at-item.at-generic .at-body strong { color: var(--text-muted); }

.at-body span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ═══════════════ GALLERY ═══════════════ */
.gallery-section {
  background: var(--bg);
  padding: 100px 0 60px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.gallery-header {
  max-width: 1240px;
  margin: 0 auto 48px;
  padding: 0 28px;
}

.gallery-strip {
  display: flex;
  gap: 4px;
  width: max-content;
  animation: gallery-auto-scroll 28s linear infinite;
}

.gallery-strip:hover { animation-play-state: paused; }

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

.gallery-item {
  flex: 0 0 420px;
  height: 300px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-3);
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-width: none;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: saturate(0.7) brightness(0.85);
}

.gallery-item:hover img { transform: scale(1.05); filter: saturate(1) brightness(0.9); }

.gallery-item.gi-fallback { background: linear-gradient(135deg, #1a0800, #0a0000); }

.gi-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 16px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  font-family: var(--font-title);
  font-size: 1.1rem;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.6);
}

/* ═══════════════ CTA FINAL ═══════════════ */
.cta-section {
  position: relative;
  padding: 120px 24px;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-width: none;
  display: block;
  filter: brightness(0.2) saturate(0.4);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.85) 100%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.cta-logo {
  width: 110px;
  height: auto;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,0.8));
  margin-bottom: 8px;
}

.cta-h2 {
  font-family: var(--font-title);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.9;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.cta-h2 em { font-style: normal; color: var(--accent); display: block; }

.cta-inner p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* ═══════════════ FLOATING CARD ═══════════════ */
.ev-floating-card {
  position: fixed;
  z-index: 9999;
  width: 280px;
  background: #141414;
  border: 1px solid rgba(255,61,0,0.3);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.8);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.96);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.ev-floating-card.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.efc-type {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255,61,0,0.1);
  border: 1px solid rgba(255,61,0,0.2);
  border-radius: 2px;
  display: inline-block;
  padding: 2px 10px;
  margin-bottom: 10px;
}

.efc-name {
  font-family: var(--font-title);
  font-size: 1.15rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.efc-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.efc-meta span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.efc-meta span i { color: var(--accent); width: 11px; }
.efc-meta span em { font-style: normal; color: var(--text); }

.efc-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ═══════════════ FOOTER ═══════════════ */
footer {
  background: #030303;
  border-top: 1px solid rgba(255,61,0,0.12);
  padding: 72px 28px 0;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }

.footer-logo { height: 180px; width: auto; object-fit: contain; filter: drop-shadow(0 0 4px rgba(255,255,255,0.6)) drop-shadow(0 0 12px rgba(255,255,255,0.3)); }

.footer-brand p {
  font-family: var(--font-title);
  font-size: 1rem;
  letter-spacing: 2px;
  line-height: 1.4;
  color: rgba(255,255,255,0.6);
}

.footer-brand small {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--tr);
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}

.footer-col { display: flex; flex-direction: column; gap: 12px; }

.footer-col h4 {
  font-size: 0.62rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--tr);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col a i { color: var(--accent); font-size: 0.8rem; width: 14px; }
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.15);
  font-size: 0.72rem;
  letter-spacing: 1px;
}

.footer-dev {
  margin-top: 4px;
  color: rgba(255,255,255,0.15) !important;
  font-size: 0.72rem;
  letter-spacing: 1px;
}

.footer-dev a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color var(--tr);
}

.footer-dev a:hover { color: var(--accent); }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1100px) {
  .gear-cats { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .top-inner { grid-template-columns: 1fr; gap: 52px; }
  .top-dias-num { font-size: clamp(6rem, 18vw, 10rem); }
}

@media (max-width: 900px) {
  .ev-panel { grid-template-columns: 1fr; min-height: auto; }
  .ev-panel.ev-alt .ev-panel-img  { order: 0; }
  .ev-panel.ev-alt .ev-panel-content { order: 0; }
  .ev-panel-img { height: 280px; min-height: 280px; }
  .ev-panel.ev-alt .ev-panel-content::before { left: 0; right: auto; }
  .ev-panel.ev-alt .ev-number { left: auto; right: 28px; }
  .ev-panel-content { padding: 40px 36px; }
  .ev-number { top: 24px; right: 28px; font-size: 5rem; }
  .events-header { flex-direction: column; align-items: flex-start; }
  .events-header-note { text-align: left; }
  .agenda-header-row { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  #navbar {
    padding-top: calc(env(safe-area-inset-top) + 16px);
    height: calc(var(--nav-h) + env(safe-area-inset-top) + 16px);
  }

  .hamburger { display: flex; }

  .nav-logo img { height: 52px; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    transform: translateY(-110%);
    /* reset desktop centering */
    background: rgba(0,0,0,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 0 28px 28px;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: transform var(--tr);
    overflow-y: auto;
    max-height: calc(100vh - var(--nav-h));
  }

  .nav-links.open { transform: translateY(0); }

  .nav-links a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.88rem;
    display: block;
    color: var(--text);
  }

  .nav-links a:last-child { border-bottom: none; }
  .nav-links a::after { display: none; }

  .hero-bar { display: none; }
  .hbar-divider { display: none; }

  .gear-cats { grid-template-columns: 1fr; }

  .gallery-item { flex: 0 0 280px; height: 200px; }

  .at-item { grid-template-columns: 60px 40px 1fr; }
  .at-month { font-size: 1rem; }

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

  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn-hero,
  .cta-buttons .btn-ig { width: 100%; max-width: 280px; justify-content: center; }

  .ev-floating-card { display: none; }
}

@media (max-width: 500px) {
  .ev-panel-content { padding: 28px 24px; }
  .ev-panel-img { height: 220px; }
  .hero-shield { width: min(160px, 50vw); }
}

/* ─────────────────────────────────────────────────────────
   AGENDA EXPAND (MOBILE ACCORDION)
───────────────────────────────────────────────────────── */
.at-expand {
  grid-column: 1 / -1;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.at-expand-inner {
  padding: 12px 20px 4px 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.at-expand-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}

.at-expand-meta span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
}

.at-expand-meta i { color: var(--accent); width: 11px; flex-shrink: 0; }

.at-expand-desc {
  font-size: 0.77rem;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (min-width: 769px) {
  .at-expand  { display: none; }
  .at-chevron { display: none; }
}

/* ─────────────────────────────────────────────────────────
   MELHORIAS MOBILE
───────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Hero: vídeo sem rotação no celular — portrait cobre naturalmente */
  .hero-bg-video {
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    transform: translate(-50%, -50%);
  }

  /* Hero: reduz espaço inferior (sem hero-bar no mobile) */
  .hero-center { bottom: 56px; gap: 16px; }
  .hero-logo-corner img { width: 72px; }
  .hero-tagline { font-size: 0.7rem; letter-spacing: 3px; }
  .hero-center .btn-hero {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    font-size: 1.1rem;
    padding: 15px 24px;
  }

  /* Eventos: botão full-width para facilitar toque */
  .btn-ev { width: 100%; justify-content: center; }

  /* Ghost number nos eventos: menor no mobile */
  .ev-number { font-size: 3.5rem; right: 16px; }

  /* Galeria: cards maiores para melhor swipe */
  .gallery-item { flex: 0 0 74vw; height: 210px; }

  /* Agenda: troca hint de mouse por hint de toque (via JS) */
  .agenda-hint { display: none; }
  .agenda-hint-mobile {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.72rem;
    color: var(--text-muted);
    opacity: 0.6;
  }
  .agenda-hint-mobile i { color: var(--accent); }

  /* Agenda: items expansíveis ao toque */
  .at-item { cursor: pointer; -webkit-tap-highlight-color: rgba(255,61,0,0.08); }
  .at-item.expanded .at-expand { max-height: 280px; }
  .at-body { position: relative; padding-right: 32px; }
  .at-chevron {
    position: absolute;
    right: 0;
    top: 22px;
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
  }
  .at-item.expanded .at-chevron { transform: rotate(180deg); }
}

@media (max-width: 500px) {
  .hero-center { bottom: 44px; }
  .hero-logo-corner { top: calc(var(--nav-h) + 12px); right: 16px; }
  .hero-logo-corner img { width: 58px; }
  .ev-panel-img { height: 200px; min-height: 200px; }
  .ev-panel-content { padding: 24px 18px; gap: 10px; }
  .ev-name { font-size: clamp(1.5rem, 5vw, 1.8rem); }
  footer { padding-left: 20px; padding-right: 20px; }
}
