body,
html {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 820px;
    /* 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 #2877D8);
        }

        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%;

    .la_p {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100px;
        width: 100%;

        .la2 {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 300px;
            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_all_s {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 2rem;
        width: 100%;
        height: 600px;

        .idc {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 5rem;
            width: 80%;
            height: 600px;
            background-color: black;
            box-shadow: 0 0 50px #a52aed;
            border-radius: 10px;

            .fotos {
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                gap: 0.5rem;
            }

            img {
                width: 250px;
                box-shadow: 0 0 10px #a52aed;
                transition: all 0.5s;
                border-radius: 5px;
            }

            img:hover {
                transform: scale(1.1);
                box-shadow: 0 0 10px #a52aed;
            }

            h1 {
                color: #3e085e;
                text-align: center;
            }

            p {
                color: white;
                text-align: center;
            }
        }

        .site_jrmstore {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 5rem;
            width: 80%;
            height: 600px;
            background-color: black;
            box-shadow: 0 0 50px #2A83ED;
            border-radius: 10px;

            img {
                width: 800px;
                box-shadow: 0 0 10px #a52aed;
                transition: all 0.5s;
                border-radius: 5px;
            }

            img:hover {
                transform: scale(1.1);
                box-shadow: 0 0 10px #2A83ED;
            }

            h1 {
                color: #2A83ED;
                text-align: center;
            }

            p {
                color: white;
                text-align: center;
            }
        }
    }

    a {
        text-decoration: none;
    }
}

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 (min-width: 900px) and (max-width: 1240px) {
    body {
        height: 1100px;
    }

    main {
        width: 100%;
        height: 100%;

        .p_all_s {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 2rem;
            width: 100%;
            height: 850px;

            .idc {
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                gap: 5rem;
                width: 80%;
                height: 800px;
                background-color: black;
                border-radius: 10px;

                img {
                    width: 200px;
                    transition: all 0.5s;
                    border-radius: 5px;
                }

                img:active {
                    transform: scale(1.1);
                    box-shadow: 0 0 10px #3e085e;
                }

                div {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    flex-direction: column;

                    h1 {
                        text-align: center;
                        font-size: 28px;
                    }

                    p {
                        text-align: center;
                        font-size: 14px;
                        max-width: 90%
                    }
                }
            }

            .site_jrmstore {
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                gap: 5rem;
                width: 80%;
                height: 600px;
                background-color: black;
                box-shadow: 0 0 50px #2A83ED;
                border-radius: 10px;

                img {
                    width: 450px;
                    box-shadow: 0 0 10px #2877D8;
                    transition: all 0.5s;
                    border-radius: 5px;
                }

                img:active {
                    transform: scale(1.1);
                    box-shadow: 0 0 10px #03254e;
                }

                div {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    flex-direction: column;

                    h1 {
                        color: #2A83ED;
                        text-align: center;
                        font-size: 28px;
                    }

                    p {
                        color: white;
                        text-align: center;
                        font-size: 18px;
                        max-width: 90%
                    }
                }
            }
        }
    }
}

@media (max-width: 900px) {
    body {
        min-width: 100vw;
        height: 900px;
    }

    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%;

        .la_p {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100px;
            width: 100%;

            .la2 {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 300px;
                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_all_s {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 2rem;
            width: 100%;
            height: 650px;

            .idc {
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                gap: 5rem;
                width: 80%;
                height: 600px;
                background-color: black;
                box-shadow: 0 0 50px #a52aed;
                border-radius: 10px;

                img {
                    width: 150px;
                    transition: all 0.5s;
                    border-radius: 5px;
                }

                img:active {
                    transform: scale(1.1);
                    box-shadow: 0 0 10px #3e085e;
                }

                div {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    flex-direction: column;

                    h1 {
                        text-align: center;
                        font-size: 18px;
                    }

                    p {
                        text-align: center;
                        font-size: 12px;
                        max-width: 90%
                    }
                }
            }

            .site_jrmstore {
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                gap: 5rem;
                width: 80%;
                height: 600px;
                background-color: black;
                box-shadow: 0 0 50px #2A83ED;
                border-radius: 10px;

                img {
                    width: 250px;
                    box-shadow: 0 0 10px #a52aed;
                    transition: all 0.5s;
                    border-radius: 5px;
                }

                img:active {
                    transform: scale(1.1);
                    box-shadow: 0 0 10px #2A83ED;
                }

                div {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    flex-direction: column;

                    h1 {
                        color: #2A83ED;
                        text-align: center;
                        font-size: 18px;
                    }

                    p {
                        color: white;
                        text-align: center;
                        font-size: 14px;
                        max-width: 90%;
                    }
                }
            }
        }
    }

    /*  */

    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;
                    }
                }
            }
        }

    }

}