/* Barra de acessibilidade */
#accessibility-bar {
  background: #1a1a1a;
  color: #fff;
  padding: 5px 0;
  font-size: 12px;
  border-bottom: 2px solid #00496D;
}
#accessibility-bar .container {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.a11y-label {
  color: #ccc;
  font-size: 11px;
}
.a11y-text-controls {
  display: flex;
  gap: 4px;
}
.a11y-text-controls button,
#contrast-toggle {
  background: #333;
  color: #fff;
  border: 1px solid #555;
  padding: 2px 8px;
  cursor: pointer;
  font-size: 12px;
  border-radius: 3px;
}
.a11y-text-controls button:hover,
#contrast-toggle:hover {
  background: #555;
}

/* Breadcrumb */
.breadcrumb-wrapper {
  background: #f5f5f5;
  border-bottom: 1px solid #ddd;
  padding: 6px 0;
  width: 100%;
}
.breadcrumb-wrapper .breadcrumb {
  background: transparent;
  margin: 0;
  padding: 0;
  font-size: 13px;
  border-radius: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.breadcrumb-wrapper .breadcrumb > li {
  display: inline-flex;
  align-items: center;
}
.breadcrumb-wrapper .breadcrumb > li + li::before {
  content: none;
}
.breadcrumb-sep {
  color: #777;
  padding: 0 4px;
}

/* Alto contraste */
body.high-contrast,
body.high-contrast * {
  background-color: #000 !important;
  color: #ffff00 !important;
  border-color: #ffff00 !important;
}
body.high-contrast a {
  color: #00ffff !important;
}
body.high-contrast img {
  filter: invert(1) contrast(2);
}
body.high-contrast input,
body.high-contrast textarea,
body.high-contrast select {
  background: #111 !important;
  color: #ffff00 !important;
  border: 1px solid #ffff00 !important;
}

/* Mapa do site */
.sitemap-section {
  margin-bottom: 2em;
}
.sitemap-section h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75em;
  color: #255572;
}
.sitemap-section ul {
  list-style: none;
  padding-left: 0;
}
.sitemap-section ul li {
  margin-bottom: 0.5em;
}
.sitemap-section ul ul {
  padding-left: 1.5em;
  margin-top: 0.5em;
}

/* Rodapé — link Mapa do Site legível sobre fundo azul */
.footer-area .footer-bottom .footer-copy-right p a.footer-sitemap-link {
  color: #fff;
  text-decoration: underline;
}
.footer-area .footer-bottom .footer-copy-right p a.footer-sitemap-link:hover,
.footer-area .footer-bottom .footer-copy-right p a.footer-sitemap-link:focus {
  color: #f7d85b;
}
