/* ============================================
   1a Meia Maratona de Jundiai 2026 - Styles
   Mobile-First | V7 — "A Linha"
   ============================================ */

/* ---- CSS Custom Properties (Design Tokens) ---- */
:root {
  --color-primary: #003F52;
  --color-accent: #00B090;
  --color-accent-dark: #009B7D;
  --color-white: #FFFFFF;
  --color-dark: #002A38;
  --color-gray-light: #F5F5F5;
  --color-gray-medium: #666666;
  --color-gray-dark: #333333;
  --color-cta-disabled: #8A9BA3;
  --color-cta-disabled-bg: #C8D3D8;

  --font-display: 'Bebas Neue', cursive;
  --font-body: 'Poppins', sans-serif;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 80px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.1), 0 24px 56px rgba(0, 0, 0, 0.16);
  --shadow-nav: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-fab: 0 4px 16px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 40px rgba(0, 176, 144, 0.3);

  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-smooth: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-dramatic: 700ms cubic-bezier(0.23, 1, 0.32, 1);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-gray-dark);
  background: var(--color-white);
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ---- Skip Link ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 10000;
  font-size: 14px;
}

.skip-link:focus {
  top: 8px;
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Scroll Reveal Animation ---- */
@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  animation: revealUp 0.7s ease forwards;
}

.reveal--delay-1 { animation-delay: 0.1s; }
.reveal--delay-2 { animation-delay: 0.2s; }
.reveal--delay-3 { animation-delay: 0.3s; }

/* ============================================
   SVG "A LINHA" — Global Overlay
   ============================================ */
.linha-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  pointer-events: none;
}

.linha-svg path {
  stroke: #00B090;
  stroke-width: 2px;
  stroke-dasharray: 5000;
  stroke-dashoffset: 5000;
  fill: none;
  opacity: 0.35;
  transition: stroke-dashoffset 0.05s linear;
}

/* Fallback: if JS fails, show the line statically */
.no-js .linha-svg path {
  stroke-dashoffset: 0;
  opacity: 0.15;
}

/* ---- NAV — Sleek, cinematic + progress bar ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 42, 56, 0.92);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  height: 64px;
  transition: box-shadow var(--transition-base), background var(--transition-base);
  border-bottom: 1px solid rgba(0, 176, 144, 0.1);
}

.nav--scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(0, 176, 144, 0.2);
  background: rgba(0, 42, 56, 0.97);
}

/* Progress bar */
.nav__progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--color-accent);
  z-index: 1001;
  transition: width 0.1s linear;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter var(--transition-base);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
}

.nav__distances {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__dist-badge {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--color-primary);
  letter-spacing: 1px;
  line-height: 1;
  font-weight: 700;
}

.nav__dist-dot {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 700;
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  z-index: 1010;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition-base);
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.nav__menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(0, 42, 56, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: right var(--transition-base);
  z-index: 1005;
}

.nav__menu.open {
  right: 0;
}

.nav__list {
  text-align: center;
}

.nav__list li {
  margin-bottom: var(--space-lg);
}

.nav__link {
  font-size: 24px;
  font-weight: 500;
  color: var(--color-white);
  transition: color var(--transition-fast), text-shadow var(--transition-fast);
  position: relative;
}

.nav__link:hover,
.nav__link:focus-visible {
  color: var(--color-accent);
  text-shadow: 0 0 20px rgba(0, 176, 144, 0.4);
}

.nav__link--cta {
  color: var(--color-accent);
  font-weight: 600;
  border: 1.5px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: 6px 16px;
  font-size: 13px;
  transition: background var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
  opacity: 0.7;
  cursor: default;
  pointer-events: none;
}

.nav__link--cta.nav__link--cta-active {
  opacity: 1;
  cursor: pointer;
  pointer-events: auto;
}

.nav__link--cta.nav__link--cta-active:hover {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 0 20px rgba(0, 176, 144, 0.4);
}

/* ============================
   HERO — Full cinematic immersion
   ============================ */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  background-color: var(--color-primary);
  background-image: url('assets/bg-hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 60px;
  position: relative;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      175deg,
      rgba(0, 42, 56, 0.85) 0%,
      rgba(0, 63, 82, 0.55) 30%,
      rgba(0, 42, 56, 0.65) 60%,
      rgba(0, 42, 56, 0.95) 100%
    );
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(0, 176, 144, 0.03) 40px,
    rgba(0, 176, 144, 0.03) 41px
  );
  z-index: 1;
  animation: speedLines 15s linear infinite;
}

@keyframes speedLines {
  0% { transform: translate(0, 0); }
  100% { transform: translate(40px, 40px); }
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 70%;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 176, 144, 0.12) 0%,
    transparent 60%
  );
  z-index: 1;
  pointer-events: none;
  animation: heroGlow 6s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  100% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.hero__deco-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  animation: decoFadeIn 2s ease-out 0.5s forwards;
}

.hero__deco-corner {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 150px;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  animation: decoFadeIn 2s ease-out 1s forwards;
}

@keyframes decoFadeIn {
  to { opacity: 1; }
}

.hero__layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 1200px;
  position: relative;
  z-index: 2;
  gap: var(--space-lg);
}

