/* ============================================
   TRAVESSIGA CGFIT
   ============================================ */

:root {
  --azul: #014EB8;
  --amarelo: #FDCF00;
  --azul-sec: #0E84F2;
  --azul-aqua: #33C9FC;
  --azul-claro: #CBEBF6;
  --branco: #FFFFFF;
  --quase-branco: #F6F8FA;
  --preto: #0B1020;

  --texto: #2a2e3a;
  --texto-light: #5a5f6e;
  --borda: rgba(11, 16, 32, 0.08);

  --font: 'Barlow', sans-serif;
  --font-condensed: 'Barlow Condensed', 'Barlow', sans-serif;
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--texto);
  background: var(--branco);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.label-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--azul);
  margin-bottom: 16px;
  padding-left: 20px;
  position: relative;
}
.label-tag::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 12px; height: 3px;
  background: var(--amarelo);
}
.label-tag--light { color: var(--azul-aqua); }
.label-tag--yellow { color: var(--amarelo); }
.label-tag--yellow::before { background: var(--branco); }

.heading-xl {
  font-family: var(--font-condensed);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  font-style: italic;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 32px;
  color: var(--preto);
}
.heading-xl em { color: var(--amarelo); font-style: italic; }
.heading-xl--light { color: var(--branco); }
.heading-xl--light em { color: var(--amarelo); }

.heading-jumbo {
  font-family: var(--font-condensed);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 900;
  font-style: italic;
  line-height: 0.85;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--branco);
}
.heading-jumbo em { color: var(--amarelo); font-style: italic; }

.body-lg {
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 16px;
}

.section-intro {
  font-size: 1rem;
  color: var(--texto-light);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* ============================================
   HEADER
   ============================================ */
.topbar {
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}
.topbar__contact {
  color: rgba(255,255,255,0.85);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 14px;
  transition: color var(--transition);
}
.topbar__contact:hover { color: var(--amarelo); }
.topbar__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: color var(--transition), background var(--transition);
}
.topbar__social:hover { color: var(--amarelo); background: rgba(255,255,255,0.08); }

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(1, 78, 184, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
}

.header__logo { display: inline-flex; align-items: center; }
.header__logo-img { height: 40px; width: auto; display: block; }
.footer__logo-img { height: 56px; width: auto; display: block; margin-bottom: 12px; }

.header__logo-text {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--branco);
  letter-spacing: -0.02em;
}
.header__logo-text strong { font-weight: 800; }

.header__nav { display: none; gap: 4px; align-items: center; }

.header__link {
  color: rgba(255,255,255,0.7);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.header__link:hover,
.header__link.active {
  color: var(--branco);
  background: rgba(255,255,255,0.1);
}

.header__link--cta {
  background: var(--amarelo);
  color: var(--preto) !important;
  font-weight: 700;
  padding: 8px 20px;
  margin-left: 8px;
}
.header__link--cta:hover { background: #e6bb00; }

.header__burger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  margin-right: -10px;
}
.header__burger span {
  display: block; width: 22px; height: 2px;
  background: var(--branco); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.header__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.active span:nth-child(2) { opacity: 0; }
.header__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header__nav.open {
  display: flex; flex-direction: column;
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(1, 78, 184, 0.98);
  backdrop-filter: blur(16px);
  padding: 12px 24px 28px; gap: 2px;
}
.header__nav.open .header__link { padding: 14px 16px; font-size: 0.9375rem; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; }

.hero__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(11,16,32,0.3) 0%, rgba(11,16,32,0.2) 40%, rgba(11,16,32,0.75) 100%);
}

.lanes {
  position: absolute; inset: 0; z-index: 3;
  display: flex; justify-content: space-around;
  padding: 0 10%; pointer-events: none; opacity: 0.07;
}
.lane { width: 2px; height: 100%; background: var(--branco); }
.lane--accent { width: 3px; background: var(--amarelo); opacity: 0.6; }
.lanes--subtle { opacity: 0.04; }

