.onde-comprar{
    padding: 80px 10%;
    h2{
        text-align: center;
        color: var(--azulventex);
        font-weight: 800;
        font-size: 3.5rem;
        max-width: 100%;
        width: 900px;
        margin: 0 auto 60px;
        line-height: 1.1;
    }
    .mapa-container{
        width: 90%;
    }
    h3{
        color: var(--azulventex);
        font-weight: 800;
        font-size: 2rem;
        margin: 0px;
        line-height: 1.1;
    }    
    p {
        margin: 10px 0 20px;
        padding: 0;
        font-size: 1.4rem;
        font-weight: 500;
        color: #545454;
    } 
    h4.nome-estado-selecionado{
        font-weight: 400;
        color: #545454;
        font-size: 1.4rem;
        margin: 0 0 5px;
        line-height: 1.2;     
        strong{
            font-weight: 700;
            color: var(--azulventex);
        }   
    } 
    select{
        padding: 15px;
        option{
            padding: 15px;
            background: #fff;
            &:hover{
                background: #e8e8e8;
            }
        }
    }  
    .form-control{
        height: auto;
        appearance: none;
    }
    .form-control:focus{
        box-shadow: unset;
        border-color: var(--azulventex);
    }
    .filtro-regiao{
        position: relative;
        &:after {
            font-weight: 900;
            font-family: "Font Awesome 6 Free";
            content: "\f078";
            color: var(--azulventex);
            display: inline-block;
            font-size: 15px;
            width: 15px;
            height: 15px;
            right: 15px;
            top: calc(50% - 10px);
            position: absolute;
        }
    }
    .listagem{
        overflow-x: hidden;
        overflow-y: scroll;
        max-height: 400px;
        width: 100%;
    }

    .listagem::-webkit-scrollbar-track {
        background-color: #fff;
        border-radius: 8px;
        height: 60px;
    }

    .listagem::-webkit-scrollbar {
        width: 12px;
        height: 40px;
        border-radius: 8px;
        background-color: #fff;
    }

    .listagem::-webkit-scrollbar-thumb {
        border-radius: 10px;
        background-color: var(--azulventex);
    }    
    ul.representantes{
        list-style: none;
        margin: 0;
        overflow: hidden;
        padding: 0;
        li.representante{
            padding: 15px 0;
            border-bottom: solid 1px #bcbcbc;
            h5{
                color: var(--azulventex);
                font-weight: 600;
                margin: 0 0 5px;
                line-height: 1;
                font-size: 1.2rem;
            }
            p{
                font-size: 1rem;
                font-weight: 300;
                line-height: 1.5;
                margin: 0;
                strong{
                    color: var(--azulventex);
                    font-weight: 600;
                }
            }
            &:last-child{
                border-bottom: 0;
            }
            a{
                color: #545454;
                i{
                    color: #25d366;
                    font-weight: 800;
                }
            }
        }
    }
    .openDesc { 
        fill: #e8e8e8; 
        cursor: pointer;
        transition: all 0.3s;
        text {
            font-size: .45rem;
            fill: #bdbdbd;
        }
    }
    .has-rep {
        cursor: pointer !important;
    }
    .openDesc path.ativo {
        fill: var(--azulventex)!important; 
    }
 

    .d-none { 
        display: none; 
    }    
    @media screen and (max-width: 1560px) {
        padding: 70px 5%;
        h2{
            font-size: 3rem;
        }
        h3 {
            font-size: 1.6rem;
        }
        h4.nome-estado-selecionado{
            font-size: 1.3rem;
        }        
    }
    @media screen and (max-width: 1024px) {
        padding: 60px;
        h2{
            font-size: 2rem;
        }
        .mapa-container {
            width: 100%;
        }
    }
    @media screen and (max-width: 768px) {
        h3{
            margin-top: 30px;
        }
    }
    @media screen and (max-width: 480px) {
        padding: 30px;
        h2{
            font-size: 1.6rem;
            margin-bottom: 20px;
        }
        h3{
            font-size: 1.3rem;
        }
        p{
            font-size: 1.1rem;
        }
        h4.nome-estado-selecionado {
            font-size: 1.2rem;
        }
        & ul.representantes {
            & li.representante {
                h5 {
                    font-size: 1.1rem;
                }
            }
        }
    }
}
.bgcinza{
    background: #f9fafb;
}