body,
html {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 1000px;
    /* background-color: rgb(194, 192, 192); */
}

header {
    user-select: none;
    height: 90px;

    .pai_header1 {
        border-bottom: solid 1px rgba(0, 0, 0, 0.3);

        .header1 {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 30px;
            width: 40%;

            .texto {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 0.5rem;
                width: 100%;

                img {
                    width: 1.5%;
                    height: auto;
                }

                p {
                    color: gray;
                    font-size: 14px;
                    transition: all 0.3s;
                }

                p:hover {
                    color: black;
                    text-decoration: underline;
                }
            }
        }
    }

    .header2 {
        position: fixed;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        background-color: rgba(255, 255, 255);
        z-index: 1000;

        .nav-menu {
            display: flex;
            gap: 20px;
        }

        .menu-icon {
            display: none;
            font-size: 28px;
            cursor: pointer;
        }

        #menu-toggle {
            display: none;
        }

        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        img {
            width: 48px;
            cursor: pointer;
        }

        img:hover {
            transform: scale(1.1);
            filter: drop-shadow(0 0 10px black);
        }

        ul {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;

            li {
                margin: 0;
                padding: 0;
                display: flex;
                justify-content: center;
                align-items: center;
                color: white;
                transition: all 0.5s;
                background-color: #2877D8;
                width: 110px;
                height: 25px;
                border-radius: 5px;
                border: 0;
            }

            li:hover {
                background-color: #194275;
                box-shadow: 0 0 5px black;
            }
        }
    }

    a {
        text-decoration: none;
    }
}

main {
    width: 100%;
    height: 100%;

    .quad_o_p {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 650px;
        border-bottom: solid 1px rgba(0, 0, 0, 0.3);
        box-shadow: 0 0 20px #a52aed;
        background-image: url("../IMGS/fundo_jrm_desc2.png");
        background-size: 100% 100%;

        .quad_o {
            background: white;
            padding: 20px;
            border-radius: 10px;
            max-width: 500px;
            width: 100%;
            box-shadow: 0 0 10px #2877D8;
        }

        h2 {
            text-align: center;
        }

        .perguntas {
            margin-bottom: 15px;
        }

        label {
            display: block;
            font-weight: bold;
            margin-bottom: 5px;
        }

        input,
        textarea {
            resize: none;
            width: 97%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
        }

        button {
            width: 100%;
            background: #2877D8;
            color: white;
            border: none;
            padding: 10px;
            font-size: 18px;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.5s;
        }

        button:hover {
            background: #a52aed;
        }
    }

    .jack_descricao2 {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
        height: 300px;

        .la_p {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100px;
            width: 100%;

            .la2 {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 120px;
                height: 25px;
                background-color: #2A83ED;
                border-radius: 5px;
                color: white;
                font-size: 14px;
                transition: all 0.3s;
            }

            .la2:hover {
                background-color: #194275;
                box-shadow: 0 0 5px black;
            }
        }

        p {
            margin: 0;
        }

        ul {
            margin: 0;
            padding: 0;

            li {
                display: flex;
                color: gray;
                transition: all 0.3s;
            }

            li:hover {
                color: black;
            }
        }
    }
}

