/* ── Tema compartilhado FipeCheck ───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

:root {
  --bg: #0a0e27;
  --bg2: #0f1424;
  --bg3: #1a1f3a;
  --border: #252b4a;
  --text: #d7def3;
  --text-muted: #8b92b2;
  --accent: #4dabf7;
  --red: #ff4d4d;
  --red-hover: #ff3333;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.7;
}

/* ── Navbar ──────────────────────────────────────────────────── */
.fc-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(8,16,32,0.45);
}
.fc-navbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.fc-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.fc-brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}
.fc-brand-name {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
}
.fc-brand-sub {
  font-size: 10px;
  font-weight: 700;
  color: #4F89B8;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: -2px;
}
.fc-nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.fc-nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.2s;
}
.fc-nav-links a:hover,
.fc-nav-links a.active { color: var(--text); }
.fc-nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 800 !important;
  box-shadow: 0 4px 12px rgba(255,77,77,0.25);
}
.fc-nav-cta:hover { background: var(--red-hover) !important; }

/* ── Page wrapper ────────────────────────────────────────────── */
.fc-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}

/* ── Typography ──────────────────────────────────────────────── */
h1 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-top: 40px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 28px;
  margin-bottom: 10px;
}
p { color: var(--text-muted); margin-bottom: 14px; }
ul, ol { color: var(--text-muted); padding-left: 24px; margin-bottom: 14px; }
li { margin-bottom: 6px; }
strong { color: var(--text); }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Cards / highlights ──────────────────────────────────────── */
.fc-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 20px;
}
.fc-highlight {
  background: rgba(255,193,7,0.08);
  border-left: 4px solid #ffc107;
  border-radius: 4px;
  padding: 16px 20px;
  margin: 20px 0;
  color: var(--text-muted);
}
.fc-highlight strong { color: #ffd43b; }

.fc-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: var(--bg3);
  color: var(--accent);
  border: 1px solid var(--border);
  margin-right: 6px;
  margin-bottom: 6px;
}

/* ── Feature grid ────────────────────────────────────────────── */
.fc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.fc-feature-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: 12px;
  padding: 22px;
}
.fc-feature-card h3 { color: var(--accent); margin-top: 0; }

/* ── Page header banner ──────────────────────────────────────── */
.fc-page-header {
  background: linear-gradient(135deg, #0f1d40 0%, #1a1259 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  margin-bottom: 40px;
}
.fc-page-header h1 { font-size: 2rem; }
.fc-page-header p { font-size: 16px; margin: 0; }

/* ── CTA section ─────────────────────────────────────────────── */
.fc-cta-section {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  margin: 40px 0;
  text-align: center;
}
.fc-cta-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 12px 28px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(255,77,77,0.25);
}
.fc-cta-btn:hover { background: var(--red-hover); text-decoration: none; }

/* ── Form ────────────────────────────────────────────────────── */
.fc-form { display: flex; flex-direction: column; gap: 16px; }
.fc-form label { font-weight: 700; color: var(--text); margin-bottom: 4px; display: block; font-size: 14px; }
.fc-form input,
.fc-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg3);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
}
.fc-form input:focus,
.fc-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(77,171,247,0.1);
}
.fc-form textarea { min-height: 140px; resize: vertical; }
.fc-form button {
  padding: 13px 28px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
}
.fc-form button:hover { background: var(--red-hover); }

/* ── Footer ──────────────────────────────────────────────────── */
.fc-footer {
  background: #06080f;
  border-top: 1px solid var(--border);
  padding: 36px 20px;
  text-align: center;
  margin-top: 60px;
}
.fc-footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  list-style: none;
  padding: 0;
}
.fc-footer-links a { color: var(--text-muted); font-size: 14px; text-decoration: none; }
.fc-footer-links a:hover { color: var(--text); }
.fc-footer-copy { color: var(--text-muted); font-size: 13px; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .fc-navbar-inner { flex-direction: column; gap: 12px; }
  .fc-nav-links { flex-wrap: wrap; justify-content: center; gap: 12px; }
  h1 { font-size: 1.7rem; }
  .fc-page-header { padding: 24px 18px; }
}