.hero__col-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__col-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hero Entry Animations */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroGlowPulse {
  0%, 100% { filter: brightness(0) invert(1) drop-shadow(0 0 0px rgba(0, 176, 144, 0)); }
  50% { filter: brightness(0) invert(1) drop-shadow(0 0 40px rgba(0, 176, 144, 0.4)); }
}

.hero-anim {
  opacity: 0;
  animation: heroFadeUp 0.9s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.hero-anim--1 { animation-delay: 0.1s; }
.hero-anim--2 { animation-delay: 0.25s; }
.hero-anim--3 { animation-delay: 0.4s; }
.hero-anim--4 { animation-delay: 0.6s; }
.hero-anim--5 { animation-delay: 0.8s; }
.hero-anim--6 { animation-delay: 1.0s; }

.hero__logo {
  width: 320px;
  height: auto;
  margin-bottom: var(--space-md);
  filter: brightness(0) invert(1);
  animation: heroGlowPulse 4s ease-in-out infinite;
  animation-delay: 2s;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--color-white);
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin-bottom: var(--space-md);
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.hero__headline em {
  font-style: italic;
  font-family: var(--font-display);
  position: relative;
  color: var(--color-accent);
  text-shadow: 0 0 40px rgba(0, 176, 144, 0.4);
}

.hero__headline em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(0, 176, 144, 0.6);
  opacity: 0.7;
}

.section__title em {
  font-style: italic;
  font-family: var(--font-display);
  color: var(--color-accent);
  position: relative;
}

/* Animated underline on section em — slides in from left */
.section__title em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.section__title em.em-visible::after {
  transform: scaleX(1);
}

.section__title--white em {
  color: var(--color-accent);
  text-shadow: 0 0 20px rgba(0, 176, 144, 0.3);
}

.hero__subheadline {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin-bottom: var(--space-xl);
  line-height: 1.8;
  letter-spacing: 0.01em;
}

.hero__date-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xs);
}

.hero__date-line {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
  box-shadow: 0 0 12px rgba(0, 176, 144, 0.6);
  animation: dateLinePulse 3s ease-in-out infinite;
}

@keyframes dateLinePulse {
  0%, 100% { width: 40px; opacity: 0.6; }
  50% { width: 55px; opacity: 1; }
}

.hero__date {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--color-accent);
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 0 25px rgba(0, 176, 144, 0.35);
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  width: 100%;
}

/* ---- Countdown — Glassmorphism ---- */
.countdown {
  display: flex;
  gap: 10px;
  margin-bottom: var(--space-xl);
  flex-wrap: nowrap;
  justify-content: center;
}

.countdown__block {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 176, 144, 0.15);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition-base), background var(--transition-base), transform var(--transition-base);
}

.countdown__block:hover {
  border-color: rgba(0, 176, 144, 0.4);
  background: rgba(0, 176, 144, 0.08);
  transform: translateY(-3px);
}

.countdown__block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  border-radius: 0 0 2px 2px;
  opacity: 0.8;
}

.countdown__number {
  font-family: var(--font-display);
  font-size: 46px;
  color: var(--color-white);
  line-height: 1;
  text-shadow: 0 2px 15px rgba(0, 176, 144, 0.2);
}

.countdown__label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-top: 6px;
  font-weight: 500;
}

.countdown__finished {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--color-accent);
  margin-bottom: var(--space-lg);
  text-shadow: 0 0 30px rgba(0, 176, 144, 0.5);
}

/* ---- CTA Button ---- */
.cta {
  display: inline-block;
  padding: 16px 48px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta--angular {
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  border-radius: 0;
}

.cta--disabled {
  background: var(--color-cta-disabled-bg);
  color: var(--color-cta-disabled);
  cursor: default;
  pointer-events: none;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 211, 216, 0.6); }
  50% { box-shadow: 0 0 0 12px rgba(200, 211, 216, 0); }
}

.cta--pulse {
  animation: ctaPulse 2.5s ease-in-out infinite;
}

.cta--active {
  background: var(--color-accent);
  color: var(--color-white);
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 4px 20px rgba(0, 176, 144, 0.35);
}

.cta--active::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s ease;
}

.cta--active:hover::after {
  left: 120%;
}

.cta--active:hover,
.cta--active:focus-visible {
  background: var(--color-accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 176, 144, 0.5), 0 0 60px rgba(0, 176, 144, 0.2);
}

.cta--ghost {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.35);
  padding: 12px 36px;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition-base);
}

.cta--ghost:hover,
.cta--ghost:focus-visible {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(0, 176, 144, 0.08);
  box-shadow: 0 0 30px rgba(0, 176, 144, 0.2);
  transform: translateY(-2px);
}

.cta--ghost-dark {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-accent);
  padding: 12px 36px;
  font-size: 14px;
  cursor: pointer;
}

.cta--ghost-dark:hover,
.cta--ghost-dark:focus-visible {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(0, 176, 144, 0.3);
  transform: translateY(-2px);
}

/* ---- Section Dividers ---- */
.section-divider {
  width: 100%;
  line-height: 0;
  margin: 0;
  position: relative;
  z-index: 5;
}

.section-divider svg {
  width: 100%;
  height: 40px;
  display: block;
}

