:root {
    --cor-vermelha: #FF0038;
    --cor-branca: #FFF;
    --cor-cinza: #333333;
    --cor-vermelha-hover: #FF5E82;
    --cor-cinza-hover: #666666;
    --cor-verde: #00ca6f;
    --cor-verde-hover: #1be68b;
}







body {
    overflow-x: hidden;
    min-width: 275px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Tahoma, Verdana, sans-serif;

    button {
        cursor: pointer;
    }
}

#topo {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;

    @media (max-width:1130px) {
        flex-direction: column !important;
    }

    .listamenubaixo {
        border: solid 2px var(--vermelho-escuro);
        justify-content: center;

        ul {
            position: absolute;
            border: solid 5px var(--cor-vermelha);
            top: 73px;
            border-bottom-right-radius: 20px;
            border-bottom-left-radius: 20px;
            border-top-left-radius: 20px;
            padding: 25px;
            background-color: #fff;
            right: 5px;
            z-index: 99;
            display: flex;
            flex-direction: column;
            align-items: flex-start;

            li {
                font-size: 20px !important;
                margin-top: 5px;
                list-style: none;

                #btninicio {
                    background-image: url('../imagens/icohome.png');
                    padding-left: 30px;
                    background-repeat: no-repeat;
                }

                #btneventos {
                    background-image: url('../imagens/icoeventos.png');
                    padding-left: 30px;
                    background-repeat: no-repeat;
                }

                #btnsoufotografo {
                    background-image: url('../imagens/icofotografo.png');
                    padding-left: 30px;
                    background-repeat: no-repeat;
                }

                #btnproximoseventos {
                    background-image: url('../imagens/icoeventosfuturos.png');
                    padding-left: 30px;
                    background-repeat: no-repeat;
                }

                a {
                    font-size: 22px;
                    text-decoration: none;
                    color: #333333;
                    display: flex;
                    min-width: max-content;
                }

                a:hover {
                    color: var(--cor-vermelha);
                }
            }

            li:last-child {
                border-right: none;
            }
        }
    }

    .logomenu {
        display: flex;
        width: 100%;
        justify-content: space-between;

        .menutoggle {
            display: none;

            button {
                background-color: var(--cor-vermelha);
                color: #FFF;
                height: 60px;
                width: 60px;
                padding-top: 10px;
                border: 0px;
                border-radius: 10px;
                cursor: pointer;
                background-image: url(../imagens/btnmenu.png);
                background-repeat: no-repeat;
                background-position: 0px;
            }
        }

        @media (max-width:900px) {
            flex-direction: column;
            justify-content: center;
            align-items: center;

            .navegacao {
                margin-left: 0px !important;
                margin-right: 5px !important;

                ul {
                    margin-top: 5px !important;
                    margin-bottom: 10px;
                }
            }
        }

        @media (max-width:680px) {
            flex-direction: row;
            justify-content: space-between;

            .navegacao {
                .listamenu {
                    display: none;
                }

                .menutoggle {
                    display: flex !important;
                }
            }
        }

        .logo {
            max-width: max-content;
            margin-left: 10px;
            margin-top: 10px;

            img {
                width: 200px;
            }

            a:active,
            a:focus {
                outline: none;
            }
        }

        .navegacao {
            max-width: max-content;
            margin-left: auto;
            margin-right: auto;
            height: max-content;
            width: 100%;

            .menutoggle {
                display: none;
            }

            ul {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-top: 40px;

                li {
                    list-style: none;
                    margin-right: 15px;
                    border-right: solid 1px #333333;
                    padding-right: 15px;

                    #btninicio {
                        background-image: url('../imagens/icohome.png');
                        padding-left: 30px;
                        background-repeat: no-repeat;
                    }

                    #btneventos {
                        background-image: url('../imagens/icoeventos.png');
                        padding-left: 30px;
                        background-repeat: no-repeat;
                    }

                    #btnsoufotografo {
                        background-image: url('../imagens/icofotografo.png');
                        padding-left: 30px;
                        background-repeat: no-repeat;
                    }

                    #btnproximoseventos {
                        background-image: url('../imagens/icoeventosfuturos.png');
                        padding-left: 30px;
                        background-repeat: no-repeat;
                    }

                    a {
                        font-size: 22px;
                        text-decoration: none;
                        color: #333333;
                        display: flex;
                        min-width: max-content;
                    }

                    a:hover {
                        color: var(--cor-vermelha);
                    }
                }

                li:last-child {
                    border-right: none;
                }
            }
        }
    }

    .menucliente {
        display: flex;
        justify-content: right;
        flex-direction: column;
        justify-content: center;

        @media (max-width:1130px) {
            justify-content: center !important;
            width: 100%;
            margin-top: 10px;

            ul {
                margin-top: 5px !important;
            }
        }

        .navcliente {
            display: flex;
            justify-content: center;
            align-items: center;

            ul {
                display: flex;
                justify-content: space-between;
                list-style: none;

                li {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: max-content;
                    margin: 0px;

                    .btnMinhaConta {
                        background-color: var(--cor-cinza);
                        padding: 10px;

                        &:hover {
                            background-color: var(--cor-cinza-hover);
                        }
                    }

                    &:last-child {
                        .btnCarrinho {
                            color: #FFF;
                            background-image: url('/imagens/carrinho.png');
                            background-repeat: no-repeat;
                            background-position: left center;
                            background-color: var(--cor-cinza);
                            padding: 10px 10px 10px 35px;
                            background-position-x: 5px;
                            border-radius: 25px;

                            &:hover {
                                background-color: var(--cor-cinza-hover);
                            }
                        }
                    }
                }
            }

            a {
                font-size: 22px;
                text-decoration: none;
                color: #fff;
                background-color: var(--cor-vermelha);
                text-align: center;
                border-radius: 10px;
                padding: 3px;
                margin-left: 3px;
                margin-right: 3px;

                &:hover {
                    background-color: var(--cor-vermelha-hover);
                }
            }

            .btnEntrar {
                background-color: var(--cor-vermelha);
                padding: 5px 10px;
                border-radius: 5px;
                margin-right: 10px;
            }

            .btnEntrar:hover {
                background-color: var(--cor-vermelha-hover);
            }

            .btnCadastrar {
                background-color: var(--cor-cinza);
                padding: 5px 10px;
                border-radius: 5px;
            }

            .btnCadastrar:hover {
                background-color: var(--cor-cinza-hover);
            }
        }

        .nomecliente {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 5px;
            margin-bottom: 5px;

            .btnSair {
                text-decoration: none;
                color: #fff;
                font-size: 18px;
                background-color: var(--cor-vermelha);
                border-radius: 10px;
                padding: 5px;

                &:hover {
                    background-color: var(--cor-vermelha-hover);
                }
            }
        }
    }
}

