body,
html {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 2130px;
    /* 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;
    }
}

@keyframes piscar {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

main {
    width: 100%;
    height: 100%;

    .carousel {
        user-select: none;
        position: relative;
        width: 100%;
        height: 450px;
        overflow: hidden;

        .carousel-indicators {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        .indicator {
            width: 10px;
            height: 10px;
            background-color: #fff;
            border-radius: 50%;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .indicator.active {
            background-color: #000;
        }

        .carousel-images {
            display: flex;
            transition: transform 1s ease-in-out;
            width: 100%;
        }

        .carousel-item {
            min-width: 100%;
            height: 100%;
            position: relative;
        }

        .carousel-item img {
            width: 100%;
            height: 450px;
            object-fit: cover;
        }

        .carousel-caption {
            position: absolute;
            top: 250px;
            left: 25%;
            transform: translate(-50%, -50%);
            background: rgba(#2877D8);
            color: white;
            padding: 10px;
            font-size: 24px;
            z-index: 1000;
            text-align: center;

            img {
                width: 220px;
                height: auto;
            }

            .roteador {
                width: 220px;
                height: auto;
            }

            .eletronicos {
                width: 120px;
            }

            img:hover {
                transform: scale(1.1);
                filter: drop-shadow(0 0 10px #2877D8);
            }
        }

        .carousel-caption2 {
            position: absolute;
            top: 250px;
            left: 75%;
            transform: translate(-50%, -50%);
            background: rgba(#2877D8);
            color: white;
            padding: 10px;
            font-size: 24px;
            z-index: 1000;
            text-align: center;

            .eletronicos {
                width: 110px;
            }

            img {
                width: 220px;
                height: auto;
            }

            img:hover {
                transform: scale(1.1);
                filter: drop-shadow(0 0 10px #2877D8);
            }
        }

        .mouse {
            position: absolute;
            top: 250px;
            left: 75%;
            transform: translate(-50%, -50%);
            background: rgba(#2877D8);
            color: white;
            padding: 10px;
            font-size: 24px;
            z-index: 1000;
            text-align: center;

            img {
                width: 90px;
                height: auto;
            }

            img:hover {
                transform: scale(1.1);
                filter: drop-shadow(0 0 10px #2877D8);
            }
        }

        .carousel-caption3 {
            display: flex;
            justify-content: center;
            align-items: center;
            position: absolute;
            top: 220px;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 500px;
            height: 50px;
            background-color: rgba(0, 0, 0, 0.02);
            border-radius: 10px;
            color: white;
            padding: 10px;
            font-size: 24px;
            z-index: 1000;
            text-align: center;
            filter: drop-shadow(0 0 10px #2877D8);
        }

        .carousel-button {
            position: absolute;
            top: 50%;
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 15px;
            cursor: pointer;
            z-index: 1;
        }

        .prev {
            left: 10px;
        }

        .next {
            right: 10px;
        }

        .carousel-button:hover {
            background-color: rgba(0, 0, 0, 0.7);
        }
    }

    .jack_descricao {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 1.5rem;
        user-select: none;
        width: 100%;
        height: 300px;
        text-align: center;
        border-bottom: solid 1px rgba(0, 0, 0, 0.3);

        h1 {
            margin: 0;
            transition: all 0.2s;
        }

        h1:hover {
            color: #19427575;
        }

        p {
            margin: 0;
            font-size: 24px;
            font-family: Arial, Helvetica, sans-serif;
        }

        h2 {
            margin: 0;
            color: #194275;
        }

        h2:hover {
            color: #19427575;
        }

        h3 {
            margin: 0;
            color: #194275;
        }

        .jack_desc {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
            align-items: center;
        }
    }

    .jack_descricao2 {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 2rem;
        background-image: url("../IMGS/fundo_jrm_desc2.png");
        background-size: 100% 100%;
        box-shadow: 0 0 80px #2877D8;
        width: 100%;
        height: 1150px;
        border-bottom: solid 1px rgba(0, 0, 0, 0.3);

        .la_p {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100px;
            width: 100%;

            .la2 {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 420px;
                height: 25px;
                background-color: #2A83ED;
                border-radius: 5px;
                color: white;
                font-size: 14px;
                transition: all 0.3s;
            }

            .la2:hover {
                background-color: black;
                box-shadow: 0 0 5px #194275;
            }
        }

        .la_p5 {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100px;
            width: 100%;

            .la2 {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 420px;
                height: 25px;
                background-color: #a52aed;
                border-radius: 5px;
                color: white;
                font-size: 14px;
                transition: all 0.3s;
            }

            .la2:hover {
                background-color: #440768;
                box-shadow: 0 0 5px black;
            }
        }

        .la_p2 {
            display: flex;
            flex-direction: column;
            user-select: none;
            gap: 1.5rem;
            width: 100%;
            height: 850px;

            .colunas {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 2rem;
                width: 100%;
                height: 100%;

                .div1_p {
                    width: 250px;
                    height: 400px;
                    border-radius: 5px;
                    border: solid 1px rgba(0, 0, 0, 0.2);
                    box-shadow: 0 0 10px #2877D8;
                    background-color: white;

                    .div1 {
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        justify-content: center;
                        width: 100%;
                        height: 40%;
                        background-color: black;
                        border-radius: 5px;

                        .alarmes {
                            width: 100px;
                        }

                        img {
                            width: 100px;
                            height: auto;
                            filter: drop-shadow(0 0 15px #2877D8);
                            transition: all 0.5s;
                        }

                        img:hover {
                            transform: scale(1.1);
                        }
                    }

                    .div2 {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        flex-direction: column;
                        text-align: center;
                        gap: 1.5rem;
                        width: 100%;
                        height: 60%;

                        .botoes {
                            width: 100%;
                            /* height: 20%; */


                            button {
                                background-color: black;
                                width: 150px;
                                height: 30px;
                                border-radius: 3px;
                                transition: all 0.3s;
                                color: white;
                                font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
                                border: 0;
                                cursor: pointer;
                            }

                            button:hover {
                                background-color: #440768;
                                box-shadow: 0 0 5px black;
                            }
                        }

                        h1 {
                            margin: 0;
                            font-size: 16px;
                            transition: all 0.2s;
                        }

                        h1:hover {
                            color: #19427575;
                        }
                    }
                }
            }

            .colunas2 {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 2rem;
                width: 100%;
                height: 100%;

                .div1_p {
                    width: 250px;
                    height: 400px;
                    border-radius: 5px;
                    border: solid 1px rgba(0, 0, 0, 0.2);
                    box-shadow: 0 0 10px #2877D8;
                    background-color: white;

                    .div1 {
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        justify-content: center;
                        width: 100%;
                        height: 40%;
                        background-color: black;
                        border-radius: 5px;

                        .alarmes {
                            width: 100px;
                        }

                        img {
                            width: 100px;
                            height: auto;
                            filter: drop-shadow(0 0 15px #2877D8);
                            transition: all 0.5s;
                        }

                        img:hover {
                            transform: scale(1.1);
                        }
                    }

                    .div2 {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        flex-direction: column;
                        text-align: center;
                        gap: 1.5rem;
                        width: 100%;
                        height: 60%;

                        .botoes {
                            width: 100%;
                            /* height: 20%; */


                            button {
                                background-color: black;
                                width: 150px;
                                height: 30px;
                                border-radius: 3px;
                                transition: all 0.3s;
                                color: white;
                                font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
                                border: 0;
                                cursor: pointer;
                            }

                            button:hover {
                                background-color: #440768;
                                box-shadow: 0 0 5px black;
                            }
                        }

                        h1 {
                            margin: 0;
                            font-size: 16px;
                            transition: all 0.2s;
                        }

                        h1:hover {
                            color: #19427575;
                        }
                    }
                }
            }

        }
    }

    .jack_descricao3 {
        width: 100%;
        /* height: 150px; */

        .la_p {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 100px;

            .la2 {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 180px;
                height: 25px;
                background-color: #2A83ED;
                border-radius: 5px;
                color: white;
                font-size: 14px;
                transition: all 0.3s;
            }

            .la2:hover {
                background-color: black;
                box-shadow: 0 0 5px #194275;
            }
        }

        .marcas {
            width: 100%;
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;

            img {
                width: 100px;
            }

            img:hover {
                filter: brightness(1) grayscale(100%);
            }
        }
    }

    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 (max-width: 1430px) {

    main {
        .carousel {
            position: relative;
            width: 100%;
            height: 450px;
            overflow: hidden;

            .carousel-indicators {
                position: absolute;
                bottom: 5px;
                left: 50%;
                transform: translateX(-50%);
                display: flex;
                justify-content: center;
                gap: 10px;
            }

            .indicator {
                width: 10px;
                height: 10px;
                background-color: #000000;
                border-radius: 50%;
                cursor: pointer;
                transition: background-color 0.3s;
            }
    
            .indicator.active {
                background-color: #2A83ED;
            }


            .carousel-images {
                display: flex;
                transition: transform 1s ease-in-out;
                width: 100%;
                height: 100%;
            }

            .carousel-item {
                min-width: 100%;
                height: 100%;
                position: relative;

                a {
                    text-decoration: none;
                }
            }

            .carousel-item img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .carousel-caption {
                position: absolute;
                top: 100px;
                left: 50%;
                transform: translate(-50%, -50%);
                background: rgba(#2877D8);
                color: white;
                padding: 10px;
                font-size: 24px;
                z-index: 1000;
                text-align: center;

                img {
                    width: 80px;
                }

                .roteador {
                    width: 80px;
                }

                .eletronicos {
                    width: 50px;
                }
            }

            .carousel-caption2 {
                position: absolute;
                top: 220px;
                left: 50%;
                transform: translate(-50%, -50%);
                background: rgba(#2877D8);
                color: white;
                padding: 10px;
                font-size: 24px;
                z-index: 1000;
                text-align: center;

                img {
                    width: 100px;
                }

                .eletronicos {
                    width: 50px;
                }
            }

            .mouse {
                position: absolute;
                top: 220px;
                left: 50%;
                transform: translate(-50%, -50%);
                background: rgba(#2877D8);
                color: white;
                padding: 10px;
                font-size: 24px;
                z-index: 1000;
                text-align: center;

                img {
                    width: 40px;
                }
            }

            .carousel-caption3 {
                display: flex;
                justify-content: center;
                align-items: center;
                position: absolute;
                top: 150px;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 300px;
                height: 25px;
                background-color: rgba(0, 0, 0, 0.3);
                border-radius: 10px;
                color: white;
                padding: 10px;
                font-size: 24px;
                z-index: 1000;
            }
        }
    }

}

@media (max-width: 1100px) {
    body {
        min-width: 100vw;
        height: 2700px;
    }

    header {
        user-select: none;
        width: 100%;
        height: 90px;

        .pai_header1 {

            .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.7);
                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 {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
        height: 100%;

        .jack_descricao {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 1.5rem;
            user-select: none;
            width: 100%;
            height: 300px;
            max-width: 90%;

            h1 {
                margin: 0;
                transition: all 0.2s;
            }

            p {
                margin: 0;
                font-size: 12px;
                text-align: center;
                font-family: Arial, Helvetica, sans-serif;
            }

            h2 {
                margin: 0;
                font-size: 14px;
                color: #194275;
            }

            h3 {
                margin: 0;
                font-size: 15px;
                color: #194275;
            }

            .jack_desc {
                display: flex;
                gap: 0.1rem;
                justify-content: center;
                align-items: center;
            }
        }

        .jack_descricao2 {
            display: flex;
            align-items: center;
            flex-direction: column;
            background-size: 150% 100%;
            gap: 2rem;
            width: 100%;
            height: 1700px;

            .la_p {
                display: flex;
                justify-content: center;
                align-items: center;
                height: 100px;
                width: 100%;

                .la2 {
                    width: 300px;
                    height: 25px;
                    border-radius: 5px;
                    font-size: 10px;
                    padding: 5px;
                    transition: all 0.3s;
                }

                .la2:active {
                    background-color: black;
                    box-shadow: 0 0 5px #194275;
                }
            }

            .la_p5 {
                display: flex;
                justify-content: center;
                align-items: center;
                height: 100px;
                width: 100%;

                .la2 {
                    width: 300px;
                    height: 25px;
                    border-radius: 5px;
                    font-size: 10px;
                    padding: 5px;
                    transition: all 0.3s;
                }

                .la2:active {
                    background-color: #440768;
                    box-shadow: 0 0 5px black;
                }
            }

            .la_p2 {
                display: flex;
                flex-direction: column;
                user-select: none;
                /* gap: 1.5rem; */
                width: 100%;
                height: 1400px;

                .colunas {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    flex-direction: column;
                    gap: 2rem;
                    width: 100%;
                    height: 700px;

                    .div1_p {
                        width: 250px;
                        height: 400px;
                        border-radius: 5px;

                        .div1 {
                            display: flex;
                            flex-direction: column;
                            align-items: center;
                            justify-content: center;
                            width: 100%;
                            height: 40%;
                            border-radius: 5px;

                            .alarmes {
                                width: 80px;
                            }

                            img {
                                width: 100px;
                                height: auto;
                                transition: all 0.5s;
                            }
                        }

                        .div2 {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            flex-direction: column;
                            text-align: center;
                            gap: 1.5rem;
                            width: 100%;
                            height: 60%;

                            .botoes {
                                width: 100%;
                                /* height: 20%; */


                                button {
                                    width: 150px;
                                    height: 30px;
                                    border-radius: 3px;
                                    transition: all 0.3s;
                                    cursor: pointer;
                                }
                            }

                            h1 {
                                margin: 0;
                                font-size: 16px;
                                transition: all 0.2s;
                            }
                        }
                    }
                }

                .colunas2 {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    flex-direction: column;
                    gap: 2rem;
                    width: 100%;
                    height: 700px;

                    .div1_p {
                        width: 250px;
                        height: 400px;
                        border-radius: 5px;

                        .div1 {
                            display: flex;
                            flex-direction: column;
                            align-items: center;
                            justify-content: center;
                            width: 100%;
                            height: 40%;
                            border-radius: 5px;

                            .alarmes {
                                width: 140px;
                            }

                            img {
                                width: 100px;
                                height: auto;
                                transition: all 0.5s;
                            }
                        }

                        .div2 {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            flex-direction: column;
                            text-align: center;
                            gap: 1.5rem;
                            width: 100%;
                            height: 60%;

                            .botoes {
                                width: 100%;
                                /* height: 20%; */


                                button {
                                    width: 150px;
                                    height: 30px;
                                    border-radius: 3px;
                                    transition: all 0.3s;
                                    cursor: pointer;
                                }
                            }

                            h1 {
                                margin: 0;
                                font-size: 16px;
                                transition: all 0.2s;
                            }
                        }
                    }
                }

            }
        }

        .jack_descricao4 {
            width: 100%;
            height: 1800px;

            .titulo {
                display: flex;
                justify-content: center;
                align-items: flex-end;
                width: 100%;
                height: 100px;

            }

            .produtos_container {
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                gap: 2rem;
                width: 100%;
                height: 1900px;

                .colunas {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    flex-direction: column;
                    gap: 4rem;
                    width: 100%;
                    height: 3000px;

                    .produto {
                        width: 300px;
                        height: 470px;
                        text-align: center;

                        .imagemProduto {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            width: 100%;
                            height: 200px;

                            img {
                                width: 250px;
                            }
                        }

                        .descricaoProdutos {
                            user-select: none;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            flex-direction: column;
                            text-align: center;
                            width: 100%;
                            height: 150px;
                        }

                        .botao {
                            user-select: none;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            width: 100%;
                            height: 100px;

                            button {
                                cursor: pointer;
                                width: 150px;
                                height: 30px;
                                border-radius: 10px;
                                border: 0;
                                transition: all 0.3s;
                            }
                        }
                    }
                }

                .colunas2 {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    flex-direction: column;
                    gap: 4rem;
                    width: 100%;
                    height: 3000px;

                    .produto {
                        width: 300px;
                        height: 470px;
                        text-align: center;

                        .imagemProduto {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            width: 100%;
                            height: 200px;

                            img {
                                width: 250px;
                            }
                        }

                        .descricaoProdutos {
                            user-select: none;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            flex-direction: column;
                            text-align: center;
                            width: 100%;
                            height: 150px;
                        }

                        .botao {
                            user-select: none;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            width: 100%;
                            height: 100px;

                            button {
                                cursor: pointer;
                                width: 150px;
                                height: 30px;
                                border-radius: 10px;
                                border: 0;
                                transition: all 0.3s;
                            }
                        }
                    }
                }
            }
        }

        .jack_descricao3 {
            display: flex;
            align-items: center;
            flex-direction: column;
            gap: 2rem;
            width: 100%;
            height: 300px;

            .la_p {
                display: flex;
                justify-content: center;
                align-items: center;
                height: 100px;
                width: 100%;

                .la2 {
                    width: 160px;
                    height: 25px;
                    border-radius: 5px;
                    font-size: 10px;
                    padding: 5px;
                    transition: all 0.3s;
                }

                .la2:active {
                    background-color: black;
                    box-shadow: 0 0 5px #194275;
                }
            }
        }
    }

    /*  */

    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;
                    }
                }
            }
        }

    }

}