.card-anuncio{
    display: block;
    padding: 0.2rem;
    margin-bottom: 2rem;
    height: 500px;
}

.card-anuncio__capa{
    width: 100%;
    display: grid;
}

.card-anuncio__capa input{
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    top: 2rem;
    left: 1rem;
}

.card-anuncio__capa img{
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
}

.card-anuncio__content{
    height: 234px;
    color: var(--cinzaClaro);
    font-weight: 400;
}

.card-anuncio__content___infos{
    padding: 1rem;
    min-height: 187px;
    width: 100%;
    border: solid 1px var(--cinzaClaro);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.card-anuncio__data{

}

.card-anuncio__data-negotiation{
    font-size: 14px;
}

.card-anuncio__data-negotiation span:nth-child(1){
    text-transform: uppercase;
}

.card-anuncio__data-negotiation span:nth-child(2){
    margin-left: 0.7rem;
    padding: 0.5rem;
    color: #131313;
    background-color: #c5c5c5;
    border-radius: 10px;
}

.card-anuncio__data-address{
    display: block;
    padding: 0.5rem 0;
}
.card-anuncio__data-address span:nth-child(1){
    font-size: 26px;
    padding: 0.2rem 0;
    font-weight: 700;
}

.card-anuncio__data-address span:nth-child(2){
    font-size: 14px;
}

.card-anuncio__data-infos{
    display: flex;
    align-items: center;
}

.card-anuncio__data-infos span{
    font-size: 15px;
    font-weight: 600;
}

.card-anuncio__data-infos img{
    height: 25px;
    padding-left: 1rem;
    padding-right: 0.5rem;
}

.card-anuncio__report{
    display: flex;
    align-items: end;
    justify-content: end;
}

.card-anuncio__report span{
    padding-top: 1rem;
}

.card-anuncio__content___tools{
    padding: 0.5rem;
    border: solid 1px var(--cinzaClaro);
    border-top: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}

.card-anuncio__content___tools span{
    font-size: 13px;
    padding-left: 5px;
}

.card-anuncio__content___tools-btn{
    display: flex;
    font-size: 14px;
    justify-content: space-evenly;
    min-width: 135px;
}

.card-anuncio__content___tools-btn img{
    width: 25px;
}

.card-anuncio__content___tools select{
    padding: 0.2rem;
    border-radius: 5px;
}

.card-anuncio__content___tools select:focus{
    outline: inherit;
}

.switch-buttons-2{
    display: flex;
    margin-bottom: 2rem;
    border: solid 1px var(--cinza);
    width: fit-content;
    padding: .2rem;
    border-radius: 22px;
}

.switch-buttons-2 button{
    text-align: left;
    color: var(--branco);
    border: none;
    font-weight: 600;
    padding: .75rem;
    line-height: 18px;
    font-size: 14px;
    border-radius: 22px;
    background-color: transparent;
}

.switch-buttons-2 button:focus{
    outline: 0;
}

.switch-buttons-2 button.active{
    background-color: var(--verdeEscuro);
}

.switch-buttons-2  button.inactive{
    background-color: var(--cinzaClaro);
}

.recomendacoes-card a{
    width: 100%;
    height: 280px;
}

.recomendacoes-card{
    border: 1px solid rgba(0,0,0,0.1);
}

.recomendacoes-card_image{
    height: 130px;
    background-position: center;
    background-size: cover;
}

.recomendacoes-card_body{
    padding: 5px;
    height: 160px;
}

.recomendacoes-card_body__title span{
    display: flex;
    font-size: 13px;
}

.recomendacoes-card_body__title span{

}

.recomendacoes-card_body__title p{
    font-size: 13px;
}

.recomendacoes-card_body__price{
    margin: 10px 0;
}

.recomendacoes-card_body__price h4:nth-child(1){
    font-size: 18px;
    font-weight: 800;
    padding-bottom: 5px;
}

.recomendacoes-card_body__price h4:nth-child(2){
    font-size: 15px;
    font-weight: 600;
}

.recomendacoes-card_body__infos span{
    font-size: 13px;
    padding-right: 10px;
}

@media screen and (min-width: 540px) and (max-width: 768px){
    .card-anuncio{
        height: 550px;
    }
}

@media screen and (min-width: 768px){
    .card-anuncio{
        display: flex;
        padding: 0;
        height: -webkit-fill-available;
        margin-left: -20px;
    }

    .card-anuncio__capa{
        height: auto;
        width: auto;
        display: flex;
    }


    .card-anuncio__capa img{
        width: auto;
        height: auto;
        max-width: 312px;
    }

    .card-anuncio__capa input{
        top: 1rem;
        left: 2rem;
    }

    .card-anuncio__content{
        width: calc(100% - 330px);
        height: auto;
    }

}