#conteudo {
    display: flex;
    justify-content: center;
    align-items: center;
}

#rodape {
    max-height: max-content;
    background-color: var(--cor-vermelha);
    color: #FFF;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    .container {
        display: flex;
        justify-content: space-between;
        width: 90%;
        max-width: 1400px;
        flex-wrap: wrap;
        margin-left: 15px;
        font-size: 15px;
        font-weight: normal;

        h2 {
            font-size: 20px;
            margin-bottom: 20px;
            margin-top: 10px;
        }

        li {
            list-style: none;
            margin-bottom: 3px;

            a {
                text-decoration: none;
                color: #FFF;
            }

            a:hover {
                color: var(--cor-cinza);
            }
        }
    }

    .contato {
        .whatsapp {
            background-image: url('../imagens/whatsapp.png') !important;
            background-repeat: no-repeat !important;
            background-position: 0px !important;
            font-weight: bold !important;
            padding-left: 30px !important;
            min-height: 25px;
            min-width: max-content;
            display: flex;
            align-items: center;
        }

        .email {
            background-image: url('../imagens/email.png') !important;
            background-repeat: no-repeat !important;
            background-position: 0px !important;
            font-weight: bold !important;
            padding-left: 30px !important;
            min-height: 25px;
            min-width: max-content;
            display: flex;
            align-items: center;
        }
    }

    .redessociais {
        .instagram {
            background-image: url('../imagens/instagram.png') !important;
            background-repeat: no-repeat !important;
            background-position: 0px !important;
            font-weight: bold !important;
            padding-left: 30px !important;
            min-height: 25px;
            min-width: max-content;
            display: flex;
            align-items: center;
        }

        .facebook {
            background-image: url('../imagens/facebook.png') !important;
            background-repeat: no-repeat !important;
            background-position: 0px !important;
            font-weight: bold !important;
            padding-left: 30px !important;
            min-height: 25px;
            min-width: max-content;
            display: flex;
            align-items: center;
        }
    }

    .direitos {
        display: flex;
        font-size: 18px;
        justify-content: center;
        align-items: center;
        margin-top: 50px;
        text-align: center;
    }
}

