: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;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    #title {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        min-height: 90px;
        background-color: #FF0038;

        h2 {
            font-size: 25px;
            color: #FFF;
        }
    }

    h2 {
        font-size: 20px;
        color: var(--cor-cinza);
        text-align: center;
    }

    label {
        color: var(--cor-cinza-hover);
        font-weight: bold;
    }

    p {
        color: var(--cor-cinza-hover);
        font-weight: bold;
    }

    a {
        display: flex;
        padding: 5px;
        text-decoration: none;
        outline: none;
        border-radius: 5px;
        cursor: pointer;
    }

    button {
        cursor: pointer;
        border: none;
    }

    input::placeholder {
        color: var(--cor-cinza);
    }

    select {
        color: var(--cor-cinza);
    }
}

body {
    background-image: url('/img/fundo.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}

#conteudototal {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;

    .sistema {
        width: 100%;
    }
}

.formulario {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: center;

    input {
        min-width: max-content;
        max-width: 150px;
        width: 100%;
        border-radius: 10px;
        border: solid 1px var(--cor-cinza);
        padding: 5px;
        font-size: 17px;
        font-weight: bold;
        background-color: #FFF;
        outline: none;
        color: var(--cor-cinza);
        text-align: center;

        &::placeholder {
            color: #333;
        }
    }

    button {
        padding: 5px;
        font-size: 16px;
        font-weight: bold;
        color: #FFF;
        background-color: var(--cor-cinza);
        border-radius: 10px;
        min-width: 100px;

        &:hover {
            background-color: var(--cor-cinza-hover);
        }
    }
}

#menu {
    display: flex;
    min-width: 200px;
    max-width: 200px;
    flex-direction: column;
    flex-wrap: nowrap;
    background-color: #eee;
    min-height: 100dvh;

    .logo {
        min-height: 90px;
        display: flex;
        justify-content: center;
        align-items: center;

        img {
            height: auto;
            max-width: 200px;
        }
    }

    .areafotografo {
        min-height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #FF0038;

        h2 {
            color: #FFF;
        }
    }

    ul {
        list-style: none;
        display: flex;
        align-items: center;
        flex-direction: column;
        flex-wrap: wrap;
        min-width: 100%;

        li {
            text-align: center;
            min-width: 100%;

            a {
                text-align: center;
                color: var(--cor-cinza);
                font-size: 20px;
                font-weight: 600;
                text-align: center;
                width: 100%;
                filter: none;
                background-color: transparent;

                &:hover {
                    background-color: #ddd;
                }
            }

            &:last-child {
                margin-top: auto;
                position: fixed;
                bottom: 0px;
                left: 0px;
                min-width: 200px !important;
                max-width: 200p;

                a {
                    color: #FFF;
                    background-color: var(--cor-vermelha);

                    &:hover {
                        background-color: var(--cor-vermelha-hover)
                    }
                }
            }
        }
    }
}

#login {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100dvw;
    min-height: 100dvh;

    .formlogin {
        display: flex;
        min-width: 250px;
        padding: 10px;
        background-color: #FFF;
        border-radius: 20px;
        max-width: 350px;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 20px;

        img {
            max-width: 250px;
            height: auto;
            padding: 5px;
            border-radius: 25px;
        }

        h2 {
            text-align: center;
            font-size: 25px;
            color: #333;
        }
    }
}

#eventos {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
}

#menueventos {
    display: flex;
    flex-direction: row;
    width: 100%;
    background-color: transparent;
    padding: 5px 0px 5px 10px;
    align-items: center;

    ul {
        list-style: none;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        align-items: center;

        li {
            background-color: var(--cor-cinza);
            text-align: center;
            border-radius: 10px;

            &:hover {
                background-color: var(--cor-cinza-hover)
            }

            a {
                color: #fff;
                text-align: center;
                max-width: 100%;
                min-width: 100%;
                text-decoration: none;
                box-sizing: border-box;
            }
        }
    }
}

