:root {
    --sellex_main: #FF6016;
    --sellex_prim: #ff6016ca;
    --sellex_sec: #B43610;
    --sellex_sed: #6C220B;
    --sellex_blc: #000000;
    --sellex_wh: #EFECE5;
    --sellex_bcg: #000000;
    --ewqfrw: #18181B;
    --wergrg: #0A0A0A;
    --sellex_font: 12px;
    --sellex_title: 48px;
}

@font-face {
    font-family: DMSans;
    src: url("./DMSans_18pt-Light.ttf");
}

* {
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    font-size: var(--sellex_font);
    letter-spacing: 1px;
    z-index: 0;
    text-decoration: none;
    list-style: none;
    font-style: normal;
    font-family: DMSans, sans-serif;
    ;
    outline: 0;
    transition: all 0.5s;
    color: var(--sellex_wh);
    background-color: transparent;
}

::placeholder {
    color: #cecece;
}

::-webkit-scrollbar {
    background: transparent;
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-thumb {
    background: #212121;
    border-radius: 10px;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    height: auto;
    overflow-x: hidden;
    min-height: 100vh;
    margin: 0;
}

html,
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

/*Global*/
button {
    font-weight: 700;
    font-family: var(--font-title);
    font-size: 12px;
    cursor: pointer;
    padding: 15px 10px;
    border-radius: 20px;
}

button:hover {
    transform: scale(1.01);
}

.sellex-imgs {
    position: relative;
}

.sellex-imgs::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 2000;
}

/* Typewriter effect for hero title */
.typewriter {
    display: inline-block;
    border-right: 2px solid var(--sellex_main);
    padding-right: 4px;
    white-space: nowrap;
    overflow: hidden;
    animation: blink-cursor 0.8s steps(1) infinite;
}

@keyframes blink-cursor {

    0%,
    100% {
        border-color: var(--sellex_main);
    }

    50% {
        border-color: transparent;
    }
}

/*MASK*/
.mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(19, 19, 19, 0.813);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 60000;
}

.mask.open {
    display: flex;
}

body {
    background-color: var(--sellex_bcg);
}

/*BCG SPACE*/
.space-background {
    position: relative;
    width: 100%;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.particle-star {
    position: absolute;
    border-radius: 50%;
}

.shooting-star {
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
}

@keyframes moveParticle {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-120vh);
    }
}

@keyframes twinkleParticle {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

@keyframes shootingStar {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-600px, 400px) scale(0);
        opacity: 0;
    }
}

/* ORBS */
.gradient-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    z-index: -1;
}

.orb-1 {
    background: var(--sellex_main);
    top: -70px;
    left: -100px;
}

.orb-2 {
    background: var(--sellex_sed);
    bottom: -150px;
    right: 100px;
}

.orb-3 {
    background: var(--sellex_blc);
    top: 40%;
    left: 60%;
}

/*.orb-4{
    background:var(--sellex_main);
    top:100px;
    right:-100px;
}

.orb-5{
    background:var(--sellex_main);
    top:100px;
    right:600px;
}*/
/*JUSTIFY STYLE BODY*/
body .body-container {
    width: 100%;
    height: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/*HEADER*/
.body-container .header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50000;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
    background-color: transparent;


    .header-container {
        width: 56%;
        height: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 8px 2%;
        border-radius: 30px;
        backdrop-filter: blur(20px);
        background-color: rgba(128, 128, 128, 0.091)
            /*#ffffff09*/
        ;
        border: solid 1px #ff601615;
        /*background-color: #b436100c;*/
        /*box-shadow: rgba(219, 160, 115, 0.3) 0px 1px 2px 0px, rgba(202, 114, 47, 0.15) 0px 2px 6px 2px;*/


        .sellex-logo img {
            width: auto;
            height: 30px;
        }


        .nav-container {
            width: 100%;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: end;
            gap: 3%;

            ul {
                width: 80%;
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: end;
                gap: 2%;

                li {
                    padding: 10px;
                    border-radius: 20px;

                    a {
                        width: 100%;
                        height: 100%;
                        font-weight: 100;
                        font-size: 13px;
                    }
                }

                li:hover {
                    background-color: #ff601642;
                }

                li.active {
                    background-color: #ff601642;
                }
            }

            .btn-book-demo {
                padding: 15px 10px;
                border-radius: 20px;
                background-color: var(--sellex_main);
                font-family: var(--font-title);
                font-size: 12px;
                cursor: pointer;
            }
        }

        .icon-menu {
            max-width: 40px;
            max-height: 40px;
            min-width: 40px;
            min-height: 40px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            background-color: var(--sellex_main);

            i {
                font-size: 20px;
                color: var(--sellex_wh);
            }
        }
    }
}

