@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ============================================================
   MYIB ROADMAP — CSS GLOBAL
   Identidade visual Vórtx (igual ao sistema IC)
   ============================================================ */

:root {
  --navy:        #0D1F4C;
  --navy-mid:    #0D1F4C;
  --navy-light:  #162a5e;
  --teal:        #00B4B4;
  --teal-dark:   #009999;
  --slate:       #4A5568;
  --border:      #E2E8F0;
  --white:       #FFFFFF;
  --gray-50:     #F8FAFC;
  --gray-100:    #F1F5F9;
  --gray-200:    #E2E8F0;
  --gray-300:    #CBD5E1;
  --gray-400:    #94A3B8;
  --gray-500:    #64748B;
  --gray-600:    #475569;
  --gray-700:    #334155;
  --gray-800:    #1E293B;

  --status-concluido:    #10B981;
  --status-andamento:    #3B82F6;
  --status-urgente:      #EF4444;
  --status-iniciar:      #94A3B8;
  --status-despriorizado:#CBD5E1;

  --f1: #6366F1;
  --f2: #0EA5E9;
  --f3: #F59E0B;
  --f4: #10B981;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:    0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,.1),  0 4px 6px rgba(0,0,0,.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 14px; }

body {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--gray-100);
  color: var(--gray-800);
  min-height: 100vh;
  line-height: 1.5;
}

/* ============================================================
   HEADER (idêntico ao IC)
   ============================================================ */
.site-header {
  background: var(--navy);
  color: var(--white);
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}