.hero__layout {
  position: relative; z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 6vh;
  gap: 32px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.hero__video-wrap {
  width: 100%;
  max-width: 160px;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 60px rgba(255, 255, 255, 0.15), 0 0 0 1px rgba(255,255,255,0.1);
  flex-shrink: 0;
  align-self: center;
}

.hero__video {
  width: 100%; height: 100%;
  border: 0;
  display: block;
}

.hero__content {
  color: var(--branco);
  max-width: 900px;
  flex: 1;
}

.hero__brand {
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.25em;
  opacity: 0.5; margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-condensed);
  font-size: clamp(3.5rem, 14vw, 14rem);
  font-weight: 900; font-style: italic;
  line-height: 0.85; letter-spacing: -0.04em;
  text-transform: uppercase;
  display: flex; flex-wrap: wrap;
}
.hero__title-line { display: inline; }
.hero__title-line--accent { color: var(--amarelo); }

.hero__bar { width: 80px; height: 5px; background: var(--amarelo); margin: 24px 0; }

.hero__subtitle {
  font-size: clamp(0.875rem, 2.5vw, 1.375rem);
  font-weight: 500; opacity: 0.7;
  margin-bottom: 24px;
  text-transform: uppercase; letter-spacing: 0.08em;
}

.hero__see-you {
  font-family: var(--font-condensed);
  font-size: clamp(2.75rem, 9vw, 6.5rem);
  font-weight: 900; font-style: italic;
  line-height: 0.9; letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--branco);
  margin: 0 0 28px;
}
.hero__see-you em { color: var(--amarelo); font-style: italic; }

.hero__meta {
  display: flex; align-items: center;
  gap: 16px; margin-bottom: 28px; flex-wrap: wrap;
}
.hero__meta-item { display: flex; flex-direction: column; }
.hero__meta-label {
  font-size: 0.6875rem; text-transform: uppercase;
  letter-spacing: 0.12em; opacity: 0.4; font-weight: 600;
}
.hero__meta-value { font-size: 1.125rem; font-weight: 700; }
.hero__meta-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; width: 100%; }
.hero__actions .btn { min-width: 0; max-width: 50%; text-align: center; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-family: var(--font);
  font-weight: 700; font-size: 0.875rem;
  text-transform: uppercase; letter-spacing: 0.04em;
  border: 2px solid transparent; border-radius: var(--radius);
  padding: 14px 32px; cursor: pointer;
  transition: all var(--transition); white-space: nowrap;
}

.btn--primary { background: var(--amarelo); color: var(--preto); border-color: var(--amarelo); }
.btn--primary:hover {
  background: #e6bb00; border-color: #e6bb00;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(253,207,0,0.25);
}

.btn--ghost { background: transparent; color: var(--branco); border-color: rgba(255,255,255,0.25); }
.btn--ghost:hover { border-color: var(--branco); background: rgba(255,255,255,0.08); }

.btn--secondary { background: transparent; color: var(--azul); border-color: var(--azul); }
.btn--secondary:hover { background: var(--azul); color: var(--branco); }

