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

:root {
  --gold:       #c9a84c;
  --gold-dark:  #a8872e;
  --gold-light: #e8c56a;
  --dark:       #0f111a;
  --dark2:      #181b27;
  --dark3:      #222538;
  --white:      #ffffff;
  --off:        #fafaf8;
  --light:      #f4f3ef;
  --text:       #1a1a1a;
  --mid:        #4a4a5a;
  --muted:      #888899;
  --border:     #e5e2da;
  --green:      #18a860;
  --radius:     14px;
  --radius-lg:  22px;
  --shadow:     0 4px 24px rgba(0,0,0,0.09);
  --shadow-md:  0 8px 40px rgba(0,0,0,0.13);
  --t:          0.28s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--text); background: #fff; overflow-x: hidden; line-height: 1.65; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
h1,h2,h3,h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; }
em  { font-style: italic; color: var(--gold); }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* =============================================
   SECTIONS
============================================= */
.section-white { background: #fff;         padding: 96px 0; }
.section-light { background: var(--light); padding: 96px 0; }
.section-dark  { background: var(--dark2); padding: 96px 0; }

.section-head { text-align: center; margin-bottom: 60px; }
.section-head p { color: var(--mid); margin-top: 12px; font-size: 1.05rem; }
.section-head.light h2 { color: #fff; }
.section-head.light p  { color: rgba(255,255,255,.6); }

/* =============================================
   TAGS / LABELS
============================================= */
.tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.25);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

/* =============================================
   BUTTONS
============================================= */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  padding: 13px 30px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--t);
  letter-spacing: .01em;
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(201,168,76,.35); }
.btn-gold.btn-full { width: 100%; text-align: center; border-radius: var(--radius); font-size: 1rem; padding: 15px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: .9rem;
  padding: 12px 26px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: var(--t);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  font-weight: 700;
  font-size: .92rem;
  padding: 13px 26px;
  border-radius: 100px;
  transition: var(--t);
}
.btn-ig:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(131,58,180,.35); }

/* =============================================
   HEADER
============================================= */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--t);
}
#header.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border), var(--shadow);
}
.header-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.header-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.header-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  padding: 2px;
  box-shadow: 0 0 0 1.5px var(--border);
}
.header-name { display: flex; flex-direction: column; line-height: 1.15; }
.hn-top { font-size: .82rem; font-weight: 600; color: var(--mid); }
.hn-bot { font-size: .95rem; font-weight: 800; color: var(--text); font-family: 'Playfair Display', serif; }

#mainNav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
#mainNav a {
  font-size: .86rem;
  font-weight: 500;
  color: var(--mid);
  padding: 7px 13px;
  border-radius: 8px;
  white-space: nowrap;
  transition: var(--t);
}
#mainNav a:hover { color: var(--text); background: var(--light); }

