/* ========================================
   DESIGN SYSTEM CIEGES - COMPONENTES CSS
   ======================================== */

/* Este arquivo contém todos os componentes CSS prontos para uso
   em projetos governamentais do Estado do Acre */

/* ========================================
   VARIÁVEIS CSS - Sistema de Design Governamental
   ======================================== */
:root {
  /* Cores Primárias Governamentais */
  --primary-blue: #023E88;
  --primary-blue-light: #0373CD;
  --primary-blue-dark: #001f44;
  
  /* Cores Secundárias (Identidade Brasileira) */
  --secondary-green: #00b75e;
  --secondary-green-light: #10b981;
  --secondary-orange: #ea580c;
  --secondary-yellow: #f9cf4d;
  
  /* Tons Neutros */
  --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;
  --gray-900: #0f172a;
  
  /* Cores de Estado */
  --success: #22c55e;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: #06b6d4;
  
  /* Sombras */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  /* Bordas */
  --border-radius-sm: 0.375rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 0.75rem;
  --border-radius-xl: 1rem;
  
  /* Espaçamentos */
  --spacing-xs: 0.5rem;
  --spacing-sm: 0.75rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  
  /* Tipografia */
  --font-primary: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Source Sans Pro', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ========================================
   TIPOGRAFIA GOVERNAMENTAL
   ======================================== */
body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-700);
  background-color: var(--gray-50);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--gray-900);
  margin: 0 0 var(--spacing-md) 0;
  letter-spacing: -0.01em;
}

h1 { 
  font-size: 2.5rem; 
  font-weight: 700;
  line-height: 1.1;
}

h2 { 
  font-size: 2rem; 
  font-weight: 600;
  line-height: 1.15;
}

h3 { 
  font-size: 1.5rem; 
  font-weight: 600;
}

h4 { 
  font-size: 1.25rem; 
  font-weight: 600;
}

h5 { 
  font-size: 1.125rem; 
  font-weight: 500;
}

h6 { 
  font-size: 1rem; 
  font-weight: 500;
}

p {
  margin: 0 0 var(--spacing-md) 0;
  color: var(--gray-600);
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.6;
}

.lead {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
}

/* ========================================
   HEADER GOVERNAMENTAL AC.GOV.BR
   ======================================== */
.top_bar {
    display: flex;
    flex-direction: row;
  background-color: var(--primary-blue);
    position: relative;
  min-height: 44px;
}

.top_bar .top_menu {
    display: flex;
    flex-direction: row;
  justify-content: space-between;
    width: 100%;
    height: 40px;
  align-items: center;
}

