* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.corpo {
    background-color: lightblue;
    font-family: Arial, Helvetica, sans-serif;
}

.imagem1 {
    width: 70px;
    margin-right: 25px;
}

ul {
    background-color: black;
    list-style-type: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

li {
    float: left;
}

li a,
.dropbtn {
    display: inline-block;
    color: lightblue;
    padding: 14px 16px;
    text-decoration: none;
    text-align: center;
    font-size: 50px;
}

li a:hover,
.dropdown:hover .dropbtn {
    background-color: black;
}

li.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: black;
    width: 100%;
}

.dropdown-content a {
    color: lightblue;
    display: block;
    text-align: left;
    font-size: 20px;
}

.dropdown-content a:hover {
    color: white;
}

.dropdown:hover .dropdown-content {
    display: block;
}

h4 {
    text-align: center;
    background-color: lightblue;
    color: black;
}

.container3 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.rodape {
    color: lightblue;
    background-color: black;
    margin-top: 40px;
    text-align: center;
    padding: 10px;
}

.container0 {
    background-color: rgb(66, 42, 203);
    overflow: hidden;
    margin-top: 20px;
    padding: 10px;
    text-align: center;
    color: white;
}

.imgem-calc {
    width: 100px;
}

.botao {
    margin-top: 15px;
    display: block;
    background-color: green;
    text-decoration: none;
    font-size: 25px;
    color: white;
    padding: 5px;
    border-radius: 5px;
    margin-left: 50px;
    margin-right: 50px;
}

.botao:hover {
    background-color: darkblue;
}

/* RESPONSIVIDADE PARA TELAS GRANDES (768px)*/
@media (min-width: 768px) {

    /*menu dropdonw*/
    .dropdown-content {
        display: none;
        position: absolute;
        background-color: black;
        width: 50%;
        border-radius: 0px 0px 5px 0px;
    }
}

/* RESPONSIVIDADE PARA TELAS GRANDES (1024px)*/
@media (min-width: 1024px) {
    .secao_Geral {
        margin-top: 15px;
        background-color: darkblue;
        border-radius: 5px;
        display: block;
        justify-self: center;
        width: 50%;
        padding: 10px;
        overflow: hidden;

    }

    .container0 {
        border-radius: 5px;
        display: block;
        width: 100%;
    }

    .menu a:hover {
        background-color: lightblue;
        color: black;
        border-radius: 5px;
        transition: 1s;
        padding: 1px;
    }


    .botao {
        margin-top: 15px;
        display: block;
        justify-self: center;
        background-color: green;
        text-decoration: none;
        font-size: 25px;
        color: white;
        padding: 5px;
        border-radius: 5px;
    }

    /*menu dropdonw*/
    .dropdown-content {
        display: none;
        position: absolute;
        background-color: black;
        width: 50%;
        border-radius: 0px 0px 5px 0px;
    }
}