@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    scrollbar-color: var(--roxin-v1) transparent;
}

:root {
    --roxin-v1: #6B14F7;
    --roxin-v2: #8114E6;
    --azulzin-v1: #3E52FF;
    --white-n: #F9FAFE;
}

main,
body {
    background-color: var(--white-n);
    overflow-x: hidden;
    height: 100vh;
}

header {
    position: fixed;
    display: flex;
    flex-direction: row;
    gap: 16px;
    padding: 15px;
    border-radius: 100px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.444);
    align-items: center;
    width: 70vw;
    transform: translate(-50%, 10px);
    top: 0;
    left: 50%;
    justify-content: space-between;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 8px 10px;
    z-index: 9999;


    >div {
        &:first-of-type {
            width: 220px;
            /* max-width: 220px; */
            /* background-color: red; */
        }
    }

    >div {
        display: flex;
        align-items: center;
        gap: 20px;


        >a {
            position: relative;
            user-select: none;
            text-decoration: none;
            color: black;
            font-weight: 300;

            &::before {
                content: "";
                height: 4px;
                border-radius: 100px;
                background-color: var(--roxin-v1);
                position: absolute;
                bottom: -8px;
                width: 0;
                transition: 0.3s;
            }

            &:hover {
                color: var(--roxin-v1);
                cursor: pointer;

                &::before {
                    scale: 1 1;
                    width: 100%;
                }
            }
        }
    }
}


[data-page] {
    /* background-color: red; */
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 10px;
    position: relative;
    height: 80vh;


    /* &::after {
        position: absolute;
        content: "";
        display: block;
        width: 100vw;
        height: 50%;
        bottom: -40%;
        scale: 1.2 1;

        background-image: url("../img/line-section.svg");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    } */

}

h1 {
    font-weight: 700;
    font-size: 45px;
    text-align: center;
}

h2 {
    text-align: center;
    font-weight: 200;
    font-size: 18px;
    font-style: italic;
}

h3 {
    width: 500px;
    text-align: left;
    font-weight: 200;
    font-size: 18px;
}

[data-page="1"] {
    /* margin-top: 150px; */
    height: calc(100vh - 150px);


    h1 {
        max-width: 600px !important;
        /* width: 500px !important; */
    }

    h3 {
        font-size: 16px;
        font-weight: 300;
        text-align: center;
        /* color: gray; */
        color: var(--azulzin-v1);
    }

    div {
        translate: 0 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

        img {
            /* background: linear-gradient(-45deg, var(--azulzin-v1), var(--roxin-v2)); */
            /* border-radius: 10px; */
            margin-top: 40px;
            height: 350px;
            object-fit: contain !important;
        }
    }
}

