/* ============================================================
   Grand Raid do Espinhaço 2026 — style
   ============================================================ */

:root {
  --bg: #0b0e14;
  --bg-alt: #0f1420;
  --surface: #141b29;
  --surface-2: #1a2233;
  --line: #242e42;
  --text: #f2f5f9;
  --muted: #97a2b4;
  --accent: #ff7a1a;
  --accent-2: #ffb45e;
  --green: #22c55e;
  --whats: #1fbe62;
  --radius: 14px;
  --font-head: "Archivo", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

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

.container { width: min(1160px, 92%); margin-inline: auto; }

/* ---------- Tipografia ---------- */
h1, h2, h3 { font-family: var(--font-head); font-weight: 800; line-height: 1.08; }

.section { padding: clamp(72px, 9vw, 110px) 0; }

.section--alt { background: var(--bg-alt); }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }

.section-kicker {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--accent-2);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.section-title span { color: var(--accent); }

.section-desc {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 640px;
}

.lead { font-size: 1.12rem; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 13px 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: #14100a;
  box-shadow: 0 12px 30px rgba(255, 122, 26, 0.28);
}
.btn--primary:hover { box-shadow: 0 16px 38px rgba(255, 122, 26, 0.4); }

.btn--ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-2); }

.btn--whats { background: var(--whats); color: #fff; }
.btn--whats:hover { box-shadow: 0 12px 30px rgba(31, 190, 98, 0.35); }

.btn--sm { padding: 9px 16px; font-size: 0.8rem; }
.btn--lg { padding: 16px 30px; font-size: 1rem; }
.btn--block { width: 100%; }

.link { color: var(--accent-2); font-weight: 600; display: inline-block; }
.link:hover { text-decoration: underline; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
  padding: 14px 0;
}
.header.scrolled {
  background: rgba(11, 14, 20, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  padding: 8px 0;
}

.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__logo { width: 44px; height: 44px; object-fit: contain; }
.brand__name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  line-height: 1.15;
}

.nav { display: flex; align-items: center; gap: 16px; position: relative; }

.nav::before {
  content: "";
  flex: 0 0 auto;
  width: 1px;
  height: 26px;
  margin-right: 6px;
  background: var(--line);
}
.nav__link {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.18s ease;
  white-space: nowrap;
}
.nav__link:hover { color: var(--accent-2); }
.nav__cta { margin-left: 4px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px; height: 3px;
  background: var(--text);
  border-radius: 3px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 140px 0 120px;
  background:
    radial-gradient(1200px 600px at 75% -10%, rgba(255, 122, 26, 0.16), transparent 60%),
    radial-gradient(900px 500px at 0% 110%, rgba(255, 122, 26, 0.08), transparent 60%),
    var(--bg);
  overflow: hidden;
}

.hero__mountains {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  height: clamp(160px, 30vh, 340px);
}

.hero__content { position: relative; z-index: 2; max-width: 760px; }
.hero__content .btn { position: relative; z-index: 1; }

.hero__badge {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  border: 1px solid rgba(255, 180, 94, 0.4);
  background: rgba(255, 122, 26, 0.08);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(2.4rem, 6.4vw, 4.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 26px;
}

.hero__details { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }

.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  padding: 9px 16px;
  border-radius: 999px;
}
.hero__chip strong { color: var(--text); }

.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: 26px; height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
  z-index: 3;
}
.hero__scroll span {
  width: 4px; height: 8px;
  background: var(--accent);
  border-radius: 4px;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
}

/* ---------- Stats ---------- */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-alt); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  text-align: center;
  padding: 34px 16px;
  border-left: 1px solid var(--line);
}
.stat:first-child { border-left: 0; }
.stat strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: var(--accent);
  line-height: 1;
}
.stat span { color: var(--muted); font-size: 0.88rem; margin-top: 6px; display: block; }

/* ---------- Sobre ---------- */
.sobre { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 6vw, 72px); align-items: center; }

.sobre__media { position: relative; }

.sobre__card {
  position: relative;
  background:
    radial-gradient(500px 300px at 30% 10%, rgba(255, 122, 26, 0.16), transparent 70%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow);
}
.sobre__card::before {
  content: "07|09|2026";
  position: absolute;
  top: 22px; right: 26px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.sobre__tag {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  border: 1px solid rgba(255, 180, 94, 0.35);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 26px;
}

.sobre__card strong {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.sobre__list { list-style: none; margin-top: 28px; border-top: 1px solid var(--line); padding-top: 24px; }
.sobre__list li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  color: var(--muted);
  font-size: 0.95rem;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
}
.sobre__list li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px; height: 8px;
  margin-top: 7px;
  background: var(--accent);
  border-radius: 50%;
}

