.background-servicos {
    background-image: url('../../../Assets/img/bg-imagem-cinza.png');
    background-repeat: no-repeat !important;
    background-size: cover;
    width: 100%;
    height: 530px;
}

.moldura-img-servico {
    border: 2px solid white;
    border-radius: 0px 15px 15px 15px;
    height: 260px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    margin: 0 auto;
}

.moldura-img-servico:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.descricao-servico{
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.img-servico{
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
}

.div-img-servico-mobile{
    display: none;
}

.btn-servico {
    color: white !important;
    background-color: #51a800;
    border: 1px solid white;
    border-radius: 45px;
    padding: 4px 40px;
    cursor: pointer;
    font-weight: bold;
    font-family: 'lato', sans-serif;
    font-size: 16px;
}

.btn-servico:hover {
    background-color: white;
    color: #51a800 !important;
    border: 1px solid #51a800;
}

@media (min-width: 320px) and (max-width: 499px) {

    .background-servicos{
        height: 770px;
    }

    .div-img-servico-mobile{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .div-img-servico{
        display: none;
    }

    .div-info-servicos {
        margin-top: 20px;
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center; 
        text-align: center; 
    }

    .btn-servico {
        width: 100%;
    }
    
    .div-servicos-mobile{
        flex-direction: column;
    }

}