#inicio {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 20px;


    .busca {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        /* border: solid 1px var(--cor-cinza-hover); */
        border-radius: 10px;
        max-width: 1000px;
        margin-top: 20px;
        box-sizing: border-box;
        flex-direction: column;
        

        .opts {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: nowrap;
            flex-direction: row;
            gap: 5px;
        }

        @media (max-width:600px) {
            border: none;

            #busca {
                border: solid 1px var(--cor-cinza-hover);
                border-radius: 10px;
                text-align: center;
                margin-bottom: 5px;
                margin-left: 0px !important;
            }

            form {
                flex-direction: column;
            }

            button {
                border: solid 1px var(--cor-cinza-hover) !important;
                border-radius: 10px;
                margin-top: 5px;
            }

            button:hover {
                cursor: pointer;
            }

            .opts {
                flex-wrap: wrap !important;
                gap: 5px;
            }
        }

        form {
display: flex
;
            justify-content: center;
            align-items: center;
            width: 100%;
            gap: 20px;
            flex-direction: column;

            input {
border: solid 1px #ccc;
                margin-left: 5px;
                width: 80%;
                text-align: center;
                padding: 10px;
                min-width: 200px;
                /* border: none; */
                border-radius: 20px;
                font-size: 20px;
            }

            input:active,
            input:focus {
                outline: none;
            }

            button {
                background-color: var(--cor-vermelha);
                border-radius: 5px;
                color: #fff;
                padding: 10px;
                border: none;
                font-size: 20px;
            }

            button:hover {
                background-color: var(--cor-vermelha-hover);
            }

            select {
                height: 30px;
                margin-right: 5px;
                padding: 2px;
                margin-bottom: 0px;
                border: none;
                border-radius: 10px;
                font-size: 17px;
                background-color: var(--cor-cinza);
                color: #FFF;

                option {
                    background-color: #FFF;
                    color: var(--cor-cinza);
                    font-size: 13px;
                    font-weight: bold;
                    padding: 5px;
                    border: none;
                    border-radius: 5px;
                }

                option:active,
                option:focus {
                    outline: none;
                }
            }

            select:last-child {
                margin-right: 0px;
            }
        }
    }

    #ultimoseventos {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        border: 1px solid transparent;
        border-image: linear-gradient(to right, transparent, var(--cor-cinza-hover), transparent) 1;
        border-bottom: none;
        margin-top: 20px;

        h2 {
            margin-top: 20px;
            margin-bottom: 20px;
            font-size: 30px;
            color: var(--cor-cinza);
        }

        ;
    }

    .vitrine {
        width: 100vw;
        max-width: 1400px;
        display: flex;
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;

        a {
            outline: none;
            text-decoration: none;
        }

        .itemvitrine {
            width: 250px;
            height: 350px;
            margin: 10px;
            box-shadow: 2px 0px 28px -8px rgba(0, 0, 0, 0.75);
            -webkit-box-shadow: 2px 0px 28px -8px rgba(0, 0, 0, 0.75);
            -moz-box-shadow: 2px 0px 28px -8px rgba(0, 0, 0, 0.75);

            .foto {
                width: 250px;
                height: 250px;
                overflow: hidden;
                display: flex;
                align-items: center;
                justify-content: center;
                position: relative;

                .marca {
                    z-index: 1;
                    position: absolute;
                    margin-top: -170px;
                    width: 50px;
                    height: 50px;
                    background-image: url(../imagens/marcacima.png);
                    background-repeat: no-repeat;
                    margin-left: 180px;
                }

                img {
                    outline: none;
                    border: none;
                    margin: 0;
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    object-position: center;
                    z-index: 0;
                }
            }

            .datalocal {
                position: absolute;
                height: 25px;
                width: 250px;
                margin-top: -11px;
                z-index: 1;
                display: flex;
                justify-content: space-between;
                align-items: center;

                .data {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    font-size: 15px;
                    font-weight: bold;
                    height: 30px;
                    background-color: black;
                    color: #FFF;
                    padding-right: 15px;
                    border-bottom-right-radius: 20px;
                    border-top-right-radius: 5px;
                    padding-left: 5px;
                }

                .local {
                    display: flex;
                    align-items: center;
                    font-size: 11px;
                    padding-top: 2px;
                    padding-bottom: 2px;
                    text-align: right;
                    max-width: 120px;
                    min-height: 22px;
                    padding-left: 15px;
                    background-color: #FFF;
                    border-top-left-radius: 10px;
                    border-bottom-left-radius: 10px;
                    background-image: url(../imagens/fundolocal.png);
                    background-repeat: no-repeat;
                    background-position-x: 2px;
                    background-position-y: center;
                    padding-right: 2px;
                    outline: none;
                    color: var(--cor-cinza);
                }
            }

            .catnome {
                background-color: var(--cor-vermelha);
                position: absolute;
                border-top: solid 5px #FFF;
                width: 250px;
                height: 100px;
                z-index: 0;
                padding-top: 15px;
                text-align: left;

                .categoria {
                    width: 200px;
                    margin-right: auto;
                    margin-left: auto;
                    font-size: 10px;
                    color: #FFF;
                    margin-top: 10px;
                }

                .nome {
                    width: 200px;
                    margin-right: auto;
                    margin-left: auto;
                    font-size: 14px;
                    color: #FFF;
                    font-weight: bold;
                }
            }
        }
    }

    #proximoseventos {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;

        h2 {
            margin-top: 20px;
            margin-bottom: 20px;
            font-size: 30px;
            color: var(--cor-cinza);

            spam {
                font-size: 20px;
            }
        }

        ;
    }

    .vitrineproximo {
        width: 100vw;
        max-width: 1400px;
        display: flex;
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;

                    .itemproximo {
            width: 180px;
            height: 300px;
            margin: 10px;

            .foto {
                position: absolute;
                width: 180px;
                height: 180px;
                background-image: url(../imagens/cimaeventofuturo.png);
                background-repeat: no-repeat;

                .marca {
                    z-index: 2;
                    position: absolute;
                    width: 35px;
                    height: 35px;
                    background-image: url(../imagens/marcacimaproximos.png);
                    background-repeat: no-repeat;
                    margin-top: 10px;
                    margin-left: 140px;
                }

                img {
                    outline: none;
                    border: none;
                    margin: 0;
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    object-position: center;
                    z-index: 0;
                }
            }

            .datalocal {
                position: absolute;
                margin-top: 165px;
                height: 25px;
                width: 180px;
                z-index: 1;
                display: flex;
                justify-content: space-between;
                align-items: center;

                .data {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    font-size: 10px;
                    font-weight: bold;
                    height: 30px;
                    background-color: black;
                    color: #FFF;
                    padding-right: 15px;
                    border-bottom-right-radius: 20px;
                    border-top-right-radius: 5px;
                    padding-left: 5px;
                }

                .local {
                    display: flex;
                    align-items: center;
                    font-size: 9px;
                    padding-top: 2px;
                    padding-bottom: 2px;
                    text-align: right;
                    max-width: 80px;
                    min-height: 22px;
                    padding-left: 15px;
                    background-color: #FFF;
                    border-top-left-radius: 10px;
                    border-bottom-left-radius: 10px;
                    background-image: url(../imagens/fundolocal.png);
                    background-repeat: no-repeat;
                    background-position-x: 2px;
                    background-position-y: center;
                    padding-right: 2px;
                }
            }

            .catnome {
                background-color: var(--cor-vermelha);
                position: absolute;
                border-top: solid 5px #FFF;
                width: 180px;
                height: 120px;
                margin-top: 180px;
                z-index: 0;
                padding-top: 10px;
                text-align: left;

                .categoria {
                    width: 160px;
                    margin-right: auto;
                    margin-left: auto;
                    font-size: 8px;
                    color: #FFF;
                }

                .nome {
                    width: 160px;
                    margin-right: auto;
                    margin-left: auto;
                    font-size: 12px;
                    color: #FFF;
                    font-weight: bold;
                }
            }
        }
    }

    .vertodos {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: 20px;
        padding-bottom: 20px;
        border: 1px solid transparent;
        border-image: linear-gradient(to right, transparent, var(--cor-cinza-hover), transparent) 1;
        border-top: none;

        h2 {
            a {
                text-decoration: none;
                color: var(--cor-vermelha);
                font-size: 20px;
            }

            a:hover {
                color: var(--cor-vermelha-hover);
            }
        }
    }

    .comofunciona {
        width: 100%;
        border: 1px solid transparent;
        border-image: linear-gradient(to right, transparent, var(--cor-cinza-hover), transparent) 1;
        border-top: none;

        h2 {
            color: var(--cor-cinza);
            text-align: center;
            margin-top: 20px;
        }

        .paipasso {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            margin-top: 20px;
            width: 100%;

            .passo {
                max-width: 300px;
                margin-right: 15px;
                min-width: 150px;
                height: 200px;

                h2 {
                    color: var(--cor-vermelha);
                    font-size: 25px;
                    text-align: left;

                    span {
                        border: solid 1px var(--cor-vermelha);
                        padding: 2px 8px;
                        margin-right: 10px;
                        border-radius: 25px;
                    }
                }

                p {
                    margin-top: 5px;
                    font-size: 20px;
                    text-align: left;
                }
            }
        }
    }
}