.btn--dark { background: var(--preto); color: var(--branco); border-color: var(--preto); }
.btn--dark:hover {
  background: #1a2240; border-color: #1a2240;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.btn--lg { padding: 16px 40px; font-size: 0.9375rem; }
.btn--block { width: 100%; }

/* ============================================
   TICKER
   ============================================ */
.ticker {
  background: var(--azul);
  padding: 14px 0;
  overflow: hidden; white-space: nowrap;
  border-top: 3px solid var(--amarelo);
  border-bottom: 3px solid var(--amarelo);
}

.ticker__track {
  display: inline-flex;
  animation: ticker 30s linear infinite;
}
.ticker__track span {
  font-family: var(--font-condensed);
  font-size: 1.125rem; font-weight: 800;
  font-style: italic; text-transform: uppercase;
  letter-spacing: 0.02em; color: var(--branco);
  padding: 0 24px;
}
.ticker__track span::after {
  content: '·'; margin-left: 24px; color: var(--amarelo);
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 80px 0; position: relative; }
.section--dark { background: var(--preto); color: var(--branco); }
.section--blue { background: var(--azul); color: var(--branco); overflow: hidden; }
.section--gray { background: var(--quase-branco); }

.section--percursos {
  background: var(--quase-branco);
  overflow: hidden;
}

.section--galeria {
  background: var(--branco);
  padding-bottom: 0;
}

.section--inscricao {
  background: linear-gradient(135deg, var(--azul) 0%, #0a3a8a 50%, var(--preto) 100%);
  color: var(--branco);
  overflow: hidden;
}

/* Angled — Provas */
.section--angled {
  clip-path: polygon(0 40px, 100% 0, 100% calc(100% - 40px), 0 100%);
  padding-top: 120px; padding-bottom: 120px;
  margin-top: -20px; margin-bottom: -20px;
  z-index: 1;
}

/* ============================================
   SOBRE
   ============================================ */
.sobre__layout {
  display: grid;
  gap: 40px;
}

.sobre__right p {
  color: var(--texto-light);
  margin-bottom: 12px;
}

.sobre__numbers-inline {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.num-inline {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--texto-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.num-inline strong {
  font-family: var(--font-condensed);
  font-size: 2rem;
  font-weight: 900;
  font-style: italic;
  color: var(--azul);
  display: block;
  line-height: 1;
  margin-bottom: 2px;
}

.sobre__photo {
  margin-top: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.sobre__photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   PROVAS
   ============================================ */
.provas__day { margin-bottom: 48px; }

.provas__day-header {
  display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px;
}
.provas__day-name {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
}
.provas__day-date {
  font-family: var(--font-condensed);
  font-size: 2.5rem; font-weight: 900;
  font-style: italic; color: var(--amarelo); line-height: 1;
}

.provas__cards { display: grid; gap: 12px; }

.prova-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}
.prova-card:hover { border-color: rgba(255,255,255,0.2); }

.prova-card--featured {
  border-color: var(--amarelo);
  background: rgba(253,207,0,0.03);
  position: relative;
}
.prova-card__accent {
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%; background: var(--amarelo);
}
.prova-card__content { padding: 24px 28px; }

.prova-card__top {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 20px;
}
.prova-card__distance {
  font-family: var(--font-condensed);
  font-size: 3.5rem; font-weight: 900;
  font-style: italic; line-height: 1; color: var(--branco);
}
.prova-card__distance small { font-size: 0.4em; opacity: 0.5; }

.prova-card__tag {
  font-size: 0.6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  background: var(--amarelo); color: var(--preto);
  padding: 6px 14px; border-radius: 4px;
}

.prova-card__grid { display: flex; flex-wrap: wrap; gap: 20px; }
.prova-card__slot { display: flex; align-items: center; gap: 12px; }
.prova-card__time {
  font-family: var(--font-condensed);
  font-size: 1.75rem; font-weight: 800;
  font-style: italic; font-variant-numeric: tabular-nums;
}

.prova-card__flag {
  margin-top: 16px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.badge {
  display: inline-flex; align-items: center;
  font-size: 0.6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 5px 12px; border-radius: 4px;
}
.badge--fem { background: rgba(255,105,180,0.12); color: #ff69b4; }
.badge--masc { background: rgba(51,201,252,0.12); color: var(--azul-aqua); }
.badge--unica { background: rgba(253,207,0,0.1); color: var(--amarelo); }
.badge--boia {
  background: rgba(253,207,0,0.08); color: var(--amarelo);
  border: 1px solid rgba(253,207,0,0.2);
}

.provas__cta { text-align: center; margin-top: 48px; }

/* ============================================
   SPONSORS
   ============================================ */
.section--sponsors {
  background: var(--preto);
  color: var(--branco);
  padding: 32px 0;
}
.sponsors__group + .sponsors__group { margin-top: 24px; }
.sponsors__label {
  display: block;
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--amarelo);
  text-align: center;
  margin-bottom: 14px;
}
.sponsors__logos {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 18px 22px;
}
.sponsors__logo {
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0.92;
  transition: opacity var(--transition), transform var(--transition);
}
.sponsors__logo:hover { opacity: 1; transform: translateY(-2px); }
.sponsors__logo img {
  height: 42px; width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
}
.sponsors__logos--lg .sponsors__logo img { height: 64px; max-width: 220px; }

@media (min-width: 768px) {
  .sponsors__logos { gap: 36px 64px; }
  .sponsors__logo img { height: 52px; }
  .sponsors__logos--lg .sponsors__logo img { height: 80px; }
}

/* Info / Kits panels */
.info-panel,
.kits-panel {
  margin-top: 32px;
  border-radius: var(--radius-lg);
  padding: 28px;
  color: var(--branco);
}
.info-panel {
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.08);
}
.kits-panel {
  background: rgba(253,207,0,0.06);
  border: 1px solid rgba(253,207,0,0.22);
}

.info-panel__head,
.kits-panel__head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.info-panel__icon {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-condensed);
  font-weight: 900; font-style: italic; font-size: 1.4rem;
  color: var(--preto); background: var(--amarelo);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.kits-panel__icon {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--amarelo); color: var(--preto);
  border-radius: 8px;
}
.info-panel__title,
.kits-panel__title {
  font-family: var(--font-condensed);
  font-size: 1.5rem; font-weight: 900;
  font-style: italic; text-transform: uppercase;
  letter-spacing: 0.02em;
}

.info-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.info-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 1rem; line-height: 1.4;
}
.info-list--inline {
  flex-direction: row; flex-wrap: wrap; gap: 8px; margin: 8px 0 12px;
}
.info-list__check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--amarelo); color: var(--preto);
  border-radius: 50%;
  font-size: 0.8rem; font-weight: 900;
}