.sobre__text p:not(.lead) { color: var(--muted); margin-top: 14px; }
.sobre__text .lead { margin-top: 20px; }
.sobre__text .lead strong { color: var(--accent-2); }

.sobre__foot { display: flex; align-items: center; gap: 20px; margin-top: 32px; flex-wrap: wrap; }

.sobre__social { display: flex; gap: 10px; }
.social {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted);
  transition: all 0.18s ease;
}
.social:hover { border-color: var(--accent); color: var(--accent-2); transform: translateY(-2px); }

/* ---------- Programação ---------- */
.days { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.day {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 32px);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.day:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 122, 26, 0.6);
  box-shadow: var(--shadow);
}

.day--highlight { background: linear-gradient(180deg, rgba(255, 122, 26, 0.12), var(--surface) 40%); border-color: rgba(255, 122, 26, 0.5); }

.day__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.day__week {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
  color: var(--accent-2);
}
.day__date { font-family: var(--font-head); font-weight: 900; font-size: 1.9rem; color: var(--text); line-height: 1; }

.day__list { list-style: none; }
.day__list li { padding: 12px 0; border-bottom: 1px dashed var(--line); }
.day__list li:last-child { border-bottom: 0; padding-bottom: 0; }
.day__label { display: block; font-weight: 700; font-size: 1rem; }
.day__sub { display: block; color: var(--muted); font-size: 0.86rem; margin-top: 3px; }

/* ---------- Percursos ---------- */
.stages { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

.stage {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 40px);
  overflow: hidden;
}
.stage::after {
  content: "KM";
  position: absolute;
  right: -12px; top: -34px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(4rem, 9vw, 7rem);
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  letter-spacing: 0.05em;
}

.stage--accent {
  border-color: rgba(255, 122, 26, 0.45);
  background:
    radial-gradient(500px 300px at 100% 0%, rgba(255, 122, 26, 0.12), transparent 70%),
    var(--surface);
}

.stage__num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.stage__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-transform: uppercase;
  margin: 16px 0 14px;
  line-height: 1.05;
}
.stage__title strong { font-size: 1.5em; color: var(--accent); }

.stage__dist {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--muted);
  font-size: 1.05rem;
}
.stage__dist strong { color: var(--text); font-size: 1.5em; }

.stage__list { list-style: none; margin-top: 20px; }
.stage__list li {
  padding: 9px 0;
  color: var(--muted);
  font-size: 0.95rem;
  display: flex;
  gap: 10px;
  align-items: baseline;
  border-bottom: 1px dashed var(--line);
}
.stage__list li::before {
  content: "";
  flex: 0 0 auto;
  width: 7px; height: 7px;
  background: var(--accent-2);
  border-radius: 50%;
}

.apoio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}
.apoio__item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.apoio__icon {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: rgba(255, 122, 26, 0.12);
  border-radius: 12px;
}
.apoio__item strong { display: block; font-size: 0.95rem; }
.apoio__item small { color: var(--muted); font-size: 0.82rem; }

/* ---------- Inscrições ---------- */
.insc { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 26px; align-items: start; }

.price {
  position: sticky;
  top: 96px;
  background:
    radial-gradient(400px 260px at 20% 0%, rgba(255, 122, 26, 0.14), transparent 70%),
    var(--surface);
  border: 1px solid rgba(255, 122, 26, 0.45);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 38px);
  box-shadow: var(--shadow);
}
.price__label {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--accent-2);
}
.price__value {
  display: block;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 4rem);
  color: var(--accent);
  line-height: 1.1;
  margin: 10px 0 14px;
}
.price__note { color: var(--muted); font-size: 0.95rem; margin-bottom: 24px; }
.price .btn { margin-bottom: 12px; }

.insc__info { display: flex; flex-direction: column; gap: 18px; }

.notice {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.notice > strong { font-family: var(--font-head); font-size: 1.05rem; display: block; margin-bottom: 8px; }
.notice p { color: var(--muted); font-size: 0.95rem; }
.notice .link { margin-top: 14px; }

.shirts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
.shirt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
}
.shirt span { color: var(--muted); }
.shirt strong { color: var(--accent-2); }

/* ---------- Localização ---------- */
.loc { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }

.loc__text h3 { font-size: 1.5rem; text-transform: uppercase; margin-bottom: 12px; }
.loc__text p { color: var(--muted); }
.loc__text p strong { color: var(--accent-2); }
.loc__text .btn { margin-top: 22px; }

