/* ── RESET & BASE ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:      #080e1a;
  --bg2:     #0d1628;
  --bg3:     #111d35;
  --border:  rgba(255,255,255,0.07);
  --blue:    #2196F3;
  --teal:    #26C6DA;
  --green:   #4ade80;
  --red:     #f87171;
  --orange:  #fb923c;
  --purple:  #a78bfa;
  --text:    #e2e8f4;
  --muted:   #7a8aaa;
  --card:    rgba(255,255,255,0.04);
  --card-h:  rgba(255,255,255,0.07);
  --radius:  16px;
  --radius-sm: 10px;
  --shadow:  0 8px 32px rgba(0,0,0,0.45);
  --grad:    linear-gradient(135deg, var(--blue), var(--teal));
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }

/* ── BACKGROUND ────────────────────────────────────────────────────────────── */
.grid-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(33,150,243,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,150,243,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.orb {
  position: fixed; border-radius: 50%; filter: blur(100px);
  pointer-events: none; z-index: 0;
}
.orb-1 { width: 600px; height: 600px; top: -200px; right: -150px; background: rgba(33,150,243,0.12); }
.orb-2 { width: 500px; height: 500px; bottom: -150px; left: -150px; background: rgba(38,198,218,0.08); }

/* ── NAVBAR ────────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 999;
  padding: 18px 0; transition: all 0.3s;
}
.navbar.scrolled {
  background: rgba(8,14,26,0.95);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 1; }

.logo { display: flex; align-items: center; gap: 10px; font-size: 1.25rem; font-weight: 700; }
.logo-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #fff;
}
.logo-sub { font-size: 0.75rem; font-weight: 500; color: var(--muted); margin-left: 2px; }

.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-link { color: var(--muted); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; display: flex; align-items: center; gap: 6px; }
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link.active { color: var(--blue); }

.nav-user { display: flex; align-items: center; gap: 12px; font-size: 0.85rem; color: var(--muted); }
.btn-ghost-sm {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.82rem; color: var(--muted); padding: 6px 12px;
  border: 1px solid var(--border); border-radius: 8px; transition: all 0.2s;
}
.btn-ghost-sm:hover { color: var(--text); border-color: rgba(255,255,255,0.15); background: var(--card); }

/* ── MAIN ──────────────────────────────────────────────────────────────────── */
main { position: relative; z-index: 1; }
.main-with-nav { padding-top: 80px; }
.page-top { padding: 40px 0 60px; }

/* ── TIPOGRAFIA ────────────────────────────────────────────────────────────── */
.gradient-text {
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(33,150,243,0.12); border: 1px solid rgba(33,150,243,0.3);
  color: var(--blue); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border-radius: 99px;
  margin-bottom: 12px;
}
.page-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; line-height: 1.2; margin: 8px 0 6px; }
.page-sub   { color: var(--muted); font-size: 0.95rem; }
.breadcrumbs { display: flex; gap: 8px; align-items: center; color: var(--muted); font-size: 0.82rem; margin-bottom: 24px; }
.breadcrumbs a:hover { color: var(--text); }
.breadcrumbs span { color: rgba(255,255,255,0.2); }

/* ── BUTTONS ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 10px; font-weight: 600; font-size: 0.92rem;
  cursor: pointer; border: none; transition: all 0.22s; white-space: nowrap;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 4px 20px rgba(33,150,243,0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(33,150,243,0.45); }
.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 8px 16px; font-size: 0.82rem; border-radius: 8px; }

/* ── ALERT ─────────────────────────────────────────────────────────────────── */
.alert-error {
  background: rgba(248,113,113,0.1); border: 1px solid rgba(248,113,113,0.3);
  color: var(--red); border-radius: 10px; padding: 12px 16px;
  font-size: 0.88rem; margin-bottom: 20px; display: flex; align-items: center; gap: 8px;
}

/* ── LOGIN ─────────────────────────────────────────────────────────────────── */
.login-page { display: flex; align-items: center; justify-content: center; min-height: 100vh; }
.login-wrap { position: relative; z-index: 1; width: 100%; max-width: 420px; padding: 24px; }
.login-card {
  background: rgba(13,22,40,0.9); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px 36px; backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}
.login-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; font-size: 1.3rem; font-weight: 700; }
.login-brand strong { font-weight: 900; }
.login-subtitle { color: var(--muted); font-size: 0.88rem; margin-bottom: 28px; }