.header-main {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-main img { height: 52px; display: block; }

.header-titles {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.header-titles h1 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
}

.header-sub {
  font-size: 0.75rem;
  color: var(--teal);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header-update {
  text-align: right;
  line-height: 1.4;
}
.header-update span {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,.7);
}
.header-update strong { color: var(--white); font-weight: 600; }

/* ============================================================
   NAV TABS (abaixo do header)
   ============================================================ */
.site-nav {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  padding: 0 32px;
  display: flex;
  align-items: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.site-nav::-webkit-scrollbar { display: none; }

.nav-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: color .15s, border-color .15s, background .15s;
  text-decoration: none;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
}
.nav-tab:hover:not(.active) { color: var(--navy); background: #F7FAFC; }
.nav-tab.active { color: var(--teal); border-bottom-color: var(--teal); }

.nav-tab .badge {
  background: var(--gray-200);
  color: var(--gray-600);
  border-radius: 10px;
  padding: 1px 6px;
  font-size: 10px;
}
.nav-tab.active .badge { background: var(--teal); color: var(--white); }

/* ============================================================
   LAYOUT PRINCIPAL
   ============================================================ */
.main-content {
  padding: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ============================================================
   SEÇÕES / VIEWS
   ============================================================ */
.view { display: none; }
.view.active { display: block; }

/* ============================================================
   CARDS
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.card {
  background: var(--white);
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}

.card-frente-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 3px 8px;
  border-radius: 6px;
  color: white;
}
.badge-f1 { background: var(--f1); }
.badge-f2 { background: var(--f2); }
.badge-f3 { background: var(--f3); }
.badge-f4 { background: var(--f4); }

.card-count { font-size: 28px; font-weight: 700; color: var(--gray-800); line-height: 1; }
.card-label { font-size: 12px; color: var(--gray-500); margin-top: 2px; }

.progress-bar {
  height: 6px;
  background: var(--gray-100);
  border-radius: 99px;
  overflow: hidden;
  margin-top: 10px;
}
.progress-fill {
  height: 100%;
  border-radius: 99px;
  transition: width .4s ease;
}

.card-stats {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.stat-item { font-size: 11px; color: var(--gray-500); display: flex; align-items: center; gap: 4px; }
.stat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Summary row */
.summary-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}
.summary-card {
  background: var(--white);
  border-radius: 8px;
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.summary-card .num { font-size: 24px; font-weight: 700; }
.summary-card .lbl { font-size: 11px; color: var(--gray-500); }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.section-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-title::before {
  content: '';
  width: 3px;
  height: 16px;
  background: var(--teal);
  border-radius: 2px;
}

/* ============================================================
   STATUS BADGES
   ============================================================ */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}
.status-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.status-Concluído     { background: #D1FAE5; color: #065F46; }
.status-Em\ andamento { background: #DBEAFE; color: #1E40AF; }
.status-Urgente       { background: #FEE2E2; color: #991B1B; }
.status-A\ iniciar    { background: #F1F5F9; color: #475569; }
.status-Despriorizado { background: #F8FAFC; color: #94A3B8; border: 1px solid var(--gray-200); }

/* ============================================================
   TABLE
   ============================================================ */
.table-wrap {
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
}
.data-table th {
  background: var(--gray-50);
  padding: 10px 12px;
  text-align: left;
  font-weight: 600;
  color: var(--gray-600);
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gray-200);
  white-space: nowrap;
}
.data-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
}
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover { background: var(--gray-50); }
.data-table tbody tr.urgente-row { background: #FFF9F9; }

.frente-tag {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  color: white;
}

.iniciativa-text { color: var(--gray-800); font-weight: 500; }
.obs-text { font-size: 11px; color: var(--gray-400); font-style: italic; margin-top: 2px; }
.responsavel-text { color: var(--gray-600); }

.date-text { color: var(--gray-500); white-space: nowrap; font-size: 11.5px; }

.btn-edit {
  padding: 3px 8px;
  border-radius: 5px;
  background: var(--gray-100);
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
  cursor: pointer;
  font-size: 11px;
  transition: all .15s;
}
.btn-edit:hover { background: var(--navy); color: white; border-color: var(--navy); }

/* ============================================================
   FILTROS
   ============================================================ */
.filters-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.filter-select, .filter-input {
  padding: 7px 11px;
  border-radius: 7px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-700);
  font-size: 12.5px;
  outline: none;
  transition: border-color .15s;
}
.filter-select:focus, .filter-input:focus { border-color: var(--teal); }
.filter-input { flex: 1; min-width: 200px; }

/* ============================================================
   DECISÕES
   ============================================================ */
.decisions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 14px;
}

.decision-card {
  background: var(--white);
  border-radius: 10px;
  padding: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--gray-300);
}
.decision-card.critico   { border-left-color: var(--status-urgente); }
.decision-card.alta      { border-left-color: var(--status-andamento); }
.decision-card.media     { border-left-color: var(--f3); }

.decision-urgency {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.critico .decision-urgency { color: var(--status-urgente); }
.alta .decision-urgency    { color: var(--status-andamento); }
.media .decision-urgency   { color: var(--f3); }

.decision-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-800);
  margin-bottom: 10px;
  line-height: 1.4;
}

.decision-meta {
  display: flex;
  gap: 12px;
  font-size: 11px;
  color: var(--gray-400);
}

/* ============================================================
   GRUPOS (dentro de frente)
   ============================================================ */
.grupo-section { margin-bottom: 24px; }
.grupo-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: var(--navy);
  border-radius: 7px 7px 0 0;
  color: white;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .03em;
  cursor: pointer;
  user-select: none;
}
.grupo-header .grupo-count {
  margin-left: auto;
  background: rgba(255,255,255,.15);
  border-radius: 20px;
  padding: 1px 8px;
  font-size: 11px;
}
.grupo-header .chevron { transition: transform .2s; }
.grupo-header.collapsed .chevron { transform: rotate(-90deg); }
.grupo-body { border: 1px solid var(--gray-200); border-top: none; border-radius: 0 0 7px 7px; overflow: hidden; }
.grupo-body.hidden { display: none; }

/* ============================================================
   ALERT / URGENTES
   ============================================================ */
.urgentes-list { display: flex; flex-direction: column; gap: 8px; }
.urgente-item {
  background: var(--white);
  border-radius: 8px;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-left: 3px solid var(--status-urgente);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.urgente-item .ui-frente { flex-shrink: 0; margin-top: 2px; }
.urgente-item .ui-text { flex: 1; font-size: 12.5px; font-weight: 500; color: var(--gray-800); }
.urgente-item .ui-meta { font-size: 11px; color: var(--gray-400); margin-top: 2px; }
.urgente-item .ui-date { font-size: 11px; color: var(--status-urgente); font-weight: 600; white-space: nowrap; flex-shrink: 0; }

/* ============================================================
   MODAL (edição)
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--white);
  border-radius: 12px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.modal-header {
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: var(--white);
}
.modal-title { font-size: 14px; font-weight: 600; color: var(--gray-800); }
.modal-close {
  width: 28px; height: 28px;
  border-radius: 6px;
  border: none;
  background: var(--gray-100);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--gray-500);
}
.modal-close:hover { background: var(--gray-200); }

.modal-body { padding: 18px 20px; }
.modal-footer { padding: 14px 20px; border-top: 1px solid var(--gray-200); display: flex; justify-content: flex-end; gap: 10px; }

.form-group { margin-bottom: 14px; }
.form-label { display: block; font-size: 11.5px; font-weight: 600; color: var(--gray-600); margin-bottom: 5px; }
.form-control {
  width: 100%;
  padding: 8px 11px;
  border: 1px solid var(--gray-200);
  border-radius: 7px;
  font-size: 13px;
  color: var(--gray-800);
  outline: none;
  transition: border-color .15s;
  background: var(--white);
}
.form-control:focus { border-color: var(--teal); }
textarea.form-control { resize: vertical; min-height: 70px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  padding: 8px 16px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all .15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-primary { background: var(--teal); color: var(--navy); }
.btn-primary:hover { background: var(--teal-dark); }
.btn-secondary { background: var(--gray-100); color: var(--gray-700); border: 1px solid var(--gray-200); }
.btn-secondary:hover { background: var(--gray-200); }
.btn-danger { background: #FEE2E2; color: #991B1B; }
.btn-danger:hover { background: #FCA5A5; }

/* ============================================================
   GANTT SIMPLIFICADO
   ============================================================ */
.gantt-wrap { overflow-x: auto; }
.gantt-table { border-collapse: collapse; min-width: 900px; width: 100%; }
.gantt-table th, .gantt-table td { border: 1px solid var(--gray-200); }
.gantt-table th { background: var(--navy); color: white; font-size: 10px; padding: 6px 8px; text-align: center; white-space: nowrap; }
.gantt-table td { padding: 6px 10px; font-size: 12px; }
.gantt-table td.label-cell { background: var(--white); max-width: 220px; color: var(--gray-700); font-weight: 500; }
.gantt-bar { height: 14px; border-radius: 4px; background: var(--teal); }
.gantt-empty { background: transparent; }

/* ============================================================
   LOGIN PAGE
   ============================================================ */
.login-page {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
}
.login-page .site-header { position: static; }
.login-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.login-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 32px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.login-card h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 4px;
}
.login-card p {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 24px;
}
.login-error {
  background: #FEE2E2;
  color: #991B1B;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 12.5px;
  margin-bottom: 14px;
  display: none;
}
.login-error.show { display: block; }

/* ============================================================
   ADMIN (cozinha)
   ============================================================ */
.admin-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 20px;
}