.top_bar .top_menu::after {
  content: '';
    width: 100%;
    height: 4px;
  background: linear-gradient(to right, var(--secondary-yellow), #c5c852, var(--secondary-green), var(--secondary-yellow));
    position: absolute;
  bottom: 0;
  left: 0;
    z-index: 1;
}

.top_bar .top_logo {
    display: flex;
    height: 40px;
  flex: 1;
    align-items: center;
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 800;
  font-family: var(--font-heading);
  text-decoration: none;
  padding-left: 0;
}

.top_bar .nav_top {
  display: flex;
  align-items: center;
}

.top_bar .brasao-seplag ul {
    display: flex;
    text-decoration: none;
    list-style: none;
    align-items: center;
    margin: 0;
  padding: 0;
  gap: 20px;
}

.top_bar .brasao-seplag ul li a {
    text-decoration: none;
    color: #FFFFFF;
  opacity: 0.9;
    font-size: 12px;
  font-weight: 500;
  font-family: var(--font-primary);
  padding: 4px 8px;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.top_bar .brasao-seplag ul li a:hover {
  opacity: 1;
    color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.1);
}

/* ========================================
   NAVEGAÇÃO PRINCIPAL MODERNA
   ======================================== */
.main-navigation {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--gray-200);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.main-navigation:hover {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.main-navigation .navbar {
  padding: 0.75rem 0;
  margin-bottom: 0;
}

/* Logo e Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary-blue) !important;
    text-decoration: none;
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-brand::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  transition: width 0.3s ease;
}

.navbar-brand:hover::after {
  width: 100%;
}

.navbar-brand:hover {
  color: var(--primary-blue-dark) !important;
  transform: translateY(-1px);
}

.navbar-brand img,
.navbar-brand .brand-logo {
  height: 45px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease;
}

.navbar-brand:hover img,
.navbar-brand:hover .brand-logo {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
  transform: scale(1.05);
}

.navbar-brand span,
.navbar-brand .brand-text {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  transition: all 0.3s ease;
}

.navbar-brand:hover .brand-text {
  background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Menu de Navegação */
.navbar-nav {
  gap: 0.25rem;
}

.navbar-nav .nav-item {
  position: relative;
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: var(--gray-700) !important;
  padding: 0.875rem 1.25rem !important;
  border-radius: var(--border-radius-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  border: 2px solid transparent;
    overflow: hidden;
}

.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  border-radius: var(--border-radius-lg);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.navbar-nav .nav-link:hover {
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 62, 136, 0.2);
  border-color: var(--primary-blue);
}

.navbar-nav .nav-link:hover::before {
  opacity: 1;
}

.navbar-nav .nav-link:hover .breadcrumb-icon,
.navbar-nav .nav-link:hover .nav-text,
.navbar-nav .nav-link:hover i {
  color: white !important;
  position: relative;
  z-index: 1;
}

.navbar-nav .nav-link.active {
  color: var(--primary-blue) !important;
  background: rgba(2, 62, 136, 0.08);
  border: 2px solid var(--primary-blue);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(2, 62, 136, 0.15);
}

.navbar-nav .nav-link.active::before {
  opacity: 0;
}

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: var(--primary-blue);
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(2, 62, 136, 0.3);
}

/* Ícones nos links */
.navbar-nav .nav-link i {
  font-size: 1rem;
  transition: all 0.3s ease;
  opacity: 0.8;
  width: 1.25rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.navbar-nav .nav-link:hover i,
.navbar-nav .nav-link.active i {
  opacity: 1;
  transform: scale(1.1);
}

/* Texto dos links */
.navbar-nav .nav-link .nav-text {
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.navbar-nav .nav-link:hover .nav-text,
.navbar-nav .nav-link.active .nav-text {
  font-weight: 700;
}

/* Toggle Button */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
  border-radius: var(--border-radius-md);
  transition: all 0.3s ease;
  background: transparent;
  position: relative;
}

.navbar-toggler::before {
  content: '';
  position: absolute;
  top: 0;
    left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  border-radius: var(--border-radius-md);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.navbar-toggler:hover::before {
  opacity: 0.1;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(2, 62, 136, 0.25);
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%282, 62, 136, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  transition: all 0.3s ease;
}

.navbar-toggler:hover .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%282, 62, 136, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  transform: scale(1.1);
}

/* Animação de entrada para os itens do menu */
.navbar-nav .nav-item {
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.navbar-nav .nav-item:nth-child(1) { animation-delay: 0.1s; }
.navbar-nav .nav-item:nth-child(2) { animation-delay: 0.2s; }
.navbar-nav .nav-item:nth-child(3) { animation-delay: 0.3s; }
.navbar-nav .nav-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   BREADCRUMB MODERNO
   ======================================== */
.breadcrumb-modern {
  background: linear-gradient(135deg, #ffffff 0%, var(--gray-50) 100%);
  border-bottom: 1px solid var(--gray-200);
  padding: 0;
  margin: 0;
}

.breadcrumb-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
}

.breadcrumb-item a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  color: var(--gray-600);
  text-decoration: none;
  border-radius: var(--border-radius-md);
  transition: all 0.25s ease;
  background: transparent;
  border: 1px solid transparent;
}

.breadcrumb-item a:hover {
  color: var(--primary-blue);
  background: rgba(2, 62, 136, 0.08);
  border-color: rgba(2, 62, 136, 0.15);
  transform: translateY(-1px);
}

.breadcrumb-item a i {
  font-size: 0.85rem;
  opacity: 0.8;
  transition: all 0.25s ease;
}

.breadcrumb-item a:hover i {
  opacity: 1;
  color: var(--primary-blue);
}

/* Home icon special styling */
.breadcrumb-item:first-child a {
  padding-left: 0.75rem;
}

.breadcrumb-item:first-child a i {
  font-size: 1rem;
}

/* Separador/Chevron */
.breadcrumb-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--gray-400);
  font-size: 0.7rem;
}

.breadcrumb-separator i {
  transition: all 0.25s ease;
}

/* Item ativo (página atual) */
.breadcrumb-item.active {
  pointer-events: none;
}

.breadcrumb-item.active span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  color: var(--gray-800);
  font-weight: 600;
}

.breadcrumb-item.active span i {
  font-size: 0.85rem;
  color: var(--primary-blue);
}

/* Timestamp/Info adicional */
.breadcrumb-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--gray-500);
}

.breadcrumb-info-item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: var(--gray-100);
  border-radius: 20px;
  font-weight: 500;
}

.breadcrumb-info-item i {
  font-size: 0.75rem;
  color: var(--primary-blue);
}

