:root {
  --bg: #f7f5f2;
  --surface: #fffdfa;
  --text: #1b1916;
  --text-muted: #6b6459;
  --accent: #c2612f;
  --accent-soft: #fbeee6;
  --border: #e6e0d8;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #15130f;
    --surface: #1f1c17;
    --text: #f2efe9;
    --text-muted: #a8a096;
    --accent: #e0824a;
    --accent-soft: #33231a;
    --border: #332e27;
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.6 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

main {
  max-width: 34rem;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px 28px;
}

.marca { width: 72px; height: 72px; color: var(--accent); }

h1 { font-size: 1.5rem; margin: 16px 0 10px; letter-spacing: -0.02em; }

p { margin: 0 0 10px; color: var(--text-muted); }

.resumo { color: var(--text); }

.espera { font-size: 0.92rem; }

.rotas {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 6px;
  font-size: 0.9rem;
}

.rotas a,
.rotas .atual {
  padding: 5px 11px;
  border-radius: 999px;
  text-decoration: none;
}

.rotas a { color: var(--accent); }
.rotas a:hover { background: var(--accent-soft); }

.rotas .atual {
  color: var(--accent);
  background: var(--accent-soft);
  font-weight: 600;
}
