.property-grid {
    display: flex;
    flex-direction: column;
    min-height: 200px;
    background-color: #FFF;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.property-grid-header {
    
    margin: 20px;
}
.property-grid-header > h3 {
    font-size: 1.125rem;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 45px;
    min-height: 45px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.property-grid-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 240px;
    border-radius: 8px 8px 0 0;
}
.property-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.property-grid-code {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.875rem;
    color: var(--theme-secondary-font-color);
    background-color: var(--theme-primary-color);
    border-radius: 5px;
    padding: 10px;
    z-index: 10;
}
.property-grid-resume {
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 65px;
    min-height: 65px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 1rem;
    margin: 0 20px 20px;
}
.property-grid-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-top: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
    padding: 15px 0;
    font-size: 0.875rem;
}
.property-grid-features li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.property-grid-features li i {
    margin-bottom: 5px;
}
.property-grid-features li span {
    padding: 2px 0;
    font-weight: 600;
}
.property-grid-footer {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}
.property-grid-price {
    font-size: 1.125rem;
    font-weight: 600;
}
.property-single {
    display: block;
    background-color: #FFF;
}
.property-single-area {
    padding-bottom: 75px;
}
.property-single-cover-area {
    position: relative;
    background-color: #EFEFEF;
    margin-bottom: 35px;
    /* padding-top: 75px;
    padding-bottom: 50px; */
}
.property-single-cover {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 20px;
}
.property-single-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
#property-single-gallery-carousel {
    height: 400px;
}
.property-gallery--item {
    display: flex;
    justify-content: center;
    flex: 0 0 auto;
    width: 600px;
    margin-right: 5px;
    background-color: #111;
}
.property-gallery--item:last-child {
    margin-right: 0;
}
.property-gallery--image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    cursor: pointer;
}
@media (max-width: 768px) {
    #property-single-gallery-carousel {
        height: 350px;
    }
    .property-gallery--item {
        width: 100%;
        /* margin-right: 0; */
    }
}
.property-single-login {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.property-single-header {
    margin-bottom: 35px;
}
.property-single-header h2 {
    font-size: 1.75rem;
    font-weight: 600;
}
.property-single-header span {
    font-size: 1rem;
    color: #8d8d8d;
}
.property-single-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    border-top: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
}
.property-single-meta li {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
}
.property-single-meta span {
    margin-top: 10px;
}
.property-single-details {
    margin: 35px 0;
}
.property-single-details h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--theme-primary-color);
    margin-bottom: 15px;
}
.property-single-text {
    line-height: 160%;
}
.property-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}
.property-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
}
.property-features li svg {
    color: var(--theme-primary-color);
}
.property-single-widget {
    border-radius: 10px;
    box-shadow: 0 10px 31px 0 rgb(0 0 0 / 9%);
    padding: 30px;
}
.property-single-widget h3 {
    border-bottom: 1px solid #CCC;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--theme-primary-color);
    margin-bottom: 25px;
    padding-bottom: 10px;
}
.property-single-widget .property-single-prices {
    margin-bottom: 30px;
}
.property-single-widget .property-single-price {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.property-single-widget .property-single-price small {
    font-size: 1.125rem;
    font-weight: 500;
}
.property-single-prices-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
    color: #8D8D8D;
}
.property-single-prices-label {
    font-weight: 500;
}
.property-single-prices-value {
    font-weight: 600;
}
.property-single-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.property-single-button {
    width: 100%;
    font-size: 1.125rem;
    font-weight: 400; /* Deveria mesmo ter aqui */
}
.property-single-button[data-whatsapp] {
    background-color: #25D366;
}

/* FAVORITOS BUTTON */
.property-bookmark {
    cursor: pointer;
}
.property-bookmark-icon {
    transition: transform 0.2s ease, color 0.3s ease;
}
.property-bookmark-icon:active svg,
.property-bookmark-icon.favorited:active svg {
    transform: scale(1.3);
    transition: transform 0.1s ease;
}
.property-bookmark-icon.favorited svg {
    fill: #ff5722;
}
.property-single-button svg, .property-single-button.favorited span svg {
    fill: #FFF !important;
}
.property-grid.fade-out {
    opacity: 0;
    transform: scale(0.98);
    transition: opacity .4s ease, transform .4s ease;
}
.property-grid.removed {
    display: none;
}

.condo-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 200px;
    background-color: #FFF;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.condo-grid-header {   
    margin: 20px;
}
.condo-grid-header > h3 {
    font-size: 1.125rem;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 45px;
    min-height: 45px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.condo-grid-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 240px;
    border-radius: 8px 8px 0 0;
}
.condo-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.condo-grid-location {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #777;
}
.condo-grid-location svg {
    width: 20px;
    height: 20px;
}
.vertical .condo-grid-image {
    height: 380px;
}
.condo-grid-column {
    transition: opacity .3s ease, transform .3s ease;
}
.condo-grid-column.hidden {
    opacity: 0;
    transform: scale(0.95);
    position: absolute;
}
.condo-grid-home {
    position: relative;
    background: none;
}
.condo-grid-home .condo-grid-image {
    height: auto;
    border-radius: 8px;
    aspect-ratio: 1 / 1.2;
}
.condo-grid-home .condo-grid-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: end;
    background: #000000;
    background: linear-gradient(0deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.33) 55%);
    border-radius: 8px;
}
.condo-grid-home .condo-grid-content h3 {
    max-height: auto;
    min-height: auto;
    color: #FFF;
    margin-bottom: 10px;
}
.condo-grid-home .condo-grid-location {
    color: #FFF;
}
.condo-grid-home .condo-grid-location svg {
    fill: #FFF;
}
/* .vertical .condo-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
} */
/* 
.property-grid-resume {
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 65px;
    min-height: 65px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 1rem;
    margin: 0 20px 20px;
}
.property-grid-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-top: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
    padding: 15px 0;
    font-size: 0.875rem;
}
.property-grid-features li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.property-grid-features li i {
    margin-bottom: 5px;
}
.property-grid-features li span {
    padding: 2px 0;
    font-weight: 600;
}
.property-grid-footer {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}
.property-grid-price {
    font-size: 1.125rem;
    font-weight: 600;
} */

/* RESPONSIVO */
@media (max-width: 768px) {
    .property-single-cover {
        height: 42vh;
        aspect-ratio: auto;
    }
    .property-single-login {
        width: 100%;
        left: 50%;
        transform: translateX(-50%);
    }

    .property-single-meta {
        flex-direction: column;
        gap: 0;
    }
    .property-single-meta li {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        width: 100%;
        border-bottom: 1px solid #CCC;
        padding: 15px 0;
    }
    .property-single-meta li:last-child {
        border-bottom: none;
    }
    .property-single-meta li span {
        margin: 0;
    }
}