@import url('_variables.css');
@import url('./header.css');

html.no-js {
    margin: 0 !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: var(--color-primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto !important;
    padding: 0 15px;
}


.container-xl {
    max-width: 1500px;
    margin: 0 auto !important;
    padding: 0 15px;
}

/* Responsive container padding for mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }

    .container-xl {
        padding: 0 10px;
    }

    .videos-grid{
        display: flex !important;
        flex-direction: column;
        gap: 20px;
    }


    .content_metodo_first{
        display: flex !important;
        flex-direction: column;
        gap: 20px;
    }

    .metodo_list{
        position: relative !important;
        display: flex !important;
        flex-direction: column;
        gap: 20px;
        width: 100% !important;
        padding-top: 50px !important;
        .metodo_item{
            display: flex !important;
            flex-direction: column;
            gap: 20px;
            width: 100% !important;
        }
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 8px;
    }

    .container-xl {
        padding: 0 8px;
    }
}

.relative {
    position: relative;
}


.banner {
    height: 70vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 100px !important;
    padding-top: 0 !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    .banner_content {
        padding-top: 0;
        text-align: center;
        position: relative;
        z-index: 1;

        .title_h1_nascosto {
            display: none;
        }
    }

    /* Responsive banner for mobile */
    @media (max-width: 768px) {
        height: 50vh;
        margin-top: 80px !important;
    }

    @media (max-width: 480px) {
        height: 40vh;
        margin-top: 105px !important;
    }
}


.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.banner_home {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 0 !important;
    padding-top: 0 !important;
    position: relative;



    .content_banner {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    .banner-text {
        color: #fff;
        text-align: center;

        h1 {
            display: none;
        }
    }

    .search-section {
        transform: translateY(100px);
        width: 100%;
        max-width: 1000px;
        padding: 0 30px;

        .search-container {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);

            .search-form {
                width: 100%;

                .search-fields {
                    display: flex;
                    gap: 20px;
                    align-items: flex-end;
                    flex-wrap: wrap;

                    .search-field {
                        flex: 1;
                        min-width: 150px;

                        label {
                            display: block;
                            font-size: 14px;
                            font-weight: 600;
                            color: #333;
                            margin-bottom: 8px;
                            font-family: var(--font-primary);
                        }

                        .search-select {
                            width: 100%;
                            padding: 12px 16px;
                            border: 2px solid #e0e0e0;
                            border-radius: 12px;
                            font-size: 16px;
                            font-family: var(--font-primary);
                            background-color: #fff;
                            transition: all 0.3s ease;

                            &:focus {
                                outline: none;
                                border-color: var(--color-yellow);
                                box-shadow: 0 0 0 3px rgba(186, 174, 122, 0.1);
                            }
                        }

                        &.price-field {
                            min-width: 200px;

                            .price-inputs {
                                display: flex;
                                align-items: center;
                                gap: 10px;

                                .price-input {
                                    flex: 1;
                                    padding: 12px 16px;
                                    border: 2px solid #e0e0e0;
                                    border-radius: 12px;
                                    font-size: 16px;
                                    font-family: var(--font-primary);
                                    background-color: #fff;
                                    transition: all 0.3s ease;

                                    &:focus {
                                        outline: none;
                                        border-color: var(--color-yellow);
                                        box-shadow: 0 0 0 3px rgba(186, 174, 122, 0.1);
                                    }

                                    &::placeholder {
                                        color: #999;
                                    }
                                }

                                .price-separator {
                                    font-size: 18px;
                                    font-weight: 600;
                                    color: #666;
                                    padding: 0 5px;
                                }
                            }
                        }

                        &:last-child {
                            flex: 0 0 auto;
                            min-width: auto;
                        }

                        .search-btn {
                            background-color: var(--color-yellow);
                            color: #fff;
                            padding: 12px 24px;
                            border: none;
                            border-radius: 12px;
                            font-size: 16px;
                            font-weight: 600;
                            font-family: var(--font-primary);
                            cursor: pointer;
                            transition: all 0.3s ease;
                            display: flex;
                            align-items: center;
                            gap: 10px;
                            min-width: 140px;
                            justify-content: center;
                            height: 48px;

                            &:hover {
                                background-color: var(--color-yellow-hover);
                                transform: translateY(-2px);
                                box-shadow: 0 4px 12px rgba(186, 174, 122, 0.3);
                            }

                            svg {
                                width: 18px;
                                height: 18px;
                            }
                        }
                    }
                }
            }
        }
    }

    @media (max-width: 768px) {
        .search-section {
            bottom: 30px;
            padding: 0 20px;

            .search-container {
                padding: 20px;

                .search-form {
                    .search-fields {
                        flex-direction: column;
                        gap: 15px;

                        .search-field {
                            min-width: 100%;
                            width: 100%;

                            &.price-field {
                                min-width: 100%;
                            }

                            .search-btn {
                                width: 100%;
                                margin-top: 10px;
                            }
                        }
                    }
                }
            }
        }
    }
}


