:root {
    --color-blue: #194584;
    --color-sky: #0086cd;
    --color-white: #fff;
    --color-black: #000;
    --color-grey: #f6f6f6;
    --color-dark-grey: #6f6f6e;
    --color-middle-grey: #d9d9d9;
    --color-red: #ec1c24;
    --color-dark-red: #c62020;
    --color-yellow: #f8e71c;
    --color-orange: #e98630;
    --color-green: #0ebb53;
    --swiper-pagination-bullet-inactive-color: #fff
}

* {
    margin: 0;
    padding: 0
}

*,
*::before,
*::after {
    box-sizing: border-box
}

input,
textarea,
select,
button {
    font: inherit
}

p {
    text-wrap: pretty;
    margin: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-wrap: balance;
    margin: 0
}

img,
video,
svg {
    max-width: 100%;
    height: auto
}

ul,
figure {
    margin: 0
}

a {
    color: inherit;
    text-decoration: none !important
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden
}

body {
    font-family: poppins, sans-serif !important;
    min-height: 100dvh
}

.poppins-regular {
    font-family: poppins, sans-serif;
    font-weight: 400;
    font-style: normal
}

.poppins-medium {
    font-family: poppins, sans-serif;
    font-weight: 500;
    font-style: normal
}

.poppins-bold {
    font-family: poppins, sans-serif;
    font-weight: 700;
    font-style: normal
}

.poppins-extrabold {
    font-family: poppins, sans-serif;
    font-weight: 800;
    font-style: normal
}

.poppins-black-italic {
    font-family: poppins, sans-serif;
    font-weight: 900;
    font-style: italic
}

.container {
    max-width: 1560px;
    width: 100%;
    margin: 0 auto
}

header {
    background-color: var(--color-black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform .3s ease-in-out;
    transform: translateY(0);
    position: fixed;
    top: 77px;
    left: 0;
    right: 0;
    z-index: 99;

    &.menu--isHidden {
        transform: translateY(-100%);
    }

    &.menu--isFixed {
        position: fixed;
        top: 77px;
        left: 0;
        right: 0;
        z-index: 100;
    }

    .container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;

        .header-left {
            display: flex;
            align-items: center;

            h1 {
                font-size: 16px;
                color: var(--color-white);
            }

            button {
                background-color: var(--color-red);
                color: var(--color-white);
                border: none;
                border-radius: 4px;
                padding: 3px 7px;
                text-align: center;
                font-size: 14px;
                display: none;
            }
        }

        nav {
            ul {
                display: flex;
                list-style: none;
                align-items: center;

                li {
                    a {
                        color: var(--color-white);
                        font-size: 14px;
                        font-weight: 500;
                        padding: 19px 16px;
                        display: block;
                        transition: background-color 0.3s ease-in-out;

                        &:hover {
                            background-color: var(--color-dark-grey);
                            transition: background-color 0.3s ease-in-out;
                        }
                    }
                }
            }
        }
    }
}

#hero {
    margin-top: 55px;

    .container__hero {
        position: relative;

        video {
            width: 100%;
            height: 100%;
        }

        .video-mobile {
            display: none;
        }

        .container__hero__icons {
            position: absolute;
            bottom: 52px;
            left: 0;
            right: 0;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1560px;
            width: 100%;

            .container__hero__icons__item {
                display: flex;
                flex-direction: row;
                align-items: center;

                img {
                    margin-right: 12px;
                }

                .container__hero__icons__item__text {
                    h2 {
                        font-size: 14px;
                        font-weight: 500;
                        color: var(--color-white);
                    }

                    p {
                        font-size: 20px;
                        color: var(--color-white);
                    }

                    &.icon--precio {
                        h2 {
                            font-size: 16px;
                            font-weight: 700;
                        }
                    }
                }
            }
        }
    }
}

#precio {
    background: var(--color-black);
    padding: 15px 0;
    display: none;
    margin-top: -7px;

    .container {
        h2 {
            font-size: 14px;
            color: var(--color-white);
            font-weight: 500;
            text-align: center;

            span {
                font-size: 20px;
            }
        }
    }
}