.info-panel__divider {
  height: 1px; background: rgba(255,255,255,0.08);
  margin: 22px 0;
}

.info-boia__title {
  font-family: var(--font-condensed);
  font-size: 1.25rem; font-weight: 900;
  font-style: italic; text-transform: uppercase;
  letter-spacing: 0.02em; margin-bottom: 6px;
}
.info-boia__title em {
  color: var(--amarelo); font-style: italic;
}
.info-boia__note {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.95rem; opacity: 0.9; margin: 0;
}

.kits-panel__grid {
  display: grid; gap: 12px 24px;
  grid-template-columns: 1fr;
  margin-bottom: 18px;
}
.kits-panel__item {
  display: flex; flex-direction: column; gap: 2px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--amarelo);
  border-radius: 4px;
}
.kits-panel__label {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
}
.kits-panel__time {
  font-size: 1rem; font-weight: 600;
}
.kits-panel__time strong { color: var(--amarelo); }
.kits-panel__cta {
  margin: 0; padding: 14px 18px;
  background: var(--amarelo); color: var(--preto);
  font-weight: 700; font-style: italic;
  text-align: center; border-radius: 12px;
  line-height: 1.35;
}
@media (min-width: 600px) {
  .kits-panel__cta { border-radius: 999px; }
}

@media (min-width: 768px) {
  .kits-panel__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   PERCURSOS
   ============================================ */
.percursos__grid { display: grid; gap: 16px; }

.percurso-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--preto);
  cursor: zoom-in;
  transition: transform var(--transition);
}
.percurso-card:hover { transform: translateY(-4px); }

.percurso-card--highlight {
  grid-row: span 1;
}

.percurso-card__img { aspect-ratio: 16 / 10; overflow: hidden; }

.percurso-card__info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(11,16,32,0.85));
  color: var(--branco);
  display: flex; align-items: baseline; gap: 12px;
}
.percurso-card__distance {
  font-family: var(--font-condensed);
  font-size: 1.75rem; font-weight: 900; font-style: italic;
}
.percurso-card__name { font-size: 0.8125rem; opacity: 0.6; font-weight: 500; }

/* Mapa do percurso */
.mapas-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .mapas-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
.mapa {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--preto);
  box-shadow: 0 12px 48px rgba(11,16,32,0.18);
}
.mapa a { display: block; cursor: zoom-in; }
.mapa img { width: 100%; height: auto; display: block; }
.mapa__caption {
  padding: 14px 20px;
  background: var(--branco);
  font-size: 0.8125rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--preto);
  text-align: center;
}

