@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
    z-index:-1 ;
    font-family:Montserrat;
    margin:0;
    padding:0;
}

html {
    scroll-behavior: smooth;
}

.hamburger{
    display:none;
}

.navmenu{
    z-index: 10;
    margin:0;
    width: 100%;
}

.menu{
    position: fixed;
    box-shadow: 0px 0px 10px black;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:#072662;
    width: 100%;
    height: 60px;
    top:0;
    z-index: 10;
}

ul.menu-list{
    font-weight: 600;
    font-size:14px;
    gap:20px;
    display:flex;
    flex-direction: row;
    padding:10px, 15px;
    list-style-type: none;
}

ul.menu-list a{
    text-align: center;
    display:flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    color:white;
    text-decoration: none;
    padding:3px 10px;
    width: 20%;
    transition: all 300ms;
}

ul.menu-list a:hover{
   transition: all 300ms;
   background-color: #F09061;
   color:black;
}

#aT{
    color:#F09061;  
    font-size:16px;
}
#aT:hover{
    color:white;
}

#aL{
    transition: 300ms;
    width: 30%;
    background: black;
}

#aL:hover{
    color:white;
    background-color: rgb(34, 34, 34);
}
.hamburger{
    border-style: none;
    background-color: #072662;
    color:white;
    font-size: 40px;
    right: 10px;
    width: 10%;
    height: 60px;
}

#container-rodapé{
    padding:20px 0px 20px 0px;
    background-color:#072662;
    color:white;
}

.meio{
    margin:40px;
}

#container-rodapé .rodapeul a{
    color:white;
    text-decoration: none;
}
.zapvivaion{
    margin: 20px 0px 20px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.socialmedia{
    display:flex;
    width: 80%;
    justify-content: space-between;
}

.disclaimer a{
    color:white;
}

.disclaimer{
    text-align: center;
}

ul.duvida{
    list-style-type: none;
}

ul.duvida li{
    margin-top:10px;
}

ul.rodapeul{
    list-style-type: none;
}

ul.rodapeul li{
    margin-top: 10px;
}

.custom-list::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("/media/whatsapp.png");
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 8px;
    vertical-align: middle;
}

.custom-list2::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("/media/email.png");
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 8px;
    vertical-align: middle;
}

@media only screen and (min-width:320px){
    #container-rodapé{
        width: 100%;
    }
    
    .rodape1{
        width: 80%;
        gap:20px;
        display:flex;
        flex-direction: column;
        justify-content: space-between;
    
    }

    .duvidas{
        width: 100%;
    }
}

@media only screen and (max-width:375px){}

@media only screen and (max-width:425px){}

@media only screen and (max-width:768px){
    .hamburger{
        transition: 200ms;
        position: fixed;
        display:block;
        cursor: pointer;
    }

    .menu-list{
        display:flex;
        flex-direction: column;
        position: fixed;
        top:0;
        left:100%;
    }

    .menu-list.active{
        transition: 200ms ease-in-out;
        width: 100vw;
        height: 100vh;
        display:flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap:20px;
        position: fixed;
        top:60px;
        left:0%;
        background-color: #072662;
    }

    .menu-list.active a{
        width: 80%;
        border-radius: 5px;
    }
}
@media only screen and (min-width:1024px){
    .rodape1{ 
        width: 100%;
        display:flex;  
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
    }
    .logorodape{
        width: 350px;
    }

    .duvidas{
        width: 300px;
    }

    ul.duvida{
        width: 100%;
    }
}
@media screen and (max-width: 1024px) {
}

@media only screen and (max-width:1440px){}