.section-divider--white-to-gray { background: var(--color-white); }
.section-divider--gray-to-white { background: var(--color-gray-light); }
.section-divider--white-to-dark { background: var(--color-white); }
.section-divider--white-to-dark svg { height: 60px; }
.section-divider--dark-to-white { background: transparent; }
.section-divider--dark-to-white svg { height: 60px; }
.section-divider--dark-to-gray { background: transparent; }
.section-divider--dark-to-gray svg { height: 80px; }

.section__deco-pattern {
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
}

/* ---- Wave Divider ---- */
.wave-divider {
  width: 100%;
  margin-top: -1px;
  line-height: 0;
  position: relative;
}

.wave-divider img {
  width: 100%;
  height: auto;
}

/* ---- Sections ---- */
.section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.section--white {
  background: var(--color-white);
}

.section--white::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 50%, var(--color-primary) 100%);
  opacity: 0.15;
}

.section--gray {
  background: var(--color-gray-light);
  position: relative;
}

.section--gray::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 5%, var(--color-accent) 50%, transparent 95%);
  opacity: 0.5;
}

.section--gray::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -60px;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(circle, rgba(0, 176, 144, 0.06) 2px, transparent 2px);
  background-size: 20px 20px;
  pointer-events: none;
  opacity: 0.8;
}

.section--dark {
  background: var(--color-primary);
  position: relative;
}

.section--dark::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle at top right, rgba(0, 176, 144, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.section--dark::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle at bottom left, rgba(0, 176, 144, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.section__title {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: var(--space-md);
  letter-spacing: 0.04em;
  line-height: 1.08;
  position: relative;
}

.section__title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  margin: var(--space-sm) auto 0;
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(0, 176, 144, 0.4);
}

.section__title--white {
  color: var(--color-white);
}

.section__title--white::after {
  box-shadow: 0 0 25px rgba(0, 176, 144, 0.6);
}

.section__intro {
  font-size: 16px;
  color: var(--color-gray-medium);
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-xl);
  line-height: 1.8;
}

.section__intro--light {
  color: rgba(255, 255, 255, 0.85);
}

.section__caption {
  font-size: 12px;
  color: var(--color-gray-medium);
  text-align: center;
  margin-top: var(--space-sm);
}

.section__microcopy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-top: var(--space-xl);
}

/* ---- Section Narrow Content (Sobre) ---- */
.section__content--narrow {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.section__content--narrow p {
  line-height: 1.8;
  margin-bottom: var(--space-md);
  color: var(--color-gray-dark);
  font-size: 16px;
}

.section__content--narrow .cta {
  margin-top: var(--space-lg);
}

/* Section CTA alignment */
.section .cta {
  display: block;
  width: fit-content;
  margin: var(--space-lg) auto 0;
}

/* ---- Route Button ---- */
.btn-route {
  display: inline-block;
  margin-top: var(--space-sm);
  padding: 8px 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
  border-radius: var(--radius-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-route::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-accent);
  transition: left var(--transition-base);
  z-index: -1;
}

.btn-route:hover,
.btn-route:focus-visible {
  color: var(--color-white);
  border-color: var(--color-accent);
  box-shadow: 0 4px 20px rgba(0, 176, 144, 0.3);
  transform: translateY(-2px);
}

.btn-route:hover::before {
  left: 0;
}

/* ============================================
   MODALIDADES — "Pistas" Verticais
   ============================================ */
.pistas {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: var(--space-lg);
}

.pista {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 176, 144, 0.08);
  transition: all var(--transition-dramatic);
}

.pista__border {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-accent), rgba(0, 176, 144, 0.2));
  border-radius: 2px 0 0 2px;
}

.pista--featured {
  border-top: 4px solid var(--color-accent);
}

.pista--featured .pista__border {
  width: 5px;
  background: var(--color-accent);
  box-shadow: 0 0 20px rgba(0, 176, 144, 0.3);
}

.pista:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 63, 82, 0.12), 0 0 30px rgba(0, 176, 144, 0.06);
  border-color: rgba(0, 176, 144, 0.25);
}

.pista__distance {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--color-accent);
  display: block;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-xs);
  text-shadow: 0 2px 10px rgba(0, 176, 144, 0.15);
  transition: all var(--transition-base);
}

.pista:hover .pista__distance {
  text-shadow: 0 4px 20px rgba(0, 176, 144, 0.3);
  transform: scale(1.05);
}

.pista__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 22px;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.pista__text {
  font-size: 15px;
  color: var(--color-gray-medium);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

/* ============================================
   PERCURSO — Timeline Visual
   ============================================ */
.timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  padding: 0 20px;
}

.timeline__point {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.timeline__marker {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 3px solid var(--color-white);
  box-shadow: 0 0 0 3px var(--color-accent), 0 0 20px rgba(0, 176, 144, 0.4);
  margin-bottom: var(--space-xs);
}

.timeline__label {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  line-height: 1;
}

.timeline__sublabel {
  font-size: 12px;
  color: var(--color-gray-medium);
  margin-top: 2px;
}

.timeline__line {
  flex: 1;
  height: 3px;
  background: rgba(0, 176, 144, 0.15);
  border-radius: 2px;
  margin: 0 var(--space-sm);
  position: relative;
  min-width: 100px;
  align-self: flex-start;
  margin-top: 9px;
}

.timeline__line-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--color-accent);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(0, 176, 144, 0.4);
  transition: width 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.timeline.is-visible .timeline__line-fill {
  width: 100%;
}

