
  #map-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    background: white;
    border-radius: 8px;
    overflow: hidden;
  }
  
  svg {
    width: 100%;
    height: auto;
    display: block;
  }
  
  path {
    fill: #5a5a5abe;
    stroke: #050505;
    stroke-width: 200;
    transition: fill 0.3s ease, stroke 0.3s ease;
    cursor: pointer;
  }
  
  path:hover {
    fill: #ffc107;
    stroke: #000000;
    transition: all 0.2s ease; /* Transição mais rápida ao entrar */
  }
  
  path.active {
    fill: #000000;
    stroke: #000000;
    stroke-width: 200;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.3));
    transition: all 0.3s ease;
  }
  
  .popup {
    position: absolute;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    padding: 15px;
    z-index: 100;
    display: none;
    min-width: 200px;
    max-width: 300px;
    border: 1px solid #ddd;
  }
  
  .popup h3 {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 16px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
  }
  
  .popup ul {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 200px;
    overflow-y: auto;
  }
  
  .popup li {
    padding: 5px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 14px;
  }
  
  .popup li:last-child {
    border-bottom: none;
  }
  
  .info-panel {
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  @media (max-width: 768px) {
    #map-container {
      width: 95%;
    }
    
    .popup {
      max-width: 200px;
      font-size: 14px;
    }
  }