 /* Área do mapa */
    #mapa-container {
      width: 100%;
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
      box-sizing: border-box;
    }
    
    .map-title {
      text-align: center;
      margin-bottom: 20px;
      font-size: 28px;
      font-weight: bold;
      color: #333;
    }
    
    #map-status {
      text-align: center;
      padding: 10px;
      font-size: 14px;
      color: #666;
      margin-bottom: 15px;
    }
    
    #map {
      width: 100%;
      height: 500px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      margin-bottom: 20px;
    }

    /* Legenda do mapa */
    #legend {
      background: white;
      padding: 15px 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      font-family: Arial, sans-serif;
      max-width: 900px;
      margin: 0 auto;
    }
    
    #legend h3 {
      margin: 0 0 15px 0;
      font-size: 18px;
      color: #333;
      border-bottom: 2px solid #eee;
      padding-bottom: 10px;
    }
    
    .legend-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 12px;
    }
    
    .legend-item {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .legend-icon {
      width: 24px;
      height: 24px;
      flex-shrink: 0;
    }
    
    .legend-text {
      font-size: 13px;
      color: #555;
    }
    
    .legend-destaque {
      background: #e3f2fd;
      padding: 10px;
      border-radius: 6px;
      margin-bottom: 15px;
      border-left: 4px solid #2196F3;
    }
    
    .legend-destaque .legend-item {
      font-weight: bold;
    }