/* ===== AGROMARKET - CSS PRINCIPAL ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Montserrat:wght@600;700;800&display=swap');

:root {
  --primary: #1e6b1e;
  --primary-dark: #145214;
  --primary-light: #2d8a2d;
  --secondary: #e8a020;
  --secondary-dark: #c68010;
  --accent: #4caf50;
  --danger: #e53935;
  --warning: #ff9800;
  --info: #0288d1;
  --success: #2e7d32;
  --text-dark: #1a2e1a;
  --text-medium: #3d5c3d;
  --text-light: #6b8f6b;
  --bg-main: #f0f4f0;
  --bg-card: #ffffff;
  --bg-sidebar: #1a3a1a;
  --bg-header: #1e6b1e;
  --border: #c8ddc8;
  --shadow: 0 2px 12px rgba(30,107,30,0.12);
  --shadow-lg: 0 8px 32px rgba(30,107,30,0.18);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: all 0.25s cubic-bezier(.4,0,.2,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-main);
  color: var(--text-dark);
  min-height: 100vh;
  overflow-x: hidden;
}
h1,h2,h3 { font-family: 'Montserrat', sans-serif; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #e8f0e8; }
::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 3px; }

/* ===== LAYOUT PRINCIPAL ===== */
.app-layout {
  display: flex;
  min-height: 100vh;
}

/* ===== SIDEBAR ===== */
.sidebar {
  width: 240px;
  background: var(--bg-sidebar);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0; top: 0; bottom: 0;
  z-index: 100;
  transition: var(--transition);
  box-shadow: 4px 0 16px rgba(0,0,0,0.25);
}
.sidebar.collapsed { width: 64px; }
.sidebar-logo {
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
}
.sidebar-logo img { width: 36px; height: 36px; border-radius: 8px; }
.sidebar-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
}
.sidebar-logo-text span { color: var(--secondary); }
.sidebar.collapsed .sidebar-logo-text,
.sidebar.collapsed .nav-label,
.sidebar.collapsed .sidebar-user-info,
.sidebar.collapsed .nav-section-title { display: none; }