#motorizacion {
    padding: 120px 0;
    background: url(images/bg-confort.webp)no-repeat 50%;
    background-size: cover;
    margin-top: -7px;

    .container {
        .moto__header {
            max-width: 970px;
            margin: 0 auto;

            h2 {
                font-size: 60px;
                color: var(--color-sky);
                text-align: center;
                font-weight: 400;
            }

            img {
                margin: 69px auto 44px;
                display: block;
            }

            p {
                font-size: 20px;
                color: var(--color-white);
                text-align: center;
            }
        }

        .moto__beneficios {
            margin: 100px auto;

            h3 {
                font-size: 24px;
                font-weight: 700;
                color: var(--color-white);
                text-align: center;
                margin-bottom: 66px;
            }

            .beneficios {
                display: flex;
                flex-flow: wrap;
                justify-content: space-between;
                gap: 24px;

                .beneficio__item {
                    width: 49%;
                    position: relative;
                    overflow: hidden;

                    img {
                        transform: scale(1.05);
                        transition: transform 0.5s ease-in-out;
                    }

                    .beneficio__item__text {
                        position: absolute;
                        bottom: 26px;
                        left: 40px;
                        z-index: 10;
                        width: 90%;

                        .beneficio__item__text__paragraph {
                            font-size: 14px;
                            color: var(--color-white);
                            font-weight: 500;
                            max-height: 0;
                            opacity: 0;
                            transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
                            overflow: hidden;
                        }

                        .beneficio__item__text__title {
                            display: flex;
                            align-items: center;
                            gap: 12px;
                            margin-bottom: 11px;
                            cursor: pointer;

                            h4 {
                                font-size: 20px;
                                color: var(--color-white);
                            }
                        }
                    }

                    &.beneficio--active {
                        transition: all 0.5s ease-in-out;

                        img {
                            transform: scale(1.1);
                        }

                        .beneficio__item__text {
                            .beneficio__item__text__paragraph {
                                max-height: 100px;
                                opacity: 1;
                            }
                        }
                    }
                }
            }

            #beneficios--swiper {
                display: none;

                .beneficio__item {
                    position: relative;
                    overflow: hidden;
                    width: 100%;
                    max-width: 450px;
                    margin: 0 auto;

                    .beneficio__item__img {
                        width: 100%;
                    }

                    .beneficio__item__text {
                        position: absolute;
                        bottom: 46px;
                        padding: 0 16px;

                        h4 {
                            font-size: 16px;
                            color: var(--color-white);
                            margin: 14px 0;
                        }

                        p {
                            color: var(--color-white);
                            font-size: 14px;
                            font-weight: 500;
                        }
                    }
                }

                .swiper-pagination {
                    bottom: 0;
                }
            }
        }

        .modos__conduccion {
            width: 88%;
            margin: 0 auto;

            h3 {
                font-size: 24px;
                font-weight: 700;
                color: var(--color-white);
                text-align: center;
                margin-bottom: 66px;
            }

            ul {
                display: flex;
                flex-direction: row;
                justify-content: center;
                gap: 50px;
                border-bottom: 1px solid var(--color-dark-grey);

                li {
                    color: var(--color-white);
                    font-size: 16px;
                    font-weight: 500;
                    padding-bottom: 8px;
                    border-bottom: 3px solid transparent;
                    list-style: none;
                    cursor: pointer;
                    transition: border-color 0.3s ease-in-out;
                    letter-spacing: 0.1px;

                    &:hover,
                    &.modo--active {
                        transition: border-color 0.3s ease-in-out;
                        border-color: var(--color-sky);
                        font-weight: 700;
                        color: var(--color-sky);
                        letter-spacing: 0;
                    }
                }
            }

            .modo__conduccion__content {
                min-height: 590px;

                video {
                    margin: 60px auto;
                    display: block;
                }

                .modo__conduccion__text {
                    border: 1px solid var(--color-sky);
                    padding: 24px;

                    h4 {
                        font-size: 16px;
                        color: var(--color-white);
                        margin-bottom: 12px;
                    }

                    p {
                        font-size: 14px;
                        color: var(--color-white);
                        font-weight: 500;
                    }
                }
            }
        }
    }
}