.servizi {
    h2 {
        text-align: center;
        padding-bottom: 5px;
    }

    p {
        text-align: center;
    }

    .content_servizi {
        padding-top: 60px;



        .servizio {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            padding: 20px;
            border-radius: 12px;

            &.servizio_2 {
                box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
            }


            h3 {
                padding: 10px 0;
            }



        }
    }

}


.appartamenti {
    background-color: var(--color-background-light);
    padding: 100px 0;

    &.compra {
        margin-top: 0;
    }

    /* Responsive padding for mobile */
    @media (max-width: 768px) {
        padding: 60px 0;
    }

    @media (max-width: 480px) {
        padding: 40px 0;
    }
}

.appartamenti_list {

    .appartamento {

        padding: 20px;
        transition: all 0.3s ease;

        h3 {
            padding: 10px 0;
            color: #000;
            text-decoration: none;
        }

        .img_appartamento {
            border-top-left-radius: 12px;
            border-top-right-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;

            img {
                width: 100%;
                height: auto;
                object-fit: cover;
                transition: all 0.3s ease;
            }
        }

        .info_appartamento {
            background-color: #fff;
            border-bottom-left-radius: 12px;
            border-bottom-right-radius: 12px;
            padding: 10px 15px;

            h3 {
                font-size: 20px;
                text-decoration: none;
                font-weight: 600;
            }

            .breve_descrizione {

                border-bottom: 1px solid #E0E0E0;

                p {
                    font-size: 14px;
                    color: #666;
                    text-decoration: none;
                }
            }

            .info_appartamento_list {
                padding-top: 15px;

                p {
                    background: #baa970;
                    color: #fff;
                    font-size: 14px;
                    padding: 4px 6px;
                    border-radius: 12px;
                    text-decoration: none;
                }

                span {
                    font-weight: 600;
                }
            }


        }


        &:hover {
            transition: all 0.3s ease;
            transform: translateY(-5px);

            .img_appartamento {
                img {
                    transform: scale(1.02);
                    transition: all 0.3s ease;
                }
            }
        }
    }
}



.appartamenti_banner {}


