.container {
    max-width: 1360px;
    padding: 0 20px;
    margin: 0 auto;
}

h1 {
    color: var(--laranja);
    text-align: center;
    margin-top: 60px;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
}

.imoveis_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.aks_prop_card {
    background-color: #fff;
    box-shadow: 0 0 7.28px 0.72px rgba(130, 130, 130, 0.28);
    width: 100%;
}

.aks_prop_card a {
    display: flex;
    flex-direction: column;
    min-height: 300px;
    height: 100%;
}

.aks_prop_card__image {
    height: 155px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.aks_prop_card__image__background {
    height: 100%;
}

.aks_prop_card__image__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 150ms ease-in-out;
}

.aks_prop_card__image .icons {
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px;
    font-size: 1.2rem;
}

.aks_prop_card__image .icons i {
    color: #fff;
}

.aks_prop_card__image .card_icon {
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px;
    border-radius: 5px;
}

.aks_prop_card__image .card_icon span {
    color: #fff;
}

.aks_prop_card__image .virtual_tour {
    margin-left: auto;
    display: none;
}

.aks_prop_card:hover .aks_prop_card__image__background img {
    transform: scale(1.1);
}

.aks_prop_card__code {
    color: #000;
    font-size: 0.8rem;
    font-weight: 600;
}

.aks_prop_card__meta {
    display: flex;
    gap: 20px;
    padding: 0 10px;
    margin-bottom: 20px;
}

.aks_prop_card__meta__item {
    color: #000;
    font-size: 0.95rem;
}

.aks_prop_card__meta__item > span {
    display: inline-block;
    margin-bottom: 5px;
    font-weight: 600;
}

.aks_prop_card__meta__item__icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.aks_prop_card__meta__item i {
    color: #15616d;
    font-size: 1.2rem;
}

.aks_prop_card__desc {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
}

.aks_prop_card__desc h3 {
    margin-top: 10px;
    color: #000;
    font-size: 1.1rem;
}

.aks_prop_card__image__pills {
    position: absolute;
    color: #fff;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 10px;
}

.aks_prop_card__image__pills div {
    background-color: #15616d;
    padding: 0.3em;
    border-radius: 5px;
    font-size: 12px;
}

.aks_prop_card__image__cva {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
}

.aks_prop_card__desc__tag {
    border: 1px solid;
    background-color: #15616d;
    align-self: flex-start;
    padding: 0.3em;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.aks_prop_card__bottom {
    margin-top: auto;
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.aks_prop_card__bottom__price__text {
    font-size: 1rem;
    font-weight: 700;
    color: #00b54d;
    text-align: left;
    display: block;
}

.aks_prop_card__bottom__parcela {
    margin-left: auto;
}

.aks_prop_card__bottom__buttons {
    margin-left: auto;
    font-size: 1.3rem;
    display: flex;
    gap: 10px;
    align-self: flex-end;
}

.aks_prop_card__bottom__buttons i {
    cursor: pointer;
}

.aks_prop_card__bottom__buttons .fa-heart:hover {
    color: red;
}

.aks_prop_card--loading:hover .aks_prop_card__image__background {
    transform: unset;
}

.aks_prop_card--loading h3 {
    height: 20px;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    border-radius: 5px;
    background-size: 200% 100%;
    animation: 1.5s shine linear infinite;
}

.aks_prop_card--loading .aks_prop_card__image__background {
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    background-size: 200% 100%;
    animation: 1.5s shine linear infinite;
}

.aks_prop_card--loading .aks_prop_card__code {
    height: 20px;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    border-radius: 5px;
    background-size: 200% 100%;
    animation: 1.5s shine linear infinite;
}

.aks_prop_card--loading .aks_prop_card__meta {
    height: 52px;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    border-radius: 5px;
    background-size: 200% 100%;
    animation: 1.5s shine linear infinite;
}

.aks_prop_card--loading .aks_prop_card__bottom {
    height: 52px;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    border-radius: 5px;
    background-size: 200% 100%;
    animation: 1.5s shine linear infinite;
}

.aks_prop_card--loading .aks_prop_card__desc__tag {
    height: 30px;
    width: 100px;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    border-radius: 5px;
    background-size: 200% 100%;
    animation: 1.5s shine linear infinite;
}

@keyframes shine {
    to {
        background-position-x: -200%;
    }
}

.aks_prop_card__image_financiamento {
    position: absolute;
    top: 5px; left: 5px;
    background-color: #15616d;
    color: white;
    padding: 10px;
    display: grid;
    border-radius: 10px;
    place-items: center;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.aks_prop_card__bottom__price__label {
    text-align: left;
    display: block;

    color: #000;
    margin-top: 10px;
    font-weight: 600;
}



@media screen and (max-width: 1170px) {
    .imoveis_grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}


@media screen and (max-width: 820px) {
    .imoveis_grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 620px) {
    .imoveis_grid {
        grid-template-columns: 1fr;
    }
}