/* ============================================================
   PRECIFICAÇÃO LUCRATIVA — style.css
   Fonte: Inter | Dark: #090E15 bg, #0E151C cards, #22C55E green, #F97316 orange
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ============================================================
   CSS VARIABLES — DARK THEME (padrão)
   ============================================================ */
:root {
  --bg-main:        #090E15;
  --bg-sidebar:     #0a1019;
  --bg-card:        #0E151C;
  --bg-card-hover:  #121b25;
  --bg-input:       #0b1118;
  --bg-table-alt:   #0c1319;

  --border:         #1a2535;
  --border-light:   #1e2d42;

  --text-primary:   #f0f4f8;
  --text-secondary: #7a90a8;
  --text-muted:     #44566a;

  --green-primary:  #22C55E;
  --green-dark:     #156C36;
  --green-card:     #0a1a10;
  --green-card2:    #0e2318;

  --orange-primary: #F97316;
  --orange-dark:    #c55a0e;
  --orange-card:    #130e08;
  --orange-card2:   #1f1508;

  --olive-card:     #12180a;
  --olive-card2:    #1a2210;

  --red:            #ef4444;
  --yellow:         #eab308;
  --blue:           #3b82f6;

  --sidebar-width:  240px;
  --header-h:       60px;
  --radius:         12px;
  --radius-sm:      8px;
  --shadow:         0 2px 16px rgba(0,0,0,0.5);
  --shadow-lg:      0 4px 32px rgba(0,0,0,0.7);
  --transition:     0.2s ease;
}

/* ============================================================
   LIGHT THEME
   ============================================================ */
body.light {
  --bg-main:        #f1f5f9;
  --bg-sidebar:     #ffffff;
  --bg-card:        #ffffff;
  --bg-card-hover:  #f8fafc;
  --bg-input:       #f8fafc;
  --bg-table-alt:   #f8fafc;

  --border:         #e2e8f0;
  --border-light:   #cbd5e1;

  --text-primary:   #0f172a;
  --text-secondary: #475569;
  --text-muted:     #94a3b8;

  --green-card:     #f0fdf4;
  --green-card2:    #dcfce7;
  --orange-card:    #fff7ed;
  --orange-card2:   #ffedd5;
  --olive-card:     #fefce8;
  --olive-card2:    #fef9c3;

  --shadow:         0 2px 12px rgba(0,0,0,0.06);
  --shadow-lg:      0 4px 24px rgba(0,0,0,0.10);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-main);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  transition: background var(--transition), color var(--transition);
}

a { color: var(--green-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }
ul, ol { list-style: none; }

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ============================================================
   LAYOUT — SIDEBAR + MAIN
   ============================================================ */
.sidebar {
  width: var(--sidebar-width);
  min-height: 100vh;
  background: var(--bg-sidebar);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  position: fixed; left: 0; top: 0; bottom: 0; z-index: 100;
  transition: transform var(--transition);
  overflow-y: auto; overflow-x: hidden;
}

.main-wrapper {
  margin-left: var(--sidebar-width);
  flex: 1; min-height: 100vh;
  display: flex; flex-direction: column;
  transition: margin-left var(--transition);
}

.main-content { padding: 28px 32px; flex: 1; }

/* ============================================================
   SIDEBAR — LOGO
   ============================================================ */
.sidebar-logo {
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}

.sidebar-logo .logo-icon {
  width: 36px; height: 36px;
  background: var(--green-primary);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 900; color: #fff; flex-shrink: 0;
}

.sidebar-logo .logo-name { font-size: 13px; font-weight: 700; color: var(--text-primary); display: block; }
.sidebar-logo .logo-sub  { font-size: 10px; font-weight: 500; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; display: block; }

/* ============================================================
   SIDEBAR — NAV
   ============================================================ */
.sidebar-nav { padding: 12px 0; flex: 1; }

.nav-section-title {
  font-size: 10px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.2px; color: var(--text-muted); padding: 12px 20px 6px;
}

.nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px; font-size: 13px; font-weight: 500;
  color: var(--text-secondary); cursor: pointer;
  transition: all var(--transition); position: relative;
  white-space: nowrap; text-decoration: none;
}

.nav-item:hover { background: rgba(255,255,255,0.03); color: var(--text-primary); text-decoration: none; }

.nav-item.active {
  background: rgba(34,197,94,0.08);
  color: var(--green-primary); font-weight: 600;
}

.nav-item.active::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--green-primary); border-radius: 0 2px 2px 0;
}

.nav-item .nav-icon { font-size: 15px; width: 20px; text-align: center; flex-shrink: 0; }

/* ============================================================
   SIDEBAR — BOTTOM
   ============================================================ */
.sidebar-bottom { border-top: 1px solid var(--border); padding: 12px 16px; }

