@charset "utf8";

* {
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

::selection {
    background-color: #3ab371;
    color: lightgray;
}

@font-face {
    font-family: footer;
    src: url(OpenSans-VariableFont_wdth\,wght.ttf);
}

@font-face {
    font-family: fff;
    src: url(Roboto-Black.ttf);
}


:root {
    --main-verde: #4ae28e;
    --main-azul: #597bfe;
}

body {
    font-family: sans-serif;
    transition: 0.5s ease;
}


.dark {
    background-color: #161616;
    color: aliceblue;
}

/*-----------------HEADER-----------------*/
header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 5rem;
    align-items: center;
    box-shadow: -1px -8px 40px #0000006e;
    height: 100px;
    background-color: #ffffffc6;

    backdrop-filter: blur(10px);

    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 10000;

    /*-----------------MENU-HAMBURGER-----------------*/
        #menu-btn {
            display: none;
        }

    /*-----------------/MENU-HAMBURGER-----------------*/

    /*-----------------LOGOS-----------------*/
        img {
            width: 120px;
            transition: 0.5s ease;

            &:hover {
                transform: scale(90%);
                cursor: pointer;
            }
        }

        .logoBgBlack {
            display: none;
        }

        .dark .logoBgWhite {
            display: none;
        }

        .dark .logoBgBlack {
            display: grid;
        }

    /*-----------------/LOGOS-----------------*/

    nav {
       
        margin-right: 3%;
        font-size: 23px;
        display: flex;
    }

    #menu {
        display: block;
    }

    .menu-list {
     
        display: flex;
        gap: 70px;

        a {
            text-decoration: none;
            color: #000;
            margin-right: 20px;
            font-weight: bold;

            &:hover {
                color: #597bfe;
            }
        }

        li {
            list-style: none;
        }
    }

    /*-----------------DARK-MODE-BTN-----------------*/
    .dark_btn {
        font-size: 30px;
        margin-left: 20px;
        display: flex;

        input {
            display: none;
        }

        .fa-cloud-sun {
            display: none;
        }

        .fa-moon {
            transition: 0.5s ease;

            &:hover {
                color: var(--main-azul);
                cursor: pointer;
            }

            &:active {
                transform: rotateZ(360deg);
            }
        }

    }

    /*-----------------/DARK-MODE-BTN-----------------*/
}

.dark header {
    border-bottom: solid 3px var(--main-verde);
    background-color: #000000bc;

    .logoBgWhite {
        display: none;
    }

    .logoBgBlack {
        display: grid;
    }

    .menu-list a {
        color: aliceblue;

        &:hover {
            color: #4ae28e;
        }
    }

    .fa-cloud-sun {
        display: block;

        &:hover {
            color: var(--main-verde);
            cursor: pointer;
        }

        &:active {
            transform: scale(0.9);
        }
    }

    .fa-moon {
        display: none;
    }
}

/*HEADER para disdpositivos móveis*/
@media all and (max-width: 880px) {
    header {
        width: 100%;
        height: 100px;
        display: flex;
        justify-content: space-around;
        align-items: center;
        box-shadow: -1px -8px 40px #0000006e;

        /*-----------------LOGOS-----------------*/
        img {
            width: 120px;

        }

        .logos {
            order: 1;
        }

        nav {
            text-align: center;
            font-size: 23px;
        }

        /*-----------------LOGOS-----------------*/

        /*-----------------menu-hamburger-----------------*/
        #menu-btn {
            display: flex;
            /* margin-bottom: 20px; */
            border: none;
            font-size: 25px;
            color: #000;
            background-color: #00000000;

            &:hover {
                color: #597bfe;
                cursor: pointer;
            }
        }

        /*-----------------menu-hamburger-----------------*/

        /*-----------------DARK-MODE-BTN-----------------*/
        .dark_btn {
            font-size: 30px;
            margin-left: 0px;
            order: 2;
        }

        /*-----------------/DARK-MODE-BTN-----------------*/

        #menu {
            position: absolute;
            background-color: #ffffff;
            top: 100px;
            width: 100%;
            height: 100vh;
            right: 0;
            overflow-y: auto;
            display: none;
        }

        .menu-list {
            text-align: left;
            display: block;
            padding: 1rem;
            width: 100%;

            li {
                padding: 20px;
                border-bottom: solid #bebebe 1px;

                &:hover {
                    background-color: #f0f0f0e6;
                }
            }
        }
    }

    .dark header {
        #menu-btn {
            color: #fff;

            &:hover {
                color: #597bfe;
            }
        }

        #menu {
            background-color: #4ae28e;
        }

        .menu-list li {
            color: black;

            &:hover {
                background-color: #3ab371;
            }
        }
    }
}