/*MENU*/
.menu {
    position: fixed;
    top: 100px;
    right: 5%;
    width: 50%;
    height: 200px;
    z-index: 50000;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    background-color: rgba(128, 128, 128, 0.091);
    padding: 20px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;

    .nav-container {
        width: 100%;
        height: auto;

        ul {
            width: 100%;
            height: auto;
            display: flex;
            flex-direction: column;


            li {
                padding: 10px;
                font-size: 14px;

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

        .btn-book-demo {
            width: 100%;
            padding: 15px 10px;
            border-radius: 20px;
            background-color: var(--sellex_main);
            font-family: var(--font-title);
            font-size: 12px;
            cursor: pointer;
            margin-top: 5%;
        }
    }
}

.menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}


/*ALL MAIN SECTION*/
.main .section-flex {
    width: 80%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 10% 70px 10%;


    .tags {
        color: #FF6016;
        background: rgba(255, 96, 22, 0.1);
        padding: 8px 18px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 28px;
        border: 1px solid rgba(255, 96, 22, 0.2);
        text-transform: uppercase;
        letter-spacing: 1.2px;

        p {
            font-size: 12px;
            text-align: center;
        }
    }

    .title {
        padding: 20px 0;
        font-size: 30px;
        width: 60%;
        text-align: center;
    }

    .text-title {
        text-align: center;
        width: 50%;
        font-size: 14px;
    }
}

/*MAIN*/
.body-container .main {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    padding-top: 160px;

}

/*HERO*/
.main .sections-heros {
    min-height: auto;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    padding-bottom: 50px;
    background: linear-gradient(180deg,
            var(--sellex_bcg) 0%,
            var(--sellex_sed) 34%,
            var(--sellex_sec) 65%,
            var(--sellex_bcg) 82%);
}

/*HERO SECTION*/
.main .section-hero-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 70%;
    height: auto;
    padding: 30px 15% 50px 15%;
}

.section-hero-container .hero-context {
    width: 100%;
    padding: 30px 0 60px 0;

    .hero-title {
        width: 80%;
        text-align: center;
        font-size: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0 10%;

        span {
            display: inline-block;
            font-size: 50px;
            padding: 0px 0;
            margin: 1% 0;
            min-height: 70px;
            min-width: auto;
            max-width: 100%;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            color: var(--sellex_main);
        }
    }

    .text {
        font-size: 16px;
        width: 80%;
        padding: 25px 10%;
        text-align: center;
    }

    .input-email-book {
        width: 80%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 0 10%;
        gap: 1%;

        .input {
            width: 70%;
            height: 50px;
            border-radius: 20px;
            background-color: rgba(40, 40, 40, 0.429);

            input {
                padding: 0 5%;
                width: 90%;
                height: 100%;
                border-radius: 20px;
            }
        }

        button {
            background-color: var(--sellex_main);
        }
    }
}

.section-hero-container .hero-img {
    width: 40%;
    display: flex;
    align-items: start;
}

.section-hero-container .hero-img>:nth-child(1) {
    position: absolute;
    top: 15%;
    left: 40%;
    opacity: .4;

    img {
        width: 200px;
        height: auto;
    }
}

.section-hero-container .hero-img> :nth-child(2) img {
    width: auto;
    height: 400px;
    opacity: .5;
}

.section-hero-container .hero-img> :nth-child(3) {
    position: absolute;
    top: 5%;
    right: 15%;
    opacity: .4;
}

.section-hero-container .hero-img> :nth-child(3) img {
    width: 200px;
    height: auto;
}

/*PROBLEM SECTION*/
.main .section-problem-container {

    .card-problem-sellex {
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2%;
        align-items: center;
        justify-content: center;
        place-items: center;


        .card-problem {
            padding: 20px;
            min-height: 170px;
            background-color: rgba(13, 13, 13, 0.112);
            border-radius: 10px;
            border: solid 1px rgba(192, 192, 192, 0.28);
            display: flex;
            flex-direction: column;


            .avatar img {
                width: auto;
                height: 40px;
                object-fit: contain;
            }

            h3 {
                font-size: 15px;
                padding: 5px 0 10px 0;
                font-weight: 700;
            }

            p {
                font-size: 14px;
                color: #e2e2e2a0;
            }
        }
    }
}