#confort {
    background: url(images/bg-confort.webp)no-repeat 50%;
    min-height: 100dvh;
    background-size: cover;
    padding: 130px 0;
    margin-top: -7px;

    .container {
        max-width: 1590px;
        margin: 0 auto;

        h2 {
            margin: 0;
            text-align: center;
            color: var(--color-white);
            letter-spacing: 4px;
            font-size: 60px;
            font-weight: normal;
        }

        .confort__content {
            display: flex;
            flex-direction: row;
            margin-top: 100px;

            .confort__text {
                width: 28%;
                background-color: var(--color-black);
                color: var(--color-white);
                padding: 0 46px;
                display: flex;
                flex-direction: column;
                padding-top: 175px;

                ul {
                    display: flex;
                    flex-direction: row;
                    gap: 32px;

                    li {
                        list-style: none;
                        font-size: 20px;
                        font-weight: bold;

                        &.number--active,
                        &:hover {
                            color: var(--color-sky);
                            cursor: pointer;
                        }
                    }
                }

                h3 {
                    font-size: 20px;
                    color: var(--color-sky);
                    margin: 41px 0 12px;
                }

                p {
                    font-size: 14px;
                }
            }

            .confor__image {
                width: 72%;

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

#sensing {
    padding: 120px 0;
    background-color: var(--color-blue);

    .container {
        .sensing__header {
            text-align: center;

            p {
                color: var(--color-white);
                font-size: 24px;
                margin-top: 77px;
            }
        }

        ul {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            border-bottom: 1px solid var(--color-white);
            margin: 87px auto 68px;
            padding: 0 100px;

            li {
                color: var(--color-white);
                font-size: 16px;
                font-weight: 500;
                padding-bottom: 8px;
                border-bottom: 3px solid transparent;
                list-style: none;
                cursor: pointer;
                transition: border-color 0.3s ease-in-out;
                letter-spacing: 0.1px;

                &:hover,
                &.tab--active {
                    transition: border-color 0.3s ease-in-out;
                    border-color: var(--color-white);
                    font-weight: 700;
                    color: var(--color-white);
                    letter-spacing: 0;
                }
            }
        }

        .sensing__content {
            .sensing__content__item {
                position: relative;
                display: flex;

                &.sensing--content__item--right {
                    justify-content: right;

                    .sensing__content__item__text {
                        left: 0;
                    }
                }

                &.sensing--content__item--left {
                    justify-content: left;

                    .sensing__content__item__text {
                        right: 0;
                    }
                }

                display: none;

                figure {
                    width: 88%;
                    overflow: hidden;

                    img {
                        width: 100%;
                        transition: transform 0.3s ease-in-out;

                        &:hover {
                            transform: scale(1.05);
                            transition: transform 0.3s ease-in-out;
                        }

                        &.sensing__image--mobile {
                            display: none;
                        }
                    }
                }

                .sensing__content__item__text {
                    padding: 65px 24px;
                    position: absolute;
                    bottom: 44px;
                    width: 374px;
                    background-color: var(--color-white);
                    text-align: left;

                    .sensing__content__item__text__title {
                        display: flex;
                        align-items: center;
                        gap: 12px;
                        margin: 36px auto 12px;
                    }

                    h4 {
                        font-size: 20px;
                        color: var(--color-blue);
                    }

                    p {
                        font-size: 14px;
                        color: var(--color-blue);
                        font-weight: 500;
                    }
                }

                &.sensing--active {
                    display: flex;
                }
            }
        }
    }
}

.bg-interior-exterior {
    background: var(--color-black);
    min-height: 100dvh
}

#exterior {
    padding: 120px 0;

    .container {
        h2 {
            font-size: 60px;
            color: var(--color-white);
            text-align: center;
            font-weight: 400;
        }

        .exterior__inner {
            margin-top: 70px;

            .exterior__hero {
                position: relative;
                width: 100%;
                margin: 0 auto 24px;

                img {
                    width: 100%;
                }

                .exterior__hero__text {
                    position: absolute;
                    bottom: 33px;
                    left: 0;
                    right: 0;
                    margin: 0 auto;
                    max-width: 740px;

                    h3 {
                        font-size: 24px;
                        color: var(--color-white);
                        margin-bottom: 8px;
                        text-align: center;
                    }

                    p {
                        font-size: 16px;
                        color: var(--color-white);
                        text-align: center;
                        font-weight: 500;
                    }
                }
            }

            .exterior__thumbs {
                display: flex;
                flex-flow: wrap;
                justify-content: space-between;

                .exterior__thumbs__item {
                    cursor: pointer;
                    position: relative;
                    width: 33%;

                    img {
                        width: 100%;
                    }

                    p {
                        position: absolute;
                        bottom: 25px;
                        left: 15px;
                        right: 10px;
                        margin: 0 auto;
                        font-size: 16px;
                        color: var(--color-white);
                        font-weight: 500;
                    }

                    .thumb__hover {
                        position: absolute;
                        top: 0;
                        left: 0;
                        right: 0;
                        bottom: 0;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        background: rgba(25, 69, 132, 0.8);
                        opacity: 0;
                        transition: opacity 0.5s ease;
                        display: none;

                        span {
                            font-size: 60px;
                            color: var(--color-white);
                        }
                    }
                }
            }
        }

        .exterior__mobile {
            display: none;
            margin-top: 50px;

            ul {
                display: flex;
                flex-direction: row;
                gap: 50px;
                border-bottom: 1px solid var(--color-dark-grey);
                overflow: scroll;
                flex-wrap: nowrap;
                justify-content: start;
                align-items: center;

                li {
                    color: var(--color-white);
                    font-size: 16px;
                    font-weight: 500;
                    padding-bottom: 8px;
                    border-bottom: 3px solid transparent;
                    list-style: none;
                    cursor: pointer;
                    transition: border-color 0.3s ease-in-out;
                    letter-spacing: 0.1px;
                    flex-shrink: 0;

                    &:hover,
                    &.tab--active {
                        transition: border-color 0.3s ease-in-out;
                        border-color: var(--color-sky);
                        font-weight: 700;
                        color: var(--color-sky);
                        letter-spacing: 0;
                    }
                }
            }

            .exterior__content {
                margin-top: 20px;

                .exterior__content__item {
                    &.exterior__content__item--active {
                        display: block;
                    }

                    display: none;

                    img {
                        width: 100%;
                        max-width: 430px;
                        margin: 0 auto;
                    }

                    .exterior__content__item__text {
                        padding: 37px 29px;
                        border: 1px solid var(--color-white);
                        min-height: 243px;

                        h4 {
                            font-size: 16px;
                            color: var(--color-white);
                            margin-bottom: 16px;
                        }

                        p {
                            font-size: 14px;
                            color: var(--color-white);
                            font-weight: 500;
                        }
                    }
                }
            }
        }
    }
}

#interior {
    padding-bottom: 190px;

    .container {
        h2 {
            font-size: 60px;
            color: var(--color-white);
            text-align: center;
            font-weight: 400;
        }

        ul {
            display: flex;
            flex-direction: row;
            justify-content: center;
            gap: 50px;
            border-bottom: 1px solid var(--color-dark-grey);
            margin: 87px auto 68px;
            padding: 0 100px;
            width: 88%;

            li {
                color: var(--color-white);
                font-size: 16px;
                font-weight: 500;
                padding-bottom: 8px;
                border-bottom: 3px solid transparent;
                list-style: none;
                cursor: pointer;
                transition: border-color 0.3s ease-in-out;
                letter-spacing: 0.1px;

                &:hover,
                &.tab--active {
                    transition: border-color 0.3s ease-in-out;
                    border-color: var(--color-sky);
                    font-weight: 700;
                    color: var(--color-sky);
                    letter-spacing: 0;
                }
            }
        }

        .interior__content {
            .interior__content__main {
                display: none;

                &.interior__content__main--active {
                    display: block;
                }

                .interior__content__item {
                    position: relative;
                    display: flex;
                    justify-content: right;
                    display: none;

                    figure {
                        width: 88%;
                        overflow: hidden;

                        img {
                            width: 100%;
                            transition: transform 0.3s ease-in-out;

                            &:hover {
                                transform: scale(1.05);
                                transition: transform 0.3s ease-in-out;
                            }
                        }
                    }

                    .interior__content__item__text {
                        padding: 47px 31px;
                        position: absolute;
                        bottom: 44px;
                        left: 0;
                        width: 374px;
                        background-color: var(--color-white);
                        text-align: left;

                        span {
                            color: var(--color-sky);
                            font-size: 14px;
                            font-weight: 500;
                        }

                        h4 {
                            font-size: 20px;
                            color: var(--color-blue);
                            margin: 36px auto 12px;
                        }

                        p {
                            font-size: 14px;
                            color: var(--color-blue);
                            font-weight: 500;
                        }

                        .interior__nav {
                            margin-top: 50px;
                            display: flex;
                            flex-direction: row;
                            justify-content: space-between;
                            align-items: center;

                            &.interior__nav--one {
                                justify-content: right;
                            }

                            .interior__nav__item {
                                display: flex;
                                align-items: center;
                                gap: 10px;
                                cursor: pointer;

                                span {
                                    font-size: 11px;
                                    color: var(--color-dark-grey);
                                }

                                img {
                                    &.arrow--prev {
                                        transform: rotate(180deg);
                                    }
                                }
                            }
                        }
                    }

                    &.interior__content__item--active {
                        display: flex;
                    }
                }
            }
        }
    }
}