footer {
    box-shadow: 0 0 20px #a52aed;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
    border-top: solid 1px rgba(0, 0, 0, 0.4);

    .footer {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50%;
        gap: 2rem;

        .img_footer {
            img {
                width: 35px;
            }

            img:hover {
                transform: scale(1.1);
                filter: drop-shadow(0 0 10px #2877D8);
            }
        }

        .all {
            display: flex;
            gap: 1rem;

            div {
                display: flex;
                flex-direction: column;
                text-align: center;
                gap: 0.5rem;

                h1 {
                    margin: 0;
                    padding: 0;
                    font-size: 20px;
                }

                .wpp {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    flex-direction: row;
                    border: solid 2px green;
                    padding: 4px;
                    border-radius: 5px;
                    gap: 0.2rem;
                    width: 120px;
                    height: 25px;
                    transition: all 0.5s;
                    cursor: pointer;

                    img {
                        width: 35px;
                    }

                    p {
                        margin: 0;
                        padding: 0;
                        color: gray;
                        font-size: 14px;
                        transition: all 0.3s;
                    }

                    p:hover {
                        color: black;
                    }
                }

                .wpp2 {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    flex-direction: row;
                    border: solid 2px #2877D8;
                    padding: 4px;
                    border-radius: 5px;
                    gap: 0.2rem;
                    width: 150px;
                    height: 25px;
                    transition: all 0.5s;
                    cursor: pointer;


                    img {
                        width: 20px;
                    }

                    p {
                        margin: 0;
                        padding: 0;
                        color: gray;
                        font-size: 14px;
                        transition: all 0.3s;
                    }

                    p:hover {
                        color: black;
                    }
                }

                .wpp:hover {
                    transform: scale(1.1);
                    border: solid 2px black;
                }

                .wpp2:hover {
                    transform: scale(1.1);
                    border: solid 2px black;
                }
            }
        }

        a {
            text-decoration: none;
        }
    }

    .d_footer {
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        height: 50%;

        p {
            margin: 0;
            padding: 0;
            color: gray;
            padding: 5px;
            transition: all 0.3s;
        }

        p:hover {
            color: black;
        }
    }
}

@media (max-width: 1024px) {

    body,
    html {
        min-width: 100vw;
        height: 1000px;
    }

    header {
        user-select: none;
        width: 100%;
        height: 90px;

        .pai_header1 {
            border-bottom: solid 1px rgba(0, 0, 0, 0.2);

            .header1 {
                height: 30px;
                width: 100%;

                .texto {
                    text-align: center;
                    width: 100%;

                    img {
                        width: 15px;
                        height: auto;
                    }

                    p {
                        font-size: 14px;
                    }
                }
            }
        }

        .header2 {
            position: absolute;
            background-color: 0;
            text-align: center;
            height: 50px;

            .menu-icon {
                display: flex;
                justify-content: center;
                align-items: center;
                z-index: 10;
                color: black;
                background-color: #2877D8;
                width: 50px;
                height: 40px;
                border-radius: 10px;
                transition: all 0.3s;
            }

            .menu-icon:active {
                background-color: #a52aed;
                color: white;
            }

            .nav-menu {
                display: none;
                position: absolute;
                flex-direction: column;
                top: 100%;
                left: 50%;
                transform: translateX(-50%);
                background-color: rgba(0, 0, 0, 0.9);
                width: 200px;
                box-shadow: 0 4px 8px #2A83ED;
                border-radius: 10px;
                padding: 10px;
                text-align: center;
            }

            #menu-toggle:checked~.nav-menu {
                display: flex;
            }

            #menu-toggle:checked~.overlay {
                display: block;
            }

            #menu-toggle:checked~body {
                overflow: auto;
            }

            img {
                display: none;
            }
        }
    }

    /*  */

    main {
        width: 100%;
        height: 100%;

        .quad_o_p {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 650px;

            .quad_o {
                padding: 20px;
                border-radius: 10px;
                width: 75%;
            }

            .perguntas {
                margin-bottom: 15px;
            }

            label {
                display: block;
                font-weight: bold;
                margin-bottom: 5px;
            }

            input,
            textarea {
                resize: none;
                width: 97%;
                padding: 10px;
                border-radius: 5px;
                font-size: 16px;
            }

            button {
                width: 100%;
                padding: 10px;
                font-size: 18px;
                border-radius: 5px;
                cursor: pointer;
                transition: all 0.5s;
            }
        }

        .jack_descricao2 {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            width: 100%;
            height: 300px;  

            p {
                margin: 0;
            }

            li {
                transition: all 0.3s;
            }
        }
    }

    /*  */

    footer {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: rgba(245, 245, 220, 0.6);
        gap: 0rem;
        width: 100%;
        height: 200px;

        img {
            width: 35px;
        }

        .all {
            flex-direction: column;
            gap: 1rem;

            div {
                gap: 0.5rem;

                h1 {
                    font-size: 20px;
                }

                p {
                    font-size: 14px;
                    transition: all 0.3s;
                }

                .wpp {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    flex-direction: row;
                    padding: 4px;
                    border-radius: 5px;
                    gap: 0.2rem;
                    width: 120px;
                    height: 25px;
                    transition: all 0.5s;
                    cursor: pointer;

                    img {
                        width: 35px;
                    }

                    p {
                        margin: 0;
                        padding: 0;
                        font-size: 14px;
                        transition: all 0.3s;
                    }
                }

                .wpp2 {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    flex-direction: row;
                    padding: 4px;
                    border-radius: 5px;
                    gap: 0.2rem;
                    width: 120px;
                    height: 25px;
                    transition: all 0.5s;


                    img {
                        width: 20px;
                    }

                    p {
                        margin: 0;
                        padding: 0;
                        font-size: 14px;
                    }
                }
            }
        }

    }

}