

.map-container {
  width: 90%;
  max-width: 1000px;
}

svg {
  width: 100%;
  height: auto;
}

/* Apenas freguesias reagem ao hover */
.freguesia {
  transition: fill 0.3s ease;
  cursor: pointer;
}

.freguesia:hover {
  fill: #444 !important; /* Cor mais escura ao passar o rato */
}

.freguesia-titulo{
  font-size: 30px;
  color: #2c3e50;
  font-weight: bold;
  background-color: #ecf0f1;
  margin-bottom: 10px;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.15);
  border: 5px solid #FF6A00;  /* <- Esta linha adiciona a borda vermelha */
  border: fixed;
  min-height: 55px; 
 
}

hr {
  border: none;
  height: 4px;                /* Espessura da linha */
  background:#ff6a00; /* Gradiente laranja */
  border-radius: 2px;
  margin: 2rem auto;
  width: 67%;                 /* Largura da linha */
}

.map-container {
  max-height: 500px;
  overflow: auto;
}

img.shadow {
  max-height: 500px;
  object-fit: contain;
}

.texto{
  font-size: 20px;
}

.text-laranja {
  color: #FF6A00 !important;
}