.user-info {
  display: flex; align-items: center; gap: 10px; padding: 8px;
  border-radius: var(--radius-sm); cursor: pointer; transition: background var(--transition);
}
.user-info:hover { background: rgba(255,255,255,0.03); }

.user-avatar {
  width: 32px; height: 32px; background: var(--green-dark);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff; flex-shrink: 0;
}

.user-details { flex: 1; min-width: 0; }
.user-name  { font-size: 12px; font-weight: 600; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-email { font-size: 10px; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.theme-toggle {
  display: flex; align-items: center; gap: 8px; padding: 8px; margin-top: 4px;
  border-radius: var(--radius-sm); cursor: pointer; font-size: 12px;
  color: var(--text-secondary); transition: all var(--transition);
}
.theme-toggle:hover { background: rgba(255,255,255,0.03); color: var(--text-primary); }

.toggle-switch {
  width: 36px; height: 20px; background: var(--border-light);
  border-radius: 10px; position: relative; transition: background var(--transition); flex-shrink: 0;
}
.toggle-switch::after {
  content: ''; width: 14px; height: 14px; background: #fff; border-radius: 50%;
  position: absolute; top: 3px; left: 3px; transition: transform var(--transition);
}
body.light .toggle-switch { background: var(--green-primary); }
body.light .toggle-switch::after { transform: translateX(16px); }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  height: var(--header-h);
  background: var(--bg-card); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; position: sticky; top: 0; z-index: 50;
}

.topbar-left { display: flex; align-items: center; gap: 12px; }
.topbar-title { font-size: 16px; font-weight: 700; color: var(--text-primary); }
.topbar-sub   { font-size: 12px; color: var(--text-secondary); }
.topbar-right { display: flex; align-items: center; gap: 10px; }

.hamburger {
  display: none; background: none; border: none;
  color: var(--text-primary); font-size: 22px; cursor: pointer; padding: 4px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600;
  cursor: pointer; border: none; transition: all var(--transition);
  text-decoration: none; white-space: nowrap; line-height: 1;
}

.btn-primary  { background: var(--green-primary); color: #fff; }
.btn-primary:hover { background: #16a34a; text-decoration: none; color: #fff; }

.btn-secondary { background: var(--bg-card); color: var(--text-primary); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--bg-card-hover); text-decoration: none; color: var(--text-primary); }

.btn-danger  { background: rgba(239,68,68,0.10); color: var(--red); border: 1px solid rgba(239,68,68,0.22); }
.btn-danger:hover { background: rgba(239,68,68,0.20); text-decoration: none; color: var(--red); }

.btn-orange  { background: var(--orange-primary); color: #fff; }
.btn-orange:hover { background: var(--orange-dark); text-decoration: none; color: #fff; }

.btn-sm  { padding: 6px 12px; font-size: 12px; }
.btn-lg  { padding: 12px 24px; font-size: 15px; }
.btn-block { width: 100%; justify-content: center; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
}

.card-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px;
}

.card-title { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.card-sub   { font-size: 12px; color: var(--text-secondary); margin-top: 2px; }

/* ── KPI Cards ── */
.kpi-cards {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; margin-bottom: 24px;
}

.kpi-card {
  border-radius: var(--radius); padding: 20px 18px;
  position: relative; overflow: hidden; border: 1px solid transparent;
}

.kpi-card.green  { background: var(--green-card);  border-color: rgba(34,197,94,0.15); }
.kpi-card.orange { background: var(--orange-card);  border-color: rgba(249,115,22,0.15); }
.kpi-card.olive  { background: var(--olive-card);   border-color: rgba(234,179,8,0.15); }
.kpi-card.blue   { background: #0a1220;             border-color: rgba(59,130,246,0.15); }

.kpi-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; margin-bottom: 14px;
}
.kpi-card.green  .kpi-icon { background: rgba(34,197,94,0.15);  color: var(--green-primary); }
.kpi-card.orange .kpi-icon { background: rgba(249,115,22,0.15); color: var(--orange-primary); }
.kpi-card.olive  .kpi-icon { background: rgba(234,179,8,0.15);  color: var(--yellow); }
.kpi-card.blue   .kpi-icon { background: rgba(59,130,246,0.15); color: var(--blue); }

.kpi-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 8px; }
.kpi-value { font-size: 26px; font-weight: 800; color: var(--text-primary); line-height: 1; margin-bottom: 8px; }
.kpi-hint  { font-size: 11px; color: var(--text-secondary); }
.kpi-hint .up   { color: var(--green-primary); }
.kpi-hint .down { color: var(--red); }

/* ============================================================
   GRID LAYOUTS
   ============================================================ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 16px; }
.form-row   { display: grid; gap: 16px; }
.form-row.cols-2 { grid-template-columns: 1fr 1fr; }
.form-row.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.form-row.cols-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }

label {
  display: block; font-size: 11px; font-weight: 600;
  color: var(--text-secondary); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.5px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="date"],
select, textarea {
  width: 100%;
  background: var(--bg-input); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 10px 14px;
  font-family: 'Inter', sans-serif; font-size: 13px; color: var(--text-primary);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.10);
}

input::placeholder, textarea::placeholder { color: var(--text-muted); }
select option { background: var(--bg-card); color: var(--text-primary); }
textarea { resize: vertical; min-height: 80px; }

.input-prefix { position: relative; }
.input-prefix span {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  font-size: 12px; color: var(--text-muted); pointer-events: none;
}
.input-prefix input { padding-left: 32px; }

.form-hint  { font-size: 11px; color: var(--text-muted); margin-top: 4px; }
.form-error { font-size: 11px; color: var(--red); margin-top: 4px; }

/* ============================================================
   TABLES
   ============================================================ */
.table-wrapper { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; font-size: 13px; }

thead th {
  background: var(--bg-card); padding: 12px 16px; text-align: left;
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.8px; color: var(--text-muted);
  border-bottom: 1px solid var(--border); white-space: nowrap;
}

tbody td {
  padding: 12px 16px; border-bottom: 1px solid var(--border);
  color: var(--text-primary); vertical-align: middle;
}

tbody tr:last-child td   { border-bottom: none; }
tbody tr:nth-child(even) { background: var(--bg-table-alt); }
tbody tr:hover           { background: var(--bg-card-hover); }

.td-actions { display: flex; gap: 6px; align-items: center; }

/* ============================================================
   BADGES / STATUS
   ============================================================ */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 20px;
  font-size: 11px; font-weight: 600; white-space: nowrap;
}
.badge-green  { background: rgba(34,197,94,0.12);  color: #22C55E; border: 1px solid rgba(34,197,94,0.2); }
.badge-orange { background: rgba(249,115,22,0.12); color: #F97316; border: 1px solid rgba(249,115,22,0.2); }
.badge-red    { background: rgba(239,68,68,0.12);  color: var(--red); border: 1px solid rgba(239,68,68,0.2); }
.badge-gray   { background: rgba(122,144,168,0.10); color: var(--text-secondary); border: 1px solid var(--border); }

/* ============================================================
   ALERTS / FLASH
   ============================================================ */
.alert {
  padding: 12px 16px; border-radius: var(--radius-sm); font-size: 13px;
  margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.alert-success { background: rgba(34,197,94,0.08);  border: 1px solid rgba(34,197,94,0.22);  color: #22C55E; }
.alert-error   { background: rgba(239,68,68,0.08);  border: 1px solid rgba(239,68,68,0.22);  color: var(--red); }
.alert-warning { background: rgba(234,179,8,0.08);  border: 1px solid rgba(234,179,8,0.22);  color: var(--yellow); }

/* ============================================================
   MODALS
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 200;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.modal-overlay.active { opacity: 1; pointer-events: all; }

.modal {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); width: 100%; max-width: 560px;
  max-height: 90vh; overflow-y: auto;
  transform: translateY(20px); transition: transform var(--transition);
}
.modal-overlay.active .modal { transform: translateY(0); }

.modal-header {
  padding: 20px 24px 16px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.modal-title { font-size: 15px; font-weight: 700; color: var(--text-primary); }
.modal-close { background: none; border: none; color: var(--text-secondary); font-size: 20px; cursor: pointer; }
.modal-close:hover { color: var(--text-primary); }
.modal-body   { padding: 20px 24px; }
.modal-footer { padding: 16px 24px; border-top: 1px solid var(--border); display: flex; gap: 10px; justify-content: flex-end; }

/* ============================================================
   PROGRESS BARS
   ============================================================ */
.progress-bar { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; margin-top: 6px; }
.progress-fill { height: 100%; border-radius: 3px; transition: width 0.5s ease; }
.progress-fill.green  { background: var(--green-primary); }
.progress-fill.orange { background: var(--orange-primary); }
.progress-fill.red    { background: var(--red); }
.progress-fill.yellow { background: var(--yellow); }

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 24px; gap: 16px;
}
.page-header-left h1 { font-size: 22px; font-weight: 800; color: var(--text-primary); }
.page-header-left p  { font-size: 13px; color: var(--text-secondary); margin-top: 2px; }
.page-header-right   { display: flex; gap: 10px; flex-shrink: 0; align-items: center; }

/* ============================================================
   PRICING PANEL
   ============================================================ */
.pricing-panel {
  background: rgba(249,115,22,0.05); border: 1px solid rgba(249,115,22,0.18);
  border-radius: var(--radius); padding: 20px;
}
.pricing-panel .panel-title {
  font-size: 11px; font-weight: 700; color: var(--orange-primary);
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px;
}
.pricing-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 13px;
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row .pr-label  { color: var(--text-secondary); }
.pricing-row .pr-value  { font-weight: 600; color: var(--text-primary); }

.pricing-result {
  background: rgba(34,197,94,0.07); border: 1px solid rgba(34,197,94,0.18);
  border-radius: var(--radius-sm); padding: 14px 16px; margin-top: 12px;
  display: flex; justify-content: space-between; align-items: center;
}
.pricing-result .label { font-size: 12px; color: var(--text-secondary); font-weight: 600; }
.pricing-result .value { font-size: 22px; font-weight: 800; color: var(--green-primary); }

/* ============================================================
   LOGIN PAGE
   ============================================================ */
.login-page {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center; background: var(--bg-main); padding: 20px;
}
.login-box { width: 100%; max-width: 420px; }

.login-logo { text-align: center; margin-bottom: 32px; }
.login-logo .logo-circle {
  width: 64px; height: 64px; background: var(--green-primary);
  border-radius: 18px; display: flex; align-items: center; justify-content: center;
  font-size: 30px; font-weight: 900; color: #fff; margin: 0 auto 14px;
  box-shadow: 0 0 40px rgba(34,197,94,0.3);
}
.login-logo h1 { font-size: 22px; font-weight: 800; color: var(--text-primary); }
.login-logo p  { font-size: 13px; color: var(--text-secondary); margin-top: 4px; }

.login-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-lg);
}

.login-tabs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  background: var(--bg-main); padding: 4px; border-radius: var(--radius-sm); margin-bottom: 24px;
}
.login-tab {
  padding: 9px; text-align: center; font-size: 13px; font-weight: 600;
  color: var(--text-secondary); border-radius: 6px; cursor: pointer; transition: all var(--transition);
}
.login-tab.active { background: var(--bg-card); color: var(--text-primary); box-shadow: var(--shadow); }

/* ============================================================
   EMPTY STATE
   ============================================================ */
.empty-state { text-align: center; padding: 48px 20px; }
.empty-state .empty-icon { font-size: 40px; margin-bottom: 12px; opacity: 0.6; }
.empty-state h3 { font-size: 15px; font-weight: 600; color: var(--text-secondary); margin-bottom: 6px; }
.empty-state p  { font-size: 13px; color: var(--text-muted); }

/* ============================================================
   CHART CONTAINER
   ============================================================ */
.chart-container { position: relative; width: 100%; }

/* ============================================================
   SIDEBAR OVERLAY MOBILE
   ============================================================ */
.sidebar-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.65); z-index: 99;
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1200px) {
  .kpi-cards { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 900px) {
  .kpi-cards { grid-template-columns: repeat(2,1fr); }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .form-row.cols-4 { grid-template-columns: 1fr 1fr; }
  .form-row.cols-3 { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  :root { --sidebar-width: 0px; }
  .sidebar { width: 240px; transform: translateX(-100%); }
  .sidebar.open { transform: translateX(0); box-shadow: var(--shadow-lg); }
  .sidebar-overlay.active { display: block; }
  .main-wrapper { margin-left: 0; }
  .hamburger { display: flex; }
  .main-content { padding: 20px 16px; }
  .topbar { padding: 0 16px; }
  .kpi-cards { grid-template-columns: 1fr 1fr; }
  .page-header { flex-direction: column; }
  .page-header-right { width: 100%; }
  .page-header-right .btn { flex: 1; justify-content: center; }
  .form-row.cols-2,
  .form-row.cols-3,
  .form-row.cols-4 { grid-template-columns: 1fr; }
  .modal { max-width: 100%; }
  thead th, tbody td { padding: 10px 12px; }
}
@media (max-width: 480px) {
  .kpi-cards { grid-template-columns: 1fr; }
  .kpi-value { font-size: 22px; }
  .login-card { padding: 20px 16px; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-green    { color: var(--green-primary) !important; }
.text-orange   { color: var(--orange-primary) !important; }
.text-red      { color: var(--red) !important; }
.text-muted    { color: var(--text-muted) !important; }
.text-secondary{ color: var(--text-secondary) !important; }
.text-right  { text-align: right; }
.text-center { text-align: center; }
.fw-700 { font-weight: 700; }
.fw-600 { font-weight: 600; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.flex        { display: flex; }
.flex-center { display: flex; align-items: center; }
.flex-between{ display: flex; align-items: center; justify-content: space-between; }
.w-100  { width: 100%; }
.d-none { display: none !important; }
.separator { border: none; border-top: 1px solid var(--border); margin: 16px 0; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}