.nav-ig-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045) !important;
  color: #fff !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
  border-radius: 100px !important;
  margin-left: 6px;
}
.nav-ig-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(131,58,180,.3); background: var(--light) !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--t); }
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
============================================= */
.hero {
  min-height: 100vh;
  background: var(--dark2);
  background-image:
    repeating-conic-gradient(rgba(255,255,255,.018) 0% 25%, transparent 0% 50%);
  background-size: 56px 56px;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 70px;
}
.hero-wrap {
  flex: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 28px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* EMBLEM */
.hero-emblem {
  width: 210px;
  height: 210px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: #fff;
  padding: 18px;
  box-shadow:
    0 0 0 5px rgba(201,168,76,.35),
    0 0 0 10px rgba(201,168,76,.12),
    0 20px 60px rgba(0,0,0,.45);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-emblem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.hero-city {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero h1 { color: #fff; }
.hero h1 em { display: block; font-size: .9em; }
.hero-sub { color: rgba(255,255,255,.65); font-size: 1.05rem; margin: 20px 0 32px; max-width: 460px; }

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

.hero-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.pill {
  font-size: .75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.8);
}
.pill-green { background: rgba(24,168,96,.15); border-color: rgba(24,168,96,.3); color: #4dda96; }

/* EVENT CARD */
.event-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
  position: relative;
}
.ec-badge {
  position: absolute;
  top: 14px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 100px;
  z-index: 2;
}
.ec-badge:first-child { left: 14px; }
.ec-badge:nth-child(2) { left: calc(14px + 110px); }
.ec-badge.green  { background: rgba(24,168,96,.15); color: var(--green); border: 1px solid rgba(24,168,96,.3); }
.ec-badge.amber  { background: rgba(201,168,76,.12); color: var(--gold-dark); border: 1px solid rgba(201,168,76,.3); }
.ec-img { width: 100%; height: 260px; object-fit: cover; }
.ec-info { padding: 24px 26px 28px; }
.ec-label { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.ec-year { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 900; color: var(--text); line-height: 1; margin-bottom: 14px; }
.ec-row {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .88rem;
  color: var(--mid);
  margin-bottom: 8px;
}
.ec-row svg { flex-shrink: 0; opacity: .6; }
.ec-row.hotel { font-weight: 600; color: var(--text); }
.ec-prize {
  margin-top: 16px;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.22);
  border-radius: 10px;
  padding: 11px 16px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.hero-wave { line-height: 0; margin-top: auto; }
.hero-wave svg { width: 100%; display: block; }

/* =============================================
   SOBRE — TWO COL
============================================= */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.two-col.reverse .col-img { order: 2; }
.two-col.reverse .col-text { order: 1; }

.rounded-photo {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.col-text .tag { margin-bottom: 14px; }
.col-text h2 { margin-bottom: 18px; }
.col-text p { color: var(--mid); margin-bottom: 14px; line-height: 1.8; }
.col-text p strong { color: var(--text); }

.info-cards { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.ic {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--t);
}
.ic:hover { border-color: rgba(201,168,76,.35); box-shadow: var(--shadow); }
.ic > span { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.ic strong { display: block; font-size: .92rem; color: var(--text); margin-bottom: 2px; }
.ic span:last-child { font-size: .82rem; color: var(--muted); }

/* =============================================
   EVENTO — HOTEL BANNER
============================================= */
.hotel-banner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #fff;
  border: 1px solid var(--border);
  margin-bottom: 48px;
}
.hotel-banner-img { position: relative; min-height: 500px; }
.hotel-banner-img img { width: 100%; height: 100%; object-fit: cover; }

.hotel-banner-info {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}
.hb-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.badge-green {
  font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(24,168,96,.1); color: var(--green); border: 1px solid rgba(24,168,96,.25);
  padding: 5px 14px; border-radius: 100px;
}
.badge-amber {
  font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(201,168,76,.1); color: var(--gold-dark); border: 1px solid rgba(201,168,76,.3);
  padding: 5px 14px; border-radius: 100px;
}
.hotel-banner-info h3 { line-height: 1.25; }
.hotel-banner-info > p { color: var(--mid); line-height: 1.75; font-size: .95rem; }

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.detail { display: flex; flex-direction: column; gap: 2px; }
.detail.full { grid-column: span 2; }
.dl { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.dv { font-size: .9rem; font-weight: 600; color: var(--text); }
.gold-text { color: var(--gold-dark) !important; }

.feat-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.feat-list li { font-size: .9rem; color: var(--mid); display: flex; align-items: center; gap: 8px; }

.hb-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* CHEQUE BLOCK */
.cheque-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  box-shadow: var(--shadow);
}
.cb-text .tag { margin-bottom: 12px; }
.cb-text h3 { margin-bottom: 14px; }
.cb-text p { color: var(--mid); line-height: 1.8; font-size: .95rem; }
.cb-text p strong { color: var(--text); }
.cb-img img { border-radius: var(--radius); box-shadow: var(--shadow-md); transition: var(--t); }
.cb-img img:hover { transform: scale(1.02); }

/* =============================================
   PREMIAÇÃO (DARK)
============================================= */
.podium {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 20px;
  align-items: end;
  margin-bottom: 32px;
}
.podium-card {
  border-radius: var(--radius-lg);
  padding: 36px 28px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.04);
  transition: var(--t);
}
.podium-card:hover { transform: translateY(-4px); }
.podium-card.gold-card {
  background: linear-gradient(160deg, rgba(201,168,76,.18), rgba(201,168,76,.06));
  border-color: rgba(201,168,76,.35);
  padding-top: 44px;
  padding-bottom: 48px;
}
.pm-crown { font-size: 1.8rem; }
.pm-medal { font-size: 2.2rem; }
.pm-pos { font-size: .7rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.pm-val { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; color: var(--gold); }
.pm-val.big { font-size: 2.9rem; }
.pm-title { font-size: .82rem; color: rgba(255,255,255,.55); }

.extras-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 16px;
}
.extra-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-align: center;
  transition: var(--t);
}
.extra-card:hover { border-color: rgba(201,168,76,.3); }
.extra-card.highlight-card { background: rgba(201,168,76,.1); border-color: rgba(201,168,76,.3); }
.extra-card > span:first-child { font-size: 1.5rem; }
.extra-card strong { color: #fff; font-size: .88rem; }
.et { font-size: .78rem; color: rgba(255,255,255,.45); }

/* =============================================
   PATROCINADORES
============================================= */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}
.sponsor {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3/2;
  overflow: hidden;
  cursor: zoom-in;
  transition: var(--t);
  text-decoration: none;
}
.sponsor:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.sponsor img { width: 100%; height: 100%; object-fit: contain; }
.sponsor-link { cursor: pointer; }
.sponsor-link::after {
  content: '↗';
  position: absolute;
  top: 8px; right: 10px;
  font-size: .75rem;
  color: var(--muted);
  opacity: 0;
  transition: var(--t);
}
.sponsors-grid { position: relative; }
.sponsor.sponsor-link { position: relative; }
.sponsor-link:hover::after { opacity: 1; }

.sponsor-cta { text-align: center; }
.sponsor-cta p { color: var(--mid); margin-bottom: 18px; }

/* =============================================
   GALERIA
============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gal {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--border);
}
.gal img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.gal:hover img { transform: scale(1.05); }
.gal-zoom {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--t);
}
.gal:hover .gal-zoom { opacity: 1; }

/* =============================================
   INSTAGRAM SECTION
============================================= */
.section-ig {
  background: linear-gradient(135deg, #1a0a2e 0%, #0d0d14 45%, #1a0a2e 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.section-ig::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 70% at 75% 50%, rgba(131,58,180,.12) 0%, transparent 60%);
  pointer-events: none;
}
.ig-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ig-left { display: flex; flex-direction: column; gap: 18px; }

/* big ring logo inside Instagram section */
.ig-logo-ring {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  padding: 10px;
  box-shadow: 0 0 0 3px rgba(201,168,76,.4), 0 0 0 7px rgba(201,168,76,.1);
}
.ig-logo-ring img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }

.ig-left h2 { line-height: 1.2; }
.ig-left p { color: rgba(255,255,255,.6); font-size: .95rem; line-height: 1.75; }

.btn-ig-big {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 34px;
  border-radius: 100px;
  transition: var(--t);
  align-self: flex-start;
}
.btn-ig-big:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(131,58,180,.4); }

.ig-right { display: flex; flex-direction: column; gap: 12px; }
.ig-grid-label { font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); }

.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  border-radius: var(--radius);
  overflow: hidden;
}
.ig-cell { position: relative; aspect-ratio: 1; overflow: hidden; display: block; }
.ig-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.ig-cell:hover img { transform: scale(1.07); }
.ig-see-more { position: relative; }
.ig-see-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.ig-see-overlay span { color: #fff; font-size: .75rem; font-weight: 700; }

/* =============================================
   MAPA + CONTATO
============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.map-wrap { margin-bottom: 20px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }

.map-details { display: flex; flex-direction: column; gap: 14px; }
.md-row { display: flex; gap: 12px; align-items: flex-start; }
.md-row > span { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.md-row strong { display: block; font-size: .9rem; color: var(--text); margin-bottom: 2px; }
.md-row span:last-child { font-size: .82rem; color: var(--muted); }

.btn-map {
  display: inline-block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--gold-dark);
  border: 1.5px solid rgba(201,168,76,.35);
  padding: 11px 22px;
  border-radius: 100px;
  transition: var(--t);
  margin-top: 6px;
  align-self: flex-start;
}
.btn-map:hover { background: rgba(201,168,76,.08); border-color: var(--gold); }

/* FORM */
.cform {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.cform h3 { font-size: 1.5rem; margin-bottom: 6px; }
.form-hint { color: var(--muted); font-size: .88rem; margin-bottom: 24px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.fg:last-of-type { margin-bottom: 20px; }
.fg label { font-size: .82rem; font-weight: 700; color: var(--mid); letter-spacing: .02em; }
.fg input, .fg select, .fg textarea {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 15px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--text);
  outline: none;
  transition: var(--t);
  resize: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--muted); }
.form-ok {
  background: rgba(24,168,96,.08);
  border: 1px solid rgba(24,168,96,.25);
  border-radius: var(--radius);
  padding: 13px 18px;
  font-size: .88rem;
  color: var(--green);
  text-align: center;
  margin-top: 14px;
}

/* =============================================
   FOOTER
============================================= */
.footer {
  background: var(--dark);
  padding: 52px 0 28px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand img {
  width: 50px; height: 50px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  padding: 4px;
}
.footer-brand strong { display: block; color: #fff; font-size: .95rem; margin-bottom: 2px; }
.footer-brand span { font-size: .78rem; color: rgba(255,255,255,.4); }
.footer-links { display: flex; gap: 6px; flex-wrap: wrap; }
.footer-links a {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  padding: 6px 12px;
  border-radius: 8px;
  transition: var(--t);
}
.footer-links a:hover { color: #fff; background: rgba(255,255,255,.07); }
.footer-ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.1);
  padding: 9px 18px;
  border-radius: 100px;
  transition: var(--t);
}
.footer-ig:hover { color: #fff; border-color: rgba(131,58,180,.5); background: rgba(131,58,180,.12); }
.footer-copy { text-align: center; font-size: .78rem; color: rgba(255,255,255,.25); }

/* =============================================
   LIGHTBOX
============================================= */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.93);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lb-close {
  position: fixed;
  top: 20px; right: 24px;
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  font-size: 1.1rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--t);
  display: flex; align-items: center; justify-content: center;
}
.lb-close:hover { background: rgba(255,255,255,.22); }
.lb-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 90vw;
  max-height: 90vh;
}
#lbImg {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
}
.lb-cap { color: rgba(255,255,255,.6); font-size: .88rem; text-align: center; }

