body {
    margin: 0;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
}

#map {
    width: 100%;
    height: 740px;
}

@media (max-width: 768px) {
    #map {
        height: 500px;
    }
}

.titulo {
    border-radius: 30px;
    padding: 3px 25px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-content: center;
    align-items: center;
    gap: 5px;
}

.titulo h1 {
    font-size: 20px;
    text-align: center;
    color: #292929;
    font-family: 'Lato';
    font-weight: 600;
    max-width: 500px;
    text-transform: uppercase;
    margin: 20px 0 10px;
}

.titulo h2 {
    margin: 0 0 10px;
    font-size: 15px;
    max-width: 600px;
    text-align: center;
    font-family: 'Lato';
    font-weight: 400;
    color: #898888;
}

.btns {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 30px;
    margin: 0 0 30px;
}

.btns .btn-categoria {
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btns .circulo {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.btns .btn-categoria p {
    font-size: 12.5px;
    text-transform: uppercase;
    color: #6b6b6b;
    font-family: 'Lato';
    font-weight: 500;
    display: flex;
    flex-direction: column;
}

.fonte {
    z-index: 100;
    font-family: 'Lato';
    font-size: 13.5px;
    color: #3c3c3c;
}

.fonte p {
    padding: 6px 0;
}

.mapboxgl-popup {
    min-width: 150px !important;
    max-width: 500px !important;
}

.mapboxgl-popup-tip {
    border-top-color: #fbfbfb !important;
}

.mapboxgl-popup-content {
    min-height: 100px !important;
    background-color: #fbfbfb !important;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 10px 36px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px !important;
    border-radius: 10px !important;
    padding: 12px !important;
}

.mapboxgl-popup-content .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.mapboxgl-popup-content .container h3 {
    font-family: 'Lato';
    font-weight: 600;
    font-size: 15px;
    margin: 0;
}

.mapboxgl-popup-content .container .pill {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 40px;
    min-width: 100px;
    border-radius: 50px;
    color: #fff;
    font-family: 'Lato';
    font-weight: 600;
    font-size: 18px;
    margin: 0;
}

.mapboxgl-popup-content .container .municipio {
    font-family: 'Lato';
    font-weight: 400;
    font-size: 13px;
    text-transform: uppercase;
    margin: 0;
    color: #4a4a4a;
}

.hidden {
    display: none !important;
}