.loc__list { list-style: none; margin-top: 20px; }
.loc__list li {
  padding: 8px 0;
  color: var(--muted);
  display: flex;
  gap: 10px;
  align-items: baseline;
  border-bottom: 1px dashed var(--line);
}
.loc__list li::before {
  content: "";
  flex: 0 0 auto;
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
}

.loc__map iframe {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: var(--radius);
  filter: grayscale(0.3) contrast(1.05);
  box-shadow: var(--shadow);
}

/* ---------- Regulamento / Docs ---------- */
.docs { display: flex; flex-direction: column; gap: 16px; max-width: 760px; }

.doc {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.doc:hover { transform: translateX(6px); border-color: rgba(255, 122, 26, 0.6); }

.doc__icon {
  flex: 0 0 auto;
  width: 50px; height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: rgba(255, 122, 26, 0.12);
  border-radius: 12px;
}
.doc > div { flex: 1; }
.doc strong { display: block; font-family: var(--font-head); font-size: 1.05rem; }
.doc small { color: var(--muted); font-size: 0.86rem; }
.doc__go { font-family: var(--font-head); font-weight: 700; color: var(--accent-2); white-space: nowrap; }

/* ---------- Parceiros ---------- */
.partner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(30px, 6vw, 70px);
  align-items: center;
}
.partner__text p { color: var(--muted); margin: 18px 0 26px; max-width: 480px; }

.partner__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner__logo img {
  width: clamp(180px, 25vw, 260px);
  opacity: 0.9;
  filter: drop-shadow(0 20px 40px rgba(255, 122, 26, 0.15));
}