#homeeventos {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 20px;

    .busca {
        form {
            display: flex;
            flex-direction: row;
            gap: 10px;
            justify-content: center;
            align-items: center;
            width: 100%;
            flex-wrap: wrap;

            input {
                border-radius: 10px;
                padding: 5px;
                font-size: 17px;
                font-weight: bold;
                outline: none;
                text-align: center;
                border: solid 1px #666;
            }

            button {
                padding: 5px;
                font-size: 16px;
                max-width: max-content;
                font-weight: bold;
                color: #FFF;
                background-color: var(--cor-vermelha);
                border-radius: 10px;

                &:hover {
                    background-color: var(--cor-vermelha-hover);
                }
            }
        }
    }

    .eventosaemanalise {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        width: 100%;
        justify-content: center;
        align-items: center;
        gap: 20px;

        h2 {
            font-size: 25px;
            color: var(--cor-cinza);
        }

        .itemevento {
            gap: 5px;
            display: flex;
            padding: 5px;
            border: solid 1px #666;
            background-color: #FFF;
            border-radius: 10px;
            flex-direction: column;
            width: 100%;
            font-size: 15px;
            font-weight: bold;
            justify-content: center;
            align-items: center;
            min-width: max-content;
            max-width: max-content;

            a {
                padding: 5px;
                font-size: 16px;
                max-width: max-content;
                font-weight: bold;
                text-decoration: none;
                color: #FFF;
                background-color: var(--cor-vermelha);
                border-radius: 10px;

                &:hover {
                    background-color: var(--cor-vermelha-hover);
                }
            }

            .fotoevento {
                display: flex;
                justify-content: center;
                align-items: center;
                min-width: 100px;
                max-width: 100px;
                min-height: 100px;
                max-height: 100px;
            }

            .cidadeestado {
                display: flex;
                justify-content: center;
                align-items: center;
                min-width: max-content;
                max-width: max-content;
            }
        }
    }

    .eventosaprovados {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        width: 100%;
        justify-content: center;
        align-items: center;
        gap: 20px;

        h2 {
            font-size: 25px;
            color: var(--cor-cinza);
        }

        .itemvitrine {
            width: 250px;
            height: 350px;
            margin: 10px;

            .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(../img/marcacima.png);
                    background-repeat: no-repeat;
                    margin-left: 180px;
                }

                img {
                    outline: none;
                    border: none;
                    margin: 0;
                    position: absolute;
                    max-width: 250px;
                    object-position: center;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    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: 18px;
                    color: #FFF;
                    font-weight: bold;
                }
            }
        }
    }
}

.eventosaprovados {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 20px;

    h2 {
        font-size: 25px;
        color: var(--cor-cinza);
    }

    .itemvitrine {
        width: 250px;
        height: 350px;
        margin: 10px;

        .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(../img/marcacima.png);
                background-repeat: no-repeat;
                margin-left: 180px;
            }

            img {
                outline: none;
                border: none;
                margin: 0;
                position: absolute;
                max-width: 250px;
                object-position: center;
                width: 100%;
                height: 100%;
                object-fit: cover;
                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: 18px;
                color: #FFF;
                font-weight: bold;
            }
        }
    }
}

#cadastrar {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 20px;

    .btncancelar {
        padding: 5px;
        font-size: 16px;
        text-decoration: none;
        outline: none;
        display: flex;
        justify-content: center;
        font-weight: bold;
        border: solid 1px #8b0421;
        color: #FFF;
        background-color: var(--cor-vermelha);
        border-radius: 10px;
        min-width: 100px;

        &:hover {
            background-color: var(--cor-vermelha-hover);
        }
    }

    h2 {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 25px;
        color: #FFF;
        background-color: #FF0038;
        min-width: 100%;
        min-height: 90px;
        max-height: 90px;
        text-align: center;
    }

    form {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        align-items: center;

        .checkbox-group {
            display: flex;
            flex-direction: row;
            gap: 10px;
            justify-content: center;
            align-items: center;
            width: 100%;

            label {
                color: #333;
            }

            input[type="checkbox"] {
                width: 20px;
                height: 20px;
                cursor: pointer;
                margin-right: 5px;
            }
        }

        input {
            min-width: max-content;
            max-width: 250px;
            width: 100%;
            border-radius: 10px;
            padding: 5px;
            font-size: 17px;
            font-weight: bold;
            outline: none;
            color: var(--cor-cinza);
            text-align: center;
            border: solid 1px #666;

            &::placeholder {
                color: #666;
            }
        }

        select {
            min-width: 250px;
            max-width: 250px;
            width: 100%;
            border-radius: 10px;
            padding: 5px;
            font-size: 17px;
            font-weight: bold;
            outline: none;
            text-align: center;
            border: solid 1px #666;

            &::placeholder {
                color: #666;
            }
        }

        button {
            padding: 10px;
            border: solid 1px #058d50;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            color: #FFF;
            background-color: var(--cor-verde);
            border-radius: 10px;
            min-width: 100px;

            &:hover {
                background-color: var(--cor-verde-hover);
            }
        }
    }
}