#colores {
    padding: 90px 0;

    .container {
        h2 {
            font-size: 60px;
            color: var(--color-black);
            text-align: center;
            font-weight: 400;
        }

        .colores__inner {
            width: 100%;
            max-width: 1000px;
            margin: 37px auto 28px;
            cursor: grab;
            position: relative;
            min-height: 450px;

            &:hover .colores__inner__message {
                display: none;
            }

            .colores__inner__message {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(255, 255, 255, 0.75);
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;

                p {
                    font-size: 20px;
                    font-weight: 500;
                    color: var(--color-blue);
                    margin-bottom: 18px;
                }
            }

            .colores__view {
                display: none;

                &.colores__view--active {
                    display: block;
                }
            }
        }

        .colores__name {
            text-align: center;
            color: var(--color-blue);
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .colores__options {
            display: flex;
            flex-direction: row;
            align-items: end;
            justify-content: center;
            gap: 20px;

            figure {
                max-width: 58px;

                img {
                    width: 100%;
                }
            }

            img {
                cursor: pointer;
                transform: scale(0.8);
                transition: all 0.3s ease-in-out;

                &.color--active,
                &:hover {
                    transform: scale(1);
                    transition: all 0.3s ease-in-out;
                }
            }
        }

        .colores__button {
            background-color: var(--color-red);
            color: var(--color-white);
            border: none;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            padding: 16px 0;
            width: 242px;
            margin: 50px auto 0;
            cursor: pointer;
            border: 2px solid var(--color-red);
            transition: all 0.3s ease-in-out;

            &:hover {
                background-color: var(--color-white);
                color: var(--color-red);
                transition: all 0.3s ease-in-out;
            }

            span {
                font-size: 16px;
                font-weight: 700;
            }
        }
    }
}