.audit-log {
  background: var(--white);
  border-radius: 10px;
  padding: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.audit-item {
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 12px;
  color: var(--gray-600);
}
.audit-item:last-child { border-bottom: none; }
.audit-time { font-size: 10px; color: var(--gray-400); }

/* ============================================================
   EMPTY STATE
   ============================================================ */
.empty-state {
  text-align: center;
  padding: 48px 20px;
  color: var(--gray-400);
}
.empty-state svg { margin-bottom: 12px; opacity: .4; }
.empty-state p { font-size: 13px; }

/* ============================================================
   TOOLTIP
   ============================================================ */
[data-tooltip] { position: relative; cursor: help; }
[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gray-800);
  color: white;
  padding: 5px 9px;
  border-radius: 5px;
  font-size: 11px;
  white-space: nowrap;
  z-index: 999;
  pointer-events: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .main-content { padding: 14px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-grid { grid-template-columns: 1fr; }
  .header-update { display: none; }
  .decisions-grid { grid-template-columns: 1fr; }
  .filters-bar .filter-select { font-size: 12px; }
}

@media (max-width: 480px) {
  .cards-grid { grid-template-columns: 1fr; }
  .site-header { padding: 0 14px; }
  .header-title h1 { font-size: 13px; }
}

/* ============================================================
   AVATAR DROPDOWN
   ============================================================ */
.avatar-wrap { position: relative; }

.header-avatar {
  background: var(--teal);
  color: var(--navy);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

.avatar-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  min-width: 190px;
  z-index: 300;
  overflow: hidden;
}
.avatar-menu.open { display: block; }
.avatar-menu a {
  display: block;
  padding: 11px 16px;
  font-size: 13px;
  color: var(--gray-700);
  cursor: pointer;
  text-decoration: none;
  transition: background .1s;
}
.avatar-menu a:hover { background: var(--gray-50); }
.avatar-menu a.danger { color: #EF4444; border-top: 1px solid var(--border); }

/* ============================================================
   DASHBOARD CHARTS
   ============================================================ */
.dash-charts-row {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.frente-bar-item {
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: background .1s;
  border-radius: 4px;
  padding: 8px 6px;
  margin: 0 -6px;
}
.frente-bar-item:last-child { border-bottom: none; }
.frente-bar-item:hover { background: var(--gray-50); }

/* ============================================================
   FRENTE — DRAG & INLINE EDIT
   ============================================================ */
.check-col { width: 32px !important; padding: 0 8px !important; }
.drag-col  { width: 26px !important; padding: 0 4px !important; }
.num-col   { width: 32px; }
.del-col   { width: 36px; text-align: center; }

.drag-handle {
  cursor: grab;
  color: var(--gray-300);
  font-size: 15px;
  display: block;
  text-align: center;
  line-height: 1;
  padding: 2px;
  user-select: none;
  transition: color .15s;
}
.drag-handle:hover  { color: var(--gray-500); }
.drag-handle:active { cursor: grabbing; }

tr[data-id].dragging    { opacity: .35; }
tr[data-id].drag-over   { box-shadow: inset 0 2px 0 var(--teal); }
tr[data-id].selected-row { background: #EFF6FF !important; }

.btn-del-row {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  opacity: 0;
  transition: opacity .15s;
  padding: 2px 4px;
  line-height: 1;
}
tr:hover .btn-del-row { opacity: .6; }
.btn-del-row:hover    { opacity: 1 !important; }

.editable-cell { cursor: pointer; transition: background .1s; }
.editable-cell:hover { background: #F0FDFA; }
.editable-cell:has(input),
.editable-cell:has(select),
.editable-cell:has(textarea) { background: white; cursor: default; }

.inline-input, .inline-select {
  width: 100%;
  border: 1.5px solid var(--teal);
  border-radius: 5px;
  padding: 4px 6px;
  font-size: 12.5px;
  font-family: inherit;
  outline: none;
  background: white;
  box-shadow: 0 0 0 3px rgba(0,180,180,.1);
}
.inline-textarea {
  width: 100%;
  border: 1.5px solid var(--teal);
  border-radius: 5px;
  padding: 4px 6px;
  font-size: 12.5px;
  font-family: inherit;
  outline: none;
  resize: vertical;
  background: white;
  box-shadow: 0 0 0 3px rgba(0,180,180,.1);
}

/* ============================================================
   BOTÕES DE ADICIONAR (dentro de frentes)
   ============================================================ */
.btn-add-row {
  background: none;
  border: 1px dashed var(--gray-300);
  color: var(--gray-500);
  padding: 1px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-family: inherit;
  cursor: pointer;
  transition: all .15s;
}
.btn-add-row:hover { border-color: var(--teal); color: var(--teal); background: #F0FDFA; }

.btn-add-grupo {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  background: none;
  border: 1.5px dashed var(--gray-200);
  border-radius: 8px;
  color: var(--gray-400);
  font-size: 12px;
  font-family: inherit;
  cursor: pointer;
  text-align: center;
  transition: all .15s;
}
.btn-add-grupo:hover { border-color: var(--teal); color: var(--teal); background: #F0FDFA; }

/* ============================================================
   BULK ACTION BAR
   ============================================================ */
.bulk-bar {
  position: fixed;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: white;
  padding: 11px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  z-index: 250;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: bottom .25s cubic-bezier(.34,1.56,.64,1);
}
.bulk-bar.visible { bottom: 24px; }

/* ============================================================
   GRUPO HEADER — actions inline
   ============================================================ */
.grupo-header { justify-content: flex-start; }

@media (max-width: 768px) {
  .dash-charts-row { flex-direction: column; }
  .dash-charts-row .card:last-child { width: auto !important; }
}