#gerenciarevento {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 20px;

    .destalheevento {
        display: flex;
        width: 100%;
        flex-direction: column;
        flex-wrap: nowrap;

        .fotoseventos {
            width: 100%;
            display: flex;
            flex-direction: column;

            .menufotos {
                padding: 10px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 10px;
                width: 100%;

                ul {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    flex-direction: row;
                    gap: 10px;
                    width: 100%;

                    li {
                        list-style: none;

                        a {
                            display: flex;
                            padding: 5px;
                            min-width: fit-content;
                            background-color: var(--cor-cinza);
                            color: #FFF;
                            text-decoration: none;
                            outline: none;
                            border-radius: 10px;
                            border: none;
                            cursor: pointer;

                            &:hover {
                                background-color: var(--cor-cinza-hover)
                            }
                        }
                    }
                }
            }

            .fotos {
                width: 100%;
                display: flex;
                justify-content: center;
                flex-direction: row;
                flex-wrap: wrap;
                gap: 10px;

                .item {
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                    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);
                    border-radius: 10px;
                    padding: 5px;
                    max-width: max-content;
                    height: auto;

                    img {
                        min-width: 150px;
                        max-width: 150px;
                        height: auto;
                        border-radius: 10px;
                    }

                    input[type="text"] {
                        max-width: 100px;
                        min-width: 100px;
                        border: solid 1px var(--cor-cinza);
                        border-radius: 10px;
                        padding: 2px;
                        text-align: center;
                        margin-top: 10px;
                    }

                    form {
                        button {
                            margin-top: 10px;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            font-weight: bold;
                            font-size: 14px;
                            background-color: #333333;
                            color: #FFF;
                            padding: 5px;
                            border-radius: 10px;

                            &:hover {
                                background-color: var(--cor-cinza-hover);
                            }
                        }
                    }
                }
            }
        }

        .publicarevento {
            display: flex;
            justify-content: center;
            align-items: center;

            a {
                padding: 15px;
                background-color: #FF0038;
                color: #FFF;
                font-size: 17px;
                font-weight: 600;

                &:hover {
                    background-color: #FF5E82;
                }
            }
        }

        .configeventos {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            width: 100%;
            gap: 10px;
            padding: 10px;

            .box {
                padding: 5px;
                border-radius: 10px;
                border: solid 1px #333;
                display: flex;
                background-color: #FFF;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                gap: 10px;

                form {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    flex-direction: column;
                }

                input {
                    max-width: 80px;
                    text-align: center;
                    border-radius: 10px;
                    border: solid 1px #333;

                    &::placeholder {
                        color: #999;
                    }
                }

                a {
                    color: #00ca6f;
                    padding: 5px;
                    font-weight: bold;
                }

                p {
                    font-size: 15px;
                    font-weight: 600;
                    text-align: center;
                    color: #333;
                }

                select {
                    border-radius: 10px;
                    font-size: 17px;
                    font-weight: 600;
                    min-width: 80px;

                    option {
                        text-align: center;
                    }
                }
            }
        }
    }

    .detalhes {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin-top: 10px;
        padding-top: 10px;
        padding-bottom: 10px;
        margin-bottom: 10px;

        p {
            font-size: large;
            color: #333;
            text-align: center;
        }

        h1 {
            font-size: 15px;
            font-weight: bold;
            color: #333333;
            margin-top: 20px;
        }

        h2 {
            font-size: 17px;
            font-weight: bold;
            color: #333333;
            margin-top: 20px;
        }

        img {
            width: 200px;
            height: auto;
            border-radius: 10px;
        }
    }

    .areadedescontos {
        display: flex;
        margin-top: 10px;
        justify-content: center;
        align-items: center;
        flex-direction: column;

        ol {
            list-style: none;
            gap: 5px;

            li {
                margin: 5px;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;

                a {
                    background-color: #FF0038;
                    color: #fff;
                    border-radius: 5px;
                    margin-left: 5px;
                }
            }
        }

        ul {
            list-style: none;

            li {
                border-radius: 10px;
                background-color: #333;

                a {
                    color: #FFF;
                }

                &:hover {
                    background-color: #666;
                }
            }
        }
    }
}