/* ---- Map ---- */
.map-wrapper {
  margin-top: var(--space-lg);
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 63, 82, 0.12), 0 0 0 1px rgba(0, 176, 144, 0.1);
}

.map-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary));
  z-index: 1;
}

.map-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary));
  z-index: 1;
}

.map-iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: var(--radius-lg);
  display: block;
}

/* ============================================
   PREMIACAO — Podium Circles
   ============================================ */
.premio-section {
  margin-top: var(--space-xl);
  text-align: center;
}

.premio-section--faixa {
  margin-top: var(--space-2xl);
}

.premio-section__heading {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--color-accent);
  letter-spacing: 0.06em;
  margin-bottom: var(--space-xs);
  text-shadow: 0 0 20px rgba(0, 176, 144, 0.35);
  position: relative;
  display: inline-block;
}

.premio-section__heading::before,
.premio-section__heading::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent));
  opacity: 0.5;
}

.premio-section__heading::before {
  right: calc(100% + 12px);
}

.premio-section__heading::after {
  left: calc(100% + 12px);
  background: linear-gradient(90deg, var(--color-accent), transparent);
}

.premio-section__sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-lg);
}

/* Podium concentric circles */
.podium-circles {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: var(--space-lg) auto;
  position: relative;
}

.podium-circle {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-dramatic);
  transform: scale(0);
}

.podium-circle.is-visible {
  transform: scale(1);
}

.podium-circle--1 {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--color-accent), #007A62);
  box-shadow: 0 0 40px rgba(0, 176, 144, 0.4), inset 0 0 20px rgba(255,255,255,0.1);
  animation: podiumGlow 3s ease-in-out infinite;
  order: 2;
}

.podium-circle--2 {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, rgba(0, 176, 144, 0.6), rgba(0, 176, 144, 0.25));
  box-shadow: 0 0 20px rgba(0, 176, 144, 0.2);
  order: 1;
}

.podium-circle--3 {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(0, 176, 144, 0.4), rgba(0, 176, 144, 0.12));
  box-shadow: 0 0 10px rgba(0, 176, 144, 0.1);
  order: 3;
}

@keyframes podiumGlow {
  0%, 100% { box-shadow: 0 0 30px rgba(0, 176, 144, 0.3), inset 0 0 20px rgba(255,255,255,0.1); }
  50% { box-shadow: 0 0 60px rgba(0, 176, 144, 0.5), 0 -10px 40px rgba(0, 176, 144, 0.2), inset 0 0 20px rgba(255,255,255,0.1); }
}

.podium-circle__rank {
  font-family: var(--font-display);
  color: var(--color-white);
  line-height: 1;
}

.podium-circle--1 .podium-circle__rank {
  font-size: 36px;
  text-shadow: 0 0 20px rgba(0, 176, 144, 0.6);
}

.podium-circle--2 .podium-circle__rank {
  font-size: 28px;
}

.podium-circle--3 .podium-circle__rank {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.8);
}

.podium__legend {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.premio-places {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.premio-place {
  display: flex;
  align-items: baseline;
  gap: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 176, 144, 0.15);
  border-radius: var(--radius-md);
  padding: 10px 20px;
  transition: all var(--transition-base);
}

.premio-place:hover {
  background: rgba(0, 176, 144, 0.08);
  border-color: rgba(0, 176, 144, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0, 176, 144, 0.15);
}

.premio-place__num {
  font-family: var(--font-display);
  font-size: 22px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1;
}

.premio-place__label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* Faixa Etaria Grid */
.faixa-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.faixa-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 176, 144, 0.1);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.faixa-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(0, 176, 144, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.faixa-card:hover {
  border-color: rgba(0, 176, 144, 0.4);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 176, 144, 0.1);
}

.faixa-card:hover::before {
  opacity: 1;
}

.faixa-card:last-child {
  grid-column: 1 / -1;
  max-width: 240px;
  margin: 0 auto;
  width: 100%;
}

.faixa-card__range {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--color-white);
  display: block;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.faixa-card__places {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.faixa-card__medal {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1;
  transition: all var(--transition-fast);
}

.faixa-card:hover .faixa-card__medal {
  transform: scale(1.15);
}

.faixa-card__medal--1 {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 0 15px rgba(0, 176, 144, 0.4);
}

.faixa-card__medal--2 {
  background: rgba(0, 176, 144, 0.4);
  color: var(--color-white);
}

.faixa-card__medal--3 {
  background: rgba(0, 176, 144, 0.2);
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   KIT DO ATLETA — Grid (no carousel)
   ============================================ */
.kit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: var(--space-lg);
}

.kit-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 176, 144, 0.08);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-dramatic);
}

.kit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 176, 144, 0.03) 0%, transparent 30%, rgba(0, 63, 82, 0.02) 100%);
  pointer-events: none;
}

.kit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 63, 82, 0.12), 0 0 30px rgba(0, 176, 144, 0.06);
}

.kit-card--featured {
  border: 2px solid var(--color-accent);
  box-shadow: var(--shadow-card), 0 0 30px rgba(0, 176, 144, 0.08);
}

.kit-card--addon {
  border: 1px dashed var(--color-gray-medium);
}