#eventos {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100dvw;
    max-width: 1400px;
    border: 1px solid transparent;
    border-image: linear-gradient(to right, transparent, var(--cor-cinza-hover), transparent) 1;
    border-bottom: none;
    margin-top: 20px;

    .busca {
        width: 100%;
        display: flex;

        form {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: row;
            flex-wrap: wrap;
            gap: 20px;

            button {
                color: var(--cor-cinza);
                padding: 10px;
                border: solid 1px var(--cor-cinza-hover);
                font-size: 20px;
                border-radius: 10px;
                background-color: transparent;
            }

            button:hover {
                color: #000;
            }

            #busca {
                max-width: 500px;
                margin: 5px;
                width: 100%;
                height: 50px;
                color: var(--cor-cinza);
                text-align: center;
                border-radius: 10px;
                padding: 10px;
                font-size: 20px;
                font-weight: bold;
            }

            .dataevento {
                label {
                    color: var(--cor-cinza);
                    font-size: 15px;
                    font-weight: bold;
                }

                #dataInput {
                    text-align: center;
                    width: 100px;
                    height: 40px;
                    color: var(--cor-cinza);
                    border-radius: 5px;
                    padding: 5px;
                    font-size: 15px;
                }
            }

            .opts {
                display: flex;

                select {
                    height: 30px;
                    margin-right: 5px;
                    padding: 2px;
                    margin-bottom: 0px;
                    border: none;
                    border-radius: 10px;
                    font-size: 17px;
                    background-color: var(--cor-cinza);
                    color: #FFF;

                    option {
                        background-color: #FFF;
                        color: var(--cor-cinza);
                        font-size: 14px;
                        font-weight: bold;
                        padding: 5px;
                        border: none;
                        text-align: center;
                        border-radius: 5px;
                    }

                    option:active,
                    option:focus {
                        outline: none;
                    }
                }

                select:last-child {
                    margin-right: 0px;
                }
            }
        }
    }

    h2 {
        margin-top: 20px;
        font-size: 30px;
        color: var(--cor-cinza);
    }

    ;

    .vitrine {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        height: 400px;
        width: 100%;
        border: 1px solid transparent;
        border-image: linear-gradient(to right, transparent, var(--cor-cinza-hover), transparent) 1;
        border-bottom: none;
        margin-top: 20px;

        .evento {
            width: 250px;
            height: 350px;
            margin: 10px;

            .foto {
                .marca {
                    z-index: 1;
                    position: absolute;
                    margin-top: 20px;
                    width: 50px;
                    height: 50px;
                    background-image: url(../imagens/marcacima.png);
                    background-repeat: no-repeat;
                    margin-left: 180px;
                }

                img {
                    margin: 0px;
                    position: absolute;
                    width: 250px;
                    height: 250px;
                    z-index: 0;
                }
            }

            .datalocal {
                position: absolute;
                margin-top: 240px;
                height: 25px;
                width: 250px;
                z-index: 1;
                display: flex;
                justify-content: space-between;
                align-items: center;

                .data {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    font-size: 15px;
                    font-weight: bold;
                    height: 30px;
                    background-color: black;
                    color: #FFF;
                    padding-right: 15px;
                    border-bottom-right-radius: 20px;
                    border-top-right-radius: 5px;
                    padding-left: 5px;
                }

                .local {
                    display: flex;
                    align-items: center;
                    font-size: 11px;
                    padding-top: 2px;
                    padding-bottom: 2px;
                    text-align: right;
                    max-width: 120px;
                    min-height: 22px;
                    padding-left: 15px;
                    background-color: #FFF;
                    border-top-left-radius: 10px;
                    border-bottom-left-radius: 10px;
                    background-image: url(../imagens/fundolocal.png);
                    background-repeat: no-repeat;
                    background-position-x: 2px;
                    background-position-y: center;
                    padding-right: 2px;
                }
            }

            .catnome {
                background-color: var(--cor-vermelha);
                position: absolute;
                border-top: solid 5px #FFF;
                width: 250px;
                height: 100px;
                margin-top: 250px;
                z-index: 0;
                padding-top: 15px;
                text-align: left;

                .categoria {
                    width: 200px;
                    margin-right: auto;
                    margin-left: auto;
                    font-size: 10px;
                    color: #FFF;
                    margin-top: 10px;
                }

                .nome {
                    width: 200px;
                    margin-right: auto;
                    margin-left: auto;
                    font-size: 18px;
                    color: #FFF;
                    font-weight: bold;
                }
            }
        }
    }
}

