:root {
  /* Paleta inspirada no Air Max 95 Gutta/Grutta Green */
  --green-dark: #4A6536;   /* Verde Rua */
  --green-mid:  #6DAA5F;   /* Verde Sneaker */
  --yellow:     #F4C542;   /* Amarelo detalhe (original) */
  --orange:     #F09A32;   /* Novo destaque (original) */
  --highlight:  #FFD700;   /* Amarelo Ouro/Mais vibrante para detalhes */
  --bg:         #ffffff;
  --muted:      #f5f5f5;
  --text:       #111111;
  --card:       #ffffff;
  --radius:     12px;
  --gap:        24px;
  --max-width:  1100px;
}

/* RESET BÁSICO */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: "Urbanist", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: var(--green-dark);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  z-index: 999;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(240,240,240,0.7));
  backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--highlight); /* Usando o novo amarelo vibrante */
  z-index: 50;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 20px;
}
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 16px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  text-decoration: none;
  /* Mantendo a fonte original, mas ajustando para uma mais acessível se necessário */
  font-family: "Urbanist", sans-serif; /* Alterando para Urbanist para consistência e legibilidade */
  font-weight: 600;
  color: var(--green-dark);
  padding: 6px 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--highlight); /* Detalhe em amarelo mais vibrante */
  color: var(--text); /* Texto escuro para contraste no amarelo */
}
.main-nav a.highlight {
  background: var(--highlight); /* Detalhe em amarelo mais vibrante */
  color: var(--text); /* Texto escuro para contraste no amarelo */
  box-shadow: 0 0 8px rgba(255,215,0,0.6);
}