.kit-card__badge {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 10px rgba(0, 176, 144, 0.3);
}

.kit-card__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 22px;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.kit-card__subtitle {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--color-accent);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-xs);
}

.kit-card__img {
  margin: var(--space-sm) 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 160px;
}

.kit-card__img img {
  max-height: 180px;
  width: auto;
  margin: 0 auto;
  border-radius: var(--radius-sm);
  transition: transform var(--transition-base);
}

.kit-card:hover .kit-card__img img {
  transform: scale(1.05);
}

.kit-card__img--icon {
  min-height: 100px;
}

.kit-card__icon-svg {
  width: 120px;
  height: 60px;
}

.kit-card__desc {
  font-size: 14px;
  color: var(--color-gray-medium);
  line-height: 1.7;
  margin-top: var(--space-sm);
}

.kit-list {
  text-align: left;
  margin: 0 auto var(--space-sm);
  max-width: 260px;
}

.kit-list li {
  font-size: 14px;
  color: var(--color-gray-dark);
  padding: 6px 0;
  padding-left: 28px;
  position: relative;
  transition: transform var(--transition-fast);
}

.kit-list li:hover {
  transform: translateX(4px);
}

.kit-list li::before {
  content: "\2713";
  color: var(--color-accent);
  font-weight: 700;
  position: absolute;
  left: 0;
  font-size: 16px;
}

/* ---- FAQ ---- */
.faq {
  max-width: 800px;
  margin: var(--space-lg) auto 0;
}

.faq__item {
  border-bottom: 1px solid #E0E0E0;
  position: relative;
}

.faq__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-accent);
  border-radius: 2px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.faq__item:has(.faq__question[aria-expanded="true"])::before {
  opacity: 1;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  padding-left: 16px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-gray-dark);
  text-align: left;
  gap: 16px;
  transition: all var(--transition-base);
}

.faq__question:hover,
.faq__question:focus-visible {
  color: var(--color-accent);
  padding-left: 24px;
}

.faq__chevron {
  flex-shrink: 0;
  transition: transform var(--transition-base), color var(--transition-base);
  color: var(--color-gray-medium);
}

.faq__question:hover .faq__chevron {
  color: var(--color-accent);
}

.faq__question[aria-expanded="true"] .faq__chevron {
  transform: rotate(180deg);
  color: var(--color-accent);
}

.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--transition-smooth), padding var(--transition-smooth);
}

.faq__answer:not([hidden]) {
  max-height: 300px;
}

.faq__answer p {
  font-size: 15px;
  color: var(--color-gray-medium);
  line-height: 1.7;
  padding-bottom: 20px;
  padding-left: 16px;
}

.faq__regulamento {
  border-top: 2px solid rgba(0, 176, 144, 0.2);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  text-align: center;
}

.faq__regulamento-title {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--color-primary);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-xs);
  text-decoration: none;
  cursor: not-allowed;
  opacity: 0.5;
  pointer-events: none;
}

.faq__regulamento-text {
  font-size: 15px;
  color: var(--color-gray-medium);
  margin-bottom: var(--space-md);
}

.faq__regulamento-note {
  font-size: 12px;
  color: var(--color-gray-medium);
  margin-top: var(--space-sm);
  font-style: italic;
}

/* ============================================
   FOOTER — "Linha de Chegada"
   ============================================ */
.footer {
  background: var(--color-dark);
  padding: 80px 20px 30px;
  position: relative;
  overflow: hidden;
}

/* Finish line decoration */
.footer__finish-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--color-accent) 0px,
    var(--color-accent) 12px,
    transparent 12px,
    transparent 24px
  );
  opacity: 0.6;
}

.footer__finish-marker {
  position: absolute;
  right: 40px;
  top: -8px;
  width: 20px;
  height: 20px;
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0, 176, 144, 0.6);
}

.footer::after {
  content: '21K';
  position: absolute;
  bottom: -40px;
  right: -20px;
  font-family: var(--font-display);
  font-size: 300px;
  color: rgba(0, 176, 144, 0.02);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.02em;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer__logo {
  height: 80px;
  width: auto;
  margin-bottom: var(--space-md);
  transition: all var(--transition-base);
}

.footer__logo:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 20px rgba(0, 176, 144, 0.3));
}

.footer__tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-lg);
  max-width: 400px;
  line-height: 1.7;
}

.footer__social {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.footer__social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition-base);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__social-link:hover,
.footer__social-link:focus-visible {
  color: var(--color-accent);
  transform: translateY(-4px);
  background: rgba(0, 176, 144, 0.08);
  border-color: rgba(0, 176, 144, 0.2);
  box-shadow: 0 8px 30px rgba(0, 176, 144, 0.1);
}

