:root {
  --bg: #07152a; --blue: #1045a1; --accent: #e8a020; --accent2: #1ec8a0;
  --card-bg: rgba(255,255,255,0.04); --border: rgba(255,255,255,0.09);
  --text: #e8edf5; --sub: #7f93ab;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--text); min-height: 100vh; }
body::before { content: ''; position: fixed; inset: 0; background-image: linear-gradient(rgba(16,69,161,0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(16,69,161,0.12) 1px, transparent 1px); background-size: 48px 48px; pointer-events: none; z-index: 0; }
.orb { position: fixed; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: 0; opacity: 0.3; }
.orb1 { width: 500px; height: 500px; background: #1045a1; top: -200px; right: -100px; }
.page { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 36px 24px; }
header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 36px; padding-bottom: 20px; border-bottom: 1px solid var(--border); flex-wrap: wrap; gap: 12px; }
.logo-wrap { display: flex; align-items: center; gap: 12px; }
.logo-badge { width: 40px; height: 40px; background: var(--blue); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-weight: 800; font-size: 14px; color: white; box-shadow: 0 0 20px rgba(16,69,161,0.5); }
.logo-text { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; }
.logo-sub { font-size: 10px; color: var(--sub); margin-top: 2px; }
.btnVoltar { display: flex; align-items: center; gap: 6px; background: var(--card-bg); border: 1px solid var(--border); color: var(--sub); text-decoration: none; padding: 8px 14px; border-radius: 10px; font-size: 13px; transition: .15s; }
.btnVoltar:hover { background: rgba(255,255,255,0.08); color: var(--text); }
.hero { margin-bottom: 28px; }
.hero-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 10px; display: block; }
h1 { font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 800; color: #fff; }
.hero-sub { font-size: 13px; color: var(--sub); margin-top: 6px; }
.busca-wrap { margin-bottom: 24px; }
#busca { width: 100%; background: var(--card-bg); border: 1px solid var(--border); color: var(--text); padding: 12px 16px; border-radius: 12px; font-size: 14px; font-family: 'DM Sans', sans-serif; outline: none; transition: .15s; }
#busca::placeholder { color: var(--sub); }
#busca:focus { border-color: var(--blue); background: rgba(16,69,161,0.1); }
.layout { display: grid; grid-template-columns: 280px 1fr; gap: 16px; }
.lista { background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.item { padding: 14px 16px; border-bottom: 1px solid var(--border); cursor: pointer; transition: .15s; display: flex; align-items: center; gap: 12px; }
.item:last-child { border-bottom: none; }
.item:hover { background: rgba(255,255,255,0.05); }
.item.ativo { background: rgba(16,69,161,0.2); border-left: 3px solid var(--blue); }
.item-icon { font-size: 20px; flex-shrink: 0; }
.item-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14px; color: #fff; }
.item-sub { font-size: 11px; color: var(--sub); margin-top: 2px; }
.item.ativo .item-sub { color: rgba(255,255,255,0.6); }
.detalhe { background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; padding: 24px; min-height: 400px; }
.detalhe-vazio { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; color: var(--sub); }
.detalhe-vazio .big { font-size: 40px; }
.det-title { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.det-sub { font-size: 13px; color: var(--sub); margin-bottom: 24px; }
.docs-section { margin-top: 8px; }
.docs-title { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--sub); font-weight: 600; margin-bottom: 12px; }
.doc-btn { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; background: rgba(16,69,161,0.2); border: 1px solid rgba(16,69,161,0.4); color: var(--text); padding: 10px 16px; border-radius: 12px; font-size: 13px; margin: 0 8px 8px 0; transition: .15s; }
.doc-btn:hover { background: rgba(16,69,161,0.4); border-color: rgba(16,69,161,0.7); color: #fff; }
.doc-btn .ic { font-size: 16px; }
@media(max-width:768px){ .layout{grid-template-columns:1fr} }