#galeria {
    background-color: var(--color-grey);
    padding: 100px 0;

    .container {
        h2 {
            font-size: 60px;
            color: var(--color-black);
            text-align: center;
            font-weight: 400;
        }

        ul {
            display: flex;
            flex-direction: row;
            justify-content: center;
            gap: 50px;
            border-bottom: 1px solid var(--color-middle-grey);
            margin: 60px auto;
            padding: 0 100px;

            li {
                color: var(--color-dark-grey);
                font-size: 16px;
                font-weight: 500;
                padding-bottom: 8px;
                border-bottom: 3px solid transparent;
                list-style: none;
                cursor: pointer;
                transition: border-color 0.3s ease-in-out;
                letter-spacing: 0.1px;

                &:hover,
                &.tab--active {
                    transition: border-color 0.3s ease-in-out;
                    border-color: var(--color-blue);
                    font-weight: 700;
                    color: var(--color-blue);
                    letter-spacing: 0;
                }
            }
        }

        .galeria__content {
            .galeria__item {
                display: none;

                &.galeria__item--active {
                    display: block;
                }

                .galeria__item__row {
                    display: flex;
                    flex-direction: row;

                    .galeria__item__image {
                        width: 42%;
                        overflow: hidden;
                        cursor: pointer;

                        &.galeria__item__image--big {
                            width: 58%;
                        }

                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                            transform: scale(1.01);
                            transition: transform 0.3s ease-in-out;

                            &:hover {
                                transform: scale(1.05);
                                transition: transform 0.3s ease-in-out;
                            }
                        }
                    }
                }
            }
        }
    }
}

#galeriaSliderContent {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .7);
    opacity: 0;
    z-index: -1;
    transition: all .3s ease-in-out;

    #closeGaleriaSlider {
        position: absolute;
        top: 15vh;
        right: 10vw;
        cursor: pointer;
        z-index: 100;
    }

    .slider__nav {
        #arrowPrevGaleriaSlider {
            position: absolute;
            top: 50vh;
            z-index: 99999;
            cursor: pointer;
            left: 10vw;
            width: 35px;
            height: 35px;
        }

        #arrowNextGaleriaSlider {
            position: absolute;
            top: 50vh;
            z-index: 99999;
            cursor: pointer;
            right: 10vw;
            transform: rotate(180deg);
            width: 35px;
            height: 35px;
        }
    }

    .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;

        img {
            width: 100%;
            max-width: 1920px;
            margin: 0 auto;
        }
    }

    .swiper-pagination {
        display: none;
    }
}

#contacto {
    background: url(images/bg-confort.webp)no-repeat 50%;
    background-size: cover;
    min-height: 100dvh;
    padding: 20px 0;

    .container {
        h2 {
            font-size: 60px;
            color: var(--color-white);
            max-width: 770px;
            margin-bottom: 120px;
            font-weight: 400;
            text-wrap: pretty;
        }

        .contacto__buttons {
            button {
                background-color: var(--color-red);
                border: none;
                color: var(--color-white);
                display: flex;
                align-items: center;
                gap: 20px;
                padding: 13px 20px;
                width: 246px;
                cursor: pointer;
                transition: all 0.3s ease-in-out;
                margin-bottom: 26px;

                &:last-child {
                    margin-bottom: 0;
                }

                &:hover {
                    background: rgba(255, 255, 255, 0.75);
                    color: var(--color-red);
                    transition: all 0.3s ease-in-out;
                }

                span {
                    font-size: 16px;
                    font-weight: 700;
                }
            }
        }
    }
}

.contacto__form {
    background: var(--color-white);
    padding: 60px 250px 120px 53px;
    max-width: 960px;
    transform: translateX(200%);
    transition: transform .6s ease-in-out;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;

    &.contacto__form--active {
        transform: translateX(0);
        transition: transform 0.6s ease-in-out;
    }

    .contacto__form__title {
        display: flex;
        justify-content: space-between;
        align-items: center;

        h3 {
            color: var(--color-blue);
            font-size: 20px;
            font-weight: 400;
        }

        img {
            cursor: pointer;
        }
    }

    .just-validate-error-label {
        font-size: 12px;
        margin: 0px;
        padding: 0px;
    }

    form {
        margin-top: 10px;

        ::placeholder {
            color: var(--color-dark-grey);
            font-size: 14px;
            font-weight: 500;
        }

        .input__full,
        select {
            border: 1px solid var(--color-blue);
            padding: 10px 17px;
            color: var(--color-dark-grey);
            font-size: 14px;
            font-weight: 500;
            width: 100%;
            outline: none;
            margin: 8px 0;
        }

        .container__input {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;

            .input__full--small,
            select {
                width: 49%;
            }
        }

        .input__legales__container {
            margin: 40px 0;

            .input__legales {
                display: flex;
                align-items: center;
                gap: 20px;

                label {
                    font-size: 14px;
                    font-weight: 500;
                    color: var(--color-dark-grey);
                }
            }
        }

        button {
            background-color: var(--color-red);
            color: var(--color-white);
            border: none;
            font-size: 16px;
            font-weight: 700;
            text-align: center;
            padding: 16px 0;
            width: 246px;
            margin: 0 auto;
            display: block;
            cursor: pointer;
        }
    }
}