/*RECURSE SECTION*/
.main .section-recorse-container {
    min-height: 100vh;

    .card-recurse-sellex {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: row;
        gap: 2%;
        padding: 50px 0 30px 0;

        .all-card-recurse {
            width: 75%;
            height: 100%;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2%;
            align-items: center;
            justify-content: center;
            place-items: center;


            .card-resurse {
                padding: 20px;
                min-height: 170px;
                background-color: rgba(80, 80, 80, 0.091);
                border-radius: 10px;
                border: solid 1px rgba(192, 192, 192, 0.28);
                display: flex;
                flex-direction: column;

                .top-c {
                    width: 100%;
                    display: flex;
                    flex-direction: row;
                    align-items: center;
                    gap: 3%;
                    padding-bottom: 20px;

                    .icon {
                        max-width: 50px;
                        max-height: 50px;
                        min-width: 50px;
                        min-height: 50px;
                        width: 50px;
                        height: 50px;
                        border-radius: 50%;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        background-color: #ff60163a;

                        i {
                            font-size: 20px;
                            color: var(--sellex_main);
                        }
                    }

                    h3 {
                        font-size: 15px;
                        padding: 5px 0 10px 0;
                        font-weight: 700;
                    }
                }

                p {
                    color: #e2e2e2a0;
                    font-size: 14px;
                }
            }
        }

        .card-only-one {
            width: 25%;
            padding: 30px 20px;
            background-color: rgba(80, 80, 80, 0.091);
            border-radius: 10px;
            border: solid 1px rgba(192, 192, 192, 0.28);
            display: flex;
            flex-direction: column;

            .top-c {
                width: 100%;
                display: flex;
                flex-direction: row;
                align-items: center;
                gap: 3%;
                padding-bottom: 20px;

                .icon {
                    max-width: 50px;
                    max-height: 50px;
                    min-width: 50px;
                    min-height: 50px;
                    width: 50px;
                    height: 50px;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    background-color: #ff60163a;

                    i {
                        font-size: 20px;
                        color: var(--sellex_main);
                    }
                }

                h3 {
                    font-size: 15px;
                    padding: 5px 0 10px 0;
                    font-weight: 700;
                }
            }

            p {
                color: #e2e2e2a0;
                font-size: 14px;
            }

            .img {
                width: 100%;
                height: 100%;
                display: flex;
                align-items: center;
                justify-content: center;

                img {
                    width: auto;
                    height: 200px;
                    object-fit: cover;
                    opacity: .2;
                }
            }
        }
    }

    .context {
        max-width: 96%;
        max-height: 260px;
        height: auto;
        padding: 20px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        border-radius: 10px;
        background-color: rgba(80, 80, 80, 0.091);
        border: solid 1px rgba(192, 192, 192, 0.28);

        .text-context {
            width: 50%;
            height: 100%;
            display: flex;
            flex-direction: column;

            h1 {
                font-size: 20px;
                padding: 5px 0 10px 0;
                font-weight: 700;
                text-align: start;
            }

            p {
                color: #e2e2e2a0;
                padding-bottom: 20px;
                font-size: 14px;
            }

            button {
                width: 150px;
                background-color: var(--sellex_main);
            }
        }

        .img-context {
            width: 30%;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;

            img {
                width: auto;
                height: 350px;
                object-fit: cover;
            }
        }
    }
}

