body {
    margin: 0;
    padding: 0;
}


* {
  line-height: 2.0; /* aumenta a altura da linha para 1,5 vezes a altura da fonte para todos os elementos HTML */
  font-family: Verdana

}

li {

list-style: inside;

}


.corpo {
    margin: 5%;
list-style-type: circle;
}

.item {
    
    font-family: verdana;
}

#header {
    box-sizing: border-box;
    height: 72px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: aliceblue;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
}

#logo {
    font-weight: bold;
    font-size: x-large;
    text-decoration: none;
    font-family: sans-serif;
    color: black;
}

#menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

#menu > a {
    display: block;
    padding: 8px;
}

#btn-mobile {
    display: none;
}

@media (max-width: 600px) {
    #btn-mobile {
        display: block;
    }

    #menu {
        display: block;
        position: absolute;
        width: 100%;
        height: 0px;
        top: 72px;
        right: 0;
        z-index: 1000;
        background-color: aliceblue;
        transition: .6s;
        visibility: hidden;
        overflow-y: hidden;
    }
    
    #nav.active #menu{
        height: calc(100vh - 72px);
        display: block;
        visibility: visible;
        overflow-y: auto;
    }

    #menu > li {
        padding: 0px 16px;
        padding-bottom: 16px !important;
    }

    #btn-mobile {
        display: flex;
        padding: .5rem 1rem;
        border: none;
        background: none;
        cursor: pointer;
        gap: .5rem;
    }

    #hamburguer {
        width: 20px;
        border-top: 2px solid black;
    }

    #hamburguer::after, #hamburguer::before {
        content: '';
        display: block;
        position: relative;
        background: currentColor;
        width: 20px;
        height: 2px;
        margin-top: 5px;
        transition: .3s;
    }

    #nav.active #hamburguer{
        border-top-color: transparent;        
    }

    #nav.active #hamburguer::before {
        transform: rotate(135deg);
    }

    #nav.active #hamburguer::after {
        top: -7px;
        transform: rotate(-135deg);
    }

    #item-right {
        display: none;
    }
}

.footer {
    max-width: 100vw;
    height: 100%;
    background-color: bisque;
}

.footer > ul, li, a {
    text-decoration: none;
    font-family: verdana;
    color: gray;
}

.footer-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.direitos {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: burlywood;
    padding: 2px 12px;
}

.colunm-footer {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 8px;
    margin: 0 40px;
    text-align: left;
}

.colunm-footer > ul, li {
    list-style: none;
}

.paragraph-footer {
    max-width: 200px;
}

.logo-footer {
    max-width: 98px;
    max-height: 98px;
    margin-top: 12px;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    gap: 30%;
    margin: 20px 0;
}

.item-row {
    display: flex;
    width: 200px;
    gap: .0.5rem;
}

.item-row > img {
    width: 20px;
    height: 20px;
}

@media (max-width: 600px) {
    .footer *{
        align-items: center;
        justify-content: center;
    }
    .direitos {
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
}

@media (max-width: 820px) {
    .footer-box {
        flex-wrap: wrap;
    }
}