.footer__social-link svg {
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.footer__social-link:hover svg {
  transform: scale(1.15);
  filter: drop-shadow(0 0 8px rgba(0, 176, 144, 0.5));
}

.footer__section {
  margin-bottom: var(--space-xl);
  text-align: center;
}

.footer__section-label {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: var(--space-sm);
  text-shadow: 0 0 20px rgba(0, 176, 144, 0.25);
}

.footer__section-placeholder {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
  font-style: italic;
}

.footer__apoio-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.footer__apoio-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer__apoio-card:hover {
  opacity: 0.85;
}

.footer__apoio-logo {
  height: 64px;
  width: auto;
  filter: brightness(1.2) drop-shadow(0 1px 3px rgba(0, 0, 0, 0.4));
  opacity: 1;
  transition: all var(--transition-base);
}

.footer__apoio-logo:hover {
  filter: brightness(1.3) drop-shadow(0 1px 4px rgba(0, 0, 0, 0.5));
}

.footer__divider {
  width: 80px;
  border: none;
  border-top: 2px solid rgba(0, 176, 144, 0.15);
  margin: 0 auto var(--space-xl);
}

.footer__realizacao {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: var(--space-sm);
  text-shadow: 0 0 20px rgba(0, 176, 144, 0.25);
}

.footer__closing {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  letter-spacing: 0.04em;
  text-shadow: 0 0 30px rgba(0, 176, 144, 0.3);
}

.footer__copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* ---- WhatsApp FAB ---- */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-fab);
  z-index: 999;
  transition: all var(--transition-base);
  animation: fabPulse 3s ease-in-out infinite;
}

@keyframes fabPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3); }
  50% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3), 0 0 0 10px rgba(37, 211, 102, 0.08); }
}

.whatsapp-fab:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
  animation: none;
}

/* ---- MODAL ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 42, 56, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.modal-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  max-width: 480px;
  width: 100%;
  padding: 44px 32px;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: all var(--transition-dramatic);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 176, 144, 0.1);
}

.modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  border-radius: 0 0 3px 3px;
}

.modal-overlay.is-visible .modal {
  transform: scale(1) translateY(0);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-medium);
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.modal__close:hover {
  color: var(--color-primary);
  background: var(--color-gray-light);
  transform: rotate(90deg);
}

.modal__title {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
  letter-spacing: 0.04em;
}

.modal__subtitle {
  font-size: 14px;
  color: var(--color-gray-medium);
  margin-bottom: var(--space-md);
  line-height: 1.5;
}

.modal__field {
  margin-bottom: var(--space-sm);
}

.modal__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-gray-dark);
  margin-bottom: 4px;
}

.modal__input {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  border: 1.5px solid #DDE2E5;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  outline: none;
  color: var(--color-gray-dark);
}

.modal__input::placeholder {
  color: #B0B8BE;
}

.modal__input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(0, 176, 144, 0.12);
}

.modal__submit {
  width: 100%;
  margin-top: var(--space-sm);
  padding: 15px;
}

.modal__success {
  text-align: center;
  padding: var(--space-md) 0;
}

.modal__success svg {
  margin: 0 auto var(--space-sm);
}

.modal__success-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.5;
}

*:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

body.modal-open {
  overflow: hidden;
}

/* ============================================
   EXCLUSIVOS — Camiseta + Medalha
   ============================================ */
.exclusivos {
  padding: 60px 0 48px;
}

.exclusivos__headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 56px);
  color: var(--color-white);
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: var(--space-xl);
}

.exclusivos__grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  align-items: center;
}

.exclusivos__panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 440px;
  width: 100%;
}

.exclusivos__img-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-md);
}

.exclusivos__img-wrapper--medalha {
  padding: 24px;
}

.exclusivos__glow--medalha {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 176, 144, 0.18) 0%, rgba(0, 176, 144, 0.06) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.exclusivos__img--medalha {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(0, 176, 144, 0.3)) drop-shadow(0 8px 32px rgba(0, 0, 0, 0.4));
  transition: transform var(--transition-smooth);
}

.exclusivos__img--medalha:hover {
  transform: scale(1.04);
}

.exclusivos__img-wrapper--camiseta {
  padding: 16px;
}

.exclusivos__img--camiseta {
  width: 100%;
  height: 320px;
  object-fit: contain;
  filter: drop-shadow(8px 12px 24px rgba(0, 0, 0, 0.5));
  transition: transform var(--transition-smooth), filter var(--transition-smooth);
}

.exclusivos__img--camiseta:hover {
  transform: scale(1.03) translateY(-4px);
}

.kit-toggle {
  display: flex;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 176, 144, 0.3);
  margin-bottom: var(--space-md);
}

.kit-toggle__btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 10px 24px;
  border: none;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background var(--transition-base), color var(--transition-base);
}

.kit-toggle__btn:hover {
  background: rgba(0, 176, 144, 0.12);
  color: rgba(255, 255, 255, 0.9);
}

.kit-toggle__btn.active {
  background: var(--color-accent);
  color: var(--color-white);
}

