* {
    margin: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: white;
}

img {
    user-select: none;
}

body {
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {

    display: inline-block;
    font-size: 96px;
    color: #B88A2C;
    font-family: 'Playfair Display';
    font-weight: 400;
}

.branco {
    color: #ffffff !important;
}

.Topico {
    font-size: 80px !important;
    user-select: none;
}

.dourado {
    color: #B88A2C;
}

.boxShadow {
    box-shadow: 9px 9px 10px rgba(0, 0, 0, 0.5);
}

p{
    color: #FFFFFF;
    font-family: 'Montserrat';
}

.hero>header {
    height: 150px;
    background-color: #0F0B2E;
    display: flex;

    .logo {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 20%
    }

    .categorias {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 80%;

        .categoria {
            height: 100%;
            width: 25%;
            display: flex;
            align-items: center;

            * {
                flex-grow: 1;
                text-align: center;
            }
        }

        p:hover {
            transform: scale(1.2);
            transition: 0.3s;
        }

        p {
            color: #D4AF37;
            font-size: 36px;
            font-family: "Playfair Display", serif;
        }

        ul {
            display: flex;
            gap: 16px;
        }

        ul li {

            list-style: none;
            display: inline-block;

            a i {
                display: inline-block;
                font-size: 24px;
                transition: 0.3s;
            }

            a i:hover {
                transform: scale(1.2);
            }
        }

        .Dropdown {
            position: relative;

            aside {
                z-index: 4;
                opacity: 0;
                transition: 1s;
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
                top: -200px;
                width: 100%;

                ul {
                    background-color: #0F0B2E;
                    border: solid 2px #0F0B2E;
                    display: flex;
                    flex-flow: column;
                    padding: 0;
                    gap: 0;

                    li {
                        transition: 0.6s;
                        background-color: #322B63;
                        border-radius: 10px;
                        padding: 5px 0;
                        margin: 1px 0;

                        img {
                            width: 100%;
                        }
                    }

                    li:hover {
                        background-color: #100C3B;
                        transform: scale(1.2);
                    }

                    a {
                        font-size: 24px;
                        color: #D4AF37;
                        font-family: 'Montserrat';
                    }
                }
            }
        }

        .Dropdown:hover {
            aside {
                opacity: 1;
                top: 100%;
            }
        }
    }
}

/* ============================= */
.BodyHome {
    background-color: #1C1645;
}

.BodyHome,
.BodyAbout {
    main {
        display: flex;

        img {
            width: 30%;

        }

        >div {
            display: flex;
            flex-flow: column;
            justify-content: center;

            >p {
                display: inline-block;
                font-size: 40px;
                font-weight: 400;
            }

            .botao {
                align-self: flex-start;
                /* ocupa só o espaço necessário */
                margin-top: 5%;
                background-color: #B88A2C;
                border-radius: 100px;
                text-align: center;
                transition: 0.6s;
                padding: 1% 2%;
                user-select: none;

                a,
                p {
                    display: inline-block;
                    font-size: 48px;
                }
            }


            .botao:hover {
                transform: scale(1.2);
            }
        }

    }
}



/* ============================= */
.Destaques {
    text-align: center;

    .Produtos {
        margin: 5% 0;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;

        .Produto {
            flex-shrink: 0;
            display: flex;
            flex-flow: column;
            align-items: center;
            justify-content: center;
            background-color: #0F0B2E;
            width: 20%;
            margin: 0 2.5%;
            height: auto;
            aspect-ratio: 1 / 1;
            border-radius: 30px;
            transition: 0.5s;

            .Desc {
                color: #FFFFFF;
                text-transform: uppercase;
                font-weight: 300px;
            }

            img {
                width: 80%;
                height: 80%;
                border-radius: 30px;
            }

            p {
                margin-top: 5%;
                font-size: 100%;
                transition: 0.5s;
            }
        }

        .Produto:last-child {
            .Desc {
                margin-left: 10%;
                align-self: flex-start;
                cursor: pointer;
            }
        }

        .Produto:first-child {
            .Desc {
                margin-right: 10%;
                align-self: flex-end;
                cursor: pointer;
            }
        }

        .Produto:hover {
            p {
                color: #B88A2C;
            }
        }
    }
}

/* ============================= */
.Sobre,
.Historia {
    display: flex;
    padding: 0 10%;
    padding-bottom: 10%;

    .txt {
        width: 70%;
        display: flex;
        flex-flow: column;

        h1 {
            width: 75%;
            font-size: 90px;
        }

        >p {
            width: 75%;
            font-size: 36px;
            margin: 3% 10px;
        }

        .botaoQ {
            align-self: flex-start;
            background-color: #B88A2C;
            text-align: center;
            transition: 0.6s;
            padding: 1% 2%;
            user-select: none;

            a,
            p {
                display: inline-block;
                font-size: 48px;
            }
        }

        .botaoQ:hover {
            transform: scale(1.2);
        }
    }

    .img {
        width: 30%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;

        img {
            width: 100%;
            object-fit: contain;
            /* mostra sempre inteira e proporcional */
        }
    }

}

/* ============================= */
.Footer {
    height: 500px;
    display: flex;
    flex-flow: column;
    background-color: #0F0B2E;
    align-items: center;

    header {
        display: flex;
        align-items: center;
        width: 80%;
        height: 40%;
        padding: 0 10%;
        border-bottom: 1px solid #B88A2C;

        p {
            font-size: 30px;
            margin-left: 5%;
            user-select: none;
        }

        div {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
        }

        >div+div {
            flex-grow: 1;
        }


    }

    footer {
        display: flex;
        width: 80%;
        justify-content: space-evenly;

        .lista {
            display: flex;
            flex-flow: column;
            padding: 0;

            ul {
                list-style: none;

                li {
                    display: flex;
                    align-items: center;
                    margin-bottom: 10px;
                    user-select: none;

                    a {
                        font-family: 'Montserrat';
                        transition: 0.6s;
                    }

                    i {
                        color: #D4AF37;
                        font-size: 30px;

                    }

                    h1 {
                        font-size: 40px;
                        color: #D4AF37;
                    }

                    p,
                    a {
                        font-size: 24px;
                        font-weight: 100;
                        margin-left: 5px;
                    }

                    a:hover {
                        color: #B88A2C;
                    }
                }

                .simbolos {
                    i:hover {
                        transform: scale(1.2);
                    }

                    i {
                        margin-right: 30px;
                        font-size: 24px;
                    }
                }
            }
        }
    }
}

/* ============================= */
.BodyAbout {
    background-color: #100C3B;
}

.About main {
    padding: 5% 0;
    background: #100C3B;
    background: linear-gradient(0deg, rgba(16, 12, 59, 1) 0%, rgba(39, 9, 76, 1) 100%);

    img {
        order: 1;
    }

    >div {
        margin-left: 3%;
    }
}

.Historia {
    padding: 5% 0;
    margin-left: 3%;
}

.PeV {
    display: flex;
    flex-flow: column;
    align-items: center;

    h1 {
        font-size: 64px;
    }

    >div {
        margin: 5% 0;
        width: 100%;
        display: flex;
        justify-content: space-evenly;

        .Proposito {
            text-align: center;
            width: 30%;

            .txt {
                margin-top: 5%;

                h1 {
                    font-size: 48px;
                    color: #D4AF37;
                }

                p {
                    display: inline-block;
                    width: 80%;
                    font-size: 24px;
                }
            }

            i {
                font-size: 64px;
                color: #D4AF37;
            }
        }
    }
}

/* ============================= */
.BodyBusca {
    background-color: #100C3B;

    main {
        padding: 5% 2.5%;
        background: #100C3B;
        background: linear-gradient(0deg, rgba(16, 12, 59, 1) 0%, rgba(39, 9, 76, 1) 100%);

        .Search {
            width: 100%;
            display: flex;
            align-items: center;
            background: #322B63;
            border: #100C3B 5px solid;
            border-radius: 30px;
            padding: 5px 12px;

            input {
                width: 100%;
                height: 100%;
                font-size: 24px;
                background-color: #322B63;
                border: 0;
                outline: none;
                color: white;
            }

            input::placeholder {
                color: #B88A2C;
            }

            a {
                margin-right: 2%;
                color: #B88A2C;
                font-size: 24px;
                transition: 0.3s;
            }

            a:hover {
                transform: scale(1.2);
            }
        }

        .Grade {
            margin-top: 2%;
            background-color: #0F0B2E;
            border-radius: 30px;
            display: flex;
            flex-flow: column;
            align-items: center;

            .Categorias {
                width: 90%;
                padding: 0 5%;
                height: 10%;
                display: flex;
                justify-content: space-between;
                background-color: #0F0B2E;
                border-radius: 30px;

                .categoria {
                    margin: 5px;
                    background-color: #322B63;
                    flex-grow: 1;
                    border-radius: 10px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    text-align: center;
                    transition: 0.6s;

                    h1 {
                        font-size: 36px;
                    }

                    a {
                        width: 100%;
                    }
                }

                .categoria:hover {
                    transform: scale(1.2);
                    background-color: #100C3B;
                }
            }

            aside {
                width: 90%;
                margin-top: 2%;
                display: grid;
                grid-template-columns: repeat(4, minmax(220px, 1fr));
                gap: 1%;
                justify-items: center;
                padding-bottom: 2%;

                .produto {
                    background: #322B63;
                    border-radius: 30px;
                    padding: 20px;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    text-align: center;

                    .txt a:hover h1 {
                        transform: scale(1.2);
                    }

                    .img img {
                        width: 100%;
                    }

                    h1 {
                        font-size: 24px;
                        color: #B88A2C;
                    }

                    p {
                        font-size: 20px;
                        font-weight: 300;
                        margin: 5px 0;
                    }

                    span {
                        text-decoration: line-through;
                        opacity: .7;
                    }

                    .botao {
                        margin-top: auto;
                        background-color: #0F0B2E;
                        border-radius: 20px;
                        padding: 5px 20px;
                        transition: 0.6s;

                        p {
                            font-size: 20px;
                        }
                    }

                    .botao:hover {
                        transform: scale(1.2);
                    }
                }
            }
        }

    }
}

.BodyProduto {
    background-color: #100C3B;

    main {
        padding: 2.5% 2.5%;
        background: #100C3B;
        background: linear-gradient(0deg, rgba(16, 12, 59, 1) 0%, rgba(39, 9, 76, 1) 100%);

        .Produto {
            display: flex;

            section {
                display: flex;
                flex-flow: column;
                justify-content: space-evenly;

                .txt {
                    display: flex;
                    flex-flow: column;

                    h1 {
                        font-size: 96px;
                    }

                    h1+h1 {
                        font-size: 80px;
                    }
                }

                .botoes {
                    display: flex;
                    align-items: center;

                    .botao {
                        cursor: pointer;
                        background-color: #B88A2C;
                        border-radius: 30px;
                        text-align: center;
                        padding: 5px 10px;
                        transition: 0.6s;

                        h1 {
                            color: #ffffff;
                            font-size: 36px;
                        }
                    }

                    .botao:hover {
                        transform: scale(1.2);
                    }

                    i {
                        font-size: 48px;
                        color: white;
                        margin-left: 30px;
                        cursor: pointer;
                    }

                    i:hover {
                        transform: scale(1.2);
                    }

                }
            }

            img {
                width: 45%;
                aspect-ratio: 1 / 1;
                margin-right: 5%;
            }
        }

        .Desc {
            margin: 5% 0;

            h1 {
                font-size: 48px;
            }

            p {
                font-size: 24px;
                width: 80%;
            }

            .benef {
                margin: 5% 0;
                display: flex;
                justify-content: space-evenly;

                .beneficio {
                    display: flex;
                    align-items: center;
                    gap: 5%;

                    p {
                        font-size: 24px;
                    }
                }
            }
        }

        .gostar {
            h1 {
                font-size: 48px;
            }

            .produtos {
                display: flex;

                .produto {
                    display: flex;
                    flex-flow: column;
                    align-items: center;

                    a:first-child {
                        text-align: center;
                        width: 60%;
                        transition: 0.6s;
                    }

                    a:first-child:hover {
                        transform: scale(1.2);
                    }

                    a:first-child:hover+a p,
                    p:hover {
                        color: #B88A2C;
                    }

                    img {
                        width: 100%;
                        aspect-ratio: 1 / 1;
                        margin-bottom: 10px;
                    }

                    p {
                        transition: 1s;
                        font-size: 24px;
                    }
                }
            }
        }
    }
}

.BodyContact {
    main {
        padding: 2.5% 2.5%;
        background: #27094C;
        display: flex;

        >div {
            width: 50%;
        }

        .contact {
            display: flex;
            flex-flow: column;

            h1 {
                font-size: 64px;
            }

            p {
                font-size: 24px;
            }

            h2 {
                font-size: 48px;
            }

            .lista {
                display: flex;
                flex-flow: column;
                padding: 0;

                ul {
                    list-style: none;
                    padding: 0;

                    li {
                        display: flex;
                        align-items: center;
                        margin-bottom: 10px;
                        user-select: none;

                        a {
                            font-family: 'Montserrat';
                            transition: 0.6s;
                        }

                        i {
                            color: #D4AF37;
                            font-size: 30px;

                        }

                        h1 {
                            font-size: 40px;
                            color: #D4AF37;
                        }

                        p,
                        a {
                            font-size: 24px;
                            font-weight: 100;
                            margin-left: 5px;
                        }

                        p {
                            margin-left: 10px;
                        }

                        a:hover {
                            color: #B88A2C;
                        }
                    }

                    .simbolos {
                        i:hover {
                            transform: scale(1.2);
                        }

                        i {
                            margin-right: 30px;
                            font-size: 24px;
                        }
                    }
                }
            }
        }

        .form {
            display: flex;
            flex-flow: column;

            h1 {
                font-size: 36px;
            }

            h2 {
                font-size: 24px;
                color: #FFFFFF;
            }

            input,
            textarea {
                width: 100%;
                font-size: 24px;
                border: solid 2px #FFFFFF;
                border-radius: 10px;
                background-color: transparent;
                resize: none;
                color: #ffffff;
                font-family: 'Montserrat';
                font-weight: 100;
                outline: none;
            }

            .topico+.topico+.topico {
                flex-grow: 1;

                textarea {
                    height: 80%;
                }
            }

            button {
                width: 30%;
                background-color: #B88A2C;
                color: #ffffff;
                border-color: #0F0B2E;
                padding: 10px;
                align-self: flex-end;
                cursor: pointer;
            }
        }
    }
}

.BodyCadastro {

    main {
        height: 100vh;
        padding: 2.5% 2.5%;
        background: #27094C;
        display: flex;
        align-items: center;
        justify-content: center;

        .container {
            width: 40%;
            height: 90%;
            margin: 5% 0;
            border-radius: 30px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(6, 1fr);
            background-color: #100C3B;

            .col-2 {
                display: flex;
                flex-flow: column;
                align-items: center;
                justify-content: center;
                grid-column: span 2;

                h1 {
                    font-size: 48px;
                }
            }

            .col {
                grid-row: span 4;
                display: flex;
                align-items: center;
                flex-flow: column;

                .pergunta {
                    display: flex;
                    justify-content: center;
                    flex-flow: column;
                    width: 80%;
                    height: 25%;

                    input {
                        width: 100%;
                    }

                    p {
                        font-size: 90%;
                    }
                }
            }

            .col-2 {
                input {
                    cursor: pointer;
                    outline: none;
                    grid-column: span 2;
                    display: flex;
                    border-color: #1C1645;
                    align-items: center;
                    justify-content: center;
                    width: 50%;
                    height: 50%;
                    background-color: #B88A2C;
                    color: #FFFFFF;
                }
            }
        }
    }
}

.BodyCarrinho {
    main {
        padding: 2.5% 2.5%;
        background: #27094C;
        display: flex;
        align-items: center;
        justify-content: center;
        .container {
            display: flex;
            flex-flow: column;
            width: 90%;
            height: 90%;

            h1 {
                font-size: 64px;
            }

            .conteudo {
                background-color: #0F0B2E;
                flex-grow: 1;
                padding: 2.5%;
                display: flex;
                flex-flow: column;

                .Venda {
                    flex-grow: 3;
                    border: #B88A2C solid 1px;
                    display: flex;
                    flex-flow: column;

                    .categorias {
                        padding: 1%;
                        width: 100%;
                        border-bottom: #B88A2C solid 1px;
                        display: grid;
                        grid-auto-flow: column;
                        grid-template-columns: repeat(6, 1fr);

                        .categoria:first-child {
                            grid-column: span 3;

                            p {
                                text-align: left;
                            }
                        }

                        .categoria {
                            p {
                                font-size: 24px;
                                text-align: center;
                            }
                        }
                    }

                    .produto {
                        padding: 1%;
                        flex-grow: 1;
                        display: grid;
                        grid-template-columns: repeat(6, 1fr);
                        border: solid 1px #B88A2C;

                        div:first-child {
                            grid-column: span 3;
                            display: flex;
                            align-items: center;

                            h1 {
                                color: white;
                                font-size: 40px;
                                margin-left: 1%;
                            }

                            img {
                                width: 50%;
                                aspect-ratio: 1 / 1;
                            }
                        }

                        .Quantidade {
                            display: flex;
                            align-items: center;
                            justify-content: center;

                            span {

                                display: flex;
                                width: 80%;
                                border: 1px solid #B88A2C;
                                height: 20%;
                            }

                            p {
                                cursor: pointer;
                                display: inline-block;
                                font-size: 24px;
                                flex-grow: 1;
                                display: flex;
                                align-items: center;
                                justify-content: center;
                            }

                            p:nth-child(2) {
                                cursor: default !important;
                            }
                        }

                        div>span {
                            font-size: 36px;
                            color: #FFFFFF;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            height: 100%;
                            width: 100%;

                        }

                    }

                    .Desc {
                        flex-grow: 2;
                    }
                }

                .Desc {
                    display: grid;
                    grid-template-columns: repeat(10, 1fr);

                    span {
                        font-family: 'Montserrat';
                        grid-column: span 7;
                        a {
                            color: #B88A2C;
                            font-size: 24px;
                        }
                    }

                    .resumo {
                        margin-top: 10%;
                        padding: 2.5%;
                        grid-column: span 3;
                        border: solid 1px #B88A2C;
                        display: flex;
                        flex-flow: column;
                        align-items: center;

                        h1 {
                            font-size: 30px;
                            width: 100%;
                            text-align: center;
                        }

                        ul,
                        li {
                            color: #ffffff;
                            list-style: none;
                            padding: 0;
                            width: 100%;
                            text-align: center;
                        }

                        ul {
                            display: flex;
                            flex-flow: column;
                            align-items: center;
                        }

                        li {
                            display: flex;
                            justify-content: space-between;
                            padding: 2.5% 10%;
                        }

                        ul li:last-child {
                            border-top: 1px solid #B88A2C;
                            width: 80%;
                            padding: 2.5% 0;
                        }

                        input {
                            width: 80%;
                            padding: 2.5% 0;
                            background-color: #B88A2C;
                            color: #ffffff;
                            border-color: #0F0B2E;
                        }
                    }


                }
            }

        }
    }
}

