#svg-map path {
  fill: #730064;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
#svg-map text {
  fill: #fff;
  font: 12px Arial-BoldMT, sans-serif;
  cursor: pointer;
}
#svg-map a {
  text-decoration: none;
}
#svg-map a:hover {
  cursor: pointer;
  text-decoration: none;
}
#svg-map a:hover path {
  fill: #ff8264 !important;
  color: #fff !important;
}
#svg-map .circle {
  fill: #ff8264;
}
#svg-map a:hover .circle {
  fill: #ff8264 !important;
  cursor: pointer;
}


/* Estilo do fundo escurecido */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

/* Estilo do conteúdo do modal */
.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    width: 90%;
    max-width: 500px;
    max-height: 80%;
    overflow-y: auto;
    position: relative;
}

/* Botão de fechar */
.close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    background: #ff5f5f;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 3px;
}

/* Estilos adicionais */
.estado h3 {
    margin-top: 0;
}

.estado ul {
    list-style-type: disc;
    padding-left: 20px;
}

.estado li {
    margin-bottom: 10px;
}

/* Remove o ponto da lista apenas para itens com a classe 'no-bullet' */
.no-bullet {
    list-style-type: none;
}

/* Torna a imagem responsiva */
.imagemap {
    max-width: 100%;
    height: auto;
    display: block;
    margin: auto; /* Centraliza a imagem e adiciona margem superior e inferior */
}

.map-container {
    display: flex;
    align-items: center; /* Centraliza verticalmente */
    justify-content: center; /* Centraliza horizontalmente */
    height: 100vh; /* Ajusta a altura conforme necessário */
}

.map-container svg {
    max-width: 800px;
    width: 80%;
}

@media (max-width: 767px) {
    .map-container {
        height: 50vh;
    }
    #svg-map {
        width: 100%; /* Garante que o SVG preencha a largura do contêiner */
        max-width: none; /* Remove qualquer max-width definido anteriormente */
    }
}