/* Em breve — próxima etapa */
.em-breve {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 56px 28px;
  border-radius: var(--radius-lg);
  background: var(--preto);
  text-align: center;
}
.em-breve__data {
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 800;
  line-height: 1;
  color: var(--amarelo);
  letter-spacing: 0.02em;
}
.em-breve__texto {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--branco);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Startlist / Resultados */
.section--listas {
  background: var(--quase-branco);
  padding-top: 48px;
  padding-bottom: 48px;
}
.section--percursos { padding-bottom: 56px; }
.section--percursos + .section--listas { padding-top: 32px; }
.listas__grid { display: grid; gap: 20px; }
.lista-card {
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex; flex-direction: column;
  gap: 16px;
  transition: border-color var(--transition), transform var(--transition);
}
.lista-card:hover { border-color: var(--azul-claro); transform: translateY(-3px); }
.lista-card__title {
  font-family: var(--font-condensed);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900; font-style: italic;
  line-height: 0.95; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--preto);
}
.lista-card__title em { color: var(--azul); font-style: italic; }
.lista-card__text {
  color: var(--texto-light);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.lista-card .btn { align-self: flex-start; margin-top: auto; }
.lista-card--alt .lista-card__title em { color: var(--amarelo); }

/* Fotop banner */
.fotop {
  position: relative;
  background: linear-gradient(135deg, #ff6a00 0%, #ff9a00 100%);
  color: var(--branco);
  overflow: hidden;
  margin-top: 4px;
}
.fotop__bg {
  position: absolute; inset: 0; z-index: 0;
  opacity: 0.18; mix-blend-mode: overlay;
}
.fotop__bg img { width: 100%; height: 100%; object-fit: cover; }
.fotop__inner {
  position: relative; z-index: 1;
  display: grid; gap: 24px;
  padding-top: 56px; padding-bottom: 56px;
  align-items: center;
}
.fotop__eyebrow {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em;
  margin-bottom: 12px;
  opacity: 0.85;
}
.fotop__title {
  font-family: var(--font-condensed);
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 900; font-style: italic;
  line-height: 0.95; letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--branco);
  margin-bottom: 10px;
}
.fotop__title em { color: var(--preto); font-style: italic; }
.fotop__lead {
  font-size: 1rem; line-height: 1.6;
  max-width: 560px;
  opacity: 0.95;
}

.placeholder-img {
  width: 100%; height: 100%; min-height: 200px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--azul-claro) 0%, #a4d4ea 100%);
  color: var(--azul); font-weight: 600; font-size: 0.8125rem;
  text-align: center; padding: 20px;
}
.placeholder-img--map { min-height: 280px; border-radius: var(--radius-lg); }

/* ============================================
   LOCAL
   ============================================ */
.local__layout { display: grid; gap: 48px; }
.local__address { font-size: 1.125rem; opacity: 0.6; margin-bottom: 12px; }
.local__note { font-size: 0.875rem; opacity: 0.5; margin-bottom: 28px; line-height: 1.6; }
.local__img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; }

/* ============================================
   GALERIA
   ============================================ */
.galeria__strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  margin-top: 40px;
}

.galeria__item {
  overflow: hidden;
  cursor: zoom-in;
}
.galeria__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
  transition: transform 0.5s ease;
}
.galeria__item:hover img { transform: scale(1.04); }
.galeria__item .placeholder-img {
  min-height: 200px;
  transition: transform 0.5s ease;
}
.galeria__item:hover .placeholder-img { transform: scale(1.04); }