.exclusivos__frase {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.2;
  max-width: 360px;
  color: var(--color-white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.exclusivos__frase--medalha {
  text-shadow: 0 0 20px rgba(0, 176, 144, 0.3);
}

.exclusivos__microcopy {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  max-width: 480px;
  margin: var(--space-2xl) auto 0;
  padding: var(--space-lg) var(--space-md) 0;
  border-top: 1px solid rgba(0, 176, 144, 0.25);
  line-height: 1.8;
}

/* ========================================
   MOBILE FIXES (max-width: 767px)
   ======================================== */
@media (max-width: 767px) {
  .hero__date-line {
    animation: none;
    width: 40px;
    opacity: 1;
  }

  .nav__distances {
    margin-right: 12px;
  }

  .nav {
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(0, 42, 56, 0.1);
  }

  .nav--scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .nav__logo img {
    filter: none;
  }

  .nav__hamburger span {
    background: var(--color-primary);
  }

  .nav__dist-dot {
    color: rgba(0, 42, 56, 0.3);
  }

  .nav__progress-bar {
    background: var(--color-accent);
  }

  .hero__date-wrapper.hero-anim,
  .hero__col-logo.hero-anim {
    animation-name: heroFadeOnly;
  }

  @keyframes heroFadeOnly {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .footer__social {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer__social-link {
    font-size: 13px;
    padding: 8px 12px;
  }

  /* Hide "A Linha" on very small screens for performance */
  .linha-svg {
    display: none;
  }
}

/* ========================================
   TABLET (min-width: 768px)
   ======================================== */
@media (min-width: 768px) {
  .container {
    max-width: 720px;
    padding: 0 24px;
  }

  .nav {
    height: 72px;
  }

  .nav__logo img {
    height: 44px;
  }

  .nav__hamburger {
    display: none;
  }

  .nav__distances {
    gap: 8px;
  }

  .nav__dist-badge {
    font-size: 20px;
  }

  .nav__menu {
    position: static;
    width: auto;
    height: auto;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav__brand {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    gap: 28px;
  }

  .nav__brand::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -48px;
    left: -100vw;
    background: var(--color-white);
    clip-path: polygon(0 0, calc(100% - 56px) 0, 100% 100%, 0 100%);
    z-index: 0;
  }

  .nav__logo {
    position: relative;
    z-index: 1;
  }

  .nav__logo img {
    filter: none;
  }

  .nav__distances {
    position: relative;
    z-index: 1;
  }

  .nav__dist-dot {
    color: rgba(0, 42, 56, 0.3);
  }

  .nav__list {
    display: flex;
    gap: var(--space-md);
  }

  .nav__list li {
    margin-bottom: 0;
  }

  .nav__link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
  }

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

  .nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition-base);
    border-radius: 1px;
    box-shadow: 0 0 6px rgba(0, 176, 144, 0.3);
  }

  .nav__link:hover::after,
  .nav__link:focus-visible::after {
    width: 100%;
  }

  .nav__link--cta::after {
    display: none;
  }

  .hero {
    padding: 120px 24px 80px;
  }

  .hero__logo {
    width: 400px;
  }

  .hero__headline {
    font-size: 52px;
  }

  .hero__subheadline {
    font-size: 17px;
  }

  .hero__date {
    font-size: 38px;
    letter-spacing: 0.25em;
  }

  .hero__date-line {
    width: 60px;
    height: 2.5px;
  }

  @keyframes dateLinePulse {
    0%, 100% { width: 60px; opacity: 0.6; }
    50% { width: 80px; opacity: 1; }
  }

  .countdown__number {
    font-size: 62px;
  }

  .countdown__block {
    padding: 20px 26px;
    min-width: 92px;
  }

  .countdown__label {
    font-size: 12px;
  }

  .countdown__finished {
    font-size: 36px;
  }

  .section {
    padding: 100px 0;
  }

  .section__title {
    font-size: 42px;
  }

  .section__title::after {
    width: 90px;
    height: 3px;
  }

  .section__intro {
    font-size: 17px;
  }

  .section__content--narrow p {
    font-size: 17px;
  }

  /* Pistas: horizontal on tablet */
  .pistas {
    flex-direction: row;
    gap: 20px;
  }

  .pista {
    flex: 1;
  }

  .pista__distance {
    font-size: 52px;
  }

  /* Kit grid: 2 columns on tablet */
  .kit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .faixa-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .podium-circles {
    gap: 24px;
  }

  .premio-section__heading {
    font-size: 32px;
  }

  .map-iframe {
    height: 500px;
  }

  .cta {
    font-size: 18px;
  }

  .footer__logo {
    height: 100px;
  }

  .faq__regulamento-title {
    font-size: 34px;
  }

  .faq__question {
    font-size: 17px;
  }

  /* Exclusivos: side-by-side at tablet */
  .exclusivos {
    padding: 80px 0 60px;
  }

  .exclusivos__grid {
    flex-direction: row;
    justify-content: center;
    gap: var(--space-xl);
    align-items: flex-start;
  }

  .exclusivos__panel {
    flex: 1;
    max-width: 480px;
  }

  .exclusivos__img--medalha {
    height: 390px;
  }

  .exclusivos__img--camiseta {
    height: 390px;
  }

  .exclusivos__glow--medalha {
    width: 380px;
    height: 380px;
  }

  .exclusivos__frase {
    font-size: 28px;
  }

  .exclusivos__frase--camiseta {
    font-size: 28px;
  }

  .timeline__label {
    font-size: 18px;
  }
}

/* ========================================
   DESKTOP (min-width: 1280px)
   ======================================== */
@media (min-width: 1280px) {
  .container {
    max-width: 1200px;
    padding: 0 32px;
  }

  .nav__dist-badge {
    font-size: 22px;
  }

  .hero {
    padding: 140px 32px 100px;
    min-height: 100vh;
  }

  .hero__layout {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: var(--space-3xl);
  }

  .hero__col-logo {
    flex: 0 0 auto;
    align-items: center;
  }

  .hero__col-content {
    flex: 1;
    align-items: flex-start;
  }

  .hero__logo {
    width: 500px;
  }

  .hero__headline {
    font-size: 60px;
    letter-spacing: 0.05em;
  }

  .hero__subheadline {
    font-size: 18px;
  }

  .hero__date {
    font-size: 38px;
    letter-spacing: 0.25em;
  }

  .hero__date-line {
    width: 70px;
    height: 3px;
  }

  @keyframes dateLinePulse {
    0%, 100% { width: 70px; opacity: 0.6; }
    50% { width: 100px; opacity: 1; }
  }

  .hero__ctas {
    align-items: flex-start;
  }

  .countdown {
    justify-content: flex-start;
  }

  .countdown__number {
    font-size: 80px;
  }

  .countdown__block {
    padding: 22px 30px;
    min-width: 105px;
  }

  .countdown__label {
    font-size: 13px;
    letter-spacing: 3px;
  }

  .countdown__finished {
    font-size: 44px;
  }

  .section {
    padding: 130px 0;
  }

  .section__title {
    font-size: 56px;
    margin-bottom: var(--space-lg);
  }

  .section__title::after {
    width: 100px;
    height: 4px;
    margin-top: var(--space-md);
  }

  .section__intro {
    font-size: 18px;
  }

  .section__content--narrow p {
    font-size: 18px;
    line-height: 1.8;
  }

  /* Pistas: wider and taller */
  .pista {
    padding: 48px 32px;
  }

  .pista__distance {
    font-size: 72px;
  }

  .pista__title {
    font-size: 28px;
  }

  .pista__text {
    font-size: 16px;
    line-height: 1.8;
  }

  /* Kit grid: 3+1 on desktop */
  .kit-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .kit-card--addon {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .kit-card__img img {
    max-height: 220px;
  }

  .nav__link {
    font-size: 16px;
  }

  .cta {
    font-size: 20px;
    padding: 18px 56px;
  }

  .faq__question {
    font-size: 18px;
  }

  .faq__answer p {
    font-size: 16px;
  }

  .footer {
    padding: 100px 20px 40px;
  }

  .footer__logo {
    height: 120px;
  }

  .footer__closing {
    font-size: 26px;
  }

  .faq__regulamento-title {
    font-size: 40px;
  }

  .podium-circles {
    gap: 32px;
  }

  .podium-circle--1 {
    width: 150px;
    height: 150px;
  }

  .podium-circle--2 {
    width: 110px;
    height: 110px;
  }

  .podium-circle--3 {
    width: 85px;
    height: 85px;
  }

  .podium-circle--1 .podium-circle__rank {
    font-size: 42px;
  }

  .podium-circle--2 .podium-circle__rank {
    font-size: 32px;
  }

  .podium-circle--3 .podium-circle__rank {
    font-size: 24px;
  }

  .premio-section__heading {
    font-size: 36px;
  }

  .faixa-grid {
    grid-template-columns: repeat(5, 1fr);
    max-width: 700px;
  }

  .faixa-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .faixa-card__range {
    font-size: 30px;
  }

  .hero__deco-corner {
    width: 300px;
    height: 300px;
  }

  .section__deco-pattern {
    width: 600px;
    height: 600px;
    right: -150px;
    top: -150px;
  }

  /* Exclusivos: full desktop treatment */
  .exclusivos {
    padding: 100px 0 80px;
  }

  .exclusivos__headline {
    margin-bottom: var(--space-2xl);
  }

  .exclusivos__grid {
    gap: var(--space-3xl);
  }

  .exclusivos__img--medalha {
    height: 460px;
  }

  .exclusivos__img--camiseta {
    height: 460px;
  }

  .exclusivos__glow--medalha {
    width: 440px;
    height: 440px;
  }

  .exclusivos__frase {
    font-size: 32px;
  }

  .exclusivos__frase--camiseta {
    font-size: 32px;
  }

  .exclusivos__frase--medalha {
    font-size: 32px;
  }

  .kit-toggle__btn {
    font-size: 15px;
    padding: 12px 32px;
  }

  .exclusivos__microcopy {
    font-size: 15px;
    max-width: 640px;
  }

  .section-divider svg {
    height: 60px;
  }

  .section-divider--white-to-dark svg,
  .section-divider--dark-to-white svg {
    height: 80px;
  }

  .hero__col-content::before {
    content: '21K';
    position: absolute;
    right: -40px;
    top: -60px;
    font-family: var(--font-display);
    font-size: 280px;
    color: rgba(0, 176, 144, 0.05);
    line-height: 1;
    pointer-events: none;
    z-index: -1;
    letter-spacing: -0.02em;
  }

  .section--white::after {
    content: '';
    position: absolute;
    bottom: 60px;
    left: -40px;
    width: 160px;
    height: 160px;
    background-image: radial-gradient(circle, rgba(0, 176, 144, 0.05) 2px, transparent 2px);
    background-size: 16px 16px;
    pointer-events: none;
  }

  .section--gray::after {
    width: 300px;
    height: 300px;
    top: 60px;
    right: -80px;
    opacity: 0.6;
  }

  .timeline__label {
    font-size: 20px;
  }

  .timeline__sublabel {
    font-size: 14px;
  }
}
