.card-hospedagem{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
    display:flex;
    flex-direction:column;
}

.card-hospedagem:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 28px rgba(0,0,0,.15);
}

.card-hospedagem img{
    width:100%;
    height:auto;
    display:block;
    transition:.4s;
}

.card-hospedagem:hover img{
    transform:scale(1.03);
}

.card-body{
    padding:20px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.card-body h4{

    font-size:18px;
    font-weight:600;
    line-height:28px;

    min-height:56px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    margin:0 0 20px;

    overflow:hidden;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
}

.btn-detalhes{

    margin-top:auto;

    display:block;

    width:100%;

    text-align:center;

    padding:13px;

    background:#4B6B3C;

    color:#fff;

    border-radius:10px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;
}

.btn-detalhes:hover{

    background:#39552D;

    color:#fff;

    text-decoration:none;
}
	