#noticias {
    background: url(images/bg-confort.webp)no-repeat 50%;
    background-size: cover;
    padding: 90px 0;
    min-height: 100dvh;

    .container {
        .noticias__header {
            text-align: center;
            margin-bottom: 100px;

            h2 {
                font-size: 60px;
                color: var(--color-sky);
                font-weight: 400;
            }

            p {
                margin-top: 32px;
                font-size: 30px;
                color: var(--color-sky);
            }
        }

        .noticias__swiper {
            .noticia__item {
                padding: 38px 22px;
                background: var(--color-white);
                max-width: 503px;

                img {
                    width: 100%;
                    max-width: 460px;
                    margin: 0 auto;
                }

                a {
                    display: block;
                    margin: 38px auto 0;
                    font-size: 16px;
                    font-weight: 700;
                    color: var(--color-white);
                    text-align: center;
                    padding: 16px 0;
                    width: 246px;
                    border: 1px solid var(--color-blue);
                    background: var(--color-blue);
                    transition: all 0.3s ease-in-out;

                    &:hover {
                        background: var(--color-white);
                        color: var(--color-blue);
                        transition: all 0.3s ease-in-out;
                    }
                }
            }
        }
    }
}

footer {
    background: url(images/m-bg-confort.webp)no-repeat 50%;
    background-size: cover;
    padding: 100px 20px;

    .container {
        img {
            display: block;
            margin: 0 auto;
        }

        .footer__iconos {
            display: flex;
            flex-direction: row;
            gap: 24px;
            justify-content: center;
            margin: 36px auto 42px;

            svg {
                color: var(--color-white);
                transition: all 0.3s ease-in-out;
                width: 31px;
                height: 30px;

                &:hover {
                    color: var(--color-sky);
                    transition: all 0.3s ease-in-out;
                }
            }
        }

        .footer__text {
            p {
                text-align: center;
                color: var(--color-white);
                font-size: 14px;
                font-weight: 500;
            }
        }
    }
}

.buttons__fixed {
    position: fixed;
    right: 0;
    top: 50vh;
    z-index: 998;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;

    button {
        background-color: var(--color-red);
        color: var(--color-white);
        border: none;
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 13px 20px;
        width: 200px;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
        transform: translateX(135px);

        &:hover {
            background: rgba(255, 255, 255, 0.75);
            color: var(--color-red);
            transition: all 0.3s ease-in-out;
            transform: translateX(0);
        }

        span {
            font-size: 16px;
            font-weight: 700;
        }
    }
}

@media screen and (max-width:1560px) {
    .container {
        max-width: 100%;
        padding: 0 16px
    }

    #hero {
        .container__hero {
            .container__hero__icons {
                padding: 0 16px;
            }
        }
    }

    #colores {
        padding: 80px 0
    }

    #contacto {
        .container {
            padding: 0 30px;
        }
    }
}

@media screen and (max-width:1360px) {
    #confort {
        padding: 80px 0;

        .container {
            h2 {
                font-size: 32px;
            }

            .confort__content {
                margin-top: 60px;

                .confort__text {
                    padding-top: 120px;
                }
            }
        }
    }
}

@media screen and (max-width:1200px) {
    header {
        .container {
            flex-direction: column;

            .header-left {
                padding: 22px 0;
                width: 100%;
                justify-content: space-between;

                h1 {
                    font-weight: 500;
                    font-size: 14px;
                }

                button {
                    display: block;
                }
            }

            nav {
                display: none;
                width: 100%;

                ul {
                    flex-direction: column;

                    li {
                        width: 100%;
                        border-top: 1px solid var(--color-white);

                        &:first-child {
                            border-top: none;
                        }
                    }
                }

                &.menu--isOpen {
                    display: block;
                }
            }
        }
    }

    #hero {
        .container__hero {
            .video-mobile {
                display: block;
                width: 100%;
            }

            .video-desktop {
                display: none;
            }

            .container__hero__icons {
                flex-flow: wrap;
                justify-content: start;
                max-width: 100%;
                bottom: 17px;

                .container__hero__icons__item {
                    flex-flow: wrap;
                    flex-direction: column;
                    align-items: self-start;

                    img {
                        margin-right: 0;
                        margin-bottom: 8px;
                    }

                    &.item--precio {
                        display: none;
                    }

                    &.item--motor {
                        width: 100%;
                        align-content: flex-start;
                        margin-bottom: 26px;
                    }

                    &.item--seguridad {
                        margin-left: 35px;
                    }

                    .container__hero__icons__item__text {

                        h2,
                        p {
                            font-size: 14px;
                        }

                        p {
                            font-weight: 800;
                        }
                    }
                }
            }
        }
    }

    #precio {
        display: block
    }

    #motorizacion {
        padding: 62px 0 89px;

        .container {
            .moto__header {
                h2 {
                    font-size: 32px;
                }

                img {
                    width: 80%;
                    max-width: 410px;
                    margin: 60px auto 30px;
                }

                p {
                    font-size: 14px;
                }
            }

            .moto__beneficios {
                .beneficios {
                    gap: 12px;
                }
            }
        }
    }

    #sensing {
        .container {
            ul {
                padding: 0;
            }

            .sensing__content {
                .sensing__content__item {
                    .sensing__content__item__text {
                        padding: 20px;
                        bottom: 10px;
                    }
                }
            }
        }
    }
}