/*HOW WORKING SECTION*/
.main .section-how-working-container {
    min-height: 100vh;

    .step-working {
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2%;
        align-items: center;
        justify-content: center;
        place-items: center;
        position: relative;
        padding: 30px 0;

        .step {
            width: 98%;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;

            .icon {
                max-width: 50px;
                max-height: 50px;
                min-width: 50px;
                min-height: 50px;
                width: 50px;
                height: 50px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                background-color: #ff60163a;
                position: relative;

                i {
                    font-size: 20px;
                    color: var(--sellex_main);
                }
            }

            .icon::after {
                content: '';
                position: absolute;
                top: 100%;
                left: 49%;
                height: 42%;
                width: 1%;
                border-left: solid 1px #ff60163a;
            }

            .num {
                max-width: 30px;
                max-height: 30px;
                min-width: 30px;
                min-height: 30px;
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                place-items: center;
                background-color: #ff60163a;
                border-radius: 50%;
                margin: 7% 0 2% 0;

                p {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    place-items: center;
                    text-align: center;
                }
            }

            h1 {
                font-size: 15px;
                padding: 5px 0 10px 0;
                font-weight: 700;
                text-align: center;
            }

            p {
                color: #e2e2e2a0;
                padding-bottom: 20px;
                font-size: 12px;
                text-align: center;
            }
        }
    }

    .step-working::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 1px;
        background-color: #ff60163a;
        border-left: solid 1px #ff60163a;
        top: 40%;
    }

    .context {
        width: 96%;
        max-height: 260px;
        height: auto;
        padding: 20px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        border-radius: 10px;
        background-color: rgba(80, 80, 80, 0.091);
        border: solid 1px rgba(192, 192, 192, 0.28);

        .text-context {
            width: 50%;
            height: 100%;
            display: flex;
            flex-direction: column;

            h1 {
                font-size: 20px;
                padding: 5px 0 10px 0;
                font-weight: 700;
                text-align: start;
            }

            p {
                color: #e2e2e2a0;
                padding-bottom: 20px;
                font-size: 14px;
            }

            button {
                width: 150px;
                background-color: var(--sellex_main);
            }
        }

        .img-context {
            width: 30%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;

            img {
                width: auto;
                height: 300px;
            }
        }
    }
}

/*SERVICE SECTION*/
.main .section-service-container {
    background-color: rgba(91, 91, 91, 0.28);
    height: 100vh;

    .title {
        width: 80%;
        min-height: 60px;
        padding: 20px 0 0 0;
        border: none;
    }

    .cards-service {
        width: 100%;
        padding: 40px 0%;
        height: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 5%;



        .img-service img {
            width: auto;
            height: 400px;
            object-fit: cover;
        }

        .container-service {
            width: 70%;
            display: flex;
            flex-direction: column;
            justify-content: end;
            align-items: end;

            .card-service {
                width: 80%;
                display: flex;
                flex-direction: row;
                background-color: rgba(88, 88, 88, 0.28);
                padding: 20px;
                border-radius: 10px;
                align-items: start;
                gap: 3%;
                margin: 1% 0;

                .icon {
                    max-width: 50px;
                    max-height: 50px;
                    min-width: 50px;
                    min-height: 50px;
                    width: 50px;
                    height: 50px;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    background-color: #ff60163a;
                    position: relative;

                    i {
                        font-size: 20px;
                        color: var(--sellex_main);
                    }
                }

                .context {
                    display: flex;
                    flex-direction: column;

                    h4 {
                        font-size: 15px;
                        font-weight: 700;
                        text-align: start;
                    }

                    p {
                        color: #e2e2e2a0;
                        padding-top: 10px;
                        font-size: 12px;
                    }
                }
            }
        }
    }
}

