  .gallery-urbania {
        display: grid;
        grid-template-columns: 3fr 2fr;
        gap: 10px;
        width: 100%;
        overflow: hidden;
    }
    .gallery-left {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 10px;
    }
    .gallery-item {
        width: 100%;
        height: 220px;
        border-radius: 12px;
        overflow: hidden;
        position: relative;
    }
    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        cursor:pointer;
        transition: transform 0.35s ease-out;
    }
    .gallery-main {
        max-width: 100%;
        width: 100%;
        height: 450px;
        border-radius: 12px;
        overflow: hidden;
    }
    .gallery-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        cursor:pointer;
        transition: transform 0.35s ease-out;
    }
    .gallery-item:hover img,
    .gallery-main:hover img {
        transform: scale(1.05);
    }
    .gallery-overlay-button {
        position: absolute;
        bottom: 12px;
        left: 12px;
        background: rgba(0,0,0,0.65);
        padding: 10px 18px;
        border-radius: 30px;
        color: #fff;
        font-size: 14px;
        font-weight: bold;
        cursor: pointer;
        z-index: 5;
        transition: 0.25s;
    }
    .gallery-overlay-button:hover {
        background: rgba(0,0,0,0.85);
    }
    .urbania-modal {
        display: none;
        position: fixed;
        z-index: 99999;
        left: 0; top: 0;
        width: 100%; height: 100%;
        background: rgba(0,0,0,0.9);
        padding: 20px;
    }
    .urbania-modal-content {
        background: #111;
        width: 100%;
        height: 100%;
        position: relative;
        border-radius: 8px;
        overflow: hidden;
    }
    .urbania-close {
        position: absolute;
        top: 15px;
        right: 25px;
        color: white;
        font-size: 40px;
        cursor: pointer;
        z-index: 10;
    }
    .urbania-tabs {
        display: flex;
        gap: 20px;
        background: #111;
        padding: 15px 30px;
        border-bottom: 1px solid #222;
    }
    .urbania-tab {
        background: none;
        border: none;
        color: #aaa;
        font-size: 18px;
        cursor: pointer;
        padding-bottom: 8px;
        border-bottom: 2px solid transparent;
    }
    .urbania-tab.active {
        color: #fff;
        border-bottom: 2px solid #fff;
    }
    .urbania-tab-content {
        display: none;
        height: calc(100% - 80px);
    }

    .urbania-tab-content.active {
        display: block;
    }
    .urbania-slider {
        height: 75%;
    }
    .urbania-slider img,
    .urbania-slider-planos img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        cursor: pointer;
    }
    .urbania-thumbs {
        height: 20%;
        margin-top: 10px;
    }
    .urbania-thumbs img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        cursor:pointer;
    }
    .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .zoomable {
        transition: transform 0.25s ease;
        cursor: zoom-in;
    }

    .zoomable.zoomed {
        transform: scale(2.2);
        cursor: zoom-out;
    }
    .gallery-urbania { display: grid !important; }
    .gallery-mobile { display: none !important; }

    /* MOBILE */
    @media(max-width: 768px) {
        .gallery-urbania { display: none !important; }

        .gallery-mobile {
            display: block !important;
            width: 100%;
            margin-bottom: 15px;
        }

        .gallery-mobile .swiper-slide img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 10px;
        }
    }