.breadcrumb-info-item.status-online {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.breadcrumb-info-item.status-online i {
  color: #16a34a;
}

/* Responsivo */
@media (max-width: 768px) {
  .breadcrumb-container {
    padding: 0.75rem 0;
  }

  .breadcrumb-item a,
  .breadcrumb-item.active span {
    padding: 0.375rem 0.625rem;
    font-size: 0.8rem;
  }

  .breadcrumb-separator {
    width: 20px;
  }

  .breadcrumb-info {
    width: 100%;
    justify-content: flex-start;
    padding-top: 0.5rem;
    border-top: 1px solid var(--gray-200);
    margin-top: 0.5rem;
  }

  /* Em telas pequenas, esconder texto de alguns itens */
  .breadcrumb-item:not(:last-child) a .breadcrumb-text {
    display: none;
  }

  .breadcrumb-item:not(:last-child) a {
    padding: 0.5rem;
  }
}

@media (max-width: 576px) {
  .breadcrumb-item.active span {
    padding: 0.375rem 0.5rem;
    font-size: 0.8rem;
  }

  .breadcrumb-item.active span .breadcrumb-text {
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .breadcrumb-info-item {
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
  }
}

/* ========================================
   PAGE HEADER SECTIONS
   ======================================== */
.page-header-section {
  background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 60%, var(--primary-blue-light) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.page-header-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
    bottom: 0;
  left: 0;
  background: rgba(0, 31, 68, 0.3);
  z-index: 1;
}

.page-header-section .container {
  position: relative;
  z-index: 2;
}

.page-header-title {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-family: var(--font-heading);
}

.page-header-description {
  color: white !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  font-weight: 400;
  line-height: 1.6;
  background: rgba(0, 31, 68, 0.15);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-md);
  backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-header-info {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.page-header-info small {
  opacity: 0.9;
}

.page-header-info strong {
  font-weight: 600;
}

/* ========================================
   CARDS MODERNOS
   ======================================== */
.card-modern {
  background: white;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-md);
  padding: var(--spacing-xl);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-modern:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-blue);
}

.card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
  color: white;
  font-size: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: var(--spacing-md);
  font-family: var(--font-heading);
}

.card-description {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
  flex-grow: 1;
  font-family: var(--font-primary);
}

/* ========================================
   BOTÕES MODERNOS
   ======================================== */
.btn-modern {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--border-radius-md);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  font-family: var(--font-primary);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: white;
  text-decoration: none;
}

.btn-secondary {
  background: white;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
  background: var(--primary-blue);
  color: white;
  text-decoration: none;
}

/* ========================================
   FOOTER MODERNO
   ======================================== */
.modern-footer {
  background: var(--gray-900);
  color: white;
  padding: var(--spacing-2xl) 0 var(--spacing-lg);
  margin-top: var(--spacing-2xl);
  position: relative;
}

.modern-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-yellow) 0%, var(--secondary-green) 50%, var(--secondary-orange) 100%);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

.footer-info h5 {
  color: white;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  font-family: var(--font-heading);
}

.footer-info p {
  color: var(--gray-300);
  margin-bottom: var(--spacing-sm);
  font-size: 0.875rem;
  font-family: var(--font-primary);
}

.footer-info a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-info a:hover {
  color: white;
}

.footer-logo {
  text-align: right;
}

.footer-logo img {
  max-width: 180px;
  height: auto;
  opacity: 0.9;
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */
@media (max-width: 991.98px) {
  .navbar-nav {
    gap: 0.5rem;
    padding: 1rem 0;
  }
  
  .navbar-nav .nav-link {
    padding: 1rem 1.5rem !important;
    font-size: 1rem;
    border-radius: var(--border-radius-md);
    justify-content: flex-start;
  }
  
  .navbar-nav .nav-link:hover {
    transform: translateX(5px);
  }
  
  .navbar-nav .nav-link.active::after {
    display: none;
  }
  
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  .navbar-brand img,
  .navbar-brand .brand-logo {
    height: 40px;
  }
  
  /* Animação para mobile */
  .navbar-nav .nav-item {
    animation: slideInLeft 0.4s ease forwards;
    opacity: 0;
    transform: translateX(-20px);
  }
  
  @keyframes slideInLeft {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
}

@media (max-width: 768px) {
  .page-header-description {
    padding: var(--spacing-lg);
    font-size: 1.125rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo {
    text-align: center;
  }
  
  .top_bar .top_menu {
    flex-direction: column;
    height: auto;
    padding: 8px 0;
  }
  
  .top_bar .nav_top {
    margin-top: 8px;
  }
  
  .top_bar .brasao-seplag ul {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  
  .card-modern {
    margin-bottom: var(--spacing-lg);
  }
  
  .display-5 { 
    font-size: 2rem; 
  }
}

@media (max-width: 576px) {
  .page-header-description {
    padding: var(--spacing-md);
    font-size: 1rem;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }
  
  .top_bar .brasao-seplag ul li a {
    font-size: 11px;
    padding: 3px 6px;
  }
  
  .display-5 { 
    font-size: 1.75rem; 
  }
  
  .btn-modern {
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: 0.875rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.875rem 1.25rem !important;
    font-size: 0.95rem;
  }
  
  .navbar-brand span,
  .navbar-brand .brand-text {
    display: none;
  }
  
  .navbar-brand img,
  .navbar-brand .brand-logo {
    height: 35px;
  }
  
  .main-navigation .navbar {
    padding: 0.5rem 0;
  }
}