/*-----------------/HEADER-----------------*/



/*-----------------DISPOSITIVOS-MÓVEIS-----------------*/
@media all and (max-width: 880px) {

    header {
        width: 100%;
        height: 100px;
        display: flex;
        justify-content: space-around;
        align-items: center;
        box-shadow: -1px -8px 40px #0000006e;

        & img {
            width: 120px;

        }

        & nav {
            text-align: center;
            font-size: 23px;
            /* margin-bottom: 40px; */
        }
    }

    /*-----------------LOGOS-----------------*/

    .logos {
        order: 1;
    }

    /*-----------------LOGOS-----------------*/

    /*-----------------menu-hamburger-----------------*/
    .dark #menu-btn {
        color: #fff;
    }

    #menu-btn {
        display: flex;
        /* margin-bottom: 20px; */
        border: none;
        font-size: 25px;
        background-color: #f0f8ff00;

        &:hover {
            color: #597bfe;
            cursor: pointer;
        }
    }

    /*-----------------menu-hamburger-----------------*/

    /*-----------------DARK-MODE-BTN-----------------*/
    .dark_btn {
        font-size: 30px;
        margin-left: 0px;
        order: 2;
    }

    /*-----------------/DARK-MODE-BTN-----------------*/
    .dark #menu {
        background-color: #4ae28e;
    }

    #menu {
        position: absolute;
        background-color: #ffffff;
        top: 100px;
        width: 100%;
        height: 100vh;
        right: 0;
        overflow-y: auto;
        display: none;
    }

    .menu-list {
        text-align: left;
        display: block;
        padding: 1rem;
        width: 100%;
    }

    .dark .menu-list li {
        color: black;

        &:hover {
            background-color: #3ab371;
        }
    }

    .menu-list li {
        padding: 20px;
        border-bottom: solid #bebebe 1px;

        &:hover {
            background-color: #f0f0f0e6;
        }
    }
}



/*-----------------MAIN-----------------*/
h2 {
    margin-top: 5rem;
    font-size: 30px;
    text-align: center;
    color: #597cff;
}

.text12 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.text1 {
    display: flex;
    gap: 2rem 2rem;
    margin-top: 3rem;



    & p {

        width: 350px;
    }

}


.video1 {
    margin-top: 3rem;
    width: 100%;
    background-color: #4ae28e;
    padding: 3rem 0;
    display: flex;
    justify-content: center;
}

.text2 {
    margin-left: 24.5%;
    margin-right: 24.5%;
    margin-top: 1%;

}

.text3 {
    margin-left: 24.5%;
    margin-right: 25%;
}

p {
    text-align: justify;
}

.text4 {
    display: flex;
    margin-left: 14.5%;
    margin-right: 17%;
    margin-top: 1%;
    gap: 3em;

    & p {
        width: 340px;
        text-align: justify;
    }

    & img {
        height: 167px;
        width: 270px;

    }
}

/*-----------------/MAIN-----------------*/

/*---------------FOOTER---------------*/
footer {
    height: 300px;
    background-color: #6fff74;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    margin-top: 5rem;

    /* & img{
        
    } */


    & hr {
        border: none;
        background-color: #000;
        width: 90%;
        height: 2px;
    }

    & .tudo {
        margin: 2rem 2rem;
        display: flex;
        justify-content: space-around;
        align-items: first baseline;
        gap: 8rem;
        width: 90%;

        & a {
            text-decoration: none;
            color: #000;

            &:hover {
                color: #597bfe;
            }
        }

        & h3 {
            margin-bottom: 0.4rem;
        }

        & .voltar {
            display: grid;
            gap: 1rem;
        }

        & .referencias {
            display: grid;
            gap: 1rem;
        }

        & .links_rapidos {
            display: grid;
            gap: 1rem;
        }
    }

    & p {
        margin-bottom: 3rem;
    }
}