.galeria__item--tall .placeholder-img { min-height: 100%; height: 100%; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(11,16,32,0.95);
  backdrop-filter: blur(12px);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__content { max-width: 90vw; max-height: 85vh; }
.lightbox__img {
  max-width: 100%; max-height: 85vh;
  object-fit: contain; border-radius: var(--radius);
}
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute; background: none; border: none;
  color: var(--branco); font-size: 2rem; cursor: pointer;
  padding: 16px; z-index: 201; opacity: 0.6;
  transition: opacity var(--transition);
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { opacity: 1; }
.lightbox__close { top: 16px; right: 16px; font-size: 2.5rem; }
.lightbox__prev { left: 16px; top: 50%; transform: translateY(-50%); font-size: 3rem; }
.lightbox__next { right: 16px; top: 50%; transform: translateY(-50%); font-size: 3rem; }

/* ============================================
   INSCRIÇÃO
   ============================================ */
.inscricao__layout { display: grid; gap: 48px; align-items: center; }

.inscricao__provas {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px;
}
.inscricao__prova {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 18px; border-radius: 4px;
  font-weight: 600; font-size: 0.8125rem;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.precos {
  margin: 8px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.precos__row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 0.9375rem;
}
.precos__row--head {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.55;
  padding: 10px 0;
}
.precos__row--combo { background: rgba(255,213,0,0.06); padding-left: 10px; padding-right: 10px; }
.precos__prova { font-weight: 700; }
.precos__prova small {
  display: block;
  font-weight: 500;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.55;
  margin-top: 2px;
}
.precos__valor { font-weight: 800; font-variant-numeric: tabular-nums; }

@media (max-width: 600px) {
  .precos__row { grid-template-columns: 1.4fr 1fr 1fr; font-size: 0.8125rem; gap: 8px; }
  .precos__row--head { font-size: 0.625rem; }
}

.inscricao__obs {
  margin-top: 20px; font-size: 0.75rem;
  opacity: 0.4; line-height: 1.5;
}
.inscricao__right .body-lg { opacity: 0.75; }

/* ============================================
   REGULAMENTO
   ============================================ */
.regulamento__header { margin-bottom: 40px; }

.regulamento__grid {
  display: grid;
  gap: 16px;
  margin-bottom: 40px;
}

.regulamento__item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--branco);
  border-radius: var(--radius-lg);
  border: 1px solid var(--borda);
  align-items: flex-start;
  transition: border-color var(--transition);
}
.regulamento__item:hover {
  border-color: var(--azul-claro);
}

.regulamento__icon {
  font-family: var(--font-condensed);
  font-size: 1.5rem;
  font-weight: 900;
  font-style: italic;
  color: var(--azul);
  opacity: 0.25;
  flex-shrink: 0;
  line-height: 1.2;
  min-width: 28px;
}

.regulamento__item h3 {
  font-size: 0.9375rem; font-weight: 700;
  color: var(--preto); margin-bottom: 6px;
}
.regulamento__item p {
  font-size: 0.875rem; color: var(--texto-light);
  line-height: 1.6;
}

.regulamento__download { text-align: center; }

/* ============================================
   FAQ
   ============================================ */
.faq__layout { display: grid; gap: 40px; }
.faq__right { max-width: 720px; }

.faq__item { border-bottom: 1px solid var(--borda); }

.faq__question {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 1rem; font-weight: 700;
  color: var(--preto);
  cursor: pointer; list-style: none;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: '+';
  font-family: var(--font-condensed);
  font-size: 1.75rem; font-weight: 400;
  color: var(--azul);
  flex-shrink: 0; margin-left: 16px;
}
.faq__item[open] .faq__question::after { content: '−'; }

.faq__answer { padding: 0 0 20px; }
.faq__answer p { color: var(--texto-light); line-height: 1.7; font-size: 0.9375rem; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--preto); color: var(--branco);
  padding: 0 0 32px;
}

.footer__accent-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--amarelo) 0%, var(--azul-aqua) 50%, var(--azul) 100%);
}

.footer__top {
  display: grid; gap: 32px;
  margin-bottom: 40px;
  padding-top: 48px;
}

.footer__logo-text {
  font-size: 1.4rem; font-weight: 500;
  display: block; margin-bottom: 4px;
}
.footer__logo-text strong { font-weight: 800; }
.footer__tagline { font-size: 0.8125rem; opacity: 0.4; }

.footer__links { display: flex; gap: 48px; }