/* =============================================
   SCROLL REVEAL
============================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in   { opacity: 1; transform: none; }

/* stagger children */
.podium .podium-card:nth-child(2) { transition-delay: .1s; }
.podium .podium-card:nth-child(3) { transition-delay: .18s; }
.extras-grid .extra-card:nth-child(2) { transition-delay: .08s; }
.extras-grid .extra-card:nth-child(3) { transition-delay: .16s; }
.extras-grid .extra-card:nth-child(4) { transition-delay: .24s; }
.sponsors-grid .sponsor:nth-child(2) { transition-delay: .08s; }
.sponsors-grid .sponsor:nth-child(3) { transition-delay: .16s; }
.sponsors-grid .sponsor:nth-child(4) { transition-delay: .24s; }
.gallery-grid .gal:nth-child(2) { transition-delay: .07s; }
.gallery-grid .gal:nth-child(3) { transition-delay: .14s; }
.gallery-grid .gal:nth-child(4) { transition-delay: .1s; }
.gallery-grid .gal:nth-child(5) { transition-delay: .18s; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .hero-wrap          { grid-template-columns: 1fr; gap: 48px; padding: 60px 28px; text-align: center; }
  .hero-emblem        { margin: 0 auto 24px; }
  .hero-sub           { margin-left: auto; margin-right: auto; }
  .hero-btns          { justify-content: center; }
  .hero-pills         { justify-content: center; }

  .two-col, .two-col.reverse { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse .col-img, .two-col.reverse .col-text { order: unset; }
  .rounded-photo      { height: 280px; }

  .hotel-banner       { grid-template-columns: 1fr; }
  .hotel-banner-img   { min-height: 280px; }
  .hotel-banner-info  { padding: 32px 30px; }

  .cheque-block       { grid-template-columns: 1fr; gap: 36px; padding: 36px 30px; }

  .podium             { grid-template-columns: 1fr; gap: 14px; align-items: stretch; }
  .podium-card.gold-card { order: -1; }
  .extras-grid        { grid-template-columns: repeat(2, 1fr); }

  .sponsors-grid      { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid       { grid-template-columns: repeat(2, 1fr); }

  .ig-wrap            { grid-template-columns: 1fr; gap: 40px; }
  .btn-ig-big         { align-self: auto; }

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

  .footer-main        { flex-direction: column; text-align: center; }
  .footer-links       { justify-content: center; }
}

@media (max-width: 768px) {
  section, .section-white, .section-light, .section-dark, .section-ig { padding: 70px 0; }

  .burger             { display: flex; }
  #mainNav {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 4px;
  }
  #mainNav.open       { display: flex; }
  #mainNav a          { padding: 12px 14px; border-radius: 8px; }
  .nav-ig-btn         { margin-left: 0; width: 100%; justify-content: center; border-radius: 10px !important; }

  .hero-emblem        { width: 160px; height: 160px; }
  .hero h1            { font-size: 2.2rem; }
  .hero-btns          { flex-direction: column; align-items: center; }
  .ec-img             { height: 200px; }

  .gallery-grid       { grid-template-columns: 1fr 1fr; }
  .extras-grid        { grid-template-columns: 1fr 1fr; }
  .frow               { grid-template-columns: 1fr; }
  .cform              { padding: 28px 22px; }
  .details-grid       { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .wrap               { padding: 0 16px; }
  .gallery-grid       { grid-template-columns: 1fr; }
  .ig-grid            { grid-template-columns: repeat(3, 1fr); }
  .sponsors-grid      { grid-template-columns: 1fr 1fr; }
  .hero-emblem        { width: 140px; height: 140px; }
}
