.topbar {
  background-color: #333;
  font-family: "Roboto";
  font-size: 12px;
}
.topbar .inner {
  padding: 5px 0px;
}
.topbar .inner * {
  color: #bfbfbf;
}
.topbar .inner a {
  margin-right: 6px;
}
.topbar .inner a:hover {
  color: #fff;
}
.topbar .inner a:hover i {
  color: #fff;
}
.topbar .access-drop {
  background-color: #333;
}
.blb-header {
  background: linear-gradient(135deg, #B3D353 0%, #a0c43f 100%);
  padding: 16px 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.blb-header .header-search {
  position: relative;
  max-width: 420px;
  width: 100%;
}
.blb-header .header-search input {
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0 44px 0 16px;
  font-size: 14px;
  background: #fff;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.blb-header .header-search input:focus {
  outline: none;
  border-color: #02684C;
  box-shadow: 0 0 0 3px rgba(2, 104, 76, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
}
.blb-header .header-search button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #02684C;
  font-size: 18px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.15s;
}
.blb-header .header-search button:hover {
  background: rgba(2, 104, 76, 0.08);
}
.blb-header a {
  margin-right: 10px;
  text-decoration: none;
}
.blb-header a:hover {
  text-decoration: none;
}
.blb-header a:hover i {
  color: #111;
}
.blb-header a i {
  font-size: 28px;
  color: #02684C;
  transition: color 0.2s;
}
.blb-header .blb-fav-badge {
  position: absolute;
  top: -10px;
  right: -8px;
  background: #e74c3c;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}
.blb-header .blb-user-thumb {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.blb-offcanvas-brand {
  padding: 40px 0 16px;
}
.blb-offcanvas-brand img {
  width: 140px;
  display: block;
  margin: 0 auto;
}
.blb-offcanvas-search {
  padding: 0 0 16px;
}
.blb-offcanvas-search .header-search {
  position: relative;
}
.blb-offcanvas-search .header-search input {
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0 44px 0 16px;
  font-size: 14px;
  background: #fff;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.blb-offcanvas-search .header-search button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #02684C;
  font-size: 18px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
}
.blb-offcanvas-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.blb-offcanvas-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 8px;
  color: #e5e7eb;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.blb-offcanvas-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
}
.blb-offcanvas-link--danger {
  background: rgba(231, 76, 60, 0.15);
  color: #ef4444;
}
.blb-offcanvas-link--danger:hover {
  background: rgba(231, 76, 60, 0.25);
  color: #f87171;
}
.blb-offcanvas-link--logout {
  background: rgba(231, 76, 60, 0.12);
  color: #f87171;
  font-weight: 600;
}
.blb-offcanvas-link--logout:hover {
  background: rgba(231, 76, 60, 0.22);
  color: #fca5a5;
}
.footer {
  margin-top: 20px;
  background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
  padding: 20px 15px;
  color: #f4f6f7;
  font-size: 13px;
}
.footer-sticky.sticky-fixed {
  position: fixed;
  bottom: 0px !important;
  width: 100%;
}
.blb-item {
  position: relative;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.blb-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.blb-item img {
  border-radius: 12px 12px 0 0;
  width: 100%;
  display: block;
  aspect-ratio: 0.6666666667;
  object-fit: cover;
}
.blb-item .blb-item-meta {
  padding: 12px 14px;
}
.blb-item .blb-item-meta .titulo {
  font-size: 13px;
  font-weight: 600;
  color: #2c3e50;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blb-item .blb-item-meta .assunto {
  font-size: 12px;
  color: #6c757d;
  margin-top: 4px;
}
.blb-cat {
  border-radius: 12px;
  padding: 24px 18px;
  background: #fff;
  position: relative;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: 1px solid #eef1f5;
}
.blb-cat:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.blb-cat .nome {
  font-size: 18px;
  font-weight: 600;
}
.blb-cat .nome i {
  font-size: 22px;
  margin-right: 8px;
}
.blb-cat .total {
  margin-top: 10px;
}
.blb-cat .total .blb-badge {
  display: inline-block;
  background: #eef1f5;
  color: #6c757d;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
}
body, html {
  background-color: #f5f7fa;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: #2c3e50;
}
.blb-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.blb-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}
.blb-card .blb-card-header {
  padding: 18px 24px;
  border-bottom: 1px solid #eef1f5;
  background: #fafbfc;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  color: #2c3e50;
}
.blb-card .blb-card-header i {
  color: #02684C;
  font-size: 18px;
}
.blb-card .blb-card-header a {
  margin-left: auto;
  font-size: 13px;
  color: #02684C;
  text-decoration: none;
}
.blb-card .blb-card-header a:hover {
  text-decoration: underline;
}
.blb-card .blb-card-body {
  padding: 24px;
}
.blb-input {
  height: 42px;
  border-radius: 8px;
  border: 1px solid #dce1e6;
  padding: 0 14px;
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  background: #fff;
  color: #2c3e50;
  box-sizing: border-box;
}
.blb-input:focus {
  border-color: #02684C;
  box-shadow: 0 0 0 3px rgba(2, 104, 76, 0.08);
  outline: none;
}
.blb-input-sm {
  height: 34px;
  padding: 0 10px;
  font-size: 13px;
}
.blb-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.blb-tags a {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  background: #e9ecef;
  color: #2c3e50;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.15s;
}
.blb-tags a:hover {
  background: #dce1e6;
}
.blb-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.blb-text-muted {
  color: #6c757d;
}
.blb-mt-2 {
  margin-top: 12px;
}
.blb-mb-2 {
  margin-bottom: 12px;
}
.blb-section {
  margin-top: 24px;
  margin-bottom: 24px;
}
.blb-breadcrumb {
  margin-bottom: 12px !important;
}
.blb-modal-header {
  padding: 16px 20px;
  border-bottom: 1px solid #eef1f5;
  background: #fafbfc;
}
.blb-modal-header .modal-title {
  font-weight: 600;
  font-size: 16px;
  color: #2c3e50;
}
.blb-modal-body {
  padding: 20px;
}
.blb-modal-footer {
  padding: 12px 20px;
  border-top: 1px solid #eef1f5;
  background: #fafbfc;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
.blb-btn-sm {
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 6px;
}
.blb-form-group {
  margin-bottom: 18px;
}
.blb-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  margin-bottom: 6px;
}
.blb-form-group input, .blb-form-group select, .blb-form-group textarea {
  height: 42px;
  border-radius: 8px;
  border: 1px solid #dce1e6;
  padding: 0 14px;
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  background: #fff;
  color: #2c3e50;
  box-sizing: border-box;
}
.blb-form-group input:focus, .blb-form-group select:focus, .blb-form-group textarea:focus {
  border-color: #02684C;
  box-shadow: 0 0 0 3px rgba(2, 104, 76, 0.08);
  outline: none;
}
.blb-form-group textarea {
  height: auto;
  padding: 10px 14px;
  min-height: 80px;
  resize: vertical;
}
.blb-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
  line-height: 1.2;
  text-decoration: none;
}
.blb-btn-primary {
  background: linear-gradient(135deg, #02684C 0%, #014a36 100%);
  color: #fff;
}
.blb-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(2, 104, 76, 0.3);
}
.blb-btn-secondary {
  background: #e9ecef;
  color: #2c3e50;
}
.blb-btn-secondary:hover {
  background: #dee2e6;
}
.blb-btn-danger {
  background: #e74c3c;
  color: #fff;
}
.blb-btn-danger:hover {
  background: #c0392b;
}
.blb-btn-warning {
  background: #f5b041;
  color: #fff;
}
.blb-btn-warning:hover {
  background: #e0a030;
}
.blb-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.blb-table th, .blb-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
}
.blb-table th {
  background: #f8f9fa;
  font-weight: 600;
  color: #555;
}
.blb-table tr:last-child td {
  border-bottom: none;
}
.blb-table tr:hover td {
  background: #f8f9fa;
}
.blb-table-striped tr:nth-child(even) td {
  background: #f8f9fa;
}
.blb-alert {
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 20px;
  font-size: 14px;
}
.blb-alert-red {
  background: #fce8e6;
  border-left: 4px solid #e74c3c;
  color: #5c1a16;
}
.blb-alert-yellow {
  background: #fff8e1;
  border-left: 4px solid #f5b041;
  color: #5d4a1f;
}
.blb-alert-green {
  background: #e8f5e9;
  border-left: 4px solid #27ae60;
  color: #1b5e20;
}
.blb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
@media (max-width: 768px) {
  .blb-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .blb-grid {
    grid-template-columns: 1fr;
  }
}
