* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background: #f5f5f5;
}

.navbar {
  background-color: #d1d1d1;
  padding-top: 1rem;
  padding-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-nav .nav-item {
    margin-right: 1.5rem;
}

.logosgov {
  gap: 1.5rem;
}

main.container-fluid {
  padding: 1.5rem 2rem 2rem 2rem;
}

.links a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
}

.logosgov {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.page-title {
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  color: #373737;
}

.filter-sidebar {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    flex-grow: 1;
    overflow-y: auto;
}

.info-box {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
}

.info-box-label {
    font-weight: 500;
    font-size: 0.8rem;
    color: #000000;
}

.info-box-value {
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.1;
    color: #000000;
}

.map-container {
    height: 75vh;
    min-height: 600px;
    width: 100%;
    border-radius: 0;
    border: 1px solid #dee2e6;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.custom-div-icon {
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.icon-green {
    background-image: url('./icones/Frame.png');
}

.icon-red {
    background-image: url('./icones/no-swimming-icon\ 2.png');
}

@media (min-width: 768px) {
  .coluna-filtro-custom {
    flex: 0 0 25%; 
    max-width: 25%;
    display: flex;
    flex-direction: column;
  }

  .coluna-mapa-custom {
    flex: 0 0 75%; 
    max-width: 75%;
  }
}

@media (max-width: 767px) {
    .map-container {
        height: 60vh;
        min-height: 400px;
    }
    main.container-fluid, header .container-fluid {
      padding-left: 1rem;
      padding-right: 1rem;
    }
    .coluna-filtro-custom {
        margin-bottom: 1.5rem;
    }
}