body, ul {
    margin: 0%;
    padding: 0px;
}

a {
    color: #fff;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
}

a:hover {
    /* background: rgba(0, 0, 0, .05); */
    background: rgba(19, 67, 225, 0.8);
}

h1, h2, h3, h4, h5, h6 {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    margin-left: 2%;
}

hr{
    border: 1px solid rgb(133, 131, 131);
    margin: 2%;
}

p {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    margin: 2%;
}

.table-b4 {
    table-layout: fixed;
    width: 96%;
    white-space: nowrap;
    font-family: Arial, Helvetica, sans-serif;
    margin-left: 2%;
}
.table-b4 td {
    white-space: normal;
    /* overflow: hidden; */
    /* text-overflow: ellipsis; */
    /* background-color: antiquewhite; */
    border-radius: 3px;

}
.table-b4 th {
    background: darkblue;
    color: white;
    border-radius: 3px;
}

.table-b4 td,
.table-b4 th {
    text-align: left;
    padding: 5px 10px;
    height: 35px;
}
.table-b4 tr:nth-child(even) {
    background: lightblue;
}
.table-b4-center{
    text-align: center;
}

#logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

#header {
    box-sizing: border-box;
    height: 70px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background: rgba(19, 67, 225, 0.8); */
    /* background: #313131; */
    background: #1343e1;
}

#menu {
    display: flex;
    list-style: none;
    gap: .5rem;
}

#menu a {
    display: block;
    padding: .5rem;   
    color: #fff;
}

#btn-mobile {
    display: none;
    color: #fff;
    color: #fff;
}
#body {
    background: #6E6E6E;
}

#containerMeio{
    background: rgb(231, 236, 156);
    top: 40%;
    left: 50%;
    margin-right: -50%; 
    transform: translate(-50%, -50%);
    position: absolute;
    display: block;
    padding: 45px;
    border-radius: 4px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    width: 50%;
}
#containerMeio h1, h2, h3, h4, h5, h6{
    color: rgb(82, 12, 12);
}

#iconeInfo {
    width: 30px;
    height: 30px;
}

@media (max-width: 600px) {    
    #menu {
        display: none;
        position: absolute;
        width: 100%;
        top: 70px;
        right: 0px;
        /* background: #848484; */
        background: rgb(19, 67, 225);
        height: 0px;
        transition: .6s;
        display: block;
        z-index: 1000;
        visibility: hidden;
        overflow-y: hidden;
    }
    #nav.active #menu{
        display: block;
        visibility: visible;
        overflow-y: auto;
        height: calc(100vh - 70px);
    }
    #menu a {
        padding: 1rem 0;
        margin: 0 1rem;
        border-bottom: 2px solid rgba(0, 0, 0, .05);
    }
    #btn-mobile {
       display: flex;
       padding: .5rem 1rem;
       font-size: 1rem;
       border: none;
       background: none;
       cursor: pointer;
       gap: .5rem;
    }
    #hamburguer {
        display: block;
        border-top: 2px solid;
        width: 20px;
    }
    #hamburguer::after, #hamburguer::before {
        content: '';
        display: block;
        width: 20px;
        height: 2px;
        background: currentColor;
        margin-top: 5px;
        transition: .3s;
        position: relative;
    }
    #nav.active #hamburguer {
        border-top-color: transparent;
    }
    #nav.active #hamburguer::before {
        transform: rotate(135deg);
    }
    #nav.active #hamburguer::after {
        transform: rotate(-135deg);
        top: -7px;
    }

}