.nav-section-title {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.35);
  padding: 14px 16px 4px;
}
.nav-menu { flex: 1; overflow-y: auto; padding: 8px 0; }
.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  cursor: pointer;
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 8px;
  margin: 2px 8px;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.nav-item:hover { background: rgba(255,255,255,0.1); color: #fff; }
.nav-item.active { background: var(--secondary); color: #fff; font-weight: 600; }
.nav-item.active svg { color: #fff; }
.nav-icon { width: 20px; height: 20px; flex-shrink: 0; }
.nav-badge {
  margin-left: auto;
  background: var(--danger);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
}

.sidebar-footer {
  padding: 12px 8px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.sidebar-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}
.sidebar-user:hover { background: rgba(255,255,255,0.08); }
.user-avatar {
  width: 34px; height: 34px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.8rem; color: white; flex-shrink: 0;
}
.sidebar-user-info { overflow: hidden; }
.user-name { font-size: 0.82rem; font-weight: 600; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-role { font-size: 0.7rem; color: rgba(255,255,255,0.5); }

/* ===== MAIN CONTENT ===== */
.main-content {
  margin-left: 240px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  transition: margin-left 0.25s;
}
.main-content.expanded { margin-left: 64px; }

/* ===== TOPBAR ===== */
.topbar {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.topbar-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-medium);
  padding: 6px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.topbar-toggle:hover { background: var(--bg-main); }
.topbar-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  flex: 1;
}
.topbar-search {
  display: flex;
  align-items: center;
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  gap: 8px;
  width: 280px;
  transition: var(--transition);
}
.topbar-search:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(30,107,30,0.1); }
.topbar-search input {
  border: none;
  background: none;
  outline: none;
  font-size: 0.875rem;
  color: var(--text-dark);
  width: 100%;
}
.topbar-actions { display: flex; align-items: center; gap: 8px; }
.topbar-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-medium);
  padding: 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.topbar-btn:hover { background: var(--bg-main); color: var(--primary); }
.topbar-btn .badge {
  position: absolute;
  top: 2px; right: 2px;
  width: 8px; height: 8px;
  background: var(--danger);
  border-radius: 50%;
  border: 2px solid white;
}

/* ===== TICKER DE COTAÇÕES ===== */
.quotes-ticker {
  background: var(--primary-dark);
  color: white;
  padding: 8px 0;
  overflow: hidden;
  position: relative;
  height: 36px;
  cursor: default;
}
.quotes-ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track {
  display: flex;
  gap: 0;
  animation: tickerScroll 60s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 24px;
  font-size: 0.8rem;
  font-weight: 500;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.ticker-name { color: var(--secondary); font-weight: 700; }
.ticker-value { color: white; }
.ticker-change.up { color: #81c784; }
.ticker-change.down { color: #ef9a9a; }
.ticker-arrow { font-size: 0.7rem; }
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== PAGE CONTENT ===== */
.page-content {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
}
.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.page-header-left h1 { font-size: 1.4rem; color: var(--text-dark); }
.page-header-left p { font-size: 0.85rem; color: var(--text-light); margin-top: 2px; }

/* ===== CARDS ===== */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
}
.card-header {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.card-body { padding: 20px; }

/* ===== STATS GRID ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.stat-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--transition);
}
.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.stat-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.stat-info { flex: 1; min-width: 0; }
.stat-value { font-size: 1.4rem; font-weight: 700; color: var(--text-dark); line-height: 1.2; }
.stat-label { font-size: 0.75rem; color: var(--text-light); margin-top: 2px; }
.stat-change { font-size: 0.72rem; font-weight: 600; margin-top: 4px; }
.stat-change.up { color: var(--success); }
.stat-change.down { color: var(--danger); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 4px 12px rgba(30,107,30,0.35); }
.btn-secondary { background: var(--secondary); color: white; }
.btn-secondary:hover { background: var(--secondary-dark); }
.btn-outline { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-danger { background: var(--danger); color: white; }
.btn-danger:hover { background: #c62828; }
.btn-ghost { background: transparent; color: var(--text-medium); }
.btn-ghost:hover { background: var(--bg-main); color: var(--primary); }
.btn-sm { padding: 6px 12px; font-size: 0.8rem; border-radius: 6px; }
.btn-lg { padding: 12px 24px; font-size: 1rem; border-radius: 10px; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; pointer-events: none; }
.btn-icon { padding: 8px; border-radius: 8px; }

/* ===== BADGE ===== */
.badge-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.badge-green { background: #e8f5e9; color: #2e7d32; }
.badge-yellow { background: #fff8e1; color: #f57f17; }
.badge-red { background: #ffebee; color: #c62828; }
.badge-blue { background: #e3f2fd; color: #1565c0; }
.badge-gray { background: #f5f5f5; color: #616161; }
.badge-purple { background: #f3e5f5; color: #6a1b9a; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-medium);
  margin-bottom: 6px;
}
.form-label .required { color: var(--danger); margin-left: 2px; }
.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--text-dark);
  background: white;
  transition: var(--transition);
  outline: none;
  font-family: inherit;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(30,107,30,0.1); }
.form-control.error { border-color: var(--danger); }
textarea.form-control { resize: vertical; min-height: 100px; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.form-hint { font-size: 0.75rem; color: var(--text-light); margin-top: 4px; }
.form-error { font-size: 0.75rem; color: var(--danger); margin-top: 4px; }

/* ===== FILE UPLOAD ===== */
.file-upload-area {
  border: 2px dashed var(--border);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--bg-main);
}
.file-upload-area:hover, .file-upload-area.dragover {
  border-color: var(--primary);
  background: rgba(30,107,30,0.04);
}
.file-upload-area input { display: none; }
.file-upload-icon { font-size: 2rem; color: var(--text-light); margin-bottom: 8px; }
.file-upload-text { font-size: 0.875rem; color: var(--text-medium); }
.file-upload-hint { font-size: 0.75rem; color: var(--text-light); margin-top: 4px; }
.file-list { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.file-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.82rem;
}
.file-item-name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--text-dark); }
.file-item-size { color: var(--text-light); font-size: 0.72rem; }
.file-item-remove { cursor: pointer; color: var(--danger); padding: 2px; }

/* ===== TABLES ===== */
.table-wrapper { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.data-table th {
  padding: 10px 14px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
  background: var(--bg-main);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.data-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(200,221,200,0.5);
  color: var(--text-dark);
  vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(30,107,30,0.03); }

/* ===== TABS ===== */
.tabs {
  display: flex;
  gap: 2px;
  background: var(--bg-main);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.tab-btn {
  flex: 1;
  padding: 9px 16px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  transition: var(--transition);
  white-space: nowrap;
}
.tab-btn.active { background: white; color: var(--primary); box-shadow: 0 1px 6px rgba(0,0,0,0.1); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: white;
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  transform: scale(0.95) translateY(10px);
  transition: transform 0.25s, opacity 0.25s;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal-lg { max-width: 900px; }
.modal-sm { max-width: 480px; }
.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: white;
  z-index: 2;
}
.modal-title { font-size: 1rem; font-weight: 700; color: var(--text-dark); }
.modal-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  padding: 4px;
  border-radius: 6px;
  transition: var(--transition);
}
.modal-close:hover { background: var(--bg-main); color: var(--danger); }
.modal-body { padding: 24px; }
.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* ===== TOAST ===== */
.toast-container {
  position: fixed;
  top: 76px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  font-size: 0.85rem;
  min-width: 280px;
  max-width: 360px;
  pointer-events: all;
  animation: toastIn 0.3s ease;
  border-left: 4px solid var(--primary);
}
.toast.success { border-left-color: var(--success); }
.toast.error { border-left-color: var(--danger); }
.toast.warning { border-left-color: var(--warning); }
.toast.info { border-left-color: var(--info); }
@keyframes toastIn { from { opacity:0; transform: translateX(20px); } to { opacity:1; transform: translateX(0); } }

/* ===== ALERTS ===== */
.alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}
.alert-info { background: #e3f2fd; color: #0d47a1; border-left: 4px solid var(--info); }
.alert-warning { background: #fff8e1; color: #e65100; border-left: 4px solid var(--warning); }
.alert-success { background: #e8f5e9; color: #1b5e20; border-left: 4px solid var(--success); }
.alert-danger { background: #ffebee; color: #b71c1c; border-left: 4px solid var(--danger); }

/* ===== PRODUCT CARDS ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.product-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.product-card-img {
  height: 130px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}
.product-card-volume {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: var(--primary);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 10px;
}
.product-card-body { padding: 14px; }
.product-card-name { font-weight: 700; font-size: 0.9rem; color: var(--text-dark); margin-bottom: 6px; }
.product-card-info { font-size: 0.75rem; color: var(--text-light); }
.product-card-price { font-size: 1rem; font-weight: 700; color: var(--primary); margin-top: 8px; }

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: 48px 24px;
  color: var(--text-light);
}
.empty-state-icon { font-size: 3.5rem; margin-bottom: 12px; }
.empty-state h3 { font-size: 1rem; font-weight: 600; color: var(--text-medium); margin-bottom: 6px; }
.empty-state p { font-size: 0.85rem; }

/* ===== SPINNER ===== */
.spinner {
  width: 32px; height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 24px auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 16px 0 0;
}
.page-btn {
  width: 34px; height: 34px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: white;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-medium);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.page-btn:hover { border-color: var(--primary); color: var(--primary); }
.page-btn.active { background: var(--primary); color: white; border-color: var(--primary); }

/* ===== CHIP/TAG ===== */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-medium);
  cursor: pointer;
  transition: var(--transition);
}
.chip.active, .chip:hover { background: var(--primary); color: white; border-color: var(--primary); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .sidebar { transform: translateX(-100%); width: 240px; }
  .sidebar.mobile-open { transform: translateX(0); }
  .main-content { margin-left: 0 !important; }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .page-content { padding: 16px; }
  .topbar-search { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .modal-overlay { align-items: flex-end; padding: 0; }
  .modal { border-radius: 16px 16px 0 0; max-height: 94vh; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .tabs { overflow-x: auto; flex-wrap: nowrap; }
  .tab-btn { flex-shrink: 0; }
}

/* ===== ADVERTISEMENT BANNER ===== */
.ad-banner {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}
.ad-banner:hover { box-shadow: var(--shadow-lg); }
.ad-banner img { width: 100%; height: 100%; object-fit: cover; }
.ad-label {
  position: absolute;
  top: 8px; right: 8px;
  background: rgba(0,0,0,0.5);
  color: rgba(255,255,255,0.8);
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 4px;
}

/* ===== GOV BUTTON ===== */
.btn-gov {
  background: #071D41;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-gov:hover { background: #0a2d62; box-shadow: 0 4px 12px rgba(7,29,65,0.35); }
.btn-gov .gov-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.5px;
}
.btn-gov .gov-logo .gov-br { color: #FFCD07; }