@media screen and (max-width:768px) {
    #confort {
        background: url(images/m-bg-confort.webp)no-repeat 50%;
        background-size: cover;
        padding: 120px 0 70px;

        .container {
            .confort__content {
                flex-direction: column-reverse;
                margin-top: 57px;

                .confort__text {
                    width: 100%;
                    padding: 32px 22px;

                    h3 {
                        font-size: 16px;
                    }
                }

                .confor__image {
                    width: 100%;
                }
            }
        }
    }

    #motorizacion {
        background: url(images/bg-confort.webp)no-repeat 50%;
        background-size: cover;

        .container {
            .moto__beneficios {
                margin-bottom: 0;

                #beneficios--grid {
                    display: none;
                }

                #beneficios--swiper {
                    display: block;
                }
            }

            .modos__conduccion {
                width: 100%;
                margin: 90px auto;

                h3 {
                    font-size: 20px;
                }

                ul {
                    overflow: scroll;
                    flex-wrap: nowrap;
                    justify-content: start;
                    align-items: center;
                    gap: 30px;

                    li {
                        flex-shrink: 0;
                        width: 37%;
                        font-size: 14px;
                        text-align: center;
                    }
                }

                .modo__conduccion__content {
                    min-height: 440px;

                    .modo__conduccion__text {
                        padding: 32px 22px;
                    }
                }
            }
        }
    }

    #sensing {
        padding: 80px 0;

        .container {
            .sensing__header {
                img {
                    width: 80%;
                    max-width: 532px;
                }

                p {
                    font-size: 14px;
                    color: var(--color-white);
                    margin-top: 30px;
                }
            }

            ul {
                margin: 60px 0;
                overflow: scroll;
                flex-wrap: nowrap;
                justify-content: start;
                align-items: center;
                gap: 30px;

                li {
                    flex-shrink: 0;
                    font-size: 14px;
                    text-align: center;
                }
            }

            .sensing__content {
                .sensing__content__item {
                    flex-direction: column;

                    figure {
                        width: 100%;

                        img {
                            &.sensing__image--mobile {
                                display: block;
                            }

                            &.sensing__image--pc {
                                display: none;
                            }
                        }
                    }

                    .sensing__content__item__text {
                        position: static;
                        width: 100%;
                        padding: 37px 29px;

                        .sensing__content__item__text__title {
                            margin: 0 0 16px 0;
                        }

                        img {
                            display: none;
                        }
                    }
                }
            }
        }
    }

    .bg-interior-exterior {
        padding: 0 0 90px
    }

    #exterior {
        padding: 120px 0 0;
        min-height: 100dvh;
        display: flex;
        flex-direction: column;
        align-items: center;

        .container {
            h2 {
                font-size: 32px;
            }

            .exterior__inner {
                display: none;
            }

            .exterior__mobile {
                display: block;
            }
        }
    }

    #interior {
        padding: 120px 0 0;
        min-height: 100dvh;
        display: flex;
        flex-direction: column;
        align-items: center;

        .container {
            h2 {
                font-size: 32px;
            }

            ul {
                margin: 50px 0 20px 0;
                padding: 0;
                overflow: scroll;
                flex-wrap: nowrap;
                justify-content: start;
                align-items: center;
                gap: 30px;
                width: 100%;

                li {
                    flex-shrink: 0;
                    font-size: 14px;
                    text-align: center;
                }
            }

            .interior__content {
                .interior__content__main {
                    .interior__content__item {
                        position: static;
                        flex-direction: column;

                        figure {
                            width: 100%;
                        }

                        .interior__content__item__text {
                            width: 100%;
                            position: static;
                            padding: 27px 31px;

                            span {
                                font-weight: 700;
                            }

                            h4 {
                                font-size: 16px;
                                margin: 15px auto 18px;
                            }

                            p {
                                font-size: 14px;
                            }
                        }
                    }
                }
            }
        }
    }

    #colores {
        padding: 120px 0 90px;

        .container {
            h2 {
                font-size: 32px;
            }

            .colores__inner {
                margin: 37px auto 60px;
                min-height: auto;

                .colores__inner__message {
                    p {
                        font-size: 14px;
                    }

                    img {
                        width: 45px;
                    }
                }
            }

            .colores__options {
                img {
                    width: 50px;
                }
            }

            .colores__button {
                padding: 10px 0;
                width: 230px;
            }
        }
    }

    #contacto {
        background: url(images/bg-confort.webp)no-repeat 50%;
        background-size: cover;
        padding: 120px 0 56px;
        min-height: auto;
        height: 650px;

        .container {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%;

            h2 {
                font-size: 20px;
                font-weight: 700;
                text-align: center;
                margin-bottom: 0;
                text-wrap: pretty;
            }

            .contacto__buttons {
                display: flex;
                flex-direction: column-reverse;
                align-items: center;
                gap: 24px;

                button {
                    justify-content: center;
                    margin-bottom: 0;
                }
            }
        }
    }

    .contacto__form {
        padding: 26px 16px;
        overflow: scroll;

        .contacto__form__title {
            flex-direction: column-reverse;
            align-items: end;

            h3 {
                text-align: center;
                text-wrap: pretty;
                margin-top: 13px;
            }

            img {
                text-align: right;
            }
        }

        form {
            margin-top: 40px;

            .container__input {
                flex-direction: column;

                .input__full--small,
                select {
                    width: 100%;
                }
            }
        }
    }

    #noticias {
        padding: 70px 0;
        background: url(images/bg-confort.webp)no-repeat 50%;
        background-size: cover;
        min-height: auto;

        .container {
            .noticias__header {
                margin-bottom: 55px;

                h2 {
                    font-size: 32px;
                }

                p {
                    font-size: 16px;
                    color: var(--color-dark-grey);
                }
            }

            .noticias__swiper {
                width: 80%;
                max-width: 460px;
                margin: 0 auto;

                .swiper-wrapper {
                    padding-bottom: 60px;
                }

                .swiper-pagination-bullet {
                    background: var(--color-blue);
                }

                .noticia__item {
                    padding: 0 0 37px 0;
                }
            }
        }
    }

    footer {
        padding: 80px 0;

        .container {
            .footer__text {
                p {
                    font-size: 11px;
                }
            }
        }
    }

    #galeria {
        padding: 120px 0 72px;

        .container {
            h2 {
                font-size: 32px;
            }

            ul {
                margin: 50px auto 30px;

                li {
                    font-size: 14px;
                }
            }

            .galeria__content {
                .galeria__item {
                    .galeria__item__row {
                        flex-direction: column;

                        .galeria__item__image {
                            width: 100%;
                            max-height: 145px;

                            &.galeria__item__image--big {
                                width: 100%;
                            }
                        }
                    }
                }
            }
        }
    }

    .buttons__fixed {
        button {
            width: 70px;
            transform: none;

            span {
                display: none;
            }
        }
    }

    #navFix {
        display: none
    }

    header {
        top: 61px;

        &.menu--isFixed {
            top: 61px;
        }
    }

    #hero {
        margin-top: 130px
    }
}