#proximoseventos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100dvw;

    h2 {
        margin-top: 20px;
        margin-bottom: 20px;
        font-size: 30px;
        color: var(--cor-cinza);

        spam {
            font-size: 20px;
        }
    }

    ;

    .proxeventos {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        width: 100dvw;
        max-width: 1400px;

        .vitrineproximo {
            width: 100dvw;
            max-width: 1400px;
            display: flex;
            justify-content: center;
            flex-direction: row;
            flex-wrap: wrap;
            margin-top: 20px;
            padding-top: 20px;
            border: 1px solid transparent;
            border-image: linear-gradient(to right, transparent, var(--cor-cinza-hover), transparent) 1;
            border-bottom: none;

            .itemproximo {
                width: 180px;
                height: 300px;
                margin: 10px;

                .foto {
                    position: absolute;
                    width: 180px;
                    height: 180px;
                    background-image: url(../imagens/cimaeventofuturo.png);
                    background-repeat: no-repeat;

                    .marca {
                        z-index: 2;
                        position: absolute;
                        width: 35px;
                        height: 35px;
                        background-image: url(../imagens/marcacimaproximos.png);
                        background-repeat: no-repeat;
                        margin-top: 10px;
                        margin-left: 140px;
                    }

                    img {
                        margin: 0px;
                        position: absolute;
                        width: 180px;
                        height: 180px;
                        object-fit: cover;
                        z-index: 1;
                    }
                }

                .datalocal {
                    position: absolute;
                    margin-top: 165px;
                    height: 25px;
                    width: 180px;
                    z-index: 1;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;

                    .data {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        font-size: 10px;
                        font-weight: bold;
                        height: 30px;
                        background-color: black;
                        color: #FFF;
                        padding-right: 15px;
                        border-bottom-right-radius: 20px;
                        border-top-right-radius: 5px;
                        padding-left: 5px;
                    }

                    .local {
                        display: flex;
                        align-items: center;
                        font-size: 9px;
                        padding-top: 2px;
                        padding-bottom: 2px;
                        text-align: right;
                        max-width: 80px;
                        min-height: 22px;
                        padding-left: 15px;
                        background-color: #FFF;
                        border-top-left-radius: 10px;
                        border-bottom-left-radius: 10px;
                        background-image: url(../imagens/fundolocal.png);
                        background-repeat: no-repeat;
                        background-position-x: 2px;
                        background-position-y: center;
                        padding-right: 2px;
                    }
                }

                .catnome {
                    background-color: var(--cor-vermelha);
                    position: absolute;
                    border-top: solid 5px #FFF;
                    width: 180px;
                    height: 120px;
                    margin-top: 180px;
                    z-index: 0;
                    padding-top: 10px;
                    text-align: left;

                    .categoria {
                        width: 160px;
                        margin-right: auto;
                        margin-left: auto;
                        font-size: 8px;
                        color: #FFF;
                    }

                    .nome {
                        width: 160px;
                        margin-right: auto;
                        margin-left: auto;
                        font-size: 12px;
                        color: #FFF;
                        font-weight: bold;
                    }
                }
            }
        }
    }
}

