/* Definir a fonte padrão para todo o site */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans', sans-serif; /* Fonte Noto Sans */
}

/* Estilos gerais do corpo */
body {
  background-color: #f4f4f4;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

/* Cabeçalho */
header {
  text-align: center;
  padding: 20px;
  background-color: #fff;
  width: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 2em;
  margin: 0;
  color: #333;
  font-weight: bold; /* Título em negrito */
  text-transform: uppercase; /* Título em caixa alta */
}

p {
  font-size: 1.1em;
  color: #666;
  margin-top: 10px;
  margin-bottom: 5px;
}

/* Estilo para o link "Ver mapas em PDF" */
.pdf-link {
  display: inline-block;
  margin-top: 5px;
  font-size: 14px;
  font-weight: normal;
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.pdf-link:hover {
  color: #0056b3; /* Cor ao passar o mouse */
}

/* Ajustar o estilo do parágrafo da legenda */
header p {
  font-size: 1.1em;
  color: #666;
  margin-top: 5px;  /* Margem superior do parágrafo da legenda */
}

/* Estilos para a galeria */
.svg-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 colunas */
  gap: 20px;
  max-width: 1200px;
  width: 100%;
  margin: 20px;
  padding: 20px;
  flex-grow: 1;
  box-sizing: border-box;
}

.svg-item {
  position: relative;
  text-align: center;
}

.svg-item img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 400px;
  display: block;
  margin: 0 auto;
}

.svg-item .image-number {
  position: absolute;
  bottom: 10px;
  left: 10px; /* Numeral no canto inferior esquerdo */
  font-size: 24px;
  font-weight: bold;
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 5px 10px;
  border-radius: 5px;
}

/* Link abaixo da imagem */
.image-link {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.image-link:hover {
  color: #0056b3; /* Cor ao passar o mouse */
}

/* Design responsivo */
@media (max-width: 768px) {
  .svg-gallery {
    grid-template-columns: repeat(2, 1fr); /* 2 colunas em telas médias */
  }
}

@media (max-width: 480px) {
  .svg-gallery {
    grid-template-columns: 1fr; /* 1 coluna em telas pequenas */
  }
}

/* Lightbox (modal) */
.lightbox-modal {
  display: none; /* Inicialmente escondido */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox-modal img {
  max-width: 95%; /* Aumentando o tamanho da imagem no lightbox */
  max-height: 95%;
  margin: 0 auto;
