/* Recursivo - Valhalla Bebidas */

/* //////////// Laptops e Desktops /////////// */


/* #region media 1400px até 1500px */

@media (min-width: 1400px) and (max-width: 1500px) {


/* #region Global */

/* FONTES */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.otf');
}

@font-face {
    font-family: 'Poppins-Black';
    src: url('../fonts/Poppins-Black.ttf');
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: 'Poppins';
}

/* OverFlow será escondido */
html,
body {
    overflow-x: hidden;
}

/* PALETA DE CORES */
:root {
    --cor-primaria: #f4f4f6;
    --cor-secundaria: #e6e6e9;
    --cor-terciaria: #9999a1;
    --cor-quartenaria: #969696;
    --cor-cardProduto: #ffffff;
    --cor-footer: #161616;
    --cor-texto: black;
    --cor-botoes: linear-gradient(to right, #FFD770 0%, #C9A227 100%);
    --cor-bg-ofertas: linear-gradient(to bottom, #D9D9D9 0%, #969696 80%);
    --cor-bg-navbar: linear-gradient(to right, #d9d9d9 0%, #ffffff 100%);
    --ofertas-img: url(../img/Formulario/FormularioLightMode.png);

}

.lightMode {
    --cor-primaria: #D9D9D9;
    --cor-secundaria: #e6e6e9;
    --cor-terciaria: #9999a1;
    --cor-quartenaria: #969696;
    --cor-cardProduto: #ffffff;
    --cor-footer: #161616;
    --cor-texto: black;
    --cor-bg-ofertas: linear-gradient(to bottom, #D9D9D9 0%, #969696 80%);
    --cor-bg-navbar: linear-gradient(to right, #d9d9d9 0%, #ffffff 100%);
    --ofertas-img: url(../img/Formulario/FormularioLightMode.png);
}

.darkMode {
    --cor-primaria: #2c2c2c;
    --cor-secundaria: #161616;
    --cor-terciaria: #ffffff;
    --cor-quartenaria: #161616;
    --cor-cardProduto: #161616;
    --cor-footer: #969696;
    --cor-texto: white;
    --cor-bg-ofertas: linear-gradient(to bottom, #2C2C2C 0%, #161616 80%);
    --cor-bg-navbar: linear-gradient(to right, #000000 0%, #1f1f1f 100%);
    --ofertas-img: url(../img/Formulario/FormularioDarkMode.png);
}

/* BOTOES */
.btnDefault {
    background: var(--cor-botoes);
    text-decoration: none;
    color: black;
    padding: 12px 34px 12px 34px;
    border-radius: 20px;
    font-weight: bold;
}

/* #endregion */

/* #region top navbar */
.container-topo {
    width: 100%;
    height: 120px;

    .topo {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;

        ul.navBar {
            width: 100%;
            padding: 10px;
            position: fixed;
            display: flex;
            align-items: center;
            z-index: 100;
            background: var(--cor-bg-navbar);




            li {
                a {
                    img {
                        height: 100px;
                    }
                }

            }

            li.subBotoes {
                margin-left: 500px;
                /* alterado a direção */
                padding: 20px;
                padding-right: 50px;
                display: flex;
                flex-direction: row;
                gap: 90px;
                font-size: 1.2rem;
                border: none;

                .btnNav {
                    text-decoration: none;
                    color: var(--cor-texto);
                    font-size: 20px;

                }
            }

            li.changMode {
                margin-left: 80x;
                /* padding: 0 50px; */
                display: flex;

            }

        }
    }
}


/* #endregion */

/* #region Categorias */

.container-categoria {
    width: 100%;
    /* Ocupa toda a Largura */
    min-height: 520px;
    /* 520px Garantido */
    background-color: var(--cor-primaria);
    /* Cor de fundo | Variavel */
    padding: 40px 0;
    /* Adiciona espaço acima e abaixo do conteúdo */

    h1 {
        padding: 20px;
        /* Espaçamento interno */
        text-align: center;
        /* Centraliza o texto */

        span {
            font-family: 'Poppins-Black';
            color: var(--cor-texto);
            font-size: 48px;
            /* Tamanho da fonte */
        }
    }

}

.cards {
    width: 100%;
    /* Ocupa toda a Largura */
    display: flex;
    /* Flexbox para layout flexível */
    flex-wrap: wrap;
    /* Permite que os itens quebrem linha */
    align-items: center;
    /* Alinha itens verticalmente ao centro */
    justify-content: center;
    /* Centraliza itens horizontalmente */
    gap: 20px;
    /* Espaçamento entre os itens */

    ul {
        padding: 0;
        /* Remove o padding padrão do UL */
        margin: 0;
        /* Remove a margem padrão do UL */
        display: flex;
        /* Flexbox para layout flexível */
        flex-wrap: wrap;
        /* Permite que os itens quebrem linha */
        max-width: 267px;
        /* Largura máxima do card */
        height: 166px;
        /* Altura fixa do card */
        border: none;
        /* Remove a borda padrão */
        border-radius: 10px;
        /* Bordas arredondadas */

        img {
            width: 100%;
            /* Ocupa toda a largura do card */
            height: auto;
            /* Mantém a proporção da imagem */
            border-radius: 10px;
            /* Bordas arredondadas */
            cursor: pointer;
            /* Cursor de ponteiro ao passar o mouse */
        }
    }
}


/* #endregion */

/* #region Produtos */
.regua {
    display: flex;
    margin: 40px 60px 80px 60px;
    width: auto;
    height: 3px;
    border-radius: 50px;
    background-color: var(--cor-texto)
}

.area-Produtos {
    width: 100%;
    max-width: 1500px;
    /* ajuste conforme necessário */
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    .cardsProdutos {
        width: 350px;
        height: 510px;
        background: var(--cor-cardProduto);
        border-radius: 20px;
        display: flex;
        flex-wrap: wrap;
        text-align: center;
        align-items: center;
        justify-content: space-evenly;

        .imgProdutos {
            width: 336px;
            height: 355px;
            display: flex;
            border: 2px solid var(--cor-primaria);
            border-radius: 20px;
        }

        h5 {
            font-weight: bold;
            color: var(--cor-texto);
        }

        p {
            font-size: 20px;
            color: #C9A227;
        }

        button {
            border-style: none;
            width: auto;
            font-weight: 900;
            background: var(--cor-botoes);
            color: #161616;
            font-weight: bolder;
            padding: 12px 34px 12px 34px;
            border-radius: 30px;
        }
    }
}


/* #endregion */

/* #region bannerOfertas */

.contato {
    width: 100%;
    height: 500px;
    background-image: var(--ofertas-img), var(--cor-bg-ofertas);
    background-repeat: no-repeat, no-repeat;
    background-position: left, center;
    background-size: 50%, cover;
    justify-content: flex-end;
    display: flex;
    align-items: center;

    ul {
        padding: 6rem;
        display: grid;
        text-align: center;

        li {

            /* Inputs do formulário */
            input {
                margin-top: 0.4rem;
                width: 100%;
                padding: 0.8rem;
                border: none;
                border-radius: 10px;
                font-size: 1rem;
                outline: none;
                color: var(--cor-terciaria);
                background-color: white;

                &::placeholder {
                    color: #969696;
                    font-weight: 600;
                }
            }

            /* Formulário */
            form {
                width: 75%;
                margin: 20px auto;
                display: flex;
                flex-direction: column;
                align-items: stretch;

                /* Botão Cadastrar */
                button {
                    align-self: flex-end;
                    margin-top: 0.2rem;
                    width: auto;
                    border-radius: 10px;
                    font-weight: 900;

                }
            }
        }
    }
}

/* Sub-título do formulário */
.informeDados {
    font-size: 24px;
    color: var(--cor-texto);
}

/* Texto de aceite dos termos e condições */
.aceite {
    font-size: 20px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    display: block;
    color: var(--cor-texto);
}

/* Título do formulário          */
.negrito {
    font-family: 'Poppins-Black';
    font-weight: 900;
    font-size: 24px;
    color: var(--cor-texto);
}

/* Captcha ao lado do botão cadastrar */
.captcha {
    display: flex;
    gap: 0.3rem;
    align-items: center;
    color: var(--cor-texto);
}

/* #endregion */

/* #region Footer */
.container-footer {
    width: 100%;
    height: auto;
    background-color: var(--cor-quartenaria);
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    padding: 40px 0;

    .footer1 {
        width: 30%;

        ul {
            li {
                .logo {
                    width: 450px;
                    height: auto;
                }
            }

            li {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: space-around;

                .imgRedes {
                    width: 40px;
                    height: auto;
                    margin-right: 10px;

                }

                a {
                    color: var(--cor-texto);
                    font-size: 18px;
                    text-decoration: none;
                }

                h1 {
                    padding-top: 30px;
                    font-size: 26px;
                    color: var(--cor-texto);
                    font-weight: bold;
                }
            }
        }
    }

    .footer2 {
        width: 25%;

        ul {
            li {
                margin-bottom: 60px;

                a {
                    color: var(--cor-texto);

                    text-decoration: none;
                }

                h1 {
                    color: var(--cor-texto);
                    font-size: 25px;
                    font-weight: bold;
                }
            }
        }
    }

    .footer3 {
        width: 30%;
        text-align: center;

        ul {
            li {
                margin-bottom: 10px;

                a {
                    img {
                        height: 100%;
                        width: auto;
                    }
                }
            }

            li {
                h1 {
                    color: var(--cor-texto);
                    font-size: 25px;
                    font-weight: 700;
                    width: 100%;
                    text-align: center;
                }
            }
        }
    }
}
    /* #endregion */

/* #region CopyRight */
    .copyright {
        background-color: var(--cor-footer);
        width: 100%;
        height: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        font-size: 20px;
    }

/* #endregion */

}

/* #endregion */

/* #region media 1366px até 1399px */
@media (min-width: 1366px) and (max-width: 1399px) {

/* #region Global */

/* FONTES */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.otf');
}

@font-face {
    font-family: 'Poppins-Black';
    src: url('../fonts/Poppins-Black.ttf');
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: 'Poppins';
}

/* OverFlow será escondido */
html,
body {
    overflow-x: hidden;
}

/* PALETA DE CORES */
:root {
    --cor-primaria: #f4f4f6;
    --cor-secundaria: #e6e6e9;
    --cor-terciaria: #9999a1;
    --cor-quartenaria: #969696;
    --cor-cardProduto: #ffffff;
    --cor-footer: #161616;
    --cor-texto: black;
    --cor-botoes: linear-gradient(to right, #FFD770 0%, #C9A227 100%);
    --cor-bg-ofertas: linear-gradient(to bottom, #D9D9D9 0%, #969696 80%);
    --cor-bg-navbar: linear-gradient(to right, #d9d9d9 0%, #ffffff 100%);
    --ofertas-img: url(../img/Formulario/FormularioLightMode.png);

}

.lightMode {
    --cor-primaria: #D9D9D9;
    --cor-secundaria: #e6e6e9;
    --cor-terciaria: #9999a1;
    --cor-quartenaria: #969696;
    --cor-cardProduto: #ffffff;
    --cor-footer: #161616;
    --cor-texto: black;
    --cor-bg-ofertas: linear-gradient(to bottom, #D9D9D9 0%, #969696 80%);
    --cor-bg-navbar: linear-gradient(to right, #d9d9d9 0%, #ffffff 100%);
    --ofertas-img: url(../img/Formulario/FormularioLightMode.png);
}

.darkMode {
    --cor-primaria: #2c2c2c;
    --cor-secundaria: #161616;
    --cor-terciaria: #ffffff;
    --cor-quartenaria: #161616;
    --cor-cardProduto: #161616;
    --cor-footer: #969696;
    --cor-texto: white;
    --cor-bg-ofertas: linear-gradient(to bottom, #2C2C2C 0%, #161616 80%);
    --cor-bg-navbar: linear-gradient(to right, #000000 0%, #1f1f1f 100%);
    --ofertas-img: url(../img/Formulario/FormularioDarkMode.png);
}

/* BOTOES */
.btnDefault {
    background: var(--cor-botoes);
    text-decoration: none;
    color: black;
    padding: 12px 34px 12px 34px;
    border-radius: 20px;
    font-weight: bold;
}

/* #endregion */

/* #region top navbar */
.container-topo {
    width: 100%;
    height: 120px;

    .topo {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;

        ul.navBar {
            width: 100%;
            padding: 10px;
            position: fixed;
            display: flex;
            align-items: center;
            z-index: 100;
            background: var(--cor-bg-navbar);




            li {
                a {
                    img {
                        height: 100px;
                    }
                }

            }

            li.subBotoes {
                margin-left: 300px;
                /* alterado a direção */
                padding: 20px;
                padding-right: 50px;
                display: flex;
                flex-direction: row;
                gap: 90px;
                font-size: 0.1rem;
                border: none;

                .btnNav {
                    text-decoration: none;
                    color: var(--cor-texto);
                    font-size: 20px;

                }
            }

            li.changMode {
                margin-left: 90px;
                /* padding: 0 50px; */
                display: flex;

            }

        }
    }
}

/* #endregion */

/* #region Categorias */

.container-categoria {
    width: 100%;
    /* Ocupa toda a Largura */
    min-height: 520px;
    /* 520px Garantido */
    background-color: var(--cor-primaria);
    /* Cor de fundo | Variavel */
    padding: 40px 0;
    /* Adiciona espaço acima e abaixo do conteúdo */

    h1 {
        padding: 20px;
        /* Espaçamento interno */
        text-align: center;
        /* Centraliza o texto */

        span {
            color: var(--cor-texto);
            font-size: 48px;
            /* Tamanho da fonte */
        }
    }

}

.cards {
    width: 100%;
    /* Ocupa toda a Largura */
    display: flex;
    /* Flexbox para layout flexível */
    flex-wrap: wrap;
    /* Permite que os itens quebrem linha */
    align-items: center;
    /* Alinha itens verticalmente ao centro */
    justify-content: center;
    /* Centraliza itens horizontalmente */
    gap: 20px;
    /* Espaçamento entre os itens */

    ul {
        padding: 0;
        /* Remove o padding padrão do UL */
        margin: 0;
        /* Remove a margem padrão do UL */
        display: flex;
        /* Flexbox para layout flexível */
        flex-wrap: wrap;
        /* Permite que os itens quebrem linha */
        max-width: 267px;
        /* Largura máxima do card */
        height: 166px;
        /* Altura fixa do card */
        border: none;
        /* Remove a borda padrão */
        border-radius: 10px;
        /* Bordas arredondadas */

        img {
            width: 100%;
            /* Ocupa toda a largura do card */
            height: auto;
            /* Mantém a proporção da imagem */
            border-radius: 10px;
            /* Bordas arredondadas */
            cursor: pointer;
            /* Cursor de ponteiro ao passar o mouse */
        }
    }
}
/* #endregion */

/* #region Produtos */
.regua {
    display: flex;
    margin: 40px 60px 80px 50px;
    width: auto;
    height: 3px;
    border-radius: 50px;
    background-color: var(--cor-texto)
}

.area-Produtos {
    width: 100%;
    max-width: 1500px;
    /* ajuste conforme necessário */
    margin-left: 50px;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    .cardsProdutos {
        width: 350px;
        height: 510px;
        background: var(--cor-cardProduto);
        border-radius: 20px;
        display: flex;
        flex-wrap: wrap;
        text-align: center;
        align-items: center;
        justify-content: space-evenly;

        .imgProdutos {
            width: 336px;
            height: 355px;
            display: flex;
            border: 2px solid var(--cor-primaria);
            border-radius: 20px;
        }

        h5 {
            font-weight: bold;
            color: var(--cor-texto);
        }

        p {
            font-size: 20px;
            color: #C9A227;
        }

        button {
            border-style: none;
            width: auto;
            font-weight: 900;
            background: var(--cor-botoes);
            color: #161616;
            font-weight: bolder;
            padding: 12px 34px 12px 34px;
            border-radius: 30px;
        }
    }
}


/* #endregion */

/* #region bannerOfertas */

.contato {
    width: 100%;
    height: 500px;
    background-image: var(--ofertas-img), var(--cor-bg-ofertas);
    background-repeat: no-repeat, no-repeat;
    background-position: left, center;
    background-size: 45%, cover;
    justify-content: flex-end;
    display: flex;
    align-items: center;

    ul {
        padding: 6rem;
        display: grid;
        text-align: center;

        li {

            /* Inputs do formulário */
            input {
                margin-left: 90px;
                margin-top: 0.4rem;
                width: 100%;
                padding: 0.8rem;
                border: none;
                border-radius: 10px;
                font-size: 1rem;
                outline: none;
                color: var(--cor-terciaria);
                background-color: white;

                &::placeholder {
                    color: #969696;
                    font-weight: 600;
                }
            }

            /* Formulário */
            form {
                width: 75%;
                margin: 20px auto;
                display: flex;
                flex-direction: column;
                align-items: stretch;

                /* Botão Cadastrar */
                button {
                    align-self: flex-end;
                    margin-top: 0.2rem;
                    width: auto;
                    border-radius: 10px;
                    font-weight: 900;

                }
            }
        }
    }
}

/* Sub-título do formulário */
.informeDados {
    margin-left: 150px;
    font-size: 24px;
    color: var(--cor-texto);
}

/* Texto de aceite dos termos e condições */
.aceite {
    margin-left: 78px;
    font-size: 20px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    display: block;
    color: var(--cor-texto);
}

/* Título do formulário */
.negrito {
    margin-left: 170px;
    font-family: 'Poppins-Black';
    font-weight: 900;
    font-size: 24px;
    color: var(--cor-texto);
}

/* Captcha ao lado do botão cadastrar */
.captcha {
    display: flex;
    gap: 0.3rem;
    align-items: center;
    color: var(--cor-texto);
}

/* #endregion */

/* #region Footer */
.container-footer {
    width: 100%;
    height: auto;
    background-color: var(--cor-quartenaria);
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    padding: 40px 0;

    .footer1 {
        width: 30%;

        ul {
            li {
                .logo {
                    width: 350px;
                    height: auto;
                }
            }

            li {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: space-around;

                .imgRedes {
                    width: 30px;
                    height: auto;
                    margin-right: 10px;

                }

                a {
                    color: var(--cor-texto);
                    font-size: 18px;
                    text-decoration: none;
                }

                h1 {
                    padding-top: 30px;
                    font-size: 26px;
                    color: var(--cor-texto);
                    font-weight: bold;
                }
            }
        }
    }

    .footer2 {
        width: 25%;

        ul {
            margin-right: 120px;
            li {
                margin-bottom: 40px;

                a {
                    color: var(--cor-texto);

                    text-decoration: none;
                }

                h1 {
                    color: var(--cor-texto);
                    font-size: 20px;
                    font-weight: bold;
                }
            }
        }
    }

    .footer3 {
        width: 30%;
        text-align: center;

        ul {
            li {
                margin-bottom: 10px;

                a {
                    img {
                        height: 100%;
                        width: 100%;
                    }
                }
            }

            li {
                h1 {
                    color: var(--cor-texto);
                    font-size: 20px;
                    font-weight: 700;
                    width: 100%;
                    text-align: center;
                }
            }
        }
    }
}
    /* #endregion */

/* #region CopyRight */

    .copyright {
        background-color: var(--cor-footer);
        width: 100%;
        height: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        font-size: 20px;
    }


    /* #endregion */

}

/* #endregion */

/* #region media 1300px até 1365px */

@media (min-width: 1300px) and (max-width: 1365px) {

/* #region Global */

/* FONTES */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.otf');
}

@font-face {
    font-family: 'Poppins-Black';
    src: url('../fonts/Poppins-Black.ttf');
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: 'Poppins';
}

/* OverFlow será escondido */
html,
body {
    overflow-x: hidden;
}

/* PALETA DE CORES */
:root {
    --cor-primaria: #f4f4f6;
    --cor-secundaria: #e6e6e9;
    --cor-terciaria: #9999a1;
    --cor-quartenaria: #969696;
    --cor-cardProduto: #ffffff;
    --cor-footer: #161616;
    --cor-texto: black;
    --cor-botoes: linear-gradient(to right, #FFD770 0%, #C9A227 100%);
    --cor-bg-ofertas: linear-gradient(to bottom, #D9D9D9 0%, #969696 80%);
    --cor-bg-navbar: linear-gradient(to right, #d9d9d9 0%, #ffffff 100%);
    --ofertas-img: url(../img/Formulario/FormularioLightMode.png);

}

.lightMode {
    --cor-primaria: #D9D9D9;
    --cor-secundaria: #e6e6e9;
    --cor-terciaria: #9999a1;
    --cor-quartenaria: #969696;
    --cor-cardProduto: #ffffff;
    --cor-footer: #161616;
    --cor-texto: black;
    --cor-bg-ofertas: linear-gradient(to bottom, #D9D9D9 0%, #969696 80%);
    --cor-bg-navbar: linear-gradient(to right, #d9d9d9 0%, #ffffff 100%);
    --ofertas-img: url(../img/Formulario/FormularioLightMode.png);
}

.darkMode {
    --cor-primaria: #2c2c2c;
    --cor-secundaria: #161616;
    --cor-terciaria: #ffffff;
    --cor-quartenaria: #161616;
    --cor-cardProduto: #161616;
    --cor-footer: #969696;
    --cor-texto: white;
    --cor-bg-ofertas: linear-gradient(to bottom, #2C2C2C 0%, #161616 80%);
    --cor-bg-navbar: linear-gradient(to right, #000000 0%, #1f1f1f 100%);
    --ofertas-img: url(../img/Formulario/FormularioDarkMode.png);
}

/* BOTOES */
.btnDefault {
    background: var(--cor-botoes);
    text-decoration: none;
    color: black;
    padding: 12px 34px 12px 34px;
    border-radius: 20px;
    font-weight: bold;
}

/* #endregion */

/* #region top navbar */
.container-topo {
    width: 100%;
    height: 120px;

    .topo {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;

        ul.navBar {
            width: 100%;
            padding: 10px;
            position: fixed;
            display: flex;
            align-items: center;
            z-index: 100;
            background: var(--cor-bg-navbar);




            li {
                a {
                    img {
                        height: 100px;
                    }
                }

            }

            li.subBotoes {
                margin-left: 300px;
                /* alterado a direção */
                padding: 20px;
                padding-right: 50px;
                display: flex;
                flex-direction: row;
                gap: 90px;
                font-size: 0.1rem;
                border: none;

                .btnNav {
                    text-decoration: none;
                    color: var(--cor-texto);
                    font-size: 20px;

                }
            }

            li.changMode {
                margin-left: 70px;
                /* padding: 0 50px; */
                display: flex;

            }

        }
    }
}

/* #endregion */

/* #region Categorias */

.container-categoria {
    width: 100%;
    /* Ocupa toda a Largura */
    min-height: 520px;
    /* 520px Garantido */
    background-color: var(--cor-primaria);
    /* Cor de fundo | Variavel */
    padding: 40px 0;
    /* Adiciona espaço acima e abaixo do conteúdo */

    h1 {
        padding: 20px;
        /* Espaçamento interno */
        text-align: center;
        /* Centraliza o texto */

        span {
            color: var(--cor-texto);
            font-size: 48px;
            /* Tamanho da fonte */
        }
    }

}

.cards {
    width: 100%;
    /* Ocupa toda a Largura */
    display: flex;
    /* Flexbox para layout flexível */
    flex-wrap: wrap;
    /* Permite que os itens quebrem linha */
    align-items: center;
    /* Alinha itens verticalmente ao centro */
    justify-content: center;
    /* Centraliza itens horizontalmente */
    gap: 20px;
    /* Espaçamento entre os itens */

    ul {
        padding: 0;
        /* Remove o padding padrão do UL */
        margin: 0;
        /* Remove a margem padrão do UL */
        display: flex;
        /* Flexbox para layout flexível */
        flex-wrap: wrap;
        /* Permite que os itens quebrem linha */
        max-width: 267px;
        /* Largura máxima do card */
        height: 166px;
        /* Altura fixa do card */
        border: none;
        /* Remove a borda padrão */
        border-radius: 10px;
        /* Bordas arredondadas */

        img {
            width: 100%;
            /* Ocupa toda a largura do card */
            height: auto;
            /* Mantém a proporção da imagem */
            border-radius: 10px;
            /* Bordas arredondadas */
            cursor: pointer;
            /* Cursor de ponteiro ao passar o mouse */
        }
    }
}
/* #endregion */

/* #region Produtos */
.regua {
    display: flex;
    margin: 40px 60px 80px 50px;
    width: auto;
    height: 3px;
    border-radius: 50px;
    background-color: var(--cor-texto)
}

.area-Produtos {
    width: 100%;
    max-width: 1500px;
    /* ajuste conforme necessário */
    margin-left: 40px;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    .cardsProdutos {
        width: 350px;
        height: 510px;
        background: var(--cor-cardProduto);
        border-radius: 20px;
        display: flex;
        flex-wrap: wrap;
        text-align: center;
        align-items: center;
        justify-content: space-evenly;

        .imgProdutos {
            width: 336px;
            height: 355px;
            display: flex;
            border: 2px solid var(--cor-primaria);
            border-radius: 20px;
        }

        h5 {
            font-weight: bold;
            color: var(--cor-texto);
        }

        p {
            font-size: 20px;
            color: #C9A227;
        }

        button {
            border-style: none;
            width: auto;
            font-weight: 900;
            background: var(--cor-botoes);
            color: #161616;
            font-weight: bolder;
            padding: 12px 34px 12px 34px;
            border-radius: 30px;
        }
    }
}


/* #endregion */

/* #region bannerOfertas */

.contato {
    width: 100%;
    height: 500px;
    background-image: var(--ofertas-img), var(--cor-bg-ofertas);
    background-repeat: no-repeat, no-repeat;
    background-position: left, center;
    background-size: 45%, cover;
    justify-content: flex-end;
    display: flex;
    align-items: center;

    ul {
        padding: 6rem;
        display: grid;
        text-align: center;

        li {

            /* Inputs do formulário */
            input {
                margin-left: 90px;
                margin-top: 0.4rem;
                width: 100%;
                padding: 0.8rem;
                border: none;
                border-radius: 10px;
                font-size: 1rem;
                outline: none;
                color: var(--cor-terciaria);
                background-color: white;

                &::placeholder {
                    color: #969696;
                    font-weight: 600;
                }
            }

            /* Formulário */
            form {
                width: 75%;
                margin: 20px auto;
                display: flex;
                flex-direction: column;
                align-items: stretch;

                /* Botão Cadastrar */
                button {
                    align-self: flex-end;
                    margin-top: 0.2rem;
                    width: auto;
                    border-radius: 10px;
                    font-weight: 900;

                }
            }
        }
    }
}

/* Sub-título do formulário */
.informeDados {
    margin-left: 150px;
    font-size: 24px;
    color: var(--cor-texto);
}

/* Texto de aceite dos termos e condições */
.aceite {
    margin-left: 78px;
    font-size: 20px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    display: block;
    color: var(--cor-texto);
}

/* Título do formulário */
.negrito {
    margin-left: 170px;
    font-family: 'Poppins-Black';
    font-weight: 900;
    font-size: 24px;
    color: var(--cor-texto);
}

/* Captcha ao lado do botão cadastrar */
.captcha {
    display: flex;
    gap: 0.3rem;
    align-items: center;
    color: var(--cor-texto);
}

/* #endregion */

/* #region Footer */
.container-footer {
    width: 100%;
    height: auto;
    background-color: var(--cor-quartenaria);
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    padding: 40px 0;

    .footer1 {
        width: 30%;

        ul {
            li {
                .logo {
                    width: 350px;
                    height: auto;
                }
            }

            li {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: space-around;

                .imgRedes {
                    width: 30px;
                    height: auto;
                    margin-right: 10px;

                }

                a {
                    color: var(--cor-texto);
                    font-size: 18px;
                    text-decoration: none;
                }

                h1 {
                    padding-top: 30px;
                    font-size: 26px;
                    color: var(--cor-texto);
                    font-weight: bold;
                }
            }
        }
    }

    .footer2 {
        width: 25%;

        ul {
            margin-right: 120px;
            li {
                margin-bottom: 40px;

                a {
                    color: var(--cor-texto);

                    text-decoration: none;
                }

                h1 {
                    color: var(--cor-texto);
                    font-size: 20px;
                    font-weight: bold;
                }
            }
        }
    }

    .footer3 {
        width: 30%;
        text-align: center;

        ul {
            li {
                margin-bottom: 10px;

                a {
                    img {
                        height: 100%;
                        width: 100%;
                    }
                }
            }

            li {
                h1 {
                    color: var(--cor-texto);
                    font-size: 20px;
                    font-weight: 700;
                    width: 100%;
                    text-align: center;
                }
            }
        }
    }
}
    /* #endregion */

/* #region CopyRight */

    .copyright {
        background-color: var(--cor-footer);
        width: 100%;
        height: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        font-size: 20px;
    }


    /* #endregion */

}

/* #endregion */

/* #region media 1266px até 1299px */

@media (min-width: 1266px) and (max-width: 1299px) {

/* #region Global */

/* FONTES */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.otf');
}

@font-face {
    font-family: 'Poppins-Black';
    src: url('../fonts/Poppins-Black.ttf');
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: 'Poppins';
}

/* OverFlow será escondido */
html,
body {
    overflow-x: hidden;
}

/* PALETA DE CORES */
:root {
    --cor-primaria: #f4f4f6;
    --cor-secundaria: #e6e6e9;
    --cor-terciaria: #9999a1;
    --cor-quartenaria: #969696;
    --cor-cardProduto: #ffffff;
    --cor-footer: #161616;
    --cor-texto: black;
    --cor-botoes: linear-gradient(to right, #FFD770 0%, #C9A227 100%);
    --cor-bg-ofertas: linear-gradient(to bottom, #D9D9D9 0%, #969696 80%);
    --cor-bg-navbar: linear-gradient(to right, #d9d9d9 0%, #ffffff 100%);
    --ofertas-img: url(../img/Formulario/FormularioLightMode.png);

}

.lightMode {
    --cor-primaria: #D9D9D9;
    --cor-secundaria: #e6e6e9;
    --cor-terciaria: #9999a1;
    --cor-quartenaria: #969696;
    --cor-cardProduto: #ffffff;
    --cor-footer: #161616;
    --cor-texto: black;
    --cor-bg-ofertas: linear-gradient(to bottom, #D9D9D9 0%, #969696 80%);
    --cor-bg-navbar: linear-gradient(to right, #d9d9d9 0%, #ffffff 100%);
    --ofertas-img: url(../img/Formulario/FormularioLightMode.png);
}

.darkMode {
    --cor-primaria: #2c2c2c;
    --cor-secundaria: #161616;
    --cor-terciaria: #ffffff;
    --cor-quartenaria: #161616;
    --cor-cardProduto: #161616;
    --cor-footer: #969696;
    --cor-texto: white;
    --cor-bg-ofertas: linear-gradient(to bottom, #2C2C2C 0%, #161616 80%);
    --cor-bg-navbar: linear-gradient(to right, #000000 0%, #1f1f1f 100%);
    --ofertas-img: url(../img/Formulario/FormularioDarkMode.png);
}

/* BOTOES */
.btnDefault {
    background: var(--cor-botoes);
    text-decoration: none;
    color: black;
    padding: 12px 34px 12px 34px;
    border-radius: 20px;
    font-weight: bold;
}

/* #endregion */

/* #region top navbar */
.container-topo {
    width: 100%;
    height: 120px;

    .topo {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;

        ul.navBar {
            width: 100%;
            padding: 10px;
            position: fixed;
            display: flex;
            align-items: center;
            z-index: 100;
            background: var(--cor-bg-navbar);




            li {
                a {
                    img {
                        height: 100px;
                    }
                }

            }

            li.subBotoes {
                margin-left: 190px;
                /* alterado a direção */
                padding: 20px;
                padding-right: 50px;
                display: flex;
                flex-direction: row;
                gap: 90px;
                font-size: 0.1rem;
                border: none;

                .btnNav {
                    text-decoration: none;
                    color: var(--cor-texto);
                    font-size: 20px;

                }
            }

            li.changMode {
                margin-left: 60px;
                /* padding: 0 50px; */
                display: flex;

            }

        }
    }
}

/* #endregion */

/* #region Categorias */

.container-categoria {
    width: 100%;
    /* Ocupa toda a Largura */
    min-height: 520px;
    /* 520px Garantido */
    background-color: var(--cor-primaria);
    /* Cor de fundo | Variavel */
    padding: 40px 0;
    /* Adiciona espaço acima e abaixo do conteúdo */

    h1 {
        padding: 20px;
        /* Espaçamento interno */
        text-align: center;
        /* Centraliza o texto */

        span {
            color: var(--cor-texto);
            font-size: 48px;
            /* Tamanho da fonte */
        }
    }

}

.cards {
    width: 100%;
    /* Ocupa toda a Largura */
    display: flex;
    /* Flexbox para layout flexível */
    flex-wrap: wrap;
    /* Permite que os itens quebrem linha */
    align-items: center;
    /* Alinha itens verticalmente ao centro */
    justify-content: center;
    /* Centraliza itens horizontalmente */
    gap: 20px;
    /* Espaçamento entre os itens */

    ul {
        padding: 0;
        /* Remove o padding padrão do UL */
        margin: 0;
        /* Remove a margem padrão do UL */
        display: flex;
        /* Flexbox para layout flexível */
        flex-wrap: wrap;
        /* Permite que os itens quebrem linha */
        max-width: 267px;
        /* Largura máxima do card */
        height: 166px;
        /* Altura fixa do card */
        border: none;
        /* Remove a borda padrão */
        border-radius: 10px;
        /* Bordas arredondadas */

        img {
            width: 100%;
            /* Ocupa toda a largura do card */
            height: auto;
            /* Mantém a proporção da imagem */
            border-radius: 10px;
            /* Bordas arredondadas */
            cursor: pointer;
            /* Cursor de ponteiro ao passar o mouse */
        }
    }
}
/* #endregion */

/* #region Produtos */
.regua {
    display: flex;
    margin: 40px 60px 80px 50px;
    width: auto;
    height: 3px;
    border-radius: 50px;
    background-color: var(--cor-texto)
}

.area-Produtos {
    width: 100%;
    max-width: 1500px;
    /* ajuste conforme necessário */
    margin-left: 35px;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    .cardsProdutos {
        width: 350px;
        height: 510px;
        background: var(--cor-cardProduto);
        border-radius: 20px;
        display: flex;
        flex-wrap: wrap;
        text-align: center;
        align-items: center;
        justify-content: space-evenly;

        .imgProdutos {
            width: 336px;
            height: 355px;
            display: flex;
            border: 2px solid var(--cor-primaria);
            border-radius: 20px;
        }

        h5 {
            font-weight: bold;
            color: var(--cor-texto);
        }

        p {
            font-size: 20px;
            color: #C9A227;
        }

        button {
            border-style: none;
            width: auto;
            font-weight: 900;
            background: var(--cor-botoes);
            color: #161616;
            font-weight: bolder;
            padding: 12px 34px 12px 34px;
            border-radius: 30px;
        }
    }
}


/* #endregion */

/* #region bannerOfertas */

.contato {
    width: 100%;
    height: 500px;
    background-image: var(--ofertas-img), var(--cor-bg-ofertas);
    background-repeat: no-repeat, no-repeat;
    background-position: left, center;
    background-size: 45%, cover;
    justify-content: flex-end;
    display: flex;
    align-items: center;

    ul {
        padding: 6rem;
        display: grid;
        text-align: center;

        li {

            /* Inputs do formulário */
            input {
                margin-left: 90px;
                margin-top: 0.4rem;
                width: 100%;
                padding: 0.8rem;
                border: none;
                border-radius: 10px;
                font-size: 1rem;
                outline: none;
                color: var(--cor-terciaria);
                background-color: white;

                &::placeholder {
                    color: #969696;
                    font-weight: 600;
                }
            }

            /* Formulário */
            form {
                width: 75%;
                margin: 20px auto;
                display: flex;
                flex-direction: column;
                align-items: stretch;

                /* Botão Cadastrar */
                button {
                    align-self: flex-end;
                    margin-top: 0.2rem;
                    width: auto;
                    border-radius: 10px;
                    font-weight: 900;

                }
            }
        }
    }
}

/* Sub-título do formulário */
.informeDados {
    margin-left: 150px;
    font-size: 24px;
    color: var(--cor-texto);
}

/* Texto de aceite dos termos e condições */
.aceite {
    margin-left: 78px;
    font-size: 20px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    display: block;
    color: var(--cor-texto);
}

/* Título do formulário */
.negrito {
    margin-left: 170px;
    font-family: 'Poppins-Black';
    font-weight: 900;
    font-size: 24px;
    color: var(--cor-texto);
}

/* Captcha ao lado do botão cadastrar */
.captcha {
    display: flex;
    gap: 0.3rem;
    align-items: center;
    color: var(--cor-texto);
}

/* #endregion */

/* #region Footer */
.container-footer {
    width: 100%;
    height: auto;
    background-color: var(--cor-quartenaria);
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    padding: 40px 0;

    .footer1 {
        width: 30%;

        ul {
            li {
                .logo {
                    width: 350px;
                    height: auto;
                }
            }

            li {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: space-around;

                .imgRedes {
                    width: 30px;
                    height: auto;
                    margin-right: 10px;

                }

                a {
                    color: var(--cor-texto);
                    font-size: 18px;
                    text-decoration: none;
                }

                h1 {
                    padding-top: 30px;
                    font-size: 26px;
                    color: var(--cor-texto);
                    font-weight: bold;
                }
            }
        }
    }

    .footer2 {
        width: 25%;

        ul {
            margin-right: 120px;
            li {
                margin-bottom: 40px;

                a {
                    color: var(--cor-texto);

                    text-decoration: none;
                }

                h1 {
                    color: var(--cor-texto);
                    font-size: 20px;
                    font-weight: bold;
                }
            }
        }
    }

    .footer3 {
        width: 30%;
        text-align: center;

        ul {
            li {
                margin-bottom: 10px;

                a {
                    img {
                        height: 100%;
                        width: 100%;
                    }
                }
            }

            li {
                h1 {
                    color: var(--cor-texto);
                    font-size: 20px;
                    font-weight: 700;
                    width: 100%;
                    text-align: center;
                }
            }
        }
    }
}
    /* #endregion */

/* #region CopyRight */

    .copyright {
        background-color: var(--cor-footer);
        width: 100%;
        height: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        font-size: 20px;
    }


    /* #endregion */
}

/* #endregion */

/* #region media 1200px até 1265px */
@media (min-width: 1200px) and (max-width: 1265px) {

/* #region Global */

/* FONTES */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.otf');
}

@font-face {
    font-family: 'Poppins-Black';
    src: url('../fonts/Poppins-Black.ttf');
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: 'Poppins';
}

/* OverFlow será escondido */
html,
body {
    overflow-x: hidden;
}

/* PALETA DE CORES */
:root {
    --cor-primaria: #f4f4f6;
    --cor-secundaria: #e6e6e9;
    --cor-terciaria: #9999a1;
    --cor-quartenaria: #969696;
    --cor-cardProduto: #ffffff;
    --cor-footer: #161616;
    --cor-texto: black;
    --cor-botoes: linear-gradient(to right, #FFD770 0%, #C9A227 100%);
    --cor-bg-ofertas: linear-gradient(to bottom, #D9D9D9 0%, #969696 80%);
    --cor-bg-navbar: linear-gradient(to right, #d9d9d9 0%, #ffffff 100%);
    --ofertas-img: url(../img/Formulario/FormularioLightMode.png);

}

.lightMode {
    --cor-primaria: #D9D9D9;
    --cor-secundaria: #e6e6e9;
    --cor-terciaria: #9999a1;
    --cor-quartenaria: #969696;
    --cor-cardProduto: #ffffff;
    --cor-footer: #161616;
    --cor-texto: black;
    --cor-bg-ofertas: linear-gradient(to bottom, #D9D9D9 0%, #969696 80%);
    --cor-bg-navbar: linear-gradient(to right, #d9d9d9 0%, #ffffff 100%);
    --ofertas-img: url(../img/Formulario/FormularioLightMode.png);
}

.darkMode {
    --cor-primaria: #2c2c2c;
    --cor-secundaria: #161616;
    --cor-terciaria: #ffffff;
    --cor-quartenaria: #161616;
    --cor-cardProduto: #161616;
    --cor-footer: #969696;
    --cor-texto: white;
    --cor-bg-ofertas: linear-gradient(to bottom, #2C2C2C 0%, #161616 80%);
    --cor-bg-navbar: linear-gradient(to right, #000000 0%, #1f1f1f 100%);
    --ofertas-img: url(../img/Formulario/FormularioDarkMode.png);
}

/* BOTOES */
.btnDefault {
    background: var(--cor-botoes);
    text-decoration: none;
    color: black;
    padding: 12px 34px 12px 34px;
    border-radius: 20px;
    font-weight: bold;
}

/* #endregion */

/* #region top navbar */
.container-topo {
    width: 100%;
    height: 120px;

    .topo {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;

        ul.navBar {
            width: 100%;
            padding: 10px;
            position: fixed;
            display: flex;
            align-items: center;
            z-index: 100;
            background: var(--cor-bg-navbar);




            li {
                a {
                    img {
                        height: 100px;
                    }
                }

            }

            li.subBotoes {
                margin-left: 190px;
                /* alterado a direção */
                padding: 20px;
                padding-right: 50px;
                display: flex;
                flex-direction: row;
                gap: 90px;
                font-size: 0.1rem;
                border: none;

                .btnNav {
                    text-decoration: none;
                    color: var(--cor-texto);
                    font-size: 15px;

                }
            }

            li.changMode {
                margin-left: 60px;
                /* padding: 0 50px; */
                display: flex;

            }

        }
    }
}

/* #endregion */

/* #region Categorias */

.container-categoria {
    width: 100%;
    /* Ocupa toda a Largura */
    min-height: 520px;
    /* 520px Garantido */
    background-color: var(--cor-primaria);
    /* Cor de fundo | Variavel */
    padding: 40px 0;
    /* Adiciona espaço acima e abaixo do conteúdo */

    h1 {
        padding: 20px;
        /* Espaçamento interno */
        text-align: center;
        /* Centraliza o texto */

        span {
            color: var(--cor-texto);
            font-size: 48px;
            /* Tamanho da fonte */
        }
    }

}

.cards {
    width: 100%;
    /* Ocupa toda a Largura */
    display: flex;
    /* Flexbox para layout flexível */
    flex-wrap: wrap;
    /* Permite que os itens quebrem linha */
    align-items: center;
    /* Alinha itens verticalmente ao centro */
    justify-content: center;
    /* Centraliza itens horizontalmente */
    gap: 20px;
    /* Espaçamento entre os itens */

    ul {
        padding: 0;
        /* Remove o padding padrão do UL */
        margin: 0;
        /* Remove a margem padrão do UL */
        display: flex;
        /* Flexbox para layout flexível */
        flex-wrap: wrap;
        /* Permite que os itens quebrem linha */
        max-width: 267px;
        /* Largura máxima do card */
        height: 166px;
        /* Altura fixa do card */
        border: none;
        /* Remove a borda padrão */
        border-radius: 10px;
        /* Bordas arredondadas */

        img {
            width: 100%;
            /* Ocupa toda a largura do card */
            height: auto;
            /* Mantém a proporção da imagem */
            border-radius: 10px;
            /* Bordas arredondadas */
            cursor: pointer;
            /* Cursor de ponteiro ao passar o mouse */
        }
    }
}
/* #endregion */

/* #region Produtos */
.regua {
    display: flex;
    margin: 40px 60px 80px 60px;
    width: auto;
    height: 3px;
    border-radius: 50px;
    background-color: var(--cor-texto)
}

.area-Produtos {
    width: 100%;
    max-width: 1500px;
    /* ajuste conforme necessário */
    margin-left: 25px;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    .cardsProdutos {
        width: 350px;
        height: 510px;
        background: var(--cor-cardProduto);
        border-radius: 20px;
        display: flex;
        flex-wrap: wrap;
        text-align: center;
        align-items: center;
        justify-content: space-evenly;

        .imgProdutos {
            width: 336px;
            height: 355px;
            display: flex;
            border: 2px solid var(--cor-primaria);
            border-radius: 20px;
        }

        h5 {
            font-weight: bold;
            color: var(--cor-texto);
        }

        p {
            font-size: 20px;
            color: #C9A227;
        }

        button {
            border-style: none;
            width: auto;
            font-weight: 900;
            background: var(--cor-botoes);
            color: #161616;
            font-weight: bolder;
            padding: 12px 34px 12px 34px;
            border-radius: 30px;
        }
    }
}


/* #endregion */

/* #region bannerOfertas */

.contato {
    width: 100%;
    height: 500px;
    background-image: var(--ofertas-img), var(--cor-bg-ofertas);
    background-repeat: no-repeat, no-repeat;
    background-position: left, center;
    background-size: 45%, cover;
    justify-content: flex-end;
    display: flex;
    align-items: center;

    ul {
        padding: 6rem;
        display: grid;
        text-align: center;

        li {

            /* Inputs do formulário */
            input {
                margin-left: 90px;
                margin-top: 0.4rem;
                width: 100%;
                padding: 0.8rem;
                border: none;
                border-radius: 10px;
                font-size: 1rem;
                outline: none;
                color: var(--cor-terciaria);
                background-color: white;

                &::placeholder {
                    color: #969696;
                    font-weight: 600;
                }
            }

            /* Formulário */
            form {
                width: 75%;
                margin: 20px auto;
                display: flex;
                flex-direction: column;
                align-items: stretch;

                /* Botão Cadastrar */
                button {
                    align-self: flex-end;
                    margin-top: 0.2rem;
                    width: auto;
                    border-radius: 10px;
                    font-weight: 900;

                }
            }
        }
    }
}

/* Sub-título do formulário */
.informeDados {
    margin-left: 150px;
    font-size: 24px;
    color: var(--cor-texto);
}

/* Texto de aceite dos termos e condições */
.aceite {
    margin-left: 78px;
    font-size: 20px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    display: block;
    color: var(--cor-texto);
}

/* Título do formulário */
.negrito {
    margin-left: 170px;
    font-family: 'Poppins-Black';
    font-weight: 900;
    font-size: 24px;
    color: var(--cor-texto);
}

/* Captcha ao lado do botão cadastrar */
.captcha {
    display: flex;
    gap: 0.3rem;
    align-items: center;
    color: var(--cor-texto);
}

/* #endregion */

/* #region Footer */
.container-footer {
    width: 100%;
    height: auto;
    background-color: var(--cor-quartenaria);
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    padding: 40px 0;

    .footer1 {
        width: 30%;

        ul {
            li {
                .logo {
                    width: 350px;
                    height: auto;
                }
            }

            li {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: space-around;

                .imgRedes {
                    width: 30px;
                    height: auto;
                    margin-right: 10px;

                }

                a {
                    color: var(--cor-texto);
                    font-size: 18px;
                    text-decoration: none;
                }

                h1 {
                    padding-top: 30px;
                    font-size: 26px;
                    color: var(--cor-texto);
                    font-weight: bold;
                }
            }
        }
    }

    .footer2 {
        width: 25%;

        ul {
            margin-right: 120px;
            li {
                margin-bottom: 40px;

                a {
                    color: var(--cor-texto);

                    text-decoration: none;
                }

                h1 {
                    color: var(--cor-texto);
                    font-size: 20px;
                    font-weight: bold;
                }
            }
        }
    }

    .footer3 {
        width: 30%;
        text-align: center;

        ul {
            li {
                margin-bottom: 10px;

                a {
                    img {
                        height: 100%;
                        width: 100%;
                    }
                }
            }

            li {
                h1 {
                    color: var(--cor-texto);
                    font-size: 20px;
                    font-weight: 700;
                    width: 100%;
                    text-align: center;
                }
            }
        }
    }
}
    /* #endregion */

/* #region CopyRight */
    .copyright {
        background-color: var(--cor-footer);
        width: 100%;
        height: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        font-size: 20px;
    }

/* #endregion */

}

/* #endregion */

/* #region media 1166px até 1199px */

@media (min-width: 1166px) and (max-width: 1199px) {

/* #region Global */

/* FONTES */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.otf');
}

@font-face {
    font-family: 'Poppins-Black';
    src: url('../fonts/Poppins-Black.ttf');
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: 'Poppins';
}

/* OverFlow será escondido */
html,
body {
    overflow-x: hidden;
}

/* PALETA DE CORES */
:root {
    --cor-primaria: #f4f4f6;
    --cor-secundaria: #e6e6e9;
    --cor-terciaria: #9999a1;
    --cor-quartenaria: #969696;
    --cor-cardProduto: #ffffff;
    --cor-footer: #161616;
    --cor-texto: black;
    --cor-botoes: linear-gradient(to right, #FFD770 0%, #C9A227 100%);
    --cor-bg-ofertas: linear-gradient(to bottom, #D9D9D9 0%, #969696 80%);
    --cor-bg-navbar: linear-gradient(to right, #d9d9d9 0%, #ffffff 100%);
    --ofertas-img: url(../img/Formulario/FormularioLightMode.png);

}

.lightMode {
    --cor-primaria: #D9D9D9;
    --cor-secundaria: #e6e6e9;
    --cor-terciaria: #9999a1;
    --cor-quartenaria: #969696;
    --cor-cardProduto: #ffffff;
    --cor-footer: #161616;
    --cor-texto: black;
    --cor-bg-ofertas: linear-gradient(to bottom, #D9D9D9 0%, #969696 80%);
    --cor-bg-navbar: linear-gradient(to right, #d9d9d9 0%, #ffffff 100%);
    --ofertas-img: url(../img/Formulario/FormularioLightMode.png);
}

.darkMode {
    --cor-primaria: #2c2c2c;
    --cor-secundaria: #161616;
    --cor-terciaria: #ffffff;
    --cor-quartenaria: #161616;
    --cor-cardProduto: #161616;
    --cor-footer: #969696;
    --cor-texto: white;
    --cor-bg-ofertas: linear-gradient(to bottom, #2C2C2C 0%, #161616 80%);
    --cor-bg-navbar: linear-gradient(to right, #000000 0%, #1f1f1f 100%);
    --ofertas-img: url(../img/Formulario/FormularioDarkMode.png);
}

/* BOTOES */
.btnDefault {
    background: var(--cor-botoes);
    text-decoration: none;
    color: black;
    padding: 12px 34px 12px 34px;
    border-radius: 20px;
    font-weight: bold;
}

/* #endregion */

/* #region top navbar */
.container-topo {
    width: 100%;
    height: 120px;

    .topo {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;

        ul.navBar {
            width: 100%;
            padding: 10px;
            position: fixed;
            display: flex;
            align-items: center;
            z-index: 100;
            background: var(--cor-bg-navbar);




            li {
                a {
                    img {
                        height: 100px;
                    }
                }

            }

            li.subBotoes {
                margin-left: 190px;
                /* alterado a direção */
                padding: 20px;
                padding-right: 50px;
                display: flex;
                flex-direction: row;
                gap: 90px;
                font-size: 0.1rem;
                border: none;

                .btnNav {
                    text-decoration: none;
                    color: var(--cor-texto);
                    font-size: 15px;

                }
            }

            li.changMode {
                margin-left: 60px;
                /* padding: 0 50px; */
                display: flex;

            }

        }
    }
}

/* #endregion */

/* #region Categorias */

.container-categoria {
    width: 100%;
    /* Ocupa toda a Largura */
    min-height: 520px;
    /* 520px Garantido */
    background-color: var(--cor-primaria);
    /* Cor de fundo | Variavel */
    padding: 40px 0;
    /* Adiciona espaço acima e abaixo do conteúdo */

    h1 {
        padding: 20px;
        /* Espaçamento interno */
        text-align: center;
        /* Centraliza o texto */

        span {
            color: var(--cor-texto);
            font-size: 48px;
            /* Tamanho da fonte */
        }
    }

}

.cards {
    width: 100%;
    /* Ocupa toda a Largura */
    display: flex;
    /* Flexbox para layout flexível */
    flex-wrap: wrap;
    /* Permite que os itens quebrem linha */
    align-items: center;
    /* Alinha itens verticalmente ao centro */
    justify-content: center;
    /* Centraliza itens horizontalmente */
    gap: 20px;
    /* Espaçamento entre os itens */

    ul {
        padding: 0;
        /* Remove o padding padrão do UL */
        margin: 0;
        /* Remove a margem padrão do UL */
        display: flex;
        /* Flexbox para layout flexível */
        flex-wrap: wrap;
        /* Permite que os itens quebrem linha */
        max-width: 267px;
        /* Largura máxima do card */
        height: 166px;
        /* Altura fixa do card */
        border: none;
        /* Remove a borda padrão */
        border-radius: 10px;
        /* Bordas arredondadas */

        img {
            width: 100%;
            /* Ocupa toda a largura do card */
            height: auto;
            /* Mantém a proporção da imagem */
            border-radius: 10px;
            /* Bordas arredondadas */
            cursor: pointer;
            /* Cursor de ponteiro ao passar o mouse */
        }
    }
}
/* #endregion */

/* #region Produtos */
.regua {
    display: flex;
    margin: 40px 60px 80px 60px;
    width: auto;
    height: 3px;
    border-radius: 50px;
    background-color: var(--cor-texto)
}

.area-Produtos {
    width: 100%;
    max-width: 1500px;
    /* ajuste conforme necessário */
    margin-left: 20px;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    .cardsProdutos {
        width: 350px;
        height: 510px;
        background: var(--cor-cardProduto);
        border-radius: 20px;
        display: flex;
        flex-wrap: wrap;
        text-align: center;
        align-items: center;
        justify-content: space-evenly;

        .imgProdutos {
            width: 336px;
            height: 355px;
            display: flex;
            border: 2px solid var(--cor-primaria);
            border-radius: 20px;
        }

        h5 {
            font-weight: bold;
            color: var(--cor-texto);
        }

        p {
            font-size: 20px;
            color: #C9A227;
        }

        button {
            border-style: none;
            width: auto;
            font-weight: 900;
            background: var(--cor-botoes);
            color: #161616;
            font-weight: bolder;
            padding: 12px 34px 12px 34px;
            border-radius: 30px;
        }
    }
}


/* #endregion */

/* #region bannerOfertas */

.contato {
    width: 100%;
    height: 500px;
    background-image: var(--ofertas-img), var(--cor-bg-ofertas);
    background-repeat: no-repeat, no-repeat;
    background-position: left, center;
    background-size: 40%, cover;
    justify-content: flex-end;
    display: flex;
    align-items: center;

    ul {
        padding: 6rem;
        display: grid;
        text-align: center;

        li {

            /* Inputs do formulário */
            input {
                margin-left: 90px;
                margin-top: 0.4rem;
                width: 100%;
                padding: 0.8rem;
                border: none;
                border-radius: 10px;
                font-size: 1rem;
                outline: none;
                color: var(--cor-terciaria);
                background-color: white;

                &::placeholder {
                    color: #969696;
                    font-weight: 600;
                }
            }

            /* Formulário */
            form {
                width: 75%;
                margin: 20px auto;
                display: flex;
                flex-direction: column;
                align-items: stretch;

                /* Botão Cadastrar */
                button {
                    align-self: flex-end;
                    margin-top: 0.2rem;
                    width: auto;
                    border-radius: 10px;
                    font-weight: 900;

                }
            }
        }
    }
}

/* Sub-título do formulário */
.informeDados {
    margin-left: 150px;
    font-size: 24px;
    color: var(--cor-texto);
}

/* Texto de aceite dos termos e condições */
.aceite {
    margin-left: 78px;
    font-size: 20px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    display: block;
    color: var(--cor-texto);
}

/* Título do formulário */
.negrito {
    margin-left: 170px;
    font-family: 'Poppins-Black';
    font-weight: 900;
    font-size: 24px;
    color: var(--cor-texto);
}

/* Captcha ao lado do botão cadastrar */
.captcha {
    display: flex;
    gap: 0.3rem;
    align-items: center;
    color: var(--cor-texto);
}

/* #endregion */

/* #region Footer */
.container-footer {
    width: 100%;
    height: auto;
    background-color: var(--cor-quartenaria);
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    padding: 40px 0;

    .footer1 {
        width: 30%;

        ul {
            li {
                .logo {
                    width: 300px;
                    height: auto;
                }
            }

            li {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: space-around;

                .imgRedes {
                    width: 30px;
                    height: auto;
                    margin-right: 10px;

                }

                a {
                    color: var(--cor-texto);
                    font-size: 18px;
                    text-decoration: none;
                }

                h1 {
                    padding-top: 30px;
                    font-size: 26px;
                    color: var(--cor-texto);
                    font-weight: bold;
                }
            }
        }
    }

    .footer2 {
        width: 25%;

        ul {
            margin-right: 120px;
            li {
                margin-bottom: 40px;

                a {
                    color: var(--cor-texto);

                    text-decoration: none;
                }

                h1 {
                    color: var(--cor-texto);
                    font-size: 20px;
                    font-weight: bold;
                }
            }
        }
    }

    .footer3 {
        width: 30%;
        text-align: center;

        ul {
            li {
                margin-bottom: 10px;

                a {
                    img {
                        height: 100%;
                        width: 100%;
                    }
                }
            }

            li {
                h1 {
                    color: var(--cor-texto);
                    font-size: 20px;
                    font-weight: 700;
                    width: 100%;
                    text-align: center;
                }
            }
        }
    }
}
    /* #endregion */

/* #region CopyRight */
    .copyright {
        background-color: var(--cor-footer);
        width: 100%;
        height: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        font-size: 20px;
    }

/* #endregion */

}

/* #endregion */

/* #region media 1100px até 1165px */

@media (min-width: 1100px) and (max-width: 1165px) {

/* #region Global */

/* FONTES */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.otf');
}

@font-face {
    font-family: 'Poppins-Black';
    src: url('../fonts/Poppins-Black.ttf');
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: 'Poppins';
}

/* OverFlow será escondido */
html,
body {
    overflow-x: hidden;
}

/* PALETA DE CORES */
:root {
    --cor-primaria: #f4f4f6;
    --cor-secundaria: #e6e6e9;
    --cor-terciaria: #9999a1;
    --cor-quartenaria: #969696;
    --cor-cardProduto: #ffffff;
    --cor-footer: #161616;
    --cor-texto: black;
    --cor-botoes: linear-gradient(to right, #FFD770 0%, #C9A227 100%);
    --cor-bg-ofertas: linear-gradient(to bottom, #D9D9D9 0%, #969696 80%);
    --cor-bg-navbar: linear-gradient(to right, #d9d9d9 0%, #ffffff 100%);
    --ofertas-img: url(../img/Formulario/FormularioLightMode.png);

}

.lightMode {
    --cor-primaria: #D9D9D9;
    --cor-secundaria: #e6e6e9;
    --cor-terciaria: #9999a1;
    --cor-quartenaria: #969696;
    --cor-cardProduto: #ffffff;
    --cor-footer: #161616;
    --cor-texto: black;
    --cor-bg-ofertas: linear-gradient(to bottom, #D9D9D9 0%, #969696 80%);
    --cor-bg-navbar: linear-gradient(to right, #d9d9d9 0%, #ffffff 100%);
    --ofertas-img: url(../img/Formulario/FormularioLightMode.png);
}

.darkMode {
    --cor-primaria: #2c2c2c;
    --cor-secundaria: #161616;
    --cor-terciaria: #ffffff;
    --cor-quartenaria: #161616;
    --cor-cardProduto: #161616;
    --cor-footer: #969696;
    --cor-texto: white;
    --cor-bg-ofertas: linear-gradient(to bottom, #2C2C2C 0%, #161616 80%);
    --cor-bg-navbar: linear-gradient(to right, #000000 0%, #1f1f1f 100%);
    --ofertas-img: url(../img/Formulario/FormularioDarkMode.png);
}

/* BOTOES */
.btnDefault {
    background: var(--cor-botoes);
    text-decoration: none;
    color: black;
    padding: 12px 34px 12px 34px;
    border-radius: 20px;
    font-weight: bold;
}

/* #endregion */

/* #region top navbar */
.container-topo {
    width: 100%;
    height: 120px;

    .topo {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;

        ul.navBar {
            width: 100%;
            padding: 10px;
            position: fixed;
            display: flex;
            align-items: center;
            z-index: 100;
            background: var(--cor-bg-navbar);




            li {
                a {
                    img {
                        height: 100px;
                    }
                }

            }

            li.subBotoes {
                margin-left: 190px;
                /* alterado a direção */
                padding: 20px;
                padding-right: 50px;
                display: flex;
                flex-direction: row;
                gap: 90px;
                font-size: 0.1rem;
                border: none;

                .btnNav {
                    text-decoration: none;
                    color: var(--cor-texto);
                    font-size: 15px;

                }
            }

            li.changMode {
                margin-left: 60px;
                /* padding: 0 50px; */
                display: flex;

            }

        }
    }
}

/* #endregion */

/* #region Categorias */

.container-categoria {
    width: 100%;
    /* Ocupa toda a Largura */
    min-height: 520px;
    /* 520px Garantido */
    background-color: var(--cor-primaria);
    /* Cor de fundo | Variavel */
    padding: 40px 0;
    /* Adiciona espaço acima e abaixo do conteúdo */

    h1 {
        padding: 20px;
        /* Espaçamento interno */
        text-align: center;
        /* Centraliza o texto */

        span {
            color: var(--cor-texto);
            font-size: 48px;
            /* Tamanho da fonte */
        }
    }

}

.cards {
    width: 100%;
    /* Ocupa toda a Largura */
    display: flex;
    /* Flexbox para layout flexível */
    flex-wrap: wrap;
    /* Permite que os itens quebrem linha */
    align-items: center;
    /* Alinha itens verticalmente ao centro */
    justify-content: center;
    /* Centraliza itens horizontalmente */
    gap: 20px;
    /* Espaçamento entre os itens */

    ul {
        padding: 0;
        /* Remove o padding padrão do UL */
        margin: 0;
        /* Remove a margem padrão do UL */
        display: flex;
        /* Flexbox para layout flexível */
        flex-wrap: wrap;
        /* Permite que os itens quebrem linha */
        max-width: 240px;
        /* Largura máxima do card */
        height: 150px;
        /* Altura fixa do card */
        border: none;
        /* Remove a borda padrão */
        border-radius: 10px;
        /* Bordas arredondadas */

        img {
            width: 100%;
            /* Ocupa toda a largura do card */
            height: auto;
            /* Mantém a proporção da imagem */
            border-radius: 10px;
            /* Bordas arredondadas */
            cursor: pointer;
            /* Cursor de ponteiro ao passar o mouse */
        }
    }
}
/* #endregion */

/* #region Produtos */
.regua {
    display: flex;
    margin: 40px 60px 80px 60px;
    width: auto;
    height: 3px;
    border-radius: 50px;
    background-color: var(--cor-texto)
}

.area-Produtos {
    width: 100%;
    max-width: 1500px;
    /* ajuste conforme necessário */
    margin-left: 13px;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    .cardsProdutos {
        width: 350px;
        height: 510px;
        background: var(--cor-cardProduto);
        border-radius: 20px;
        display: flex;
        flex-wrap: wrap;
        text-align: center;
        align-items: center;
        justify-content: space-evenly;

        .imgProdutos {
            width: 336px;
            height: 355px;
            display: flex;
            border: 2px solid var(--cor-primaria);
            border-radius: 20px;
        }

        h5 {
            font-weight: bold;
            color: var(--cor-texto);
        }

        p {
            font-size: 20px;
            color: #C9A227;
        }

        button {
            border-style: none;
            width: auto;
            font-weight: 900;
            background: var(--cor-botoes);
            color: #161616;
            font-weight: bolder;
            padding: 12px 34px 12px 34px;
            border-radius: 30px;
        }
    }
}


/* #endregion */

/* #region bannerOfertas */

.contato {
    width: 100%;
    height: 500px;
    background-image: var(--ofertas-img), var(--cor-bg-ofertas);
    background-repeat: no-repeat, no-repeat;
    background-position: left, center;
    background-size: 40%, cover;
    justify-content: flex-end;
    display: flex;
    align-items: center;

    ul {
        padding: 6rem;
        display: grid;
        text-align: center;

        li {

            /* Inputs do formulário */
            input {
                margin-left: 90px;
                margin-top: 0.4rem;
                width: 100%;
                padding: 0.8rem;
                border: none;
                border-radius: 10px;
                font-size: 1rem;
                outline: none;
                color: var(--cor-terciaria);
                background-color: white;

                &::placeholder {
                    color: #969696;
                    font-weight: 600;
                }
            }

            /* Formulário */
            form {
                width: 75%;
                margin: 20px auto;
                display: flex;
                flex-direction: column;
                align-items: stretch;

                /* Botão Cadastrar */
                button {
                    align-self: flex-end;
                    margin-top: 0.2rem;
                    width: auto;
                    border-radius: 10px;
                    font-weight: 900;

                }
            }
        }
    }
}

/* Sub-título do formulário */
.informeDados {
    margin-left: 150px;
    font-size: 24px;
    color: var(--cor-texto);
}

/* Texto de aceite dos termos e condições */
.aceite {
    margin-left: 78px;
    font-size: 20px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    display: block;
    color: var(--cor-texto);
}

/* Título do formulário */
.negrito {
    margin-left: 170px;
    font-family: 'Poppins-Black';
    font-weight: 900;
    font-size: 24px;
    color: var(--cor-texto);
}

/* Captcha ao lado do botão cadastrar */
.captcha {
    display: flex;
    gap: 0.3rem;
    align-items: center;
    color: var(--cor-texto);
}

/* #endregion */

/* #region Footer */
.container-footer {
    width: 100%;
    height: auto;
    background-color: var(--cor-quartenaria);
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    padding: 40px 0;

    .footer1 {
        width: 30%;

        ul {
            li {
                .logo {
                    width: 300px;
                    height: auto;
                }
            }

            li {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: space-around;

                .imgRedes {
                    width: 30px;
                    height: auto;
                    margin-right: 10px;

                }

                a {
                    color: var(--cor-texto);
                    font-size: 18px;
                    text-decoration: none;
                }

                h1 {
                    padding-top: 30px;
                    font-size: 26px;
                    color: var(--cor-texto);
                    font-weight: bold;
                }
            }
        }
    }

    .footer2 {
        width: 25%;

        ul {
            margin-right: 120px;
            li {
                margin-bottom: 40px;

                a {
                    color: var(--cor-texto);

                    text-decoration: none;
                }

                h1 {
                    color: var(--cor-texto);
                    font-size: 20px;
                    font-weight: bold;
                }
            }
        }
    }

    .footer3 {
        width: 30%;
        text-align: center;

        ul {
            li {
                margin-bottom: 10px;

                a {
                    img {
                        height: 100%;
                        width: 100%;
                    }
                }
            }

            li {
                h1 {
                    color: var(--cor-texto);
                    font-size: 20px;
                    font-weight: 700;
                    width: 100%;
                    text-align: center;
                }
            }
        }
    }
}
/* #endregion */

/* #region CopyRight */

.copyright {
    background-color: var(--cor-footer);
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    }

/* #endregion */

}

/* #endregion */

/* #region media 1066px até 1099px */

@media (min-width: 1066px) and (max-width: 1099px) {

/* #region Global */

/* FONTES */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.otf');
}

@font-face {
    font-family: 'Poppins-Black';
    src: url('../fonts/Poppins-Black.ttf');
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: 'Poppins';
}

/* OverFlow será escondido */
html,
body {
    overflow-x: hidden;
}

/* PALETA DE CORES */
:root {
    --cor-primaria: #f4f4f6;
    --cor-secundaria: #e6e6e9;
    --cor-terciaria: #9999a1;
    --cor-quartenaria: #969696;
    --cor-cardProduto: #ffffff;
    --cor-footer: #161616;
    --cor-texto: black;
    --cor-botoes: linear-gradient(to right, #FFD770 0%, #C9A227 100%);
    --cor-bg-ofertas: linear-gradient(to bottom, #D9D9D9 0%, #969696 80%);
    --cor-bg-navbar: linear-gradient(to right, #d9d9d9 0%, #ffffff 100%);
    --ofertas-img: url(../img/Formulario/FormularioLightMode.png);

}

.lightMode {
    --cor-primaria: #D9D9D9;
    --cor-secundaria: #e6e6e9;
    --cor-terciaria: #9999a1;
    --cor-quartenaria: #969696;
    --cor-cardProduto: #ffffff;
    --cor-footer: #161616;
    --cor-texto: black;
    --cor-bg-ofertas: linear-gradient(to bottom, #D9D9D9 0%, #969696 80%);
    --cor-bg-navbar: linear-gradient(to right, #d9d9d9 0%, #ffffff 100%);
    --ofertas-img: url(../img/Formulario/FormularioLightMode.png);
}

.darkMode {
    --cor-primaria: #2c2c2c;
    --cor-secundaria: #161616;
    --cor-terciaria: #ffffff;
    --cor-quartenaria: #161616;
    --cor-cardProduto: #161616;
    --cor-footer: #969696;
    --cor-texto: white;
    --cor-bg-ofertas: linear-gradient(to bottom, #2C2C2C 0%, #161616 80%);
    --cor-bg-navbar: linear-gradient(to right, #000000 0%, #1f1f1f 100%);
    --ofertas-img: url(../img/Formulario/FormularioDarkMode.png);
}

/* BOTOES */
.btnDefault {
    background: var(--cor-botoes);
    text-decoration: none;
    color: black;
    padding: 12px 34px 12px 34px;
    border-radius: 20px;
    font-weight: bold;
}

/* #endregion */

/* #region top navbar */
.container-topo {
    width: 100%;
    height: 120px;

    .topo {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;

        ul.navBar {
            width: 100%;
            padding: 10px;
            position: fixed;
            display: flex;
            align-items: center;
            z-index: 100;
            background: var(--cor-bg-navbar);




            li {
                a {
                    img {
                        height: 100px;
                    }
                }

            }

            li.subBotoes {
                margin-left: 190px;
                /* alterado a direção */
                padding: 20px;
                padding-right: 50px;
                display: flex;
                flex-direction: row;
                gap: 90px;
                font-size: 0.1rem;
                border: none;

                .btnNav {
                    text-decoration: none;
                    color: var(--cor-texto);
                    font-size: 15px;

                }
            }

            li.changMode {
                margin-left: 60px;
                /* padding: 0 50px; */
                display: flex;

            }

        }
    }
}

/* #endregion */

/* #region Categorias */

.container-categoria {
    width: 100%;
    /* Ocupa toda a Largura */
    min-height: 520px;
    /* 520px Garantido */
    background-color: var(--cor-primaria);
    /* Cor de fundo | Variavel */
    padding: 40px 0;
    /* Adiciona espaço acima e abaixo do conteúdo */

    h1 {
        padding: 20px;
        /* Espaçamento interno */
        text-align: center;
        /* Centraliza o texto */

        span {
            color: var(--cor-texto);
            font-size: 48px;
            /* Tamanho da fonte */
        }
    }

}

.cards {
    width: 100%;
    /* Ocupa toda a Largura */
    display: flex;
    /* Flexbox para layout flexível */
    flex-wrap: wrap;
    /* Permite que os itens quebrem linha */
    align-items: center;
    /* Alinha itens verticalmente ao centro */
    justify-content: center;
    /* Centraliza itens horizontalmente */
    gap: 20px;
    /* Espaçamento entre os itens */

    ul {
        padding: 0;
        /* Remove o padding padrão do UL */
        margin: 0;
        /* Remove a margem padrão do UL */
        display: flex;
        /* Flexbox para layout flexível */
        flex-wrap: wrap;
        /* Permite que os itens quebrem linha */
        max-width: 200px;
        /* Largura máxima do card */
        height: 140px;
        /* Altura fixa do card */
        border: none;
        /* Remove a borda padrão */
        border-radius: 10px;
        /* Bordas arredondadas */

        img {
            width: 100%;
            /* Ocupa toda a largura do card */
            height: 100%;
            /* Mantém a proporção da imagem */
            border-radius: 10px;
            /* Bordas arredondadas */
            cursor: pointer;
            /* Cursor de ponteiro ao passar o mouse */
        }
    }
}
/* #endregion */

/* #region Produtos */
.regua {
    display: flex;
    margin: 40px 60px 80px 60px;
    width: auto;
    height: 3px;
    border-radius: 50px;
    background-color: var(--cor-texto)
}

.area-Produtos {
    width: 100%;
    max-width: 1500px;
    /* ajuste conforme necessário */
    margin-left: 5px;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    .cardsProdutos {
        width: 350px;
        height: 510px;
        background: var(--cor-cardProduto);
        border-radius: 20px;
        display: flex;
        flex-wrap: wrap;
        text-align: center;
        align-items: center;
        justify-content: space-evenly;

        .imgProdutos {
            width: 336px;
            height: 355px;
            display: flex;
            border: 2px solid var(--cor-primaria);
            border-radius: 20px;
        }

        h5 {
            font-weight: bold;
            color: var(--cor-texto);
        }

        p {
            font-size: 20px;
            color: #C9A227;
        }

        button {
            border-style: none;
            width: auto;
            font-weight: 900;
            background: var(--cor-botoes);
            color: #161616;
            font-weight: bolder;
            padding: 12px 34px 12px 34px;
            border-radius: 30px;
        }
    }
}


/* #endregion */

/* #region bannerOfertas */

.contato {
    width: 100%;
    height: 500px;
    background-image: var(--ofertas-img), var(--cor-bg-ofertas);
    background-repeat: no-repeat, no-repeat;
    background-position: left, center;
    background-size: 45%, cover;
    justify-content: flex-end;
    display: flex;
    align-items: center;

    ul {
        padding: 6rem;
        display: grid;
        text-align: center;

        li {

            /* Inputs do formulário */
            input {
                margin-left: 100px;
                margin-top: 0.4rem;
                width: 100%;
                padding: 0.8rem;
                border: none;
                border-radius: 10px;
                font-size: 1rem;
                outline: none;
                color: var(--cor-terciaria);
                background-color: white;

                &::placeholder {
                    color: #969696;
                    font-weight: 600;
                }
            }

            /* Formulário */
            form {
                width: 75%;
                margin: 20px auto;
                display: flex;
                flex-direction: column;
                align-items: stretch;

                /* Botão Cadastrar */
                button {
                    align-self: flex-end;
                    margin-top: 0.2rem;
                    width: auto;
                    border-radius: 10px;
                    font-weight: 900;

                }
            }
        }
    }
}

/* Sub-título do formulário */
.informeDados {
    margin-left: 180px;
    font-size: 20px;
    color: var(--cor-texto);
}

/* Texto de aceite dos termos e condições */
.aceite {
    margin-left: 78px;
    font-size: 20px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    display: block;
    color: var(--cor-texto);
}

/* Título do formulário */
.negrito {
    margin-left: 170px;
    font-family: 'Poppins-Black';
    font-weight: 900;
    font-size: 24px;
    color: var(--cor-texto);
}

/* Captcha ao lado do botão cadastrar */
.captcha {
    display: flex;
    gap: 0.3rem;
    align-items: center;
    color: var(--cor-texto);
}

/* #endregion */

/* #region Footer */
.container-footer {
    width: 100%;
    height: auto;
    background-color: var(--cor-quartenaria);
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    padding: 40px 0;

    .footer1 {
        width: 30%;

        ul {
            li {
                .logo {
                    width: 300px;
                    height: auto;
                }
            }

            li {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: space-around;

                .imgRedes {
                    width: 30px;
                    height: auto;
                    margin-right: 10px;

                }

                a {
                    color: var(--cor-texto);
                    font-size: 18px;
                    text-decoration: none;
                }

                h1 {
                    padding-top: 30px;
                    font-size: 26px;
                    color: var(--cor-texto);
                    font-weight: bold;
                }
            }
        }
    }

    .footer2 {
        width: 25%;

        ul {
            margin-right: 120px;
            li {
                margin-bottom: 40px;

                a {
                    color: var(--cor-texto);

                    text-decoration: none;
                }

                h1 {
                    color: var(--cor-texto);
                    font-size: 20px;
                    font-weight: bold;
                }
            }
        }
    }

    .footer3 {
        width: 30%;
        text-align: center;

        ul {
            li {
                margin-bottom: 10px;

                a {
                    img {
                        height: 100%;
                        width: 100%;
                    }
                }
            }

            li {
                h1 {
                    color: var(--cor-texto);
                    font-size: 20px;
                    font-weight: 700;
                    width: 100%;
                    text-align: center;
                }
            }
        }
    }
}
/* #endregion */

/* #region CopyRight */
.copyright {
    background-color: var(--cor-footer);
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    }

/* #endregion */

}

/* #endregion */

/* #region media 992px até 1065px */

@media (min-width: 992px) and (max-width: 1065px) {

/* #region Global */

/* FONTES */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.otf');
}

@font-face {
    font-family: 'Poppins-Black';
    src: url('../fonts/Poppins-Black.ttf');
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: 'Poppins';
}

/* OverFlow será escondido */
html,
body {
    overflow-x: hidden;
}

/* PALETA DE CORES */
:root {
    --cor-primaria: #f4f4f6;
    --cor-secundaria: #e6e6e9;
    --cor-terciaria: #9999a1;
    --cor-quartenaria: #969696;
    --cor-cardProduto: #ffffff;
    --cor-footer: #161616;
    --cor-texto: black;
    --cor-botoes: linear-gradient(to right, #FFD770 0%, #C9A227 100%);
    --cor-bg-ofertas: linear-gradient(to bottom, #D9D9D9 0%, #969696 80%);
    --cor-bg-navbar: linear-gradient(to right, #d9d9d9 0%, #ffffff 100%);
    --ofertas-img: url(../img/Formulario/FormularioLightMode.png);

}

.lightMode {
    --cor-primaria: #D9D9D9;
    --cor-secundaria: #e6e6e9;
    --cor-terciaria: #9999a1;
    --cor-quartenaria: #969696;
    --cor-cardProduto: #ffffff;
    --cor-footer: #161616;
    --cor-texto: black;
    --cor-bg-ofertas: linear-gradient(to bottom, #D9D9D9 0%, #969696 80%);
    --cor-bg-navbar: linear-gradient(to right, #d9d9d9 0%, #ffffff 100%);
    --ofertas-img: url(../img/Formulario/FormularioLightMode.png);
}

.darkMode {
    --cor-primaria: #2c2c2c;
    --cor-secundaria: #161616;
    --cor-terciaria: #ffffff;
    --cor-quartenaria: #161616;
    --cor-cardProduto: #161616;
    --cor-footer: #969696;
    --cor-texto: white;
    --cor-bg-ofertas: linear-gradient(to bottom, #2C2C2C 0%, #161616 80%);
    --cor-bg-navbar: linear-gradient(to right, #000000 0%, #1f1f1f 100%);
    --ofertas-img: url(../img/Formulario/FormularioDarkMode.png);
}

/* BOTOES */
.btnDefault {
    background: var(--cor-botoes);
    text-decoration: none;
    color: black;
    padding: 12px 34px 12px 34px;
    border-radius: 20px;
    font-weight: bold;
}

/* #endregion */

/* #region top navbar */
.container-topo {
    width: 100%;
    height: 120px;

    .topo {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;

        ul.navBar {
            width: 100%;
            padding: 10px;
            position: fixed;
            display: flex;
            align-items: center;
            z-index: 100;
            background: var(--cor-bg-navbar);




            li {
                a {
                    img {
                        height: 100px;
                    }
                }

            }

            li.subBotoes {
                margin-left: 120px;
                /* alterado a direção */
                padding: 20px;
                padding-right: 50px;
                display: flex;
                flex-direction: row;
                gap: 90px;
                font-size: 0.1rem;
                border: none;

                .btnNav {
                    text-decoration: none;
                    color: var(--cor-texto);
                    font-size: 15px;

                }
            }

            li.changMode {
                margin-left: 60px;
                /* padding: 0 50px; */
                display: flex;

            }

        }
    }
}

/* #endregion */

/* #region Categorias */

.container-categoria {
    width: 100%;
    /* Ocupa toda a Largura */
    min-height: 520px;
    /* 520px Garantido */
    background-color: var(--cor-primaria);
    /* Cor de fundo | Variavel */
    padding: 40px 0;
    /* Adiciona espaço acima e abaixo do conteúdo */

    h1 {
        padding: 20px;
        /* Espaçamento interno */
        text-align: center;
        /* Centraliza o texto */

        span {
            color: var(--cor-texto);
            font-size: 48px;
            /* Tamanho da fonte */
        }
    }

}

.cards {
    width: 100%;
    /* Ocupa toda a Largura */
    display: flex;
    /* Flexbox para layout flexível */
    flex-wrap: wrap;
    /* Permite que os itens quebrem linha */
    align-items: center;
    /* Alinha itens verticalmente ao centro */
    justify-content: center;
    /* Centraliza itens horizontalmente */
    gap: 20px;
    /* Espaçamento entre os itens */

    ul {
        padding: 0;
        /* Remove o padding padrão do UL */
        margin: 0;
        /* Remove a margem padrão do UL */
        display: flex;
        /* Flexbox para layout flexível */
        flex-wrap: wrap;
        /* Permite que os itens quebrem linha */
        max-width: 200px;
        /* Largura máxima do card */
        height: 140px;
        /* Altura fixa do card */
        border: none;
        /* Remove a borda padrão */
        border-radius: 10px;
        /* Bordas arredondadas */

        img {
            width: 100%;
            /* Ocupa toda a largura do card */
            height: 100%;
            /* Mantém a proporção da imagem */
            border-radius: 10px;
            /* Bordas arredondadas */
            cursor: pointer;
            /* Cursor de ponteiro ao passar o mouse */
        }
    }
}
/* #endregion */

/* #region Produtos */
.regua {
    display: flex;
    margin: 40px 60px 80px 60px;
    width: auto;
    height: 3px;
    border-radius: 50px;
    background-color: var(--cor-texto)
}

.area-Produtos {
    width: 100%;
    max-width: 1500px;
    /* ajuste conforme necessário */
    margin-left: 5px;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    .cardsProdutos {
        width: 350px;
        height: 510px;
        background: var(--cor-cardProduto);
        border-radius: 20px;
        display: flex;
        flex-wrap: wrap;
        text-align: center;
        align-items: center;
        justify-content: space-evenly;

        .imgProdutos {
            width: 336px;
            height: 355px;
            display: flex;
            border: 2px solid var(--cor-primaria);
            border-radius: 20px;
        }

        h5 {
            font-weight: bold;
            color: var(--cor-texto);
        }

        p {
            font-size: 20px;
            color: #C9A227;
        }

        button {
            border-style: none;
            width: auto;
            font-weight: 900;
            background: var(--cor-botoes);
            color: #161616;
            font-weight: bolder;
            padding: 12px 34px 12px 34px;
            border-radius: 30px;
        }
    }
}


/* #endregion */

/* #region bannerOfertas */

.contato {
    width: 100%;
    height: 500px;
    background-image: var(--ofertas-img), var(--cor-bg-ofertas);
    background-repeat: no-repeat, no-repeat;
    background-position: left, center;
    background-size: 40%, cover;
    justify-content: flex-end;
    display: flex;
    align-items: center;

    ul {
        padding: 6rem;
        display: grid;
        text-align: center;

        li {

            /* Inputs do formulário */
            input {
                margin-left: 100px;
                margin-top: 0.4rem;
                width: 100%;
                padding: 0.8rem;
                border: none;
                border-radius: 10px;
                font-size: 1rem;
                outline: none;
                color: var(--cor-terciaria);
                background-color: white;

                &::placeholder {
                    color: #969696;
                    font-weight: 600;
                }
            }

            /* Formulário */
            form {
                width: 75%;
                margin: 20px auto;
                display: flex;
                flex-direction: column;
                align-items: stretch;

                /* Botão Cadastrar */
                button {
                    align-self: flex-end;
                    margin-top: 0.2rem;
                    width: auto;
                    border-radius: 10px;
                    font-weight: 900;

                }
            }
        }
    }
}

/* Sub-título do formulário */
.informeDados {
    margin-left: 180px;
    font-size: 20px;
    color: var(--cor-texto);
}

/* Texto de aceite dos termos e condições */
.aceite {
    margin-left: 78px;
    font-size: 20px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    display: block;
    color: var(--cor-texto);
}

/* Título do formulário */
.negrito {
    margin-left: 170px;
    font-family: 'Poppins-Black';
    font-weight: 900;
    font-size: 24px;
    color: var(--cor-texto);
}

/* Captcha ao lado do botão cadastrar */
.captcha {
    display: flex;
    gap: 0.3rem;
    align-items: center;
    color: var(--cor-texto);
}

/* #endregion */

/* #region Footer */
.container-footer {
    width: 100%;
    height: auto;
    background-color: var(--cor-quartenaria);
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    padding: 40px 0;

    .footer1 {
        width: 30%;

        ul {
            li {
                .logo {
                    width: 300px;
                    height: auto;
                }
            }

            li {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: space-around;

                .imgRedes {
                    width: 30px;
                    height: auto;
                    margin-right: 10px;

                }

                a {
                    color: var(--cor-texto);
                    font-size: 18px;
                    text-decoration: none;
                }

                h1 {
                    padding-top: 30px;
                    font-size: 26px;
                    color: var(--cor-texto);
                    font-weight: bold;
                }
            }
        }
    }

    .footer2 {
        width: 25%;

        ul {
            margin-right: 120px;
            li {
                margin-bottom: 40px;

                a {
                    color: var(--cor-texto);

                    text-decoration: none;
                }

                h1 {
                    color: var(--cor-texto);
                    font-size: 20px;
                    font-weight: bold;
                }
            }
        }
    }

    .footer3 {
        width: 30%;
        text-align: center;

        ul {
            li {
                margin-bottom: 10px;

                a {
                    img {
                        height: 100%;
                        width: 100%;
                    }
                }
            }

            li {
                h1 {
                    color: var(--cor-texto);
                    font-size: 20px;
                    font-weight: 700;
                    width: 100%;
                    text-align: center;
                }
            }
        }
    }
}
/* #endregion */

/* #region CopyRight */

.copyright {
    background-color: var(--cor-footer);
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    }

/* #endregion */

}

/* #endregion */

/*  //////////////////////////////////////////   */

/* //////////// Ipads e Mobiles /////////// */

/* #region media 901px - 991px */

@media (min-width: 901px) and (max-width: 991px) {

.container-topo {
    width: 100%;
    height: 60px;

    .topo {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;

        ul.navBar {
            width: 100%;
            padding: 10px;
            position: fixed;
            display: flex;
            align-items: center;
            z-index: 100;
            background: var(--cor-bg-navbar);




            li {
                a {
                    img {
                        height: 40px;
                    }
                }

            }

            li.subBotoes {
                margin-left: 370px;
                /* alterado a direção */
                padding: 10px;
                padding-right: 40px;
                display: flex;
                flex-direction: row;
                gap: 30px;
                font-size: 35px;
                border: none;

                .btnNav {
                    text-decoration: none;
                    color: var(--cor-texto);
                    font-size: 12px;

                }
            }

            li.changMode {
                margin-left: 10px;
                /* padding: 0 50px; */
                display: flex;

            }

        }
    }
}

/* #region Categorias */

.container-categoria {
    width: 100%;
    /* Ocupa toda a Largura */
    min-height: 520px;
    /* 520px Garantido */
    background-color: var(--cor-primaria);
    /* Cor de fundo | Variavel */
    padding: 40px 0;
    /* Adiciona espaço acima e abaixo do conteúdo */

    h1 {
        padding: 20px;
        /* Espaçamento interno */
        text-align: center;
        /* Centraliza o texto */

        span {
            color: var(--cor-texto);
            font-size: 30px;
            /* Tamanho da fonte */
        }
    }

}

.cards {
    width: 100%;
    /* Ocupa toda a Largura */
    display: flex;
    /* Flexbox para layout flexível */
    flex-wrap: wrap;
    /* Permite que os itens quebrem linha */
    align-items: center;
    /* Alinha itens verticalmente ao centro */
    justify-content: center;
    /* Centraliza itens horizontalmente */
    gap: 20px;
    /* Espaçamento entre os itens */

    ul {
        padding: 0;
        /* Remove o padding padrão do UL */
        margin: 0;
        /* Remove a margem padrão do UL */
        display: flex;
        /* Flexbox para layout flexível */
        flex-wrap: wrap;
        /* Permite que os itens quebrem linha */
        max-width: 150px;
        /* Largura máxima do card */
        height: 100px;
        /* Altura fixa do card */
        border: none;
        /* Remove a borda padrão */
        border-radius: 10px;
        /* Bordas arredondadas */

        img {
            width: 100%;
            /* Ocupa toda a largura do card */
            height: 100%;
            /* Mantém a proporção da imagem */
            border-radius: 10px;
            /* Bordas arredondadas */
            cursor: pointer;
            /* Cursor de ponteiro ao passar o mouse */
        }
    }
}
/* #endregion */


.area-Produtos {
    /* margin: 10px 5px 20px 5px; */
    display: flex;
    flex-direction: column;
    align-items: center;

    .cardsProdutos {
        width: 220px;
        height: 350px;

        .imgProdutos {
            width: 206px;
            height: 220px;
        }

        h5 {
            font-size: 16px;
        }

        p {
            font-size: 16px;
        }

        button {
            padding: 8px 20px 8px 20px;
            font-size: 12px;
        }
    }
}

.contato {
    height: 400px;
    background-size: contain, cover;

    ul {
        padding: 2rem;
        display: flex;
        /* Adicionado */
        flex-direction: column;
        /* Adicionado */
        align-items: center;
        /* Centraliza os filhos */

        li {
            width: 100%;
            /* Garante que ocupe toda a largura */
            margin-bottom: 1rem;
            /* Espaço entre os itens */

            form {
                width: 100%;

                input {
                    margin-left: 0;
                }
            }
        }
    }

    .informeDados {
        margin-left: 0;
        font-size: 18px;
        text-align: center;
        /* Centraliza o texto */
        margin-bottom: 1rem;
        /* Espaço abaixo */
    }

    .aceite {
        margin-left: 0;
        font-size: 14px;
        text-align: center;
        margin-bottom: 1rem;
    }
 
    .negrito {
        margin-left: 0;
        font-size: 18px;
        text-align: center;
        margin-bottom: 1rem;
    }
}

.container-footer {
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    gap: 30px;
 
 
    .footer1,
    .footer2,
    .footer3 {
        width: 100%;
        text-align: center;
        margin: 0 30px 0px 0;
    }
 
    .footer1 {
        .logo {
            width: 300px !important;
 
        }
 
        ul li {
            margin-bottom: 10px;
 
            .imgRedes {
                width: 40px;
                margin: 5px;
            }
 
            .FormasPgto {
                width: 40px;
                margin: 5px;
            }
        }
    }
 
    .footer2 {
        ul {
            li {
                h1 {
                    margin-top: -30px;
                    text-decoration: underline;
                }
            }
        }
    }
 
    h1 {
        margin-top: -30px;
        font-size: 20px !important;
    }
 
    .footer3 {
        margin-top: -80px;
 
        img {
            width: 100%;
            max-width: 300px;
            height: auto;
        }
    }
}

.endereco {
    margin-top: -20px !important;
}



.contatos {
    text-decoration: none !important;
}

.copyright {
    text-align: center;
    font-size: 15px;
}
}

/* #endregion */

/* #region media 769px - 900px */

@media (min-width: 769px) and (max-width: 900px) {

.container-topo {
    width: 100%;
    height: 60px;

    .topo {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;

        ul.navBar {
            width: 100%;
            padding: 10px;
            position: fixed;
            display: flex;
            align-items: center;
            z-index: 100;
            background: var(--cor-bg-navbar);




            li {
                a {
                    img {
                        height: 40px;
                    }
                }

            }

            li.subBotoes {
                margin-left: 260px;
                /* alterado a direção */
                padding: 10px;
                padding-right: 40px;
                display: flex;
                flex-direction: row;
                gap: 20px;
                font-size: 20px;
                border: none;

                .btnNav {
                    text-decoration: none;
                    color: var(--cor-texto);
                    font-size: 12px;

                }
            }

            li.changMode {
                margin-left: 10px;
                /* padding: 0 50px; */
                display: flex;

            }

        }
    }
}

/* #region Categorias */

.container-categoria {
    width: 100%;
    /* Ocupa toda a Largura */
    min-height: 520px;
    /* 520px Garantido */
    background-color: var(--cor-primaria);
    /* Cor de fundo | Variavel */
    padding: 40px 0;
    /* Adiciona espaço acima e abaixo do conteúdo */

    h1 {
        padding: 20px;
        /* Espaçamento interno */
        text-align: center;
        /* Centraliza o texto */

        span {
            color: var(--cor-texto);
            font-size: 30px;
            /* Tamanho da fonte */
        }
    }

}

.cards {
    width: 100%;
    /* Ocupa toda a Largura */
    display: flex;
    /* Flexbox para layout flexível */
    flex-wrap: wrap;
    /* Permite que os itens quebrem linha */
    align-items: center;
    /* Alinha itens verticalmente ao centro */
    justify-content: center;
    /* Centraliza itens horizontalmente */
    gap: 20px;
    /* Espaçamento entre os itens */

    ul {
        padding: 0;
        /* Remove o padding padrão do UL */
        margin: 0;
        /* Remove a margem padrão do UL */
        display: flex;
        /* Flexbox para layout flexível */
        flex-wrap: wrap;
        /* Permite que os itens quebrem linha */
        max-width: 150px;
        /* Largura máxima do card */
        height: 100px;
        /* Altura fixa do card */
        border: none;
        /* Remove a borda padrão */
        border-radius: 10px;
        /* Bordas arredondadas */

        img {
            width: 100%;
            /* Ocupa toda a largura do card */
            height: 100%;
            /* Mantém a proporção da imagem */
            border-radius: 10px;
            /* Bordas arredondadas */
            cursor: pointer;
            /* Cursor de ponteiro ao passar o mouse */
        }
    }
}
/* #endregion */


.area-Produtos {
    /* margin: 10px 5px 20px 5px; */
    display: flex;
    flex-direction: column;
    align-items: center;

    .cardsProdutos {
        width: 220px;
        height: 350px;

        .imgProdutos {
            width: 206px;
            height: 220px;
        }

        h5 {
            font-size: 16px;
        }

        p {
            font-size: 16px;
        }

        button {
            padding: 8px 20px 8px 20px;
            font-size: 12px;
        }
    }
}

.contato {
    height: 400px;
    background-size: contain, cover;

    ul {
        padding: 2rem;
        display: flex;
        /* Adicionado */
        flex-direction: column;
        /* Adicionado */
        align-items: center;
        /* Centraliza os filhos */

        li {
            width: 100%;
            /* Garante que ocupe toda a largura */
            margin-bottom: 1rem;
            /* Espaço entre os itens */

            form {
                width: 100%;

                input {
                    margin-left: 0;
                }
            }
        }
    }

    .informeDados {
        margin-left: 0;
        font-size: 18px;
        text-align: center;
        /* Centraliza o texto */
        margin-bottom: 1rem;
        /* Espaço abaixo */
    }

    .aceite {
        margin-left: 0;
        font-size: 14px;
        text-align: center;
        margin-bottom: 1rem;
    }
 
    .negrito {
        margin-left: 0;
        font-size: 18px;
        text-align: center;
        margin-bottom: 1rem;
    }
}

.container-footer {
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    gap: 30px;
 
 
    .footer1,
    .footer2,
    .footer3 {
        width: 100%;
        text-align: center;
        margin: 0 30px 0px 0;
    }
 
    .footer1 {
        .logo {
            width: 300px !important;
 
        }
 
        ul li {
            margin-bottom: 10px;
 
            .imgRedes {
                width: 40px;
                margin: 5px;
            }
 
            .FormasPgto {
                width: 40px;
                margin: 5px;
            }
        }
    }
 
    .footer2 {
        ul {
            li {
                h1 {
                    margin-top: -30px;
                    text-decoration: underline;
                }
            }
        }
    }
 
    h1 {
        margin-top: -30px;
        font-size: 20px !important;
    }
 
    .footer3 {
        margin-top: -80px;
 
        img {
            width: 100%;
            max-width: 300px;
            height: auto;
        }
    }
}

.endereco {
    margin-top: -20px !important;
}



.contatos {
    text-decoration: none !important;
}

.copyright {
    text-align: center;
    font-size: 15px;
}
}

/* #endregion */

/* #region media 700px - 768px */

@media (min-width: 700px) and (max-width: 768px) {

.container-topo {
    width: 100%;
    height: 60px;

    .topo {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;

        ul.navBar {
            width: 100%;
            padding: 10px;
            position: fixed;
            display: flex;
            align-items: center;
            z-index: 100;
            background: var(--cor-bg-navbar);




            li {
                a {
                    img {
                        height: 40px;
                    }
                }

            }

            li.subBotoes {
                margin-left: 210px;
                /* alterado a direção */
                padding: 10px;
                padding-right: 40px;
                display: flex;
                flex-direction: row;
                gap: 20px;
                font-size: 20px;
                border: none;

                .btnNav {
                    text-decoration: none;
                    color: var(--cor-texto);
                    font-size: 12px;

                }
            }

            li.changMode {
                margin-left: 10px;
                /* padding: 0 50px; */
                display: flex;

            }

        }
    }
}

/* #region Categorias */

.container-categoria {
    width: 100%;
    /* Ocupa toda a Largura */
    min-height: 520px;
    /* 520px Garantido */
    background-color: var(--cor-primaria);
    /* Cor de fundo | Variavel */
    padding: 40px 0;
    /* Adiciona espaço acima e abaixo do conteúdo */

    h1 {
        padding: 20px;
        /* Espaçamento interno */
        text-align: center;
        /* Centraliza o texto */

        span {
            color: var(--cor-texto);
            font-size: 30px;
            /* Tamanho da fonte */
        }
    }

}

.cards {
    width: 100%;
    /* Ocupa toda a Largura */
    display: flex;
    /* Flexbox para layout flexível */
    flex-wrap: wrap;
    /* Permite que os itens quebrem linha */
    align-items: center;
    /* Alinha itens verticalmente ao centro */
    justify-content: center;
    /* Centraliza itens horizontalmente */
    gap: 20px;
    /* Espaçamento entre os itens */

    ul {
        padding: 0;
        /* Remove o padding padrão do UL */
        margin: 0;
        /* Remove a margem padrão do UL */
        display: flex;
        /* Flexbox para layout flexível */
        flex-wrap: wrap;
        /* Permite que os itens quebrem linha */
        max-width: 150px;
        /* Largura máxima do card */
        height: 100px;
        /* Altura fixa do card */
        border: none;
        /* Remove a borda padrão */
        border-radius: 10px;
        /* Bordas arredondadas */

        img {
            width: 100%;
            /* Ocupa toda a largura do card */
            height: 100%;
            /* Mantém a proporção da imagem */
            border-radius: 10px;
            /* Bordas arredondadas */
            cursor: pointer;
            /* Cursor de ponteiro ao passar o mouse */
        }
    }
}
/* #endregion */


.area-Produtos {
    /* margin: 10px 5px 20px 5px; */
    display: flex;
    flex-direction: column;
    align-items: center;

    .cardsProdutos {
        width: 220px;
        height: 350px;

        .imgProdutos {
            width: 206px;
            height: 220px;
        }

        h5 {
            font-size: 16px;
        }

        p {
            font-size: 16px;
        }

        button {
            padding: 8px 20px 8px 20px;
            font-size: 12px;
        }
    }
}

.contato {
    height: 400px;
    background-size: contain, cover;

    ul {
        padding: 2rem;
        display: flex;
        /* Adicionado */
        flex-direction: column;
        /* Adicionado */
        align-items: center;
        /* Centraliza os filhos */

        li {
            width: 100%;
            /* Garante que ocupe toda a largura */
            margin-bottom: 1rem;
            /* Espaço entre os itens */

            form {
                width: 100%;

                input {
                    margin-left: 0;
                }
            }
        }
    }

    .informeDados {
        margin-left: 0;
        font-size: 18px;
        text-align: center;
        /* Centraliza o texto */
        margin-bottom: 1rem;
        /* Espaço abaixo */
    }

    .aceite {
        margin-left: 0;
        font-size: 14px;
        text-align: center;
        margin-bottom: 1rem;
    }
 
    .negrito {
        margin-left: 0;
        font-size: 18px;
        text-align: center;
        margin-bottom: 1rem;
    }
}

.container-footer {
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    gap: 30px;
 
 
    .footer1,
    .footer2,
    .footer3 {
        width: 100%;
        text-align: center;
        margin: 0 30px 0px 0;
    }
 
    .footer1 {
        .logo {
            width: 300px !important;
 
        }
 
        ul li {
            margin-bottom: 10px;
 
            .imgRedes {
                width: 40px;
                margin: 5px;
            }
 
            .FormasPgto {
                width: 40px;
                margin: 5px;
            }
        }
    }
 
    .footer2 {
        ul {
            li {
                h1 {
                    margin-top: -30px;
                    text-decoration: underline;
                }
            }
        }
    }
 
    h1 {
        margin-top: -30px;
        font-size: 20px !important;
    }
 
    .footer3 {
        margin-top: -80px;
 
        img {
            width: 100%;
            max-width: 300px;
            height: auto;
        }
    }
}

.endereco {
    margin-top: -20px !important;
}



.contatos {
    text-decoration: none !important;
}

.copyright {
    text-align: center;
    font-size: 15px;
}
}

/* #endregion */

/* #region media 601px - 699px */

@media (min-width: 601px) and (max-width: 699px) {

.container-topo {
    width: 100%;
    height: 60px;

    .topo {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;

        ul.navBar {
            width: 100%;
            padding: 10px;
            position: fixed;
            display: flex;
            align-items: center;
            z-index: 100;
            background: var(--cor-bg-navbar);




            li {
                a {
                    img {
                        height: 40px;
                    }
                }

            }

            li.subBotoes {
                margin-left: 140px;
                /* alterado a direção */
                padding: 10px;
                padding-right: 40px;
                display: flex;
                flex-direction: row;
                gap: 10px;
                font-size: 20px;
                border: none;

                .btnNav {
                    text-decoration: none;
                    color: var(--cor-texto);
                    font-size: 12px;

                }
            }

            li.changMode {
                margin-left: 10px;
                /* padding: 0 50px; */
                display: flex;

            }

        }
    }
}

/* #region Categorias */

.container-categoria {
    width: 100%;
    /* Ocupa toda a Largura */
    min-height: 520px;
    /* 520px Garantido */
    background-color: var(--cor-primaria);
    /* Cor de fundo | Variavel */
    padding: 40px 0;
    /* Adiciona espaço acima e abaixo do conteúdo */

    h1 {
        padding: 20px;
        /* Espaçamento interno */
        text-align: center;
        /* Centraliza o texto */

        span {
            color: var(--cor-texto);
            font-size: 30px;
            /* Tamanho da fonte */
        }
    }

}

.cards {
    width: 100%;
    /* Ocupa toda a Largura */
    display: flex;
    /* Flexbox para layout flexível */
    flex-wrap: wrap;
    /* Permite que os itens quebrem linha */
    align-items: center;
    /* Alinha itens verticalmente ao centro */
    justify-content: center;
    /* Centraliza itens horizontalmente */
    gap: 20px;
    /* Espaçamento entre os itens */

    ul {
        padding: 0;
        /* Remove o padding padrão do UL */
        margin: 0;
        /* Remove a margem padrão do UL */
        display: flex;
        /* Flexbox para layout flexível */
        flex-wrap: wrap;
        /* Permite que os itens quebrem linha */
        max-width: 150px;
        /* Largura máxima do card */
        height: 100px;
        /* Altura fixa do card */
        border: none;
        /* Remove a borda padrão */
        border-radius: 10px;
        /* Bordas arredondadas */

        img {
            width: 100%;
            /* Ocupa toda a largura do card */
            height: 100%;
            /* Mantém a proporção da imagem */
            border-radius: 10px;
            /* Bordas arredondadas */
            cursor: pointer;
            /* Cursor de ponteiro ao passar o mouse */
        }
    }
}
/* #endregion */


.area-Produtos {
    /* margin: 10px 5px 20px 5px; */
    display: flex;
    flex-direction: column;
    align-items: center;

    .cardsProdutos {
        width: 220px;
        height: 350px;

        .imgProdutos {
            width: 206px;
            height: 220px;
        }

        h5 {
            font-size: 16px;
        }

        p {
            font-size: 16px;
        }

        button {
            padding: 8px 20px 8px 20px;
            font-size: 12px;
        }
    }
}

.contato {
    height: 400px;
    background-size: contain, cover;

    ul {
        padding: 2rem;
        display: flex;
        /* Adicionado */
        flex-direction: column;
        /* Adicionado */
        align-items: center;
        /* Centraliza os filhos */

        li {
            width: 100%;
            /* Garante que ocupe toda a largura */
            margin-bottom: 1rem;
            /* Espaço entre os itens */

            form {
                width: 100%;

                input {
                    margin-left: 0;
                }
            }
        }
    }

    .informeDados {
        margin-left: 0;
        font-size: 18px;
        text-align: center;
        /* Centraliza o texto */
        margin-bottom: 1rem;
        /* Espaço abaixo */
    }

    .aceite {
        margin-left: 0;
        font-size: 14px;
        text-align: center;
        margin-bottom: 1rem;
    }
 
    .negrito {
        margin-left: 0;
        font-size: 18px;
        text-align: center;
        margin-bottom: 1rem;
    }
}

.container-footer {
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    gap: 30px;
 
 
    .footer1,
    .footer2,
    .footer3 {
        width: 100%;
        text-align: center;
        margin: 0 30px 0px 0;
    }
 
    .footer1 {
        .logo {
            width: 300px !important;
 
        }
 
        ul li {
            margin-bottom: 10px;
 
            .imgRedes {
                width: 40px;
                margin: 5px;
            }
 
            .FormasPgto {
                width: 40px;
                margin: 5px;
            }
        }
    }
 
    .footer2 {
        ul {
            li {
                h1 {
                    margin-top: -30px;
                    text-decoration: underline;
                }
            }
        }
    }
 
    h1 {
        margin-top: -30px;
        font-size: 20px !important;
    }
 
    .footer3 {
        margin-top: -80px;
 
        img {
            width: 100%;
            max-width: 300px;
            height: auto;
        }
    }
}

.endereco {
    margin-top: -20px !important;
}



.contatos {
    text-decoration: none !important;
}

.copyright {
    text-align: center;
    font-size: 15px;
}
}

/* #endregion */

/* #region media 551px - 600px */

@media (min-width: 551px) and (max-width: 600px) {

.container-topo {
    width: 100%;
    height: 60px;

    .topo {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;

        ul.navBar {
            width: 100%;
            padding: 10px;
            position: fixed;
            display: flex;
            align-items: center;
            z-index: 100;
            background: var(--cor-bg-navbar);




            li {
                a {
                    img {
                        height: 40px;
                    }
                }

            }

            li.subBotoes {
                margin-left: 70px;
                /* alterado a direção */
                padding: 10px;
                padding-right: 40px;
                display: flex;
                flex-direction: row;
                gap: 10px;
                font-size: 20px;
                border: none;

                .btnNav {
                    text-decoration: none;
                    color: var(--cor-texto);
                    font-size: 12px;

                }
            }

            li.changMode {
                margin-left: 10px;
                /* padding: 0 50px; */
                display: flex;

            }

        }
    }
}

/* #region Categorias */

.container-categoria {
    width: 100%;
    /* Ocupa toda a Largura */
    min-height: 520px;
    /* 520px Garantido */
    background-color: var(--cor-primaria);
    /* Cor de fundo | Variavel */
    padding: 40px 0;
    /* Adiciona espaço acima e abaixo do conteúdo */

    h1 {
        padding: 20px;
        /* Espaçamento interno */
        text-align: center;
        /* Centraliza o texto */

        span {
            color: var(--cor-texto);
            font-size: 30px;
            /* Tamanho da fonte */
        }
    }

}

.cards {
    width: 100%;
    /* Ocupa toda a Largura */
    display: flex;
    /* Flexbox para layout flexível */
    flex-wrap: wrap;
    /* Permite que os itens quebrem linha */
    align-items: center;
    /* Alinha itens verticalmente ao centro */
    justify-content: center;
    /* Centraliza itens horizontalmente */
    gap: 20px;
    /* Espaçamento entre os itens */

    ul {
        padding: 0;
        /* Remove o padding padrão do UL */
        margin: 0;
        /* Remove a margem padrão do UL */
        display: flex;
        /* Flexbox para layout flexível */
        flex-wrap: wrap;
        /* Permite que os itens quebrem linha */
        max-width: 150px;
        /* Largura máxima do card */
        height: 100px;
        /* Altura fixa do card */
        border: none;
        /* Remove a borda padrão */
        border-radius: 10px;
        /* Bordas arredondadas */

        img {
            width: 100%;
            /* Ocupa toda a largura do card */
            height: 100%;
            /* Mantém a proporção da imagem */
            border-radius: 10px;
            /* Bordas arredondadas */
            cursor: pointer;
            /* Cursor de ponteiro ao passar o mouse */
        }
    }
}
/* #endregion */


.area-Produtos {
    /* margin: 10px 5px 20px 5px; */
    display: flex;
    flex-direction: column;
    align-items: center;

    .cardsProdutos {
        width: 220px;
        height: 350px;

        .imgProdutos {
            width: 206px;
            height: 220px;
        }

        h5 {
            font-size: 16px;
        }

        p {
            font-size: 16px;
        }

        button {
            padding: 8px 20px 8px 20px;
            font-size: 12px;
        }
    }
}

.contato {
    height: 400px;
    background-size: contain, cover;

    ul {
        padding: 2rem;
        display: flex;
        /* Adicionado */
        flex-direction: column;
        /* Adicionado */
        align-items: center;
        /* Centraliza os filhos */

        li {
            width: 100%;
            /* Garante que ocupe toda a largura */
            margin-bottom: 1rem;
            /* Espaço entre os itens */

            form {
                width: 100%;

                input {
                    margin-left: 0;
                }
            }
        }
    }

    .informeDados {
        margin-left: 0;
        font-size: 18px;
        text-align: center;
        /* Centraliza o texto */
        margin-bottom: 1rem;
        /* Espaço abaixo */
    }

    .aceite {
        margin-left: 0;
        font-size: 14px;
        text-align: center;
        margin-bottom: 1rem;
    }
 
    .negrito {
        margin-left: 0;
        font-size: 18px;
        text-align: center;
        margin-bottom: 1rem;
    }
}

.container-footer {
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    gap: 30px;
 
 
    .footer1,
    .footer2,
    .footer3 {
        width: 100%;
        text-align: center;
        margin: 0 30px 0px 0;
    }
 
    .footer1 {
        .logo {
            width: 300px !important;
 
        }
 
        ul li {
            margin-bottom: 10px;
 
            .imgRedes {
                width: 40px;
                margin: 5px;
            }
 
            .FormasPgto {
                width: 40px;
                margin: 5px;
            }
        }
    }
 
    .footer2 {
        ul {
            li {
                h1 {
                    margin-top: -30px;
                    text-decoration: underline;
                }
            }
        }
    }
 
    h1 {
        margin-top: -30px;
        font-size: 20px !important;
    }
 
    .footer3 {
        margin-top: -80px;
 
        img {
            width: 100%;
            max-width: 300px;
            height: auto;
        }
    }
}

.endereco {
    margin-top: -20px !important;
}



.contatos {
    text-decoration: none !important;
}

.copyright {
    text-align: center;
    font-size: 15px;
}
}

/* #endregion */

/* #region media 471px - 550px */

@media (min-width: 471px) and (max-width: 550px) {

.container-topo {
    width: 100%;
    height: 60px;

    .topo {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;

        ul.navBar {
            width: 100%;
            padding: 10px;
            position: fixed;
            display: flex;
            align-items: center;
            z-index: 100;
            background: var(--cor-bg-navbar);




            li {
                a {
                    img {
                        height: 40px;
                    }
                }

            }

            li.subBotoes {
                margin-left: 50px;
                /* alterado a direção */
                padding: 10px;
                padding-right: 40px;
                display: flex;
                flex-direction: row;
                gap: 10px;
                font-size: 20px;
                border: none;

                .btnNav {
                    text-decoration: none;
                    color: var(--cor-texto);
                    font-size: 12px;

                }
            }

            li.changMode {
                margin-left: 10px;
                /* padding: 0 50px; */
                display: flex;

            }

        }
    }
}

/* #region Categorias */

.container-categoria {
    width: 100%;
    /* Ocupa toda a Largura */
    min-height: 520px;
    /* 520px Garantido */
    background-color: var(--cor-primaria);
    /* Cor de fundo | Variavel */
    padding: 40px 0;
    /* Adiciona espaço acima e abaixo do conteúdo */

    h1 {
        padding: 20px;
        /* Espaçamento interno */
        text-align: center;
        /* Centraliza o texto */

        span {
            color: var(--cor-texto);
            font-size: 30px;
            /* Tamanho da fonte */
        }
    }

}

.cards {
    width: 100%;
    /* Ocupa toda a Largura */
    display: flex;
    /* Flexbox para layout flexível */
    flex-wrap: wrap;
    /* Permite que os itens quebrem linha */
    align-items: center;
    /* Alinha itens verticalmente ao centro */
    justify-content: center;
    /* Centraliza itens horizontalmente */
    gap: 20px;
    /* Espaçamento entre os itens */

    ul {
        padding: 0;
        /* Remove o padding padrão do UL */
        margin: 0;
        /* Remove a margem padrão do UL */
        display: flex;
        /* Flexbox para layout flexível */
        flex-wrap: wrap;
        /* Permite que os itens quebrem linha */
        max-width: 150px;
        /* Largura máxima do card */
        height: 100px;
        /* Altura fixa do card */
        border: none;
        /* Remove a borda padrão */
        border-radius: 10px;
        /* Bordas arredondadas */

        img {
            width: 100%;
            /* Ocupa toda a largura do card */
            height: 100%;
            /* Mantém a proporção da imagem */
            border-radius: 10px;
            /* Bordas arredondadas */
            cursor: pointer;
            /* Cursor de ponteiro ao passar o mouse */
        }
    }
}
/* #endregion */


.area-Produtos {
    /* margin: 10px 5px 20px 5px; */
    display: flex;
    flex-direction: column;
    align-items: center;

    .cardsProdutos {
        width: 220px;
        height: 350px;

        .imgProdutos {
            width: 206px;
            height: 220px;
        }

        h5 {
            font-size: 16px;
        }

        p {
            font-size: 16px;
        }

        button {
            padding: 8px 20px 8px 20px;
            font-size: 12px;
        }
    }
}

.contato {
    height: 400px;
    background-size: contain, cover;

    ul {
        padding: 2rem;
        display: flex;
        /* Adicionado */
        flex-direction: column;
        /* Adicionado */
        align-items: center;
        /* Centraliza os filhos */

        li {
            width: 100%;
            /* Garante que ocupe toda a largura */
            margin-bottom: 1rem;
            /* Espaço entre os itens */

            form {
                width: 100%;

                input {
                    margin-left: 0;
                }
            }
        }
    }

    .informeDados {
        margin-left: 0;
        font-size: 18px;
        text-align: center;
        /* Centraliza o texto */
        margin-bottom: 1rem;
        /* Espaço abaixo */
    }

    .aceite {
        margin-left: 0;
        font-size: 14px;
        text-align: center;
        margin-bottom: 1rem;
    }
 
    .negrito {
        margin-left: 0;
        font-size: 18px;
        text-align: center;
        margin-bottom: 1rem;
    }
}

.container-footer {
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    gap: 30px;
 
 
    .footer1,
    .footer2,
    .footer3 {
        width: 100%;
        text-align: center;
        margin: 0 30px 0px 0;
    }
 
    .footer1 {
        .logo {
            width: 300px !important;
 
        }
 
        ul li {
            margin-bottom: 10px;
 
            .imgRedes {
                width: 40px;
                margin: 5px;
            }
 
            .FormasPgto {
                width: 40px;
                margin: 5px;
            }
        }
    }
 
    .footer2 {
        ul {
            li {
                h1 {
                    margin-top: -30px;
                    text-decoration: underline;
                }
            }
        }
    }
 
    h1 {
        margin-top: -30px;
        font-size: 20px !important;
    }
 
    .footer3 {
        margin-top: -80px;
 
        img {
            width: 100%;
            max-width: 300px;
            height: auto;
        }
    }
}

.endereco {
    margin-top: -20px !important;
}



.contatos {
    text-decoration: none !important;
}

.copyright {
    text-align: center;
    font-size: 15px;
}
}

/* #endregion */

/* #region media 421px - 470px */

@media (min-width: 421px) and (max-width: 470px) {

.container-topo {
    width: 100%;
    height: 60px;

    .topo {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;

        ul.navBar {
            width: 100%;
            padding: 10px;
            position: fixed;
            display: flex;
            align-items: center;
            z-index: 100;
            background: var(--cor-bg-navbar);




            li {
                a {
                    img {
                        height: 40px;
                    }
                }

            }

            li.subBotoes {
                margin-left: 20px;
                /* alterado a direção */
                padding: 10px;
                padding-right: 40px;
                display: flex;
                flex-direction: row;
                gap: 10px;
                font-size: 20px;
                border: none;

                .btnNav {
                    text-decoration: none;
                    color: var(--cor-texto);
                    font-size: 10px;

                }
            }

            li.changMode {
                margin-left: 10px;
                /* padding: 0 50px; */
                display: flex;

            }

        }
    }
}

/* #region Categorias */

.container-categoria {
    width: 100%;
    /* Ocupa toda a Largura */
    min-height: 520px;
    /* 520px Garantido */
    background-color: var(--cor-primaria);
    /* Cor de fundo | Variavel */
    padding: 40px 0;
    /* Adiciona espaço acima e abaixo do conteúdo */

    h1 {
        padding: 20px;
        /* Espaçamento interno */
        text-align: center;
        /* Centraliza o texto */

        span {
            color: var(--cor-texto);
            font-size: 30px;
            /* Tamanho da fonte */
        }
    }

}

.cards {
    width: 100%;
    /* Ocupa toda a Largura */
    display: flex;
    /* Flexbox para layout flexível */
    flex-wrap: wrap;
    /* Permite que os itens quebrem linha */
    align-items: center;
    /* Alinha itens verticalmente ao centro */
    justify-content: center;
    /* Centraliza itens horizontalmente */
    gap: 20px;
    /* Espaçamento entre os itens */

    ul {
        padding: 0;
        /* Remove o padding padrão do UL */
        margin: 0;
        /* Remove a margem padrão do UL */
        display: flex;
        /* Flexbox para layout flexível */
        flex-wrap: wrap;
        /* Permite que os itens quebrem linha */
        max-width: 150px;
        /* Largura máxima do card */
        height: 100px;
        /* Altura fixa do card */
        border: none;
        /* Remove a borda padrão */
        border-radius: 10px;
        /* Bordas arredondadas */

        img {
            width: 100%;
            /* Ocupa toda a largura do card */
            height: 100%;
            /* Mantém a proporção da imagem */
            border-radius: 10px;
            /* Bordas arredondadas */
            cursor: pointer;
            /* Cursor de ponteiro ao passar o mouse */
        }
    }
}
/* #endregion */


.area-Produtos {
    /* margin: 10px 5px 20px 5px; */
    display: flex;
    flex-direction: column;
    align-items: center;

    .cardsProdutos {
        width: 220px;
        height: 350px;

        .imgProdutos {
            width: 206px;
            height: 220px;
        }

        h5 {
            font-size: 16px;
        }

        p {
            font-size: 16px;
        }

        button {
            padding: 8px 20px 8px 20px;
            font-size: 12px;
        }
    }
}

.contato {
    height: 400px;
    background-size: contain, cover;

    ul {
        padding: 2rem;
        display: flex;
        /* Adicionado */
        flex-direction: column;
        /* Adicionado */
        align-items: center;
        /* Centraliza os filhos */

        li {
            width: 100%;
            /* Garante que ocupe toda a largura */
            margin-bottom: 1rem;
            /* Espaço entre os itens */

            form {
                width: 100%;

                input {
                    margin-left: 0;
                }
            }
        }
    }

    .informeDados {
        margin-left: 0;
        font-size: 18px;
        text-align: center;
        /* Centraliza o texto */
        margin-bottom: 1rem;
        /* Espaço abaixo */
    }

    .aceite {
        margin-left: 0;
        font-size: 14px;
        text-align: center;
        margin-bottom: 1rem;
    }
 
    .negrito {
        margin-left: 0;
        font-size: 18px;
        text-align: center;
        margin-bottom: 1rem;
    }
}

.container-footer {
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    gap: 30px;
 
 
    .footer1,
    .footer2,
    .footer3 {
        width: 100%;
        text-align: center;
        margin: 0 30px 0px 0;
    }
 
    .footer1 {
        .logo {
            width: 300px !important;
 
        }
 
        ul li {
            margin-bottom: 10px;
 
            .imgRedes {
                width: 40px;
                margin: 5px;
            }
 
            .FormasPgto {
                width: 40px;
                margin: 5px;
            }
        }
    }
 
    .footer2 {
        ul {
            li {
                h1 {
                    margin-top: -30px;
                    text-decoration: underline;
                }
            }
        }
    }
 
    h1 {
        margin-top: -30px;
        font-size: 20px !important;
    }
 
    .footer3 {
        margin-top: -80px;
 
        img {
            width: 100%;
            max-width: 300px;
            height: auto;
        }
    }
}

.endereco {
    margin-top: -20px !important;
}



.contatos {
    text-decoration: none !important;
}

.copyright {
    text-align: center;
    font-size: 15px;
}
}

/* #endregion */

/* #region media 320px - 420px */

@media (max-width: 420px) {

.container-topo {
    width: 100%;
    height: 60px;

    .topo {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;

        ul.navBar {
            width: 100%;
            padding: 10px;
            position: fixed;
            display: flex;
            align-items: center;
            z-index: 100;
            background: var(--cor-bg-navbar);




            li {
                a {
                    img {
                        height: 40px;
                    }
                }

            }

            li.subBotoes {
                margin-left: 20px;
                /* alterado a direção */
                padding: 10px;
                padding-right: 40px;
                display: flex;
                flex-direction: row;
                gap: 10px;
                font-size: 20px;
                border: none;

                .btnNav {
                    text-decoration: none;
                    color: var(--cor-texto);
                    font-size: 10px;

                }
            }

            li.changMode {
                margin-left: 10px;
                /* padding: 0 50px; */
                display: flex;

            }

        }
    }
}

/* #region Categorias */

.container-categoria {
    width: 100%;
    /* Ocupa toda a Largura */
    min-height: 520px;
    /* 520px Garantido */
    background-color: var(--cor-primaria);
    /* Cor de fundo | Variavel */
    padding: 40px 0;
    /* Adiciona espaço acima e abaixo do conteúdo */

    h1 {
        padding: 20px;
        /* Espaçamento interno */
        text-align: center;
        /* Centraliza o texto */

        span {
            color: var(--cor-texto);
            font-size: 30px;
            /* Tamanho da fonte */
        }
    }

}

.cards {
    width: 100%;
    /* Ocupa toda a Largura */
    display: flex;
    /* Flexbox para layout flexível */
    flex-wrap: wrap;
    /* Permite que os itens quebrem linha */
    align-items: center;
    /* Alinha itens verticalmente ao centro */
    justify-content: center;
    /* Centraliza itens horizontalmente */
    gap: 20px;
    /* Espaçamento entre os itens */

    ul {
        padding: 0;
        /* Remove o padding padrão do UL */
        margin: 0;
        /* Remove a margem padrão do UL */
        display: flex;
        /* Flexbox para layout flexível */
        flex-wrap: wrap;
        /* Permite que os itens quebrem linha */
        max-width: 150px;
        /* Largura máxima do card */
        height: 100px;
        /* Altura fixa do card */
        border: none;
        /* Remove a borda padrão */
        border-radius: 10px;
        /* Bordas arredondadas */

        img {
            width: 100%;
            /* Ocupa toda a largura do card */
            height: 100%;
            /* Mantém a proporção da imagem */
            border-radius: 10px;
            /* Bordas arredondadas */
            cursor: pointer;
            /* Cursor de ponteiro ao passar o mouse */
        }
    }
}
/* #endregion */


.area-Produtos {
    /* margin: 10px 5px 20px 5px; */
    display: flex;
    flex-direction: column;
    align-items: center;

    .cardsProdutos {
        width: 220px;
        height: 350px;

        .imgProdutos {
            width: 206px;
            height: 220px;
        }

        h5 {
            font-size: 16px;
        }

        p {
            font-size: 16px;
        }

        button {
            padding: 8px 20px 8px 20px;
            font-size: 12px;
        }
    }
}

.contato {
    height: 400px;
    background-size: contain, cover;

    ul {
        padding: 2rem;
        display: flex;
        /* Adicionado */
        flex-direction: column;
        /* Adicionado */
        align-items: center;
        /* Centraliza os filhos */

        li {
            width: 100%;
            /* Garante que ocupe toda a largura */
            margin-bottom: 1rem;
            /* Espaço entre os itens */

            form {
                width: 100%;

                input {
                    margin-left: 0;
                }
            }
        }
    }

    .informeDados {
        margin-left: 0;
        font-size: 18px;
        text-align: center;
        /* Centraliza o texto */
        margin-bottom: 1rem;
        /* Espaço abaixo */
    }

    .aceite {
        margin-left: 0;
        font-size: 14px;
        text-align: center;
        margin-bottom: 1rem;
    }
 
    .negrito {
        margin-left: 0;
        font-size: 18px;
        text-align: center;
        margin-bottom: 1rem;
    }
}

.container-footer {
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    gap: 30px;
 
 
    .footer1,
    .footer2,
    .footer3 {
        width: 100%;
        text-align: center;
        margin: 0 30px 0px 0;
    }
 
    .footer1 {
        .logo {
            width: 300px !important;
 
        }
 
        ul li {
            margin-bottom: 10px;
 
            .imgRedes {
                width: 40px;
                margin: 5px;
            }
 
            .FormasPgto {
                width: 40px;
                margin: 5px;
            }
        }
    }
 
    .footer2 {
        ul {
            li {
                h1 {
                    margin-top: -30px;
                    text-decoration: underline;
                }
            }
        }
    }
 
    h1 {
        margin-top: -30px;
        font-size: 20px !important;
    }
 
    .footer3 {
        margin-top: -80px;
 
        img {
            width: 100%;
            max-width: 300px;
            height: auto;
        }
    }
}

.endereco {
    margin-top: -20px !important;
}



.contatos {
    text-decoration: none !important;
}

.copyright {
    text-align: center;
    font-size: 15px;
}
}

/* #endregion */