.scegliere {
    .img_scegliere {
        img {
            width: 100%;
            height: auto;
        }
    }

    .scegliere_item {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .icona_scegliere {
        background-color: #baae7a45;
        padding: 20px;
        border-radius: 50%;

        img {
            width: 30px;
            height: 30px;
        }
    }

    .content_scegliere {
        padding-left: 80px;

        h3 {
            font-size: 20px;
        }

        p {
            font-size: 14px;
        }
    }

    .scegliere_list {
        margin-top: 40px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }


    &.noi {
        background-color: var(--color-background-light);
        padding: 100px 0;

        .content_scegliere {
            padding-left: 0;
            padding-right: 80px;
        }
    }

    /* Responsive scegliere for mobile */
    @media (max-width: 900px) {
        .content_scegliere {
            padding-left: 0;
            padding-right: 0;
            margin-top: 20px;
        }


        .icona_scegliere {
            padding: 15px;

            img {
                width: 25px;
                height: 25px;
            }
        }

        .scegliere_item {
            flex-direction: column;
            text-align: center;
            gap: 15px;
        }

        &.noi {
            padding: 60px 0;

            .content_scegliere {
                padding-right: 0;
            }
        }
    }

    @media (max-width: 480px) {
        .icona_scegliere {
            padding: 12px;

            img {
                width: 20px;
                height: 20px;
            }
        }

        &.noi {
            padding: 40px 0;
        }
    }
}



.appartamenti_dubai {


    .content_dubai {
        background-color: #baae7a22;
        border-radius: 24px;


        .dubai_box_content {
            padding: 50px;
        }
    }


    .img_dubai {
        img {
            width: 100%;
            height: auto;
        }
    }
}



.intro {
    background-color: var(--color-background-light);
    padding: 100px 0;

    img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 12px;
    }

    h2 {
        padding-bottom: 20px;
    }

    h4 {
        font-size: 20px;
        font-weight: 500;
        padding-bottom: 10px;
        position: relative;
        display: flex;
        align-items: center;
        gap: 10px;
        padding-left: 20px;

        &:before {
            content: '';
            display: block;
            position: absolute;
            top: 4px;
            left: -5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: var(--color-yellow);

        }
    }

    /* Responsive intro for mobile */
    @media (max-width: 768px) {
        padding: 60px 0;

        h4 {
            font-size: 18px;
            padding-left: 15px;

            &:before {
                width: 12px;
                height: 12px;
                left: -3px;
            }
        }
    }

    @media (max-width: 480px) {
        padding: 40px 0;

        h4 {
            font-size: 16px;
            padding-left: 12px;

            &:before {
                width: 10px;
                height: 10px;
                left: -2px;
            }
        }
    }
}