.field { margin-bottom: 18px; }
.field label { display: flex; align-items: center; gap: 7px; font-size: 0.82rem; font-weight: 600; color: var(--muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.field input {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 16px; color: var(--text); font-size: 0.95rem;
  font-family: inherit; outline: none; transition: border-color 0.2s;
}
.field input:focus { border-color: var(--blue); background: rgba(33,150,243,0.06); }
.field input::placeholder { color: rgba(255,255,255,0.2); }

/* ── INDEX — LISTA DE CLIENTES ─────────────────────────────────────────────── */
.page-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 36px; flex-wrap: wrap; gap: 16px; }
.sync-info { font-size: 0.82rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }

.clients-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 20px; }

.client-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; cursor: pointer; transition: all 0.25s; display: block;
}
.client-card:hover { background: var(--card-h); border-color: rgba(33,150,243,0.3); transform: translateY(-3px); box-shadow: var(--shadow); }

.client-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.client-avatar {
  width: 44px; height: 44px; border-radius: 12px; background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800; color: #fff; flex-shrink: 0;
}
.client-name  { font-weight: 700; font-size: 1rem; }
.client-id    { font-size: 0.75rem; color: var(--muted); margin-top: 2px; }
.client-arrow { margin-left: auto; color: var(--muted); font-size: 0.85rem; transition: transform 0.2s; }
.client-card:hover .client-arrow { transform: translateX(4px); color: var(--blue); }