.dark footer {
    background-color: #3ab371;
}

/*---------------/FOOTER---------------*/




/*-----------------DISPOSITIVOS-MÓVEIS-----------------*/

@media all and (max-width: 880px) {


    /*----------HEADER----------*/
    header {
        width: 100%;
        height: 100px;
        display: flex;
        justify-content: space-around;
        align-items: center;
        box-shadow: -1px -8px 40px #0000006e;

    }

    /*-----------------LOGOS-----------------*/
    header img {
        width: 120px;

    }

    .logos {
        order: 1;
    }

    header nav {
        text-align: center;
        font-size: 23px;
        /* margin-bottom: 40px; */
    }

    /*-----------------LOGOS-----------------*/

    /*-----------------menu-hamburger-----------------*/
    .dark #menu-btn {
        color: #fff;
    }

    #menu-btn {
        display: flex;
        /* margin-bottom: 20px; */
        border: none;
        font-size: 25px;
        background-color: #f0f8ff00;

        &:hover {
            color: #597bfe;
            cursor: pointer;
        }
    }


    /*-----------------menu-hamburger-----------------*/

    /*-----------------DARK-MODE-BTN-----------------*/
    .dark_btn {
        font-size: 25px;
        margin-left: 0px;
        order: 2;
    }

    /*-----------------/DARK-MODE-BTN-----------------*/
    .dark #menu {
        background-color: #4ae28e;
    }

    #menu {
        position: absolute;
        background-color: #ffffff;
        top: 100px;
        width: 100%;
        height: 100vh;
        right: 0;
        overflow-y: auto;
        display: none;
    }

    .menu-list {
        text-align: left;
        display: block;
        padding: 1rem;
        width: 100%;
    }

    .dark .menu-list li {
        color: black;

        &:hover {
            background-color: #3ab371;
        }
    }

    .menu-list li {
        padding: 20px;
        border-bottom: solid #bebebe 1px;

        &:hover {
            background-color: #f0f0f0e6;
        }
    }

    /*----------/HEAER----------*/


    h2 {
        margin-top: 3rem;
        font-size: 20px;
        width: 330px;
        text-align: center;
        color: #597cff;
    }

    .text1 {
        display: flex;
        flex-direction: column-reverse;

        & img {

            width: 340px;
        }

        & p {
            width: 340px;
        }
           }

   .text2 {
            width: 340px;
            margin-top: 6%;
        }


   .text3 {
            width: 340px;
        }

   .text4 {
            display: flex;
            flex-direction: column-reverse;
            & img {
                width: 340px;
                height: 200px;
                margin-top: 10%;
                margin-left: 1.5%;
            }
            & p {
                margin-left: 2%;
            }


        }

   .video1 {
            margin-top: 5rem;
            width: 100%;
            background-color: #4ae28e;
            padding: 3rem 0;
            display: flex;
            justify-content: center;

            & iframe {
                width: 340px;
                height: 200px;
            }
        }




        /* footer */

        footer {
            background-color: #6fff74;
            width: 100%;
            height: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;


            & hr {
                border: none;
                background-color: #000;
                width: 70%;
                height: 2px;
            }

            & .tudo {
                margin: 2rem 2rem;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: left;
                gap: 2rem;
                width: 90%;

                & a {
                    text-decoration: none;
                    color: #000;

                    &:hover {
                        color: #597bfe;
                    }
                }

                & h3 {
                    margin-bottom: 0.4rem;
                }

                & .voltar {
                    display: grid;
                    gap: 0.5rem;
                }

                & .referencias {
                    display: grid;
                    gap: 0.5rem;
                }

                & .links_rapidos {
                    display: grid;
                    gap: 0.2rem;
                }

                & form {
                    display: grid;
                    gap: 0.5rem;

                    align-self: center;

                    & h3 {
                        color: #597bfe;
                    }

                    & input {
                        border: none;
                        border-radius: 10px;
                        padding: 8px;
                        height: 2.2rem;
                    }
                }
            }

            & p {
                margin-bottom: 3rem;
            }
        }

        .dark footer {
            background-color: #3ab371;
        }

        /*-----------------FOOTER-----------------*/



    }