@keyframes girar {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#incluirfoto {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);

    .formincluir {
        position: fixed;
        padding: 20px;
        top: 50%;
        left: 50%;
        background-color: #333;
        transform: translate(-50%, -50%);
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        border-radius: 8px;
        gap: 10px;

        #carregandofotos {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;

            #progress {
                text-align: center;
                font-size: 25px;
                font-weight: bold;
                color: #FFF;
            }

            .logocarregando {
                width: 50px;
                height: 50px;
                animation: girar 2s linear infinite;
            }

            .progress-container {
                width: 100%;
                max-width: 300px;
                height: 20px;
                background-color: #eee;
                border-radius: 10px;
                overflow: hidden;
                margin-top: 20px;
                margin-bottom: 20px;
                box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
            }

            .progress-bar {
                height: 100%;
                width: 0%;
                background-color: #FF0038;
                transition: width 0.3s ease;
            }
        }

        button {
            padding: 5px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            color: #FFF;
            background-color: var(--cor-vermelha);
            border: solid 1px #666;
            border-radius: 10px;
            min-width: 100px;

            &:hover {
                background-color: var(--cor-vermelha-hover);
            }
        }

        p {
            color: #FFF;
            font-size: 15px;
            font-weight: bold;
        }

        form {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 10px;

            button {
                padding: 5px;
                font-size: 16px;
                font-weight: bold;
                cursor: pointer;
                color: #FFF;
                background-color: var(--cor-verde);
                border: solid 1px #666;
                border-radius: 10px;
                min-width: 100px;

                &:hover {
                    background-color: var(--cor-verde-hover);
                }
            }

            input[type="file"] {
                font-size: large;
                color: #FFF;
            }
        }
    }
}

#avisoexcluirevento {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);

    .msg {
        padding: 5px;
        background-color: #333;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        border-radius: 8px;
        gap: 10px;

        a {
            padding: 5px;
            font-size: 16px;
            max-width: max-content;
            font-weight: bold;
            text-decoration: none;
            color: #FFF;
            background-color: var(--cor-verde);
            border: solid 1px #666;
            border-radius: 10px;

            &:hover {
                background-color: var(--cor-verde-hover);
            }
        }

        form {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 10px;

            p {
                font-weight: bold;
                color: #FFF;
                text-align: center;
            }

            button {
                padding: 5px;
                font-size: 16px;
                font-weight: bold;
                cursor: pointer;
                color: #FFF;
                background-color: var(--cor-vermelha);
                border: solid 1px #666;
                border-radius: 10px;
                min-width: 100px;

                &:hover {
                    background-color: var(--cor-vermelha-hover);
                }
            }
        }
    }
}