.client-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.cm { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 14px; }
.cm-label { display: block; font-size: 0.68rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.cm-value  { display: block; font-size: 1.05rem; font-weight: 700; }
.cm-value.positive { color: var(--green); }

.client-footer { font-size: 0.75rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }

.empty-state { grid-column: 1/-1; text-align: center; padding: 80px 24px; color: var(--muted); }
.empty-state i { font-size: 3rem; margin-bottom: 16px; opacity: 0.3; }

/* ── DASHBOARD ─────────────────────────────────────────────────────────────── */
.dash-topbar { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 32px; flex-wrap: wrap; gap: 20px; }
.client-avatar-lg {
  width: 52px; height: 52px; border-radius: 14px; background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; font-weight: 800; color: #fff; margin-bottom: 10px;
}

/* filtro datas */
.date-filter { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.date-presets { display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.date-presets a {
  padding: 5px 12px; font-size: 0.78rem; font-weight: 600; border-radius: 8px;
  border: 1px solid var(--border); color: var(--muted); transition: all 0.2s;
}
.date-presets a:hover  { color: var(--text); border-color: rgba(255,255,255,0.2); }
.date-presets a.active { background: rgba(33,150,243,0.15); border-color: var(--blue); color: var(--blue); }
.date-inputs { display: flex; align-items: center; gap: 8px; }
.date-inputs input {
  background: var(--card); border: 1px solid var(--border); color: var(--text);
  border-radius: 8px; padding: 8px 12px; font-size: 0.85rem; font-family: inherit; outline: none;
}
.date-inputs input:focus { border-color: var(--blue); }
.date-inputs span { color: var(--muted); font-size: 0.85rem; }

/* KPIs */
.kpi-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-bottom: 28px; }

.kpi-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 18px; display: flex; align-items: center; gap: 14px;
  transition: all 0.22s;
}
.kpi-card:hover { background: var(--card-h); border-color: rgba(33,150,243,0.2); }

.kpi-icon {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.kpi-icon.blue   { background: rgba(33,150,243,0.15);  color: var(--blue); }
.kpi-icon.green  { background: rgba(74,222,128,0.12);  color: var(--green); }
.kpi-icon.teal   { background: rgba(38,198,218,0.12);  color: var(--teal); }
.kpi-icon.purple { background: rgba(167,139,250,0.12); color: var(--purple); }
.kpi-icon.orange { background: rgba(251,146,60,0.12);  color: var(--orange); }
.kpi-icon.red    { background: rgba(248,113,113,0.12); color: var(--red); }

.kpi-label { display: block; font-size: 0.68rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.kpi-value { display: block; font-size: 1.2rem; font-weight: 800; line-height: 1.2; }

.delta { display: inline-flex; align-items: center; gap: 3px; font-size: 0.7rem; font-weight: 700; margin-top: 4px; padding: 2px 7px; border-radius: 99px; }
.delta.up   { background: rgba(74,222,128,0.12); color: var(--green); }
.delta.down { background: rgba(248,113,113,0.12); color: var(--red); }

.positive { color: var(--green); }

/* charts */
.charts-row { display: grid; gap: 20px; margin-bottom: 24px; }
.chart-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px;
}
.chart-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 10px; }
.chart-title  { font-size: 0.9rem; font-weight: 700; display: flex; align-items: center; gap: 8px; color: var(--text); }
.chart-title i { color: var(--blue); }

.chart-tabs { display: flex; gap: 4px; flex-wrap: wrap; }
.ctab {
  padding: 5px 12px; font-size: 0.78rem; font-weight: 600; border-radius: 8px;
  border: 1px solid var(--border); background: transparent; color: var(--muted);
  cursor: pointer; transition: all 0.2s; font-family: inherit;
}
.ctab:hover  { color: var(--text); border-color: rgba(255,255,255,0.2); }
.ctab.active { background: rgba(33,150,243,0.15); border-color: var(--blue); color: var(--blue); }

/* tabela */
.section-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.section-card-header { padding: 20px 24px; border-bottom: 1px solid var(--border); }

.table-wrap { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.data-table thead tr { background: rgba(255,255,255,0.03); }
.data-table th {
  padding: 12px 16px; text-align: left; font-size: 0.68rem; font-weight: 700;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em;
  white-space: nowrap;
}
.data-table th.num, .data-table td.num { text-align: right; }
.data-table td { padding: 13px 16px; border-top: 1px solid var(--border); vertical-align: middle; }
.data-table tbody tr { transition: background 0.15s; }
.data-table tbody tr:hover { background: rgba(255,255,255,0.03); }

.camp-name { max-width: 260px; font-weight: 500; }
.badge-tipo {
  font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 3px 9px; border-radius: 99px;
  background: rgba(33,150,243,0.12); color: var(--blue); white-space: nowrap;
}
.empty-row { text-align: center; color: var(--muted); padding: 40px 16px; }

/* pulse dot */
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.pulse-dot.green { background: var(--green); box-shadow: 0 0 8px var(--green); }
.pulse-dot.red   { background: var(--red); }

/* ── RESPONSIVE ────────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .kpi-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-topbar { flex-direction: column; }
  .date-filter { align-items: flex-start; }
  .clients-grid { grid-template-columns: 1fr; }
  .page-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .kpi-grid { grid-template-columns: 1fr; }
}

/* ── ABAS DE NAVEGAÇÃO DO DASHBOARD ────────────────────────────────────────── */
.dash-tabs {
  display: flex; gap: 4px; margin-bottom: 28px;
  border-bottom: 1px solid var(--border); padding-bottom: 0; flex-wrap: wrap;
}
.dtab {
  display: flex; align-items: center; gap: 7px;
  padding: 10px 18px; font-size: 0.875rem; font-weight: 600; color: var(--muted);
  border-radius: 10px 10px 0 0; border: 1px solid transparent;
  border-bottom: none; margin-bottom: -1px; cursor: pointer; transition: all 0.2s;
}
.dtab:hover { color: var(--text); background: var(--card); }
.dtab.active {
  color: var(--blue); background: var(--bg2);
  border-color: var(--border); border-bottom-color: var(--bg2);
}

/* ── TAGS ───────────────────────────────────────────────────────────────────── */
.tags-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { padding: 5px 12px; border-radius: 99px; font-size: 0.78rem; font-weight: 600; }
.tag-neg { background: rgba(248,113,113,0.12); color: var(--red); border: 1px solid rgba(248,113,113,0.25); }
.tag-pos { background: rgba(74,222,128,0.1);  color: var(--green); border: 1px solid rgba(74,222,128,0.25); }

/* ── BADGE MATCH TYPE ───────────────────────────────────────────────────────── */
.badge-match { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 3px 8px; border-radius: 99px; white-space: nowrap; }
.badge-match.exact  { background: rgba(33,150,243,0.15); color: var(--blue); }
.badge-match.phrase { background: rgba(167,139,250,0.15); color: var(--purple); }
.badge-match.broad  { background: rgba(251,146,60,0.15); color: var(--orange); }

/* ── ANÚNCIOS ───────────────────────────────────────────────────────────────── */
.ad-card { border-top: 1px solid var(--border); padding: 20px 24px; transition: background 0.15s; }
.ad-card:hover { background: rgba(255,255,255,0.02); }
.ad-card-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 14px; flex-wrap: wrap; }
.ad-type  { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.ad-campanha { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.ad-grupo    { font-size: 0.75rem; color: var(--muted); margin-top: 2px; }
.badge-status { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; padding: 3px 8px; border-radius: 99px; display: flex; align-items: center; gap: 4px; }
.badge-status i { font-size: 6px; }
.status-ok  { background: rgba(74,222,128,0.12); color: var(--green); }
.status-off { background: rgba(248,113,113,0.12); color: var(--red); }
.ad-kpis { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }
.ad-kpi  { text-align: center; }
.ad-kpi span  { display: block; font-size: 0.65rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.ad-kpi strong { font-size: 0.95rem; font-weight: 700; }
.ad-preview { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 10px; padding: 14px 16px; }
.ad-headlines { font-size: 0.9rem; font-weight: 600; color: var(--blue); margin-bottom: 6px; }
.ad-sep { color: var(--muted); margin: 0 6px; }
.ad-description { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

/* ── HORÁRIO ────────────────────────────────────────────────────────────────── */
.hours-chart { display: flex; align-items: flex-end; gap: 5px; height: 120px; }
.hour-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; cursor: default; }
.hour-bar { width: 100%; border-radius: 4px 4px 0 0; min-height: 4px; transition: opacity 0.2s; }
.hour-col:hover .hour-bar { opacity: 0.75; }
.hour-label { font-size: 0.6rem; color: var(--muted); }

/* ── DISPOSITIVOS ───────────────────────────────────────────────────────────── */
.device-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.device-icon { font-size: 1.8rem; color: var(--blue); margin-bottom: 10px; }
.device-name { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.device-pct  { font-size: 1.3rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.device-detail { font-size: 0.78rem; color: var(--muted); line-height: 1.8; margin-top: 8px; }
.bar-wrap { width: 100%; height: 8px; background: rgba(255,255,255,0.07); border-radius: 99px; overflow: hidden; }
.bar-fill { height: 100%; background: linear-gradient(90deg, var(--blue), var(--teal)); border-radius: 99px; }

/* ── RECOMENDAÇÕES ──────────────────────────────────────────────────────────── */
.rec-section-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
}
.rec-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.rec-icon-green  { background: rgba(74,222,128,0.15); color: var(--green); }
.rec-icon-blue   { background: rgba(33,150,243,0.15); color: var(--blue); }
.rec-icon-orange { background: rgba(251,146,60,0.15); color: var(--orange); }
.rec-icon-red    { background: rgba(248,113,113,0.15); color: var(--red); }
.rec-icon-teal   { background: rgba(38,198,218,0.15); color: var(--teal); }

/* ── MISC ───────────────────────────────────────────────────────────────────── */
.count-badge { font-size: 0.72rem; font-weight: 700; background: rgba(255,255,255,0.07); border: 1px solid var(--border); color: var(--muted); padding: 3px 10px; border-radius: 99px; }
.muted-cell  { color: var(--muted); font-size: 0.82rem; }

/* ── GRANULARIDADE DO GRÁFICO ───────────────────────────────────────────────── */
.gran-tabs { display: flex; gap: 2px; background: rgba(255,255,255,0.05); border-radius: 8px; padding: 3px; }
.gtab {
  padding: 5px 12px; font-size: 0.78rem; font-weight: 600; border-radius: 6px;
  border: none; background: transparent; color: var(--muted);
  cursor: pointer; transition: all 0.2s; font-family: inherit;
}
.gtab:hover  { color: var(--text); }
.gtab.active { background: var(--blue); color: #fff; box-shadow: 0 2px 8px rgba(33,150,243,0.4); }

/* ── FILTRO DE CAMPANHAS ────────────────────────────────────────────────────── */
.camp-filter { position: relative; }

.camp-trigger {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px; font-size: 0.82rem; font-weight: 600;
  background: var(--card); border: 1px solid var(--border); border-radius: 10px;
  color: var(--text); cursor: pointer; font-family: inherit; transition: all 0.2s;
  white-space: nowrap;
}
.camp-trigger:hover  { border-color: rgba(33,150,243,0.4); background: var(--card-h); }
.camp-trigger.active { border-color: var(--blue); color: var(--blue); }

.camp-dropdown {
  display: none; position: absolute; top: calc(100% + 8px); right: 0; z-index: 200;
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); min-width: 280px; max-width: 360px;
  max-height: 380px; overflow: hidden; flex-direction: column;
}
.camp-dropdown.open { display: flex; }

.camp-dropdown-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; border-bottom: 1px solid var(--border);
  font-size: 0.78rem; font-weight: 700; color: var(--muted); flex-shrink: 0;
}
.camp-clear { background: none; border: none; color: var(--blue); font-size: 0.75rem; cursor: pointer; font-family: inherit; }
.camp-clear:hover { text-decoration: underline; }

.camp-option {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 16px; cursor: pointer; transition: background 0.15s;
  font-size: 0.82rem; overflow: hidden;
}
.camp-option:hover { background: var(--card-h); }
.camp-option input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; accent-color: var(--blue); width: 14px; height: 14px; }
.camp-option span { line-height: 1.4; word-break: break-word; }

.camp-dropdown-footer {
  padding: 10px 16px; border-top: 1px solid var(--border); flex-shrink: 0;
}

/* scroll nas opções */
.camp-dropdown { overflow-y: auto; }
.camp-dropdown-header, .camp-dropdown-footer { position: sticky; background: var(--bg2); }
.camp-dropdown-header { top: 0; }
.camp-dropdown-footer { bottom: 0; }