[data-page="2"] {
    translate: 0 -100px;

    .cards {
        background-image: url(../img/retangulo.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 80% 80%;
        width: 100%;
        height: 600px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 30px;

        .card {
            width: 290px;
            height: 500px;
            background: linear-gradient(360deg, var(--roxin-v1), rgb(37, 4, 42) 30%);
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 12px;
            border-radius: 12px;
            padding-top: 0;
            overflow: hidden;
            box-shadow: rgba(0, 0, 0, 0.321) 0px 0px 50px 10px;
            user-select: none;

            * {
                transition: 0.4s;
            }

            img {
                position: relative;
                border-radius: 10px;
            }

            label {
                font-weight: 900;
                font-style: italic;
                font-size: 32px;
                text-align: center;
                line-height: 35px;
                font-family: "Inter", sans-serif;
                translate: 0px -35px;

                color: rgb(37, 4, 42);
                text-shadow:
                    -1px -1px 0 white,
                    1px -1px 0 white,
                    -1px 1px 0 white,
                    1px 1px 0 white;

                &::first-line {
                    text-shadow: none;
                    color: white;
                }
            }

            span {
                translate: 0px -20px;
                font-weight: 200;
                text-align: center;
                color: white;
                /* margin-top: auto; */
            }

            &:hover {
                img {
                    scale: 1.25 1.25;
                    border-radius: 85px;
                    filter: brightness(110%);
                }

                span {
                    color: var(--roxin-v1) !important;
                }

                /* outline: 5px solid var(--roxin-v1); */
                background: white;
            }
        }
    }
}

[data-page="3"] {
    height: 80vh;

    img {
        margin-top: 50px;
        translate: -25px;
        /* margin-bottom: 50px; */
    }
}

[data-page="4"] {
    display: flex;
    flex-direction: column;
    gap: 20px;

    >h1 {
        z-index: 10;
    }

    >h4 {
        position: absolute;
        top: 100px;
        z-index: 2;
        font-size: 30px;
        color: var(--roxin-v2);
    }
}

[data-page="3"],
[data-page="5"],
[data-page="6"] {
    h1 {
        margin-top: 100px;
    }

    translate: 0 -200px;
}


footer {
    background: linear-gradient(-90deg, var(--azulzin-v1), var(--roxin-v2));
    position: relative;
    display: block;
    width: 100vw;
    padding: 24px;
    height: 300px !important;


    div {
        display: flex;
        flex-direction: row;
        gap: 10px;
        width: 100%;
        align-items: center;
        justify-content: space-around;


        >div {
            margin-top: 30px;
            display: flex;
            flex-direction: column;
            width: fit-content;
            align-items: start !important;

            &:first-of-type {
                align-items: center !important;

                a {
                    display: flex;
                    flex-direction: column;
                }

                img {
                    width: 200px;
                    border-radius: 7px;

                    &:hover {
                        cursor: pointer;
                    }
                }
            }

            span,
            a {
                color: white;
                text-align: center;
                text-decoration: none;
                font-weight: 200;
                font-size: 14px;
                display: flex;
                gap: 8px;
                align-items: center;
            }

            span {
                font-weight: 300;
                font-size: 18px;
            }

            a {



                &:hover {
                    /* font-weight: 800; */
                    text-decoration: underline;
                }
            }
        }
    }
}

/* section {
    &::after {
        content: "";
        width: 150vw;
        height: 200px;
        position: absolute;
        background-repeat: no-repeat;
        background-size: 100% 100%;
        background-image: url("../img/line-big.svg");
        bottom: 0;
  
    }
} */

/* para mobile */
@media (max-width: 800px) {

    [data-page] {
        /* height: 100vh !important; */
    }

    icon-people {
        right: -5px !important;
        bottom: 0px !important;
        width: fit-content;

        >img {
            width: 90%;
        }
    }

    .info {
        flex-direction: column-reverse !important;
        padding: 10px;
        height: fit-content;

        img {
            width: 100%;
            object-fit: cover;
            height: 260px;
            object-position: center;
        }

        h3 {
            font-size: 14px;
            width: 300px;
            margin-bottom: 30px !important;
        }

        label {
            font-size: 14px;
            height: 40px;
            width: 100%;
            font-weight: 300 !important;
            text-align: center;
            justify-content: center;

            &:nth-of-type(1) {
                translate: 0px 50px !important;
            }

            &:nth-of-type(2) {
                translate: 0px 100px !important;
            }

            &:nth-of-type(3) {
                translate: 0px 150px !important;
            }
        }

    }

    footer {
        height: max-content !important;

        div {
            flex-direction: column-reverse;
            /* margin-bottom: 40px;
            margin-top: 10px; */

            &:first-of-type {
                margin-bottom: 50px;
            }
        }
    }

    line {
        translate: 0 0 !important;
        scale: 1.4 1.5 !important;
        height: 300px !important;

    }

    header {
        width: 100%;
        border-radius: 0;
        top: 0 !important;
        left: 0;
        transform: none;
        padding: 5px;
        gap: 6px !important;
        height: 70px;

        >div {
            &:first-of-type {
                width: fit-content;
            }
        }

        .btn-arrow {
            font-size: 12px !important;
            padding: 8px !important;
            height: 40px;
            width: 100px !important;

            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-weight: 300 !important;

            &::after {
                display: none;
            }
        }

        >div {
            gap: 12px;

            >a {
                font-weight: 300 !important;
                font-size: 13px;
            }
        }

        img {
            width: 25px;
        }

    }

    h1 {
        max-width: 350px !important;
        font-size: 28px;
    }

    h2 {
        font-size: 16px;
    }

    [data-page="1"] {
        height: 60vh;
        /* height: fit-content; */

        img {
            width: 100% !important;
            margin: 0 !important;
            /* margin-bottom: 50px; */
        }

        h1,
        h3 {
            max-width: 350px !important;
        }

        h3 {
            font-size: 14px;
        }
    }

    [data-page="2"] {
        /* translate: 0 -240px; */
        top: 50px !important;
        height: max-content;

        .cards {
            margin-top: 50px;
            flex-direction: column;
            gap: 10px;
            height: 900px !important;


            .card {
                /* overflow: visible; */
                height: 100%;
                user-select: none;
                pointer-events: none;

                label {
                    translate: 0 -320px;
                }

                span {
                    translate: 0 -225px;
                    color: white !important;
                    backdrop-filter: blur(2px);
                    background: rgba(0, 0, 0, 0.450);
                    padding: 5px;
                    border-radius: 10px;
                }
            }
        }
    }

    [data-page="3"] {
        height: fit-content !important;
        translate: 0 -100px !important;

        img {
            translate: -5px;
            width: 350px;
            object-fit: cover !important;
        }

        svg.pulse-svg {
            translate: 5px -185px !important;
            overflow: visible;
        }
    }

    [data-page="4"] {

        height: 70vh !important;

        h1 {
            font-size: 30px;
  
        }

        h4 {
            text-align: center;
            font-size: 25px;
            top: 110px !important;
            /* translate: 0 25px; */
        }

        .carrossel {


            &::before,
            ::after {
                translate: 0 90px;
                height: 100px !important;
                scale: 1 3 !important;
                /* scale: 1.1 1.2 !important; */
            }

            >div {


                img:nth-of-type(1), img:nth-of-type(3){
                    visibility: hidden;
                }

                &::after {
                    top: 390px !important;
                }

                &::before {
                    scale: 1.1 0.6 !important;
                    /* top: -55px !important; */
                }
            }

        }

        .about-carrossel {
            translate: 0px -10px !important;

            span {
                height: fit-content !important;
                top: 100px !important;
                background-color: rgba(255, 255, 255, 0.509);
                backdrop-filter: blur(4px);
                border-radius: 100px;
                user-select: none !important;

                &:first-of-type {
                    translate: 75px -170px;
                }

                &:last-of-type {
                    translate: -75px -170px
                }
            }

            .descricao-lista {
                margin-top: 20px;
                font-size: 14px;
                width: 300px;
                text-align: start !important;

                li {
                    width: max-content;
                }
            }
        }

        /* 
        .about-carrossel {
            span {
                background-color: rgba(255, 255, 255, 0.509);
                backdrop-filter: blur(4px);
                border-radius: 100px;
                user-select: none !important;

                &:first-of-type {
                    translate: 140px -160px;
                }

                &:last-of-type {
                    translate: -140px -160px
                }
            }



        } */
    }

    [data-page="5"],
    [data-page="6"] {
        translate: 0 -150px;
        height: fit-content !important;
    }
}