#cadastrardesconto {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);

    .formdesconto {
        z-index: 100;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #333;
        padding: 10px;
        border-radius: 10px;
        flex-direction: column;
        gap: 10px;

        a {
            border-radius: 10px;
            padding: 3px;
            color: #FFF;
            font-size: 17px;
            background-color: var(--cor-vermelha);

            &:hover {
                background-color: var(--cor-vermelha-hover);
            }
        }

        form {
            gap: 10px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;

            label {
                text-align: center;
                color: #FFF;
            }

            input {
                max-width: 60px;
                border-radius: 5px;
                border: solid 1px --cor-cinza;
                text-align: center;
                padding: 3px;
            }

            button {
                border-radius: 10px;
                padding: 3px;
                color: #FFF;
                font-size: 17px;
                background-color: var(--cor-verde);

                &:hover {
                    background-color: var(--cor-verde-hover);
                }
            }
        }
    }
}
#menuprocurareventos{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
    a{
        padding: 20px 50px;
        color: #fff;
        background-color: #ab5265;
        border-radius: 10px;
        border: none;
        &:hover{
            background-color: var(--cor-vermelha-hover);
        }
    }
}
            .btnVerde {
                padding: 10px;
                color: #fff;
                font-size: 20px;
                border-radius: 10px;
                font-weight: bold;
                max-width: 200px;
                background-color: #058d50;

                &:hover {
                    background-color: #1be68b;
                }
            }
#minhaconta {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    .conteudominhaconta {
        width: 100%;

        form {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 20px;

            p {
                text-align: center;

                a {
                    text-align: center;
                }
            }

            select {
                min-width: 250px;
                max-width: 250px;
                width: 100%;
                border-radius: 10px;
                font-size: 17px;
                font-weight: bold;
                outline: none;
                text-align: center;
                border: solid 1px #666;

                &::placeholder {
                    color: #666;
                }
            }

            input {
                min-width: max-content;
                max-width: 250px;
                width: 100%;
                border-radius: 10px;
                padding: 5px;
                font-size: 17px;
                font-weight: bold;
                outline: none;
                color: var(--cor-cinza);
                text-align: center;
                border: solid 1px #666;

                &::placeholder {
                    color: #666;
                }
            }

            .btnCadastrar {
                padding: 10px;
                color: #fff;
                font-size: 20px;
                border-radius: 10px;
                font-weight: bold;
                max-width: 200px;
                background-color: #058d50;

                &:hover {
                    background-color: #1be68b;
                }
            }
        }
    }
}

#conteudoparticiparevento {
    #detalhesdoevento {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        flex-direction: column;
        gap: 10px;

        span {
            color: var(--cor-cinza);
        }

        img {
            width: 250px;
            height: 250px;
        }

        .briefing {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;

            h2 {
                margin: 5px;
            }

            p {
                margin: 2px;
            }
        }
    }

    #acoesparticipar {
        display: flex;
        justify-content: center;
        align-items: center;

        a {
            width: max-content;
            padding: 5px;
            background-color: var(--cor-cinza);
            border-radius: 5px;
            margin-top: 10px;
            color: #fff;
            font-size: 18px;

            &:hover {
                background-color: var(--cor-cinza-hover);
            }
        }
    }
}

#menuagenda {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;

    a {
        background-color: var(--cor-cinza);
        font-size: 16px;
        border-radius: 5px;
        padding: 5px;
        color: #fff;

        &:hover {
            background-color: var(--cor-cinza-hover);

        }
    }
}

#minhaagenda {
    margin-top: 20px;

    .buscaagendanome {
        margin-bottom: 20px;

        form {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: row;
            flex-wrap: wrap;
            gap: 10px;

            input {
                padding: 5px;
                border-radius: 5px;
                font-size: 16px;
                border: solid 1px var(--cor-cinza);
            }

            button {
                background-color: var(--cor-cinza);
                color: #fff;
                padding: 5px;
                font-size: 18px;
                border-radius: 5px;

                &:hover {
                    background-color: var(--cor-cinza-hover);
                }
            }
        }
    }

    #filtraragenda {
        display: flex;
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        gap: 20px;
        margin-top: 20px;
        margin-bottom: 20px;

        .buscaagendanome {
            form {
                input {
                    padding: 5px;
                    border-radius: 5px;
                    font-size: 16px;
                    border: solid 1px var(--cor-cinza);
                }

                button {
                    background-color: var(--cor-cinza);
                    color: #fff;
                    padding: 5px;
                    font-size: 18px;
                    border-radius: 5px;

                    &:hover {
                        background-color: var(--cor-cinza-hover);
                    }
                }
            }
        }

        .anosfiltro {
            display: flex;
            flex-direction: column;
            align-content: space-between;
            align-items: center;
            max-width: 300px;
            padding: 10px;
            background-color: #fff;
            border-radius: 25px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);

            h2 {
                color: var(--cor-cinza);
                margin-bottom: 20px;
            }

            .mesesfiltro {
                border-top: var(--cor-cinza) solid 1px;
                display: flex;
                padding: 10px;
                padding-top: 20px;
                flex-wrap: wrap;
                max-width: 300px;
                flex-direction: row;
                justify-content: center;
                height: 100%;
                align-items: center;
                align-self: start;
                gap: 10px;

                a {
                    width: max-content;
                    font-size: 18px;
                    padding: 5px;
                    border-radius: 5px;
                    background-color: var(--cor-branca);
                    color: var(--cor-cinza);
                    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);

                    &:hover {
                        background-color: #eee;
                    }
                }

                &:last-child {
                    border-top: none;
                }
            }
        }
    }
}

