/* #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: 800px;
                /* 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: 24px;

                }
            }



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

                button {
                    border: none;
                    background: transparent;
                }
            }

        }
    }
}


/* #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: contain, 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 */