/*CONTACT SECTION*/
.main .section-contact-container {
    width: 70%;
    padding: 0 15% 10px 15%;
    display: flex;
    height: 80vh;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 5%;

    .context-contact {
        display: flex;
        flex-direction: column;

        .img-contact img {
            width: auto;
            height: 200px;
        }

        h1 {
            padding: 20px 0 20px 0;
            font-size: 30px;
            width: 100%;
            text-align: start;
        }

        ul {
            display: flex;
            flex-direction: column;

            li {
                padding: 10px 0;
                display: flex;
                flex-direction: row;
                align-items: center;
                gap: 1%;

                i {
                    font-size: 20px;
                    color: var(--sellex_main);
                }

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

    .form-contact {
        width: 90%;
        min-height: 250px;
        background-color: rgba(91, 91, 91, 0.28);
        padding: 30px 5%;
        border-radius: 10px;

        .step-form {
            width: 100%;
            height: auto;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            gap: 5%;

            .step-w {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;

                .num {
                    width: 30px;
                    height: 30px;
                    min-width: 30px;
                    min-height: 30px;
                    max-width: 30px;
                    max-height: 30px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    background-color: #ff60163a;
                    font-weight: 700;
                    border-radius: 50%;
                }

                .text {
                    padding: 5px 0;
                    text-align: center;
                }
            }

            .step-w.active {
                .text {
                    color: var(--sellex_main);
                }
            }
        }


        .step-form-inputs {
            width: 100%;
            height: auto;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            position: relative;
            padding-top: 20px;

            .form-input {
                position: absolute;
                width: 100%;
                height: 100%;
                display: flex;
                flex-direction: column;
                opacity: 0;
                transform: translateX(20px);
                pointer-events: none;
                transition: opacity 0.25s ease, transform 0.25s ease;

                .double-input {
                    width: 100%;
                    height: 45px;
                    display: flex;
                    flex-direction: row;
                    align-items: center;
                    justify-content: space-between;
                    gap: 1%;

                    .input {
                        width: 95%;
                        height: 50px;
                        padding: 0 2.5%;
                        border-radius: 20px;
                        background-color: rgba(59, 59, 59, 0.429);

                        i {
                            font-size: 15px;
                        }

                        input {
                            width: 100%;
                            height: 100%;
                            border-radius: 20px;
                        }
                    }
                }

                .input,
                textarea {
                    display: flex;
                    flex-direction: row;
                    align-items: center;
                    width: 95%;
                    min-height: 50px;
                    padding: 0 2.5%;
                    border-radius: 20px;
                    background-color: rgba(59, 59, 59, 0.429);
                    margin: 5% 0 0 0;
                    gap: 1%;

                    i {
                        font-size: 15px;
                    }

                    input {
                        width: 90%;
                        padding: 0 2.5%;
                        height: 100%;
                        border-radius: 20px;
                    }
                }

                textarea {
                    min-height: 100px;
                    padding: 20px 2.5%;
                    margin: 1% 0 0 0;
                }

                .btn-forms {
                    width: 100%;
                    height: auto;
                    display: flex;
                    flex-direction: row;
                    align-items: center;
                    justify-content: space-between;
                    padding-top: 10px;
                }

                .btn-forms>:nth-child(1) {
                    background-color: #757575;
                    gap: 5%;
                }

                .btn-forms>:nth-child(2) {
                    background-color: var(--sellex_main);
                    gap: 3%;
                    width: 200px;
                }
            }

            .form-input.active {
                opacity: 1;
                transform: translateX(0);
                pointer-events: all;
            }
        }
    }
}

/*FOOTER*/
.footer {
    position: relative;
    width: 90%;
    height: auto;
    padding: 50px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: none;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url(/assets/img/logo/Sellexlogo2.png);
    background-repeat: no-repeat;
    background-position: center 40%;
    background-size: 100%;
    opacity: 0.03;
    pointer-events: none;
    z-index: -1;
}


.text-footer {
    width: 60%;
    height: auto;

    p {
        text-align: center;
    }
}

.title-footer {
    width: 100%;
    height: auto;
    padding: 70px 0 20px 0;
    font-size: 40px;
    text-align: center;
}

.nav-footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 30px;

    ul {
        width: 80%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 2%;

        li {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 2%;

            a {
                font-size: 14px;
            }
        }

        li:hover a i {
            transform: translateY(50%);
        }
    }
}

/*BOOK-DEMO*/
.container-book {
    width: 90%;
    height: auto;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;

    &.open {
        display: flex;
    }


    .form-book-demo {
        width: 30%;
        height: auto;
        display: flex;
        padding: 20px;
        flex-direction: column;
        overflow: hidden;
        background-color: #212121;
        border-radius: 10px;


        .close {
            width: 100%;
            display: flex;
            flex-direction: row;
            justify-content: end;


            i {
                color: var(--sellex_sec);
                font-size: 20px;
                display: flex;
                margin-left: auto;
                cursor: pointer;
            }
        }

        .step-progress-bar {
            width: 100%;
            height: auto;
            display: flex;
            flex-direction: column;
            padding: 20px 0 10px 0;

            .controle-progress {
                width: 100%;
                display: flex;
                flex-direction: row;
                align-content: center;
                color: #828282;
                gap: 1%;

                i {
                    color: #828282;
                }

                .perc {
                    display: flex;
                    margin-left: auto;
                }
            }

            .bar {
                width: 100%;
                position: relative;
                height: 6px;
                border-radius: 10px;
                background-color: #828282;
                margin-top: 10px;

                .progress {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 14.2%;
                    height: 100%;
                    background-color: var(--sellex_sec);
                    border-radius: 10px;
                }
            }
        }


        .step-book-demo {
            width: 100%;
            position: relative;
            overflow: hidden;
            padding-top: 20px;

            .step {
                width: 100%;
                display: flex;
                flex-direction: column;
                opacity: 0;
                max-height: 0;
                overflow: hidden;
                transform: translateX(18px);
                pointer-events: none;
                transition: opacity 240ms ease, transform 240ms ease, max-height 240ms ease;

                .img {
                    width: 100%;
                    height: auto;
                    display: flex;
                    align-items: center;
                    justify-content: center;

                    img {
                        width: auto;
                        height: 150px;
                        margin-bottom: 2%;
                        object-fit: cover;
                    }
                }

                h1 {
                    font-size: 20px;
                    padding-top: 10px;
                    padding-bottom: 10px;
                }

                h1.ok {
                    text-align: center;
                    color: green;
                    padding-top: 0;
                }

                .input,
                textarea,
                select {
                    display: flex;
                    flex-direction: row;
                    align-items: center;
                    width: 95%;
                    min-height: 50px;
                    padding: 0 2.5%;
                    border-radius: 20px;
                    background-color: rgba(59, 59, 59, 0.429);
                    margin: 5% 0 0 0;
                    gap: 1%;

                    i {
                        font-size: 15px;
                    }

                    input {
                        width: 100%;
                        min-height: 50px;
                        height: 100%;
                        border-radius: 20px;
                    }
                }

                textarea {
                    min-height: 80px;
                    padding: 20px 2.5%;
                    margin: 1% 0 0 0;
                }

                select {
                    padding-left: 2.5%;
                }

                .btn-step {
                    width: 100%;
                    height: auto;
                    display: flex;
                    flex-direction: row;
                    align-items: center;
                    justify-content: space-between;
                    padding-top: 30px;
                }

                .btn-step>:nth-child(1) {
                    background-color: #757575;
                    gap: 5%;
                }

                .btn-step>:nth-child(2) {
                    background-color: var(--sellex_main);
                    gap: 3%;
                    width: 200px;
                }
            }

            .step.active {
                opacity: 1;
                max-height: 2000px;
                /* large enough for any step content */
                transform: translateX(0);
                pointer-events: auto;
            }
        }
    }
}


/*PAGES*/
.pages-container {
    width: 60%;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 50px 20% 30px 20%;

    .title h1 {
        padding: 20px 0 40px 0;
        font-size: 30px;
        width: 100%;
        border-bottom: solid 1px rgba(192, 192, 192, 0.28);
    }

    .section-page-container {
        width: 100%;
        padding: 40px 0;

        h2 {
            font-size: 20px;
            padding-bottom: 10px;
            font-weight: 700;
        }

        p {
            font-size: 15px;
            color: #e2e2e2a0;
        }

        ul {
            display: flex;
            padding: 10px 0;
            flex-direction: column;
            list-style-type: circle;
            list-style: circle;

            li {
                padding: 10px;
                color: #e2e2e2a0;

                display: flex;
                align-items: center;
                gap: 0.5%;

                a {
                    color: var(--sellex_sec);
                }
            }
        }
    }
}

/* WhatsApp Community Step Styles */
.whatsapp-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}

.wpp-icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    width: 100%;
}