#participacoes {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;

    .itemproximo {
        width: 180px;
        height: 240px;
        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;
            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;
            }

            .status {
                color: #fff;
                font-size: 12px;
                width: 160px;
                margin-left: auto;
                margin-right: auto;
                margin-bottom: 10px;

                span {
                    font-size: 13px;
                }
            }
        }
    }
}

#gerenciarparticipacaoevento {
    #acoesparticipacao {
        display: flex;
        justify-content: center;
        align-items: center;

        a {
            background-color: var(--cor-verde);
            padding: 5px;
            border-radius: 5px;
            font-size: 20px;
            color: #fff;

            &:hover {
                background-color: var(--cor-verde-hover);
            }
        }
    }

    #detalheseventoparticipacao {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;

        img {
            max-width: 250px;
            max-height: 250px;
            margin-top: 20px;
            margin-bottom: 20px;
        }

        p {
            span {
                color: var(--cor-cinza);
            }
        }
    }
}
#menuincluirfotospublico{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap:10px;
    margin-bottom: 20px;
    h2{
        color:var(--cor-cinza);
    }
    a{
        padding: 10px;
        background-color: var(--cor-cinza);
        color: #fff;
        font-size: 18px;
        border-radius: 5px;
        &:hover{
            background-color: var(--cor-cinza-hover);
        }
    }
}
#fotoseventospublicos {
    width: 100%;
    display: flex;
    flex-direction: column;

    

    .fotos {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;

        .item {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            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);
            border-radius: 10px;
            padding: 5px;
            max-width: max-content;
            height: auto;

            img {
                min-width: 150px;
                max-width: 150px;
                height: auto;
                border-radius: 10px;
            }

            input[type="text"] {
                max-width: 100px;
                min-width: 100px;
                border: solid 1px var(--cor-cinza);
                border-radius: 10px;
                padding: 2px;
                text-align: center;
                margin-top: 10px;
            }

            form {
                button {
                    margin-top: 10px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    font-weight: bold;
                    font-size: 14px;
                    background-color: #333333;
                    color: #FFF;
                    padding: 5px;
                    border-radius: 10px;

                    &:hover {
                        background-color: var(--cor-cinza-hover);
                    }
                }
            }
        }
    }
}

@media(max-width:768px) {
    #conteudototal {
        flex-direction: column;

        #menueventos {
            justify-content: center;
            align-items: center;
            padding: 0px;
            margin-top: 10px;
        }

        #menu {
            min-height: max-content !important;
            max-width: none;
            width: 100%;
            margin-bottom: 10px;

            ul {
                display: flex;
                margin-top: 10px;
                justify-content: center;
                flex-direction: row;
                flex-wrap: wrap;
                margin-bottom: 10px;
                gap: 10px;

                li {
                    min-width: max-content !important;

                    a {
                        border: solid 1px var(--cor-cinza);
                        border-radius: 10px;
                    }

                    &:last-child {
                        flex-basis: 100%;
                        text-align: center;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        position: static;

                        a {
                            width: max-content;
                            max-width: 100px;
                            text-align: center;
                        }
                    }
                }
            }
        }
    }
}