.mission {
    h2 {
        font-size: 40px;
    }

    p {
        font-size: 20px;
        font-weight: 400;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .mission_content {
        display: flex;
        justify-content: center;
    }

    .mission_item {
        text-align: center;
    }

    blockquote {
        font-size: 20px;
        font-weight: 400;
        line-height: 1.5;
        margin-bottom: 20px;
        color: var(--color-yellow);
        text-align: center;
        position: relative;
        padding: 20px 40px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
    }

    blockquote::before {
        content: '"';
        position: absolute;
        top: 10px;
        left: 15px;
        font-size: 48px;
        color: var(--color-yellow);
        font-family: serif;
        line-height: 1;
    }

    blockquote::after {
        content: '"';
        position: absolute;
        bottom: 10px;
        right: 15px;
        font-size: 48px;
        color: var(--color-yellow);
        font-family: serif;
        line-height: 1;
    }
}


.metodo {
    background-color: var(--color-background-light);


    .content_metodo_first {
        display: flex;
        align-items: center;
        padding: 40px;
    }

    .metodo_content {
        padding-bottom: 180px;
        display: flex;
        flex-direction: column;
        justify-content: center;

    }


    .metodo_img {

        img {
            width: 100%;
            height: auto;
            max-height: 700px;
            object-fit: cover;
            object-position: top;
        }
    }

    .metodo_list {
        display: flex;
        position: absolute;
        bottom: 20%;

        .metodo_item {
            display: flex;
            align-items: start;
            gap: 20px;
            width: 500px;
            background-color: #fff;
            box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
            padding: 40px 30px;
        }
    }
}


.page-template-template-page-case-vendita {
    .appartamenti {
        margin-top: 0;
    }
}


.intro_investire {
    img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}


.plus {
    background-color: var(--color-background-light);
    padding: 100px 0;

    .plus_content {
        text-align: center;
    }

    .plus_list {
        display: flex;
        flex-wrap: wrap;
        margin: 10px;

        .plus_item_content {
            background-color: #fff;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
            height: 100%;
            transition: all 0.3s ease;
            border-bottom: 4px solid var(--color-yellow);

            &:hover {
                background-color: var(--color-yellow);
                transition: all 0.3s ease;
                transform: translateY(-5px);
                box-shadow: 0 4px 12px rgba(186, 174, 122, 0.3);

                p {
                    color: #fff;
                    transition: all 0.3s ease;
                }

                h3 {
                    color: #fff;
                    transition: all 0.3s ease;
                }
            }
        }
    }

    /* Responsive plus for mobile */
    @media (max-width: 768px) {
        padding: 60px 0;

        .plus_list {
            margin: 5px;

            .plus_item_content {
                padding: 15px;
                margin-bottom: 15px;
            }
        }
    }

    @media (max-width: 480px) {
        padding: 40px 0;

        .plus_list {
            margin: 0;

            .plus_item_content {
                padding: 12px;
                margin-bottom: 12px;
            }
        }
    }
}


.investitori {
    background-color: #fff;

    .investitori_content {
        text-align: center;
        margin-bottom: 80px;

        h2 {
            font-size: 2.5rem;
            font-weight: 600;
            color: #CDBA8B;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        p {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
    }

    .investitori_list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
        gap: 40px;
        margin: 0;

        .d-flex {
            background: #fff;
            border-radius: 16px;
            padding: 0 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(205, 186, 139, 0.1);
            position: relative;
            overflow: hidden;

            &:hover {
                transform: translateY(-8px);
                box-shadow: 0 12px 40px rgba(205, 186, 139, 0.15);
                border-color: rgba(205, 186, 139, 0.3);
            }

            &::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 4px;
                background: linear-gradient(90deg, #CDBA8B, #baae7a);
                opacity: 0;
                transition: opacity 0.3s ease;
            }

            &:hover::before {
                opacity: 1;
            }

            .investitori_item {
                flex: 1;
                margin-left: 20px;

                h3 {
                    font-size: 1.4rem;
                    font-weight: 700;
                    color: #000;
                    margin-bottom: 15px;
                    line-height: 1.3;
                    position: relative;
                    display: flex;
                    align-items: center;
                    gap: 12px;

                }

                p {
                    font-size: 0.95rem;
                    color: #555;
                    line-height: 1.6;
                    margin: 0;
                }
            }

            img {
                width: 60px;
                height: 60px;
                object-fit: contain;
                opacity: 0.9;
                transition: all 0.3s ease;
            }

            &:hover img {
                opacity: 1;
                transform: scale(1.05);
            }
        }
    }

    @media (max-width: 768px) {
        padding: 60px 0;

        .investitori_content {
            margin-bottom: 50px;

            h2 {
                font-size: 2rem;
            }
        }

        .investitori_list {
            grid-template-columns: 1fr;
            gap: 25px;

            .d-flex {
                padding: 30px 25px;

                .investitori_item {
                    margin-left: 15px;

                    h3 {
                        font-size: 1.2rem;
                    }

                    p {
                        font-size: 0.9rem;
                    }
                }

                img {
                    width: 50px;
                    height: 50px;
                }
            }
        }
    }
}


.content_appartamento {
    .sticky_contatti {
        position: sticky;
        top: 140px;
    }

    .box_contatti {
        padding: 40px 10px;
        background-color: #f2f2f2;
        border-radius: 12px;
        text-align: center;

        .form_section_content {
            padding: 0;
            padding-top: 20px;


            .button_form {
                width: 100%;
            }


            label {
                width: 100%;
                text-align: left;
            }

            .wpcf7-list-item-label {
                font-size: 14px;
                text-align: left;

                a {
                    text-align: left;
                    display: inline;
                    justify-content: start;
                }
            }

            .d-flex.justify-between.flex-wrap {
                justify-content: space-between;

                .col-lg-6 {
                    width: 49%;
                }




            }

            textarea {
                max-height: 100px;
            }
        }

        h3 {
            font-size: 26px;
            font-weight: 600;
            margin-bottom: 0;
        }

        .tel {
            padding: 10px 0;

            a {
                font-size: 20px;
                font-weight: 600;
                color: #000;
                text-decoration: none;
            }
        }

        a {
            text-align: center;
            display: flex;
            justify-content: center;
        }

    }
}


.supporto {
    .immagine_supporto {
        img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
    }

    .content_supporto {
        padding-left: 40px;
    }

    .supporto_numero {
        font-size: 20px;
        font-weight: 600;
        color: #fff;
        background-color: #baae7a;
        padding: 5px 10px;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
    }
}

.agente_immobiliare {
    .title_agente_immobiliare {
        a {
            font-weight: 700;
            color: var(--color-yellow);
            text-decoration: underline;
        }
    }
}

.viaggia {
    padding: 100px 0;
    background-color: var(--color-background-light);

    .viaggia_content {
        padding-right: 30px;
    }

    .img_viaggia {
        img {
            width: 100%;
            height: auto;
        }
    }
}

.map {
    margin-top: 40px;

    iframe {
        width: 100%;
        height: 600px;
        border: none;
    }
}

.risultati_ricerca {
    padding-top: 200px;
}

.faq {
    .accordion-button {
        font-weight: 600;
    }

    .accordion-button:not(.collapsed) {
        background-color: var(--color-yellow);
        color: #fff;
        box-shadow: none;
        border: none;
        margin-bottom: 10px;

        &:after {
            color: #fff;
        }
    }


    .accordion-button {
        &:focus {
            box-shadow: none;
        }
    }
}

.intro_compra {
    .img_intro {
        img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
    }
}

.altri_servizi {
    .img_altri_servizi {
        img {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 12px;
        }
    }

    .intro {
        background-color: #fff;

        ul {
            padding-left: 10px;

            li {
                list-style: none;
            }
        }
    }
}

.assicura {
    .img_altri_servizi {
        img {
            border-radius: 12px;
            width: 100%;
            height: auto;
            object-fit: cover;
        }
    }

    .assicura_item {
        .assicura_item_content {
            display: inline-flex;
            align-items: start;
            gap: 15px;

            span {
                background-color: var(--color-yellow);
                color: #fff;
                border-radius: 50%;
                padding: 5px 15px;
                width: 35px;
                height: 35px;
                display: flex;
                align-items: center;
                justify-content: center;
            }
        }
    }
}

.form_section {

    .form_section_content {
        padding-right: 40px;
    }

    label {
        width: 90%;
    }

    .message {
        label {
            width: 95%;
        }
    }

    .button_form {
        width: 95%;

        .wpcf7-submit {
            background-color: #baae7a;
            color: #fff;
            padding: 10px;
            border-radius: 12px;
            margin-bottom: 10px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;

            &:hover {
                background-color: #baae7a;
                color: #fff;
                transform: translateY(-2px);
                box-shadow: 0 4px 12px rgba(186, 174, 122, 0.3);
                transition: all 0.3s ease;
            }
        }
    }

    .wpcf7-list-item {
        margin: 0;

        label {
            display: flex;
            align-items: start;

            .wpcf7-list-item-label {
                font-size: 12px;
                padding-bottom: 5px;
            }

            input {
                width: auto;
                margin-top: 5px;
                margin-right: 15px;
            }
        }
    }

    textarea {
        width: 100%;
        border: 2px solid #cfc8a4;
        padding: 10px;
        border-radius: 12px;
        margin-bottom: 10px;
    }


    img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 12px;
    }

    input {
        width: 100%;
        border: 2px solid #cfc8a4;
        padding: 10px;
        border-radius: 12px;
        margin-bottom: 10px;
    }

    /* Responsive form for mobile */
    @media (max-width: 768px) {
        .form_section_content {
            padding-right: 0;
            margin-top: 30px;
        }

        label {
            width: 100%;
        }

        .message label {
            width: 100%;
        }

        .button_form {
            width: 100%;
        }

        .metodo_list {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
    }

    @media (max-width: 480px) {
        .wpcf7-list-item label {
            flex-direction: column;
            align-items: flex-start;

            input {
                margin-top: 10px;
                margin-right: 0;
            }
        }
    }
}


.categorie_section {
    padding-top: 100px;

    .categorie_grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin: 0;

        .categoria_item {
            background-color: #fff;
            border-radius: 16px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(205, 186, 139, 0.1);
            position: relative;
            overflow: hidden;

            &:hover {
                transform: translateY(-8px);
                box-shadow: 0 12px 40px rgba(205, 186, 139, 0.15);
                border-color: rgba(205, 186, 139, 0.3);
            }

            &::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 4px;
                background: linear-gradient(90deg, #CDBA8B, #baae7a);
                opacity: 0;
                transition: opacity 0.3s ease;
            }

            &:hover::before {
                opacity: 1;
            }

            h3 {
                font-size: 1.4rem;
                font-weight: 700;
                color: #000;
                margin-bottom: 20px;
                line-height: 1.3;
            }

            .categoria_btn {
                background-color: var(--color-yellow);
                color: #fff;
                padding: 12px 24px;
                border: none;
                border-radius: 12px;
                font-size: 16px;
                font-weight: 600;
                font-family: var(--font-primary);
                text-decoration: none;
                display: inline-block;
                transition: all 0.3s ease;
                cursor: pointer;

                &:hover {
                    background-color: var(--color-yellow-hover);
                    transform: translateY(-2px);
                    box-shadow: 0 4px 12px rgba(186, 174, 122, 0.3);
                    color: #fff;
                    text-decoration: none;
                }
            }
        }
    }

    /* Responsive categorie for mobile */
    @media (max-width: 1024px) {
        .categorie_grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }
    }

    @media (max-width: 768px) {
        padding: 60px 0;

        .categorie_grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;

            .categoria_item {
                padding: 30px 20px;

                h3 {
                    font-size: 1.2rem;
                }

                .categoria_btn {
                    padding: 10px 20px;
                    font-size: 14px;
                }
            }
        }
    }

    @media (max-width: 480px) {
        padding: 40px 0;

        .categorie_grid {
            grid-template-columns: 1fr;
            gap: 15px;

            .categoria_item {
                padding: 25px 15px;

                h3 {
                    font-size: 1.1rem;
                }

                .categoria_btn {
                    padding: 10px 18px;
                    font-size: 14px;
                }
            }
        }
    }
}

footer {
    background-color: #181A20;
    margin-top: 100px;
    color: #fff;
    font-weight: 300;
    padding: 50px 0;

    .logo-footer {

        img {
            width: 100%;
            height: auto;
            margin-bottom: 20px;
        }

    }

    .sede {
        a {
            color: #fff;
            text-decoration: none;
            font-weight: 400;
            font-size: 16px;
            padding-bottom: 10px;
            display: block;
        }
    }

    .copyright {
        a {
            color: #fff;
        }
    }
}


.page-id-3{
    .only{
        padding-top: 150px;
    }
    .colonnastretta{
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }
}



@media (max-width: 600px) {
    .mission {
        p{
            font-size: 16px;
        }
    }

    .dubai_box_content{
        padding: 30px !important;
    }

    .img_dubai{
        margin-top: 20px !important;
    }

    .banner-text{
        width: 70%;
        margin: 0 auto;
    }

    .single-appartamento{
        padding-top: 45px;
    }
}