.footer h4 {
  font-size: 0.6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 10px; opacity: 0.35;
}
.footer__col p, .footer__social a {
  font-size: 0.875rem; opacity: 0.6;
  transition: opacity var(--transition);
}
.footer__social a:hover { opacity: 1; }
.footer__social { display: flex; flex-direction: column; gap: 6px; }

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.75rem; opacity: 0.3;
}
.footer__bottom p { margin-bottom: 4px; }
.footer__bottom a { text-decoration: underline; }

/* ============================================
   STICKY CTA
   ============================================ */
.sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 90;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0));
  background: rgba(11,16,32,0.95);
  backdrop-filter: blur(8px);
}
.sticky-cta.visible { display: block; }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }
.reveal[data-delay="6"] { transition-delay: 0.48s; }

/* ============================================
   ACCESSIBILITY
   ============================================ */
:focus-visible { outline: 3px solid var(--amarelo); outline-offset: 2px; }
.btn:focus-visible { box-shadow: 0 0 0 4px rgba(253,207,0,0.35); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .ticker__track { animation: none; }
}

/* ============================================
   TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {
  .section { padding: 100px 0; }
  .section--galeria { padding-bottom: 0; }

  .sobre__layout {
    grid-template-columns: 5fr 6fr;
    gap: 64px; align-items: start;
  }

  .provas__cards { grid-template-columns: repeat(3, 1fr); }
  .percursos__grid { grid-template-columns: repeat(2, 1fr); }

  .listas__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .fotop__inner {
    grid-template-columns: 1fr auto;
    gap: 40px;
    padding-top: 72px; padding-bottom: 72px;
  }

  .local__layout { grid-template-columns: 1fr 1fr; align-items: center; }

  .galeria__strip { grid-template-columns: repeat(3, 1fr); }
  .galeria__item--tall { grid-row: span 2; }

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

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

  .faq__layout {
    grid-template-columns: 1fr 2fr;
    gap: 64px; align-items: start;
  }

  .footer__top {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .section--angled {
    clip-path: polygon(0 60px, 100% 0, 100% calc(100% - 60px), 0 100%);
    padding-top: 140px; padding-bottom: 140px;
    margin-top: -30px; margin-bottom: -30px;
  }
}

@media (min-width: 768px) {
  .hero__layout {
    padding-top: 140px;
    gap: 40px;
  }
  .hero__title {
    font-size: clamp(5rem, 14vw, 14rem);
  }
}

/* ============================================
   DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .header__nav { display: flex; align-items: center; }
  .header__burger { display: none; }

  .header__logo {
    align-self: flex-start;
    padding: 14px 26px 18px;
    background: var(--azul);
    border-radius: 0 0 16px 16px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid var(--amarelo);
  }
  .header__logo-img {
    height: clamp(56px, 7vw, 106px);
    width: auto;
    display: block;
  }

  .hero__layout {
    flex-direction: row;
    align-items: flex-end;
    padding: 0 48px 10vh;
    gap: 60px;
  }
  .hero__video-wrap {
    max-width: 300px;
    align-self: flex-end;
  }

  .section { padding: 120px 0; }
  .section--galeria { padding-bottom: 0; }
  .container { padding: 0 48px; }

  .percursos__grid { grid-template-columns: repeat(4, 1fr); }

  .percurso-card--highlight {
    grid-column: span 2;
  }
  .percurso-card--highlight .percurso-card__img {
    aspect-ratio: 32 / 10;
  }

  .galeria__strip { grid-template-columns: repeat(4, 1fr); }

  .regulamento__grid { grid-template-columns: repeat(3, 1fr); }

  .footer { padding-bottom: 32px; }

  .section--angled {
    clip-path: polygon(0 80px, 100% 0, 100% calc(100% - 80px), 0 100%);
    padding-top: 180px; padding-bottom: 180px;
    margin-top: -40px; margin-bottom: -40px;
  }
}

/* ============================================
   LARGE (1400px+)
   ============================================ */
@media (min-width: 1400px) {
  .hero__title { font-size: 16rem; }
}