#cadastrar {
    width: 100dvw;
    margin-top: 20px;
    margin-bottom: 20px;
    min-width: 90%;
    max-width: 1400px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    .cadastro {
        max-width: 1400px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        flex-direction: row;

        @media(max-width:900px) {
            flex-direction: column;
        }

        .bannercadastro {
            width: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            flex-direction: row;
            min-height: 100%;
            min-width: 250px;
            max-width: 70%;

            @media(max-width:800px) {
                display: none;
            }

            img {
                width: 100%;
                max-width: 500px;
                height: auto;

                @media(max-width:900px) {
                    width: 50%;
                }
            }
        }

        .formcadastro {
            width: 50%;
            min-width: 250px;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;

            @media(max-width:900px) {
                min-width: 100%;
                max-width: 100%;
            }

            form {
                display: flex;
                width: 100%;
                justify-content: center;
                align-items: center;
                flex-wrap: wrap;
                flex-direction: column;

                h2 {
                    margin-top: 20px;
                    margin-bottom: 20px;
                    font-size: 20px;
                    color: var(--cor-cinza);
                    text-align: center;
                }

                input {
                    padding: 5px;
                    margin: 5px;
                    min-height: 25px;
                    min-width: 70%;
                    max-width: 300px;
                    border-radius: 10px;
                    text-align: center;
                    border: solid 2px var(--cor-cinza);
                    font-size: 20px;
                    color: var(--cor-cinza);
                }

                input::placeholder {
                    color: var(--cor-cinza);
                }

                button {
                    padding: 5px;
                    margin: 5px;
                    min-height: 25px;
                    max-width: 70%;
                    min-width: 50%;
                    border-radius: 10px;
                    border: none;
                    background-color: var(--cor-vermelha);
                    color: #FFF;
                    cursor: pointer;
                    font-size: 20px;
                }

                button:hover {
                    background-color: var(--cor-vermelha-hover);
                }
            }

            a {
                color: var(--cor-cinza);
                text-decoration: none;
                margin-top: 20px;
            }

            a:hover {
                color: var(--cor-cinza-hover);
            }
        }
    }
}

#entrar {
    width: 100dvw;
    display: flex;
    justify-content: center;
    align-items: center;

    h2 {
        margin-top: 20px;
        margin-bottom: 20px;
        font-size: 20px;
        color: var(--cor-cinza);
        text-align: center;
    }

    .conteudoentrar {
        max-width: 1400px;
        width: 100%;
        margin-top: 20px;
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        flex-direction: row;

        .bannerentrar {
            width: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            flex-direction: row;
            min-height: 100%;
            min-width: 250px;
            max-width: 70%;

            @media(max-width:800px) {
                display: none;
            }

            img {
                width: 100%;
                max-width: 500px;
                height: auto;

                @media(max-width:900px) {
                    width: 50%;
                }
            }
        }

        .formentrar {
            width: 50%;
            min-width: 250px;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;

            @media(max-width:900px) {
                min-width: 100%;
                max-width: 100%;
            }

            form {
                display: flex;
                justify-content: center;
                align-items: center;
                flex-wrap: wrap;
                flex-direction: column;
                width: 100%;

                h2 {
                    margin-top: 20px;
                    margin-bottom: 20px;
                    font-size: 20px;
                    color: var(--cor-cinza);
                    text-align: center;
                }

                input {
                    padding: 5px;
                    margin: 5px;
                    min-height: 25px;
                    min-width: 70%;
                    max-width: 300px;
                    border-radius: 10px;
                    text-align: center;
                    border: solid 2px var(--cor-cinza);
                    font-size: 20px;
                    color: var(--cor-cinza);
                }

                input::placeholder {
                    color: var(--cor-cinza);
                }

                button {
                    padding: 5px;
                    margin: 5px;
                    min-height: 25px;
                    max-width: 70%;
                    min-width: 50%;
                    border-radius: 10px;
                    border: none;
                    background-color: var(--cor-vermelha);
                    color: #FFF;
                    cursor: pointer;
                    font-size: 20px;
                }

                button:hover {
                    background-color: var(--cor-vermelha-hover);
                }
            }

            a {
                color: var(--cor-cinza);
                text-decoration: none;
                margin-top: 20px;
            }

            a:hover {
                color: var(--cor-cinza-hover);
            }
        }
    }
}

#cadastrosucesso {
    width: 100dvw;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: var(--cor-cinza);

    .msgsucesso {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        flex-direction: column;
        margin: 20px;

        h2 {
            margin-top: 20px;
            margin-bottom: 20px;
            font-size: 25px;
            color: var(--cor-vermelha);
            text-align: center;
        }

        a {
            color: var(--cor-cinza);
            text-decoration: none;
            margin-top: 20px;
            background-color: #FF0038;
            color: #FFF;
            padding: 5px;
            border-radius: 10px;
        }

        a:hover {
            background-color: var(--cor-vermelha-hover);
        }
    }
}