/* ---------- CTA Final ---------- */
.cta-gre { position: relative; overflow: hidden; text-align: center; }
.cta-gre__bg { position: absolute; inset: auto 0 0 0; width: 100%; height: clamp(140px, 26vh, 280px); }
.cta-gre__content { position: relative; z-index: 2; }
.cta-gre__content h2 {
  font-size: clamp(1.9rem, 4.6vw, 3.2rem);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.cta-gre__content p { color: var(--muted); font-size: 1.1rem; margin-bottom: 30px; }

.cta-gre__social { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }
.cta-gre__social a {
  display: inline-block;
  font-size: 0.86rem;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  transition: all 0.18s ease;
}
.cta-gre__social a:hover { border-color: var(--accent); color: var(--accent-2); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); background: #07090d; padding: 34px 0; }
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__copy { color: var(--muted); font-size: 0.85rem; }
.footer__links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer__links a { color: var(--muted); font-size: 0.85rem; }
.footer__links a:hover { color: var(--accent-2); }
.footer .brand__logo { width: 34px; height: 34px; }
.footer .brand__name { font-size: 0.7rem; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   Responsivo
   ============================================================ */
@media (max-width: 1280px) {
  .header__inner { gap: 12px; }
  .brand { margin-right: 2px; }
  .brand__name { display: none; }
}

@media (max-width: 960px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .stat { border-top: 1px solid var(--line); }
  .stat:nth-child(1), .stat:nth-child(2) { border-top: 0; }

  .insc { grid-template-columns: 1fr; }
  .price { position: static; }

  .loc { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .nav {
    position: fixed;
    inset: 0;
    background: rgba(7, 9, 13, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 90;
  }
  .nav::before { display: none; }
  .nav.open { transform: translateX(0); }
  .nav__link { font-size: 1.35rem; color: var(--text); }
  .nav__cta { margin: 10px 0 0; }
  .nav-toggle { display: flex; z-index: 100; }

  .header.scrolled .nav-toggle span { background: var(--text); }

  .sobre { grid-template-columns: 1fr; }
  .days { grid-template-columns: 1fr; }
  .stages { grid-template-columns: 1fr; }
  .apoio { grid-template-columns: 1fr; }
  .partner { grid-template-columns: 1fr; }
  .partner__logo { order: -1; }
  .shirts { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .hero { padding-top: 120px; }
  .stage::after { font-size: 5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll span { animation: none; }
}

/* ============================================================
   Multi-page extras
   ============================================================ */

/* --- Dropdown Fotos (desktop) --- */
.nav__group { position: relative; }

.nav__drop-toggle { display: inline-flex; align-items: center; gap: 5px; }
.nav__drop-toggle .chev { transition: transform 0.2s ease; font-size: 0.7em; }
.nav__group.open .nav__drop-toggle .chev { transform: rotate(180deg); }

.nav__drop {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  min-width: 190px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  box-shadow: var(--shadow);
  z-index: 60;
}
.nav__group.open .nav__drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__drop .nav__link {
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 0.86rem;
}
.nav__drop .nav__link:hover, .nav__drop .nav__link.active { background: rgba(255, 122, 26, 0.12); color: var(--accent-2); }

.nav__link.active { color: var(--accent-2); }

/* --- Página "hero" interna --- */
.page-hero {
  position: relative;
  padding: 150px 0 64px;
  background:
    radial-gradient(1000px 500px at 80% -10%, rgba(255, 122, 26, 0.14), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero__mountains {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%;
  height: clamp(120px, 24vh, 240px);
}
.page-hero__content { position: relative; z-index: 2; }
.page-hero__title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-top: 8px;
}
.page-hero__sub { color: var(--muted); margin-top: 12px; max-width: 620px; font-size: 1.02rem; }

/* --- Galeria --- */
.gallery { margin-bottom: 34px; }
.gallery:last-child { margin-bottom: 0; }
.album-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-left: 14px;
  border-left: 4px solid var(--accent);
}
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery__item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: zoom-in;
  background: var(--surface);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.gallery__item:hover { transform: translateY(-4px); border-color: rgba(255, 122, 26, 0.55); }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item::after {
  content: "+";
  position: absolute;
  inset: auto 12px 10px auto;
  width: 30px; height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(11, 14, 20, 0.7);
  color: var(--accent-2);
  font-weight: 800;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.gallery__item:hover::after { opacity: 1; }

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 10, 0.94);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(94vw, 1200px);
  max-height: 86vh;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.lightbox__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.18s ease;
}
.lightbox__btn:hover { border-color: var(--accent); color: var(--accent-2); }
.lightbox__prev { left: 18px; }
.lightbox__next { right: 18px; }
.lightbox__close {
  position: absolute;
  top: 18px; right: 18px;
  inset: auto 18px 0 auto;
}
.lightbox__count {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 0.9rem;
  font-family: var(--font-head);
  letter-spacing: 0.1em;
}

/* --- Parceiros --- */
.partners { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.partner-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.partner-card:hover { transform: translateY(-5px); border-color: rgba(255, 122, 26, 0.55); }
.partner-card img { max-height: 74px; max-width: 100%; object-fit: contain; filter: grayscale(0.35); }
.partner-card:hover img { filter: none; }
.partner-card span { margin-top: 10px; color: var(--muted); font-size: 0.82rem; }
.partner-tier {
  position: absolute;
  top: -11px; left: 14px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}
.partner-tier.t-ouro { background: #f2b705; color: #2a2200; }
.partner-tier.t-bronze { background: #b5703a; color: #fff; }

/* --- Evento (card) --- */
.event-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(20px, 4vw, 36px);
  align-items: center;
  background:
    radial-gradient(500px 300px at 90% 0%, rgba(255, 122, 26, 0.12), transparent 70%),
    var(--surface);
  border: 1px solid rgba(255, 122, 26, 0.4);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 42px);
  box-shadow: var(--shadow);
}
.event-card__img { width: clamp(90px, 10vw, 130px); }
.event-card__tag {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--accent-2);
  border: 1px solid rgba(255, 180, 94, 0.4);
  background: rgba(255, 122, 26, 0.08);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.event-card h3 { font-size: clamp(1.4rem, 3vw, 2rem); text-transform: uppercase; margin-bottom: 10px; }
.event-card .event-card__meta { color: var(--muted); font-size: 0.95rem; display: flex; flex-direction: column; gap: 4px; }
.event-card__meta strong { color: var(--text); }
.share { margin-top: 26px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.share a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 16px;
  transition: all 0.18s ease;
}
.share a:hover { border-color: var(--accent); color: var(--accent-2); }

/* --- Tiers extras --- */
.simple-list { list-style: none; }
.simple-list li { padding: 9px 0; color: var(--muted); border-bottom: 1px dashed var(--line); display: flex; gap: 10px; align-items: baseline; }
.simple-list li::before { content: ""; flex: 0 0 auto; width: 7px; height: 7px; background: var(--accent); border-radius: 50%; }
.simple-list li strong { color: var(--text); font-weight: 600; }

@media (max-width: 960px) {
  .partners { grid-template-columns: repeat(3, 1fr); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .event-card { grid-template-columns: 1fr; text-align: center; }
  .event-card__img { margin-inline: auto; }
}

@media (max-width: 640px) {
  .partners { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* Dropdown em mobile (dentro do menu fullscreen) */
@media (max-width: 820px) {
  .nav__drop {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    min-width: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 4px 0;
  }
  .nav__group.open .nav__drop { display: block; transform: none; }
  .nav__drop .nav__link { font-size: 1.05rem; color: var(--muted); text-align: center; }
  .event-card__meta { align-items: center; }
}