.swal2-container {
    z-index: 9999 !important
}

#versiones {
    padding: 90px 0;

    .container {
        h2 {
            font-size: 60px;
            color: var(--color-black);
            text-align: center;
            font-weight: 400;
        }

        .versiones__image {
            margin: 40px auto 20px;
            text-align: center;
        }

        .versiones__content {
            .versiones__titles {
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;

                .title__items {
                    width: 30%;
                    text-align: center;

                    h3 {
                        font-size: 30px;
                        color: #476A9D;
                        text-align: center;
                        font-weight: normal;
                    }
                }
            }

            .versiones__info {
                display: flex;
                flex-direction: row;
                justify-content: center;
                margin: 24px 0;

                .version__info {
                    width: 30%;
                    text-align: center;

                    .version__price {
                        background: #476a9d;
                        margin-bottom: 24px;

                        p {
                            font-size: 20px;
                            color: var(--color-white);
                            text-align: center;
                        }
                    }

                    .version__content {
                        text-align: left;

                        .version__content__row {
                            font-size: 16px;
                            color: var(--color-black);
                            padding: 12px 0 12px 24px;
                            border-bottom: 1px solid #C1D7F2;

                            &:last-child {
                                border-bottom: none;
                            }

                            p {
                                list-style: disc;
                            }
                        }
                    }

                    &.version__info--active {
                        display: block !important;
                    }

                    &.version__info--inactive {
                        display: none !important;
                    }
                }
            }
        }
    }
}

@media screen and (max-width:768px) {
    #versiones {
        height: auto;

        .container {
            h2 {
                font-size: 32px;
            }

            .versiones__content {
                .versiones__titles {
                    flex-flow: wrap;
                    gap: 8px;
                    justify-content: center;

                    .title__items {
                        min-width: max-content;

                        h3 {
                            font-size: 16px;
                            padding: 4px 12px;
                            border: 1px solid var(--color-blue);

                            &.title__items--active {
                                background: var(--color-blue);
                                color: var(--color-white);
                            }
                        }
                    }
                }

                .versiones__info {
                    flex-direction: column;

                    .version__info {
                        width: 100%;
                        display: none;

                        &:first-child {
                            display: block;
                        }
                    }
                }
            }
        }
    }
}