:root {
  --color-navy: #0d2340;
  --color-navy-light: #163a6b;
  --color-gold: #f0a202;
  --color-gold-dark: #c47f00;
  --color-bg: #f5f6f9;
  --color-surface: #ffffff;
  --color-border: #e2e5ea;
  --color-text: #1a1f2b;
  --color-text-muted: #6b7280;
  --text-xs: 11px;
  --text-sm: 13px;
  --text-base: 14px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
}

.fc-header {
  background: var(--color-navy);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fc-header img {
  height: 96px;
  width: auto;
}

.fc-header img.fc-header-logo-lg {
  height: 175px;
  width: auto;
}

.fc-hero {
  max-width: 640px;
  margin: 56px auto 0;
  padding: 0 20px;
  text-align: center;
}

.fc-hero h1 {
  font-size: 26px;
  font-weight: 800;
  color: var(--color-navy);
  margin: 0 0 8px;
}

.fc-hero p {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  margin: 0 0 28px;
}

.fc-busca-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}

.fc-busca-input {
  flex: 1;
  height: 46px;
  padding: 0 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: var(--text-base);
  background: var(--color-surface);
}

.fc-busca-input:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(240,162,2,.15);
}

.fc-busca-btn {
  height: 46px;
  padding: 0 24px;
  background: var(--color-gold);
  color: var(--color-navy);
  border: none;
  border-radius: 8px;
  font-size: var(--text-base);
  font-weight: 700;
  cursor: pointer;
  transition: background .15s;
}

.fc-busca-btn:hover { background: var(--color-gold-dark); color: #fff; }

.fc-resultados {
  max-width: 640px;
  margin: 32px auto 60px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fc-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-gold);
  border-radius: 8px;
  padding: 16px 20px;
}

.fc-card-nome {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 4px;
}

.fc-card-linha {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.fc-card-linha strong { color: var(--color-text); font-weight: 600; }

.empty-state {
  text-align: center;
  color: var(--color-text-muted);
  font-size: var(--text-base);
  padding: 32px 0;
}

.fc-loading { text-align: center; color: var(--color-text-muted); font-size: var(--text-sm); padding: 12px 0; }

.fc-footer {
  text-align: center;
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  padding: 20px 0 32px;
}