.wpp-icon-bg {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.wpp-icon-bg img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.whatsapp-step .title-step.wpp-greeting {
    font-size: 24px !important;
    font-weight: 700;
    color: var(--sellex_wh) !important;
    margin-bottom: 25px;
    text-align: center;
    padding-top: 0 !important;
}

.wpp-card {
    border-radius: 16px;
    padding: 2.5%;
    width: 95%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.wpp-card * {
    background-color: transparent !important;
}

.wpp-card-header {
    display: flex;
    align-items: center;
    flex-direction: row !important;
    gap: 8px;
    color: var(--sellex_wh) !important;
    font-size: 13px !important;
    font-weight: 600;
    margin-bottom: 12px;
}

.wpp-card-header i {
    color: var(--sellex_wh) !important;
    font-size: 16px !important;
}

.wpp-card-title {
    color: var(--sellex_wh) !important;
    font-size: 18px !important;
    font-weight: 700;
    margin-bottom: 12px;
}

.wpp-card-text {
    color: var(--sellex_wh) !important;
    font-size: 14px !important;
    line-height: 1.5;
    margin-bottom: 20px;
}

.wpp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--sellex_main) !important;
    color: #ffffff !important;
    width: 100%;
    padding: 14px 0 !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.wpp-btn i {
    color: #ffffff !important;
    font-size: 18px !important;
}