@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;
}

.hamburger{
    display:none;
}

.navmenu{
    z-index: 10;
    margin:0;
    width: 100%;
}

.menu{
    position: relative;
    box-shadow: 0px 0px 10px black;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:#072662;
    width: 100%;
    height: 60px;
    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;
    left:35%;
    width: 20%;
    height: 60px;
}

.containerPos{
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-image: linear-gradient(180deg, rgb(227, 227, 227), rgb(255, 253, 253));
    width: 100%;
    height: auto;
    padding:20px;
}

.containerPos h1{
    margin: 0px 0px 25px 0px;
    font-size:48px;
    font-weight: 600;
    text-shadow: 0px 0px 5px rgb(194, 194, 194);
}

ul.pos{
    display:flex;
    flex-direction: column;
    width: 35%;
    gap:50px;
    list-style-type: none;
    text-align: center;

    @media only screen and (max-width:1024px){
        width: 45%;
    }
}

.ipos li{
    text-align: center;
    list-style-type: none;
}

ul.pos li img{
    width: 100%;
    transition: 200ms;
    box-shadow: 0px 0px 10px black;
    border-radius: 0px;

    &:hover{
        transition: 200ms;
        opacity: 0.8
    }
}

#ipos{
    display:flex;
    flex-direction: column;
}

#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;
}


.container-6 .Textos,.container-6 #title{
    display: flex;
    flex-direction: column;
    width: 50%;
}

.container-6 p1{
    margin:10px;
    font-size: 20px;
}

.container-6 p2{
    margin:10px;
    font-weight: 700;
    font-size: 30px;
}
.container-6 .explicaçao{
    width: 80%;
}
.container-6 .explicaçao p{
    margin:10px;
    width: 100%;
    font-size: 16px;
}
.container-6 .explicaçao a{
    position: relative;
    top:25px;
    left:50%;
    border-radius: 10px;
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
    color:white;
    background-color:black ;
    padding: 10px 40px;
    transition: 300ms;

    &:hover{
        transition: 300ms;
        background-color:rgb(23, 107, 224) ;
    }
}

.container-6 img{
    width: 20%;
}

.container-6{
    padding:50px 0px 50px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #051637;
    color: white;
}

.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 (max-width:600px){
    .containerPos{
        padding: 0;
    }
    ul.pos{
        width: 80%;
    }
    

    .hamburger{
        transition: 200ms;
        position: relative;
        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: 300px;
        border-radius: 5px;
    }

    .containerPos h1{
        font-size: 30px;
    }

    #container-rodapé{
        width: 100%;
    }
    
    .rodape1{
        width: 80%;
        gap:20px;
        display:flex;
        flex-direction: column;
        justify-content: space-between;
    
    }

    .duvidas{
        width: 100%;
    }

    .container-6{
        flex-direction: column;
    }

    .container-6 img{
        width: 100%;
    }

    .container-6 .Textos{
        width: 90%;
        text-align: center;
        display:flex;
        justify-content: center;
        align-items: center;

        p1,p2, p{
            margin:10px 0px 0px 0px;
            text-align: center;
        }
    }

    .container-6 .Textos a{
        left:0px;
    }

}

@media only screen and (min-width:600px){
    .container-6{
        .Textos{
            width: 100%;
            #title{
                width: 100%;
            }
            .explicaçao{
                width: 90%;
                p{
                    width: 100%;
                }
            }
        }
        img{
            width: 50%;
        }
    }

    ul.pos a{
        font-size: 20px;
    }

    ul.pos{
        width: 90%;
        flex-direction: column;
    }

}
@media only screen and (min-width: 992px) {
    .containerPos h1{
        font-size: 48px;
    }
    ul.pos li img{
        border-radius: 0px;
        width: 40%;
    }
    .container-6{
        padding: 20px;
        .Textos{
            width: 50%;
        }
        img{
            width: 30%;
        }
    }

    .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) {
    .cursos {
        grid-template-columns: repeat(2, 1fr); /* 2 cursos por linha em tablets */
    }
}