#detalhesevento {
    width: 100dvw;
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    justify-content: center;

    p {
        font-size: 16px;
        font-weight: bold;
        color: var(--cor-cinza);
    }

    .descontosdoevento {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;

        span {
            font-size: 20px;
            color: #00c200;
        }

        h2 {
            margin-bottom: 10px;
            font-size: 20px;
            font-weight: bold;
            color: #333;
        }
    }

    .nomebusca {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 10px;

        h2 {
            font-size: 25px;
            font-weight: bold;
            color: #333;
            margin-bottom: 10px;
        }
    }

    .buscafacial {
        display: flex;
        justify-content: center;
        align-items: center;

        button {
            background-image: url('/imagens/buscafacialico.png');
            background-repeat: no-repeat;
            background-position: center left;
            background-position-x: 10px;
            padding: 20px 20px 20px 45px;
            font-size: 20px;
            color: #FFF;
            background-color: var(--cor-cinza);
            border-radius: 10px;
            border: none;
            outline: none;

            &:hover {
                background-color: var(--cor-cinza-hover);
            }
        }
    }

    .vitrinefotos {
        display: flex;
        max-width: 1400px;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        align-items: center;

        .boxfoto {
            display: flex;
            padding: 10px;
            border-radius: 10px;
            justify-content: center;
            align-items: center;
            gap: 20px;
            flex-direction: column;
            box-shadow: 2px 0px 28px -8px rgba(0, 0, 0, 0.75);
            -webkit-box-shadow: 2px 0px 28px -8px rgba(0, 0, 0, 0.75);
            -moz-box-shadow: 2px 0px 28px -8px rgba(0, 0, 0, 0.75);

            .acoes-foto {
                display: flex;
                padding: 10px;
                border-radius: 10px;
                justify-content: center;
                align-items: center;
                gap: 20px;
                flex-direction: column;
            }

            img {
                max-width: 100%;
                height: auto;
                display: block;
                border-radius: 10px;
                max-height: 350px;
            }

            button {
                background-image: url('/imagens/carrinho.png');
                background-repeat: no-repeat;
                background-position: center left;
                background-position-x: 10px;
                padding: 10px 10px 10px 40px;
                font-size: 16px;
                border-radius: 10px;
                color: #fff;
                border: none;
                outline: none;
                font-weight: bold;
                background-color: var(--cor-vermelha);

                &:hover {
                    background-color: var(--cor-vermelha-hover);
                }
            }

            a {
                background-image: url('/imagens/carrinho.png');
                background-repeat: no-repeat;
                background-position: center left;
                background-position-x: 10px;
                padding: 10px 10px 10px 40px;
                font-size: 16px;
                border-radius: 10px;
                color: #fff;
                border: none;
                outline: none;
                text-decoration: none;
                font-weight: bold;
                background-color: var(--cor-vermelha);

                &:hover {
                    background-color: var(--cor-vermelha-hover);
                }
            }
        }
    }
}

#soufotografo {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    flex-direction: column;
    margin-top: 20px;

    .menufotografo {
        ul {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 20px;

            li {
                list-style: none;

                .msgcadastro {
                    color: #40b640;
                    font-size: 30px;
                }

                a {
                    background-color: var(--cor-cinza);
                    color: #FFF;
                    text-decoration: none;
                    font-weight: bold;
                    padding: 5px;
                    border-radius: 10px;

                    &:hover {
                        background-color: var(--cor-cinza-hover);
                    }
                }
            }
        }
    }

    .conteudosoufotografo {
        margin-top: 20px;

        p {
            text-align: center;
            color: var(--cor-cinza);
            font-size: 20px;
        }

        h1 {
            text-align: center;
            margin-top: 20px;
            margin-bottom: 20px;
            font-size: 25px;
            color: var(--cor-vermelha);
        }

        h2 {
            font-size: 20px;
            margin-top: 20px;
            margin-bottom: 20px;
            text-align: center;
            color: var(--cor-vermelha);
        }

        .btnCadastrarFotografo {
            background-color: var(--cor-vermelha);
            color: #FFF;
            text-decoration: none;
            font-weight: bold;
            padding: 5px;
            border-radius: 10px;
            text-align: center;
            margin-top: 20px;
            margin-bottom: 20px;
            cursor: pointer;

            &:hover {
                background-color: var(--cor-vermelha-hover);
            }
        }

        div {
            max-width: 1400px;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }
    }

    .bannerfotografo {
        display: flex;
        margin-bottom: 20px;

        a {
            cursor: pointer;
        }

        img {
            width: 100%;
            height: auto;
        }
    }
}

#cadastrofotografo {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;

    .conteudocadastrofotografo {
        display: flex;
        flex-direction: column;
        background-color: #666666;
        padding: 20px;
        border-radius: 20px;
        max-width: min-content;
        width: 100%;

        h1 {
            font-size: 30px;
            font-weight: bold;
            text-align: center;
            color: #FFF;
            margin-bottom: 20px;
        }

        form {
            display: flex;
            flex-direction: column;
            gap: 20px;

            p {
                color: #FFF;
                text-align: center;
                font-size: 20px;
                font-weight: bold;
            }

            input {
                padding: 5px;
                font-size: 20px;
                color: var(--cor-cinza);
                text-align: center;
                border-radius: 5px;
                border: none;
            }

            button {
                background-color: #40b640;
                color: #FFF;
                text-decoration: none;
                font-size: 20px;
                font-weight: bold;
                padding: 5px;
                border-radius: 10px;
                text-align: center;
                margin-top: 20px;
                margin-bottom: 20px;
                border: none;
                cursor: pointer;

                &:hover {
                    background-color: rgb(86, 207, 86);
                }
            }
        }

        .btnCancelarCadastro {
            background-color: var(--cor-vermelha);
            color: #FFF;
            text-decoration: none;
            font-weight: bold;
            font-size: 20px;
            padding: 5px;
            border-radius: 10px;
            text-align: center;
            margin-top: 20px;
            margin-bottom: 20px;
            cursor: pointer;

            &:hover {
                background-color: var(--cor-vermelha-hover);
            }
        }
    }
}

