* {
            margin: 0;
            border: 0;
            padding: 0;
            box-sizing: border-box;

        }

        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background-color: #f9f9f9;
            color: #333;

        }

        .principal-geral {

            width: 99%;
            height: auto;
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 0px;
            justify-content: center;
            align-items: center;
            gap: 5px;

        }

        .menu-total {

            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: left;
            width: 100%;

        }

        .aberto {

            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            background-color: rgba(183, 203, 253, 0.5);
            border-radius: 0px 0px 40px 40px;
            width: 100%;
            height: 70px;
            padding: 10px;
            gap: 10px;

        }

        .button-menu {

            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 30px 0px 30px 0px;
            list-style-type: none;
            width: 150px;
            height: 30px;
            border: #000 5px inset;
            cursor: pointer;

        }

        .button-menu:hover {


            height: 40px;
            border: #5188f0 5px inset;

        }

        .button-menu:active {


            height: 40px;
            border: #4365a5 6px inset;

        }

        .botao-menu {

            display: flex;
            justify-content: center;
            align-items: center;
            background-color: rgba(183, 203, 253, 0.5);
            width: 100%;
            height: 8vh;
            gap: 90%;

        }

        .img-menu {

            width: 45px;
            height: 45px;
            border: #000 2px solid;

        }

        .span-menu {

            font-size: 30px;

        }

        .span-menu:hover {

            cursor: pointer;
            border: #000 2px solid;

        }

        .span-menu:active {

            cursor: pointer;
            border: #632424 4px solid;

        }

        .hr-menu {

            width: 30px;
            border: #000 3px solid;
            margin: 5px;

        }

        .cabecalho {

            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;

        }

        .imagem_cabecalho {

            width: 100%;
            border-radius: 10px;

        }


        header,
        section {
            max-width: 100%;
            margin: 10px auto;
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);

        }

        h1,
        h2,
        h3 {
            color: #1a1a1a;
        }

        ul {
            list-style-type: disc;
            padding-left: 20px;
        }

        @media only screen and (max-width: 1000px) {

       

            .aberto {

                height: 300px;
                border-radius: 5px;    
                
            }

            .button-menu {

                width: 250px;
                height: 40px;
                
            }

            .botao-menu {

                gap: 75%;

            }

            header,
            section {
               
                padding: 10px;
                
            }

            h1,
            h2,
            h3 {
                color: #1a1a1a;
            }

            ul {
                list-style-type: disc;
                padding-left: 20px;
            }

        }