/* HERO */
.hero {
  position: relative;
  min-height: 480px; /* Aumentando a altura para acomodar melhor a imagem de fundo */
  display: flex;
  align-items: center;
  padding: 60px 20px;
  background: linear-gradient(180deg, rgba(74,101,54,0.05), rgba(255,215,0,0.1)); /* Ajustando o gradiente */
  border-bottom: 3px solid var(--highlight);
}
.hero-overlay {
  background-image: url('hero-background.jpg');
  position: absolute;
  inset: 0;
  /* A imagem será definida no próximo passo */
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px;
  text-align: left;
  background: rgba(255, 255, 255, 0.85); /* Fundo semi-transparente para melhor leitura */
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.hero-title {
  font-family: "Urbanist", sans-serif; /* Simplificando a fonte para melhor acessibilidade e consistência */
  font-size: 56px; /* Aumentando o tamanho */
  color: var(--green-dark);
  margin: 0 0 10px 0;
  line-height: 1.1;
  font-weight: 700;
}
.hero-title span {
  display: block;
  color: var(--highlight); /* Destacando o "da Rua pro Mundo" em amarelo vibrante */
  font-size: 28px;
  font-weight: 600;
}
.hero-sub {
  color: var(--text);
  max-width: 720px;
  font-weight: 500;
}
.hero-controls {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.btn {
  font-family: "Urbanist", sans-serif;
  border: none;
  padding: 12px 20px; /* Aumentando o padding */
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none; /* Para o botão que é link */
  display: inline-block;
}
.btn.primary {
  background: var(--highlight); /* Amarelo vibrante */
  color: var(--text); /* Texto escuro para contraste */
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(255,215,0,0.4);
}
.btn.primary:hover {
  background: var(--green-dark);
  color: #fff;
}
.btn.audio {
  border: 2px solid var(--highlight);
  color: var(--green-dark);
  background: transparent;
}
.btn.audio:hover {
  background: var(--green-mid);
  color: #fff;
  border-color: var(--green-mid);
}

/* SEÇÕES GERAIS */
.section {
  padding: 80px 20px; /* Aumentando o padding */
  border-bottom: 2px solid rgba(255,215,0,0.3);
}
.section.alt {
  background: var(--muted);
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-title {
  font-family: "Urbanist", sans-serif;
  color: var(--green-dark); /* Título principal em verde escuro */
  font-size: 42px;
  margin-bottom: 20px;
  text-shadow: 1px 1px rgba(0,0,0,0.05);
  border-bottom: 3px solid var(--highlight); /* Sublinhado amarelo vibrante */
  display: inline-block;
  padding-bottom: 5px;
}
.lead {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 30px;
  font-size: 1.15em;
}

/* TIMELINE */
.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.timeline-item {
  flex: 1 1 280px;
  padding: 20px;
  border-radius: var(--radius);
  background: #fff;
  border: 2px solid var(--highlight); /* Borda sólida em amarelo vibrante */
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.timeline-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.timeline-item h3 {
  color: var(--green-dark);
  border-bottom: 2px dotted var(--highlight);
  padding-bottom: 5px;
}

/* QUOTE */
.quote, .center-quote {
  border-left: 6px solid var(--highlight); /* Aumentando a espessura da borda */
  padding: 15px 20px;
  font-style: italic;
  color: #333;
  background: linear-gradient(90deg, rgba(255,215,0,0.15), rgba(255,255,255,0)); /* Fundo com gradiente mais sutil */
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 30px 0;
}
.center-quote {
  border-left: none;
  border-top: 6px solid var(--highlight);
  border-bottom: 6px solid var(--highlight);
  text-align: center;
  font-size: 1.2em;
  padding: 20px;
  background: var(--muted);
  border-radius: var(--radius);
}

/* MEDIA GRID */
.media-grid {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Ajustando o minmax */
  gap: 30px;
  margin-top: 30px;
}
.media-grid figure {
  margin: 0;
  padding: 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
}
.media-grid img {
  width: 100%;
  height: 300px; /* Aumentando a altura */
  object-fit: cover;
  border-bottom: 3px solid var(--highlight);
  transition: transform 0.5s ease;
}
.media-grid img:hover {
  transform: scale(1.05);
}
.media-grid figcaption {
  padding: 10px 15px;
  font-style: italic;
  font-size: 0.9em;
  color: #555;
}

/* CARDS */
.cards {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.card {
  padding: 20px;
  background: var(--card);
  border-radius: var(--radius);
  border: 2px solid var(--green-mid);
  transition: all 0.3s ease;
}
.card:hover {
  border-color: var(--highlight);
  box-shadow: 0 6px 18px rgba(255,215,0,0.3);
}
.card h3 {
  color: var(--highlight); /* Título do card em amarelo vibrante */
  margin-bottom: 8px;
  font-size: 1.4em;
}

/* LISTA DE PESSOAS */
.people-list {
  list-style: none;
  padding: 0;
  columns: 2;
  gap: 24px;
  margin-top: 30px;
  font-size: 1.1em;
}
.people-list li {
  margin-bottom: 12px;
  padding-left: 1.5em;
  position: relative;
}
.people-list li::before {
  content: "👟"; /* Ícone de tênis como marcador */
  position: absolute;
  left: 0;
  color: var(--highlight);
}

/* MAPA / FINAL */
.map-placeholder {
  border: 4px dashed var(--highlight); /* Borda mais grossa em amarelo */
  border-radius: var(--radius);
  padding: 60px;
  text-align: center;
  font-weight: 700;
  color: var(--green-dark);
  font-size: 1.2em;
  margin: 40px 0;
  background: rgba(255,215,0,0.05);
}
.final-quote {
  font-size: 1.5em;
  font-style: italic;
  text-align: center;
  color: var(--green-dark);
  margin: 40px 0;
}
.credits {
  text-align: center;
  font-size: 0.9em;
  color: #666;
}
.final-actions {
  text-align: center;
  margin-top: 30px;
}

/* FOOTER */
.site-footer {
  border-top: 3px solid var(--highlight);
  padding: 30px 20px;
  text-align: center;
  background: var(--muted);
  font-weight: 500;
  font-size: 0.9em;
}
.site-footer a {
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 600;
}
.site-footer a:hover {
  text-decoration: underline;
  color: var(--highlight);
}

/* FOCUS / ACESSIBILIDADE */
:focus {
  outline: 3px solid var(--highlight); /* Usando o novo amarelo vibrante para o foco */
  outline-offset: 4px; /* Aumentando o offset */
  border-radius: 4px;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .main-nav ul {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center; /* Centralizando a navegação em telas menores */
  }
  .header-inner {
    flex-direction: column;
    gap: 10px;
  }
  .hero-title {
    font-size: 42px;
  }
  .hero-title span {
    font-size: 24px;
  }
  .section-title {
    font-size: 32px;
  }
  .people-list {
    columns: 1;
  }
  .timeline {
    flex-direction: column;
  }
}