#conteudocheckout {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;

    form {
        min-width: 100%;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
    }

    .step {
        display: none;
    }

    .step.active {
        display: block;
    }

    .stepper {
        display: flex;
        justify-content: space-between;
        margin-bottom: 30px;
        min-width: 100%;
    }

    .stepper div {
        flex: 1;
        padding: 10px;
        border-bottom: 3px solid #ccc;
        text-align: center;
        color: #999;
    }

    .stepper .active-step {
        border-bottom-color: var(--cor-vermelha-hover);
        color: var(--cor-vermelho);
        font-weight: bold;
    }

    .form-group {
        margin-bottom: 15px;
        text-align: center;
    }

    input[type="text"],
    input[type="email"],
    input[type="number"] {
        width: 100%;
        padding: 8px;
        border-radius: 5px;
        font-size: 18px;
        color: var(--cor-cinza);
        border: solid 1px var(--cor-cinza-hover);
        text-align: center;
    }

    #botoesPagamento {
        display: flex;
        gap: 10px;
        margin-top: 8px;

        #btnPix {
            background-image: url('/imagens/pixlogo.png');
            background-repeat: no-repeat;
            background-position-x: 5px;
            background-position-y: center;
        }

        #btnCredito {
            background-image: url('/imagens/cardlogo.png');
            background-repeat: no-repeat;
            background-position-x: 5px;
            background-position-y: center;
        }
    }

    .botao-pagamento {
        padding: 15px 20px;
        border: 2px solid #ccc;
        background-color: #f9f9f9;
        cursor: pointer;
        border-radius: 5px;
        font-weight: bold;
        transition: 0.3s;
        padding-left: 45px;
    }

    .botao-pagamento:hover {
        background-color: #eee;

    }

    .botao-pagamento.selecionado {
        background-color: #007bff;
        color: white;
        border-color: #007bff;
    }

    .buttons {
        margin-top: 20px;
        display: flex;
        /* margin-top: 20px; */
        justify-content: space-around;
        flex-direction: row;
        width: 100%;
        flex-wrap: nowrap;

        button {
            border-radius: 5px;
            padding: 10px;
            font-size: 18px;
            color: #FFF;
            text-decoration: none;
            border: none;
            min-width: 130px;
        }
    }

    #prevBtn {
        background-color: var(--cor-cinza);

        &:hover {
            background-color: var(--cor-cinza-hover);
        }
    }

    #nextBtn {
        background-color: var(--cor-verde);

        &:hover {
            background-color: var(--cor-verde-hover);
        }
    }

    button:disabled {
        background-color: #ccc;
        cursor: not-allowed;
    }
}




#carrinhodecompras {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    flex-direction: column;
    margin-bottom: 20px;
    margin-top: 20px;
    gap: 20px;

    p {
        font-size: 20px;
        color: var(--cor-cinza);

    }

    a {
        padding: 5px;
        border-radius: 5px;
        color: #fff;
        text-decoration: none;
        font-size: 16px;
        background-color: var(--cor-verde);

        &:hover {
            background-color: var(--cor-verde-hover);
        }
    }

    h2 {
        margin-top: 10px;
        margin-bottom: 20px;
    }

    #navcarrinho {
        width: 100%;
        margin-top: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;

        form {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 10px;

            input {
                padding: 5px;
                text-align: center;
                border-radius: 5px;
                color: var(--cor-cinza);
                font-size: 18px;
            }

            button {
                padding: 5px;
                border-radius: 5px;
                color: #fff;
                border: none;
            }

            .removercupom {
                background-color: var(--cor-vermelha);

                &:hover {
                    background-color: var(--cor-vermelha-hover);
                }
            }

            .aplicarcupom {
                background-color: var(--cor-verde);

                &:hover {
                    background-color: var(--cor-verde-hover);
                }
            }
        }

        ul {
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: space-evenly;
            flex-wrap: wrap;
            gap: 10px;

            li {
                padding: 10px;

                a {
                    background-color: var(--cor-cinza);
                    border-radius: 5px;
                    padding: 10px;
                    font-size: 18px;
                    color: #FFF;
                    text-decoration: none;

                    &:hover {
                        background-color: var(--cor-cinza-hover);
                    }
                }

                &:last-child {
                    a {
                        background-color: var(--cor-verde);

                        &:hover {
                            background-color: var(--cor-verde-hover);
                        }

                    }
                }
            }
        }
    }

    #eventosdocarrinho {
        max-width: 1400px;
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        align-items: center;

        .eventocarrinho {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            max-width: max-content;
            border-radius: 15px;
            border: solid 1px var(--cor-cinza);
            padding: 10px;

            .itensevento {
                width: 100%;
                display: flex;
                justify-content: space-around;
                align-items: center;
                flex-direction: row;
                flex-wrap: wrap;
                gap: 5px;
                padding: 5px;

                .item {
                    border: solid 1px #ccc;
                    border-radius: 5px;
                    padding: 5px;

                    ul {
                        gap: 5px;
                        list-style: none;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        flex-direction: column;

                        li {
                            img {
                                max-width: 80px;
                                height: auto;
                            }

                            form {
                                button {
                                    background-color: var(--cor-vermelha);
                                    padding: 3px;
                                    font-size: 15px;
                                    border-radius: 5px;
                                    color: #fff;
                                    border: none;

                                    &:hover {
                                        background-color: var(--cor-vermelha-hover);
                                    }
                                }
                            }
                        }
                    }
                }
            }

        }
    }
}