
.container_perfis_estab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    max-height: calc(55vh - 3.5vw);
    overflow: hidden;
    overflow-y: auto;
    margin-top: 3vw;
    cursor: pointer;
}

.ajuste_clicavel{
    cursor:pointer;
}
.box_perfil_estab {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 90%;
    border-bottom: 0.1vw solid var(--cor_cinza_clara);
    margin-top: 0.5vw;
    margin-bottom: .5vw;
    padding-bottom: .5vw;
}

.foto_perfil_estab img {
    width: 3vw;
    height: 3vw;
    border-radius: 1vw;
    box-shadow: 0 0 0.2vw var(--cor_cinza_escura);
}

.banner_perfil_estab {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 1vw;
    padding-right: 1vw;
    width: 100%;
}

.nome_perfil_estab {
    font-family: var(--font-family-montserrat);
    color: var(--cor_cinza_escura);
    font-size: 1.2em;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;

}

.box_cidade_quantidades_estab {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.box_cidade_estab {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.5vw;
    gap: 0.5vw;

}

    .box_cidade_estab img {
        width: 1vw;
        height: 1vw;
        display: inline-block;
    }

.nome_cidade_estab {
    font-family: var(--font-family-montserrat);
    color: var(--cor_cinza_clara);
    font-size: 0.8em;
    font-weight: 600;
    display: inline-block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 25vw;
}

.box_quantidades {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1vw;
}

.box_quantidades_estab p {
    font-family: var(--font-family-montserrat);
    color: var(--cor_cinza_clara);
    font-size: 0.8em;
    font-weight: 600;
    margin: auto 0;
}

.botao_acao_principal {
    font-family: var(--font-family-koho);
    font-size: 0.8em;
    font-weight: bold;
    background-color: var(--cor_principal);
    color: var(--cor_branca);
    padding: 0.2vw 0.6vw;
    border-radius: 0.5vw;
    margin: auto 0;
    border: none;
}

.botao_acao_secundaria {
    font-family: var(--font-family-koho);
    font-size: 0.8em;
    font-weight: bold;
    background-color: var(--cor_branca);
    color: var(--cor_principal);
    padding: 0.2vw 0.6vw;
    border-radius: 0.5vw;
    margin: auto 0;
    border: .1vw solid var(--cor_principal);
}


/* ************************Responsividade******************** */
@media only screen and (max-width: 1024px) {

    .foto_perfil_estab img {
        width: 4vw;
        height: 4vw;
    }


    .box_cidade_estab img {
        width: 1.8vw;
        height: 1.8vw;
    }

    .nome_cidade_estab {

        max-width: 22vw;
    }


    .botao_acao_principal {
        padding: .8vw 1.5vw;
        border-radius: 1vw;
    }

    .botao_acao_secundaria {
        padding: .8vw 1.5vw;
        border-radius: 1vw;
    }
}

@media only screen and (max-width: 768px) {



    .foto_perfil_estab img {
        width: 6vw;
        height: 6vw;
    }


    .box_cidade_estab img {
        width: 2vw;
        height: 2vw;
    }

    .nome_cidade_estab {
        max-width: 18vw;
    }


    .botao_acao_principal {
        padding: 1vw 3vw;
        border-radius: 1.5vw;
    }

    .botao_acao_secundaria {
        padding: 1vw 3vw;
        border-radius: 1.5vw;
    }
}

@media only screen and (max-width: 480px) {

    .container_perfis_estab {
        max-height: calc(75vh - 3.5vw);
        margin-top: 8vw;
    }

    .foto_perfil_estab img {
        width: 12vw;
        height: 12vw;
        border-radius: 2vw;
    }

    .box_cidade_estab img {
        width: 4vw;
        height: 4vw;
    }
    .nome_perfil_estab {

        font-size: 1.2em;

    }
    .nome_cidade_estab {
        max-width: 45vw;
        font-size:0.8em;
    }


    .botao_acao_principal {
        padding: 1vw 3vw;
        border-radius: 2vw;
    }

    .botao_acao_secundaria {
        padding: 1vw 3vw;
        border-radius: 2vw;
    }

    .box_quantidades_estab p {
        font-size: 0.7em;
    }
}
