@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playwrite+CU:wght@100..400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/*A BARRA DE NAVEGAÇÃO DE CIMA - 1*/

header {
    background-color: rgb(51, 32, 94);
    box-shadow: 0px 3px 10px #483383;
}


.nav-bar-cima {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(69, 45, 126);
    height: 8rem;
    box-shadow: 3px 3px 3px #2c1457;
}

.contato-computador { /*nav item especifico p contato p alterar umas coisas*/
    margin-right: 4rem;

    text-decoration: none;
    font-size: 1.0rem;
    color: rgb(211, 196, 233);
    letter-spacing: 0.2rem;
    font-family: Inter;
}

.contato-computador:hover { 
    color: rgb(255, 255, 255);
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    margin-left: 2rem;
    padding: 1.5rem 6rem; /*utilizando o rem para deixar mais adaptavel*/
}

.logo {
    display: flex;
    align-items: center;
    margin-left: 1.5rem;
}

.nav-list {
    display: flex;
    align-items: center; /*para ficar centralizado*/
    justify-content: center;
    margin-right: 8rem;
}

.nav-list ul {
    display: flex;
    justify-content: center;
    list-style: none;
}


.nav-item {
    margin: 0 15px;
}

.link {
    text-decoration: none;
    font-size: 1.0rem;
    color: rgb(196, 179, 219);
    letter-spacing: 0.2rem;
    font-family: Inter;
    transform: scale();
   
}

.link:hover {
    color: rgb(255, 255, 255); /*Altera a cor quando passa o mouse*/
}

.nav-item:hover .submenu {
    display: block;
    
}

.submenu {
   position: absolute; 
   display: none;
   box-shadow: 0 0 7px rgb(40, 27, 68);
   background-color: rgb(39, 27, 68);
}

.submenu-link {
    display: block; /*para exibir na vertical*/
    color: beige;
    text-decoration: none;
    font-size: 1.25rem;
    padding: 1rem;
    letter-spacing: 0.1rem;
 }

 .submenu-link:hover {
    background-color: rgb(115, 71, 133);
 }

 
 /*--------------------TELAS-----------------------*/

 .artesTelas {
    background-color: #d3c1db;
    padding: 45px 8%;
 }

 
 .base h1 {
    color: rgba(75, 67, 105, 0.836);
    font-size: 39px;
    text-align: center;
}

.base h1 span {
    color: rgb(109, 60, 173);
}

.base h1::after {
    display: flex;
    content: '';
    max-width: 90rem;
    height: 1px;
    background-color: #483383;
    display: block;
    margin-top: 0.5rem;
}

.aviso{
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #381c6d;
    height: auto;
}

.aviso p {
    margin: 20px;
    color: rgb(188, 168, 235);
    padding: 25px;
    font-size: 18px;
    line-height: 1.8;
    text-indent: 1%;
}

.aviso i {
    font-size: 25px;
    margin-right: 20px;

}

.aviso a {
    text-decoration: none;
    color: rgb(153, 0, 255);
}

 .containerFlex { /*CONTAINER COM AS CAIXAS DE IMAGEM E LEGENDA*/
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6rem;
 }

.artesTelas .desenhoBox {
    padding: 40px;
    border-radius: 20px;
    transition: 0.5s, background-color 0.5s;
    background-color: #381c6d;
}

.desenhoBox:hover {
    transform:scale(1.05);
    background-color: #5f217c;
    box-shadow: 0 0 8px rgb(71, 35, 128);;
}

.desenhoBox img {
    border: 2px solid #483383;
}

.desenhoBox p {
    color: #a98edb;
    margin-top: 1rem;
    margin-left: 2.8rem;
    font-size: 20px;
    font-family: Inter;
}


/*------------------FOOTER-------------------------*/

footer {
    padding: 30px;
    background-color: #291152;
}

.conteudo {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.logoFooter {
    border-right: 2px solid #483383;
    padding-right: 100px;
}

.containerFooter {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.linksFooter li {
    margin: 10px 0;
    list-style: none;
}

.linksFooter a {
    text-decoration: none;
    color: rgb(174, 116, 212);
    font-size: 15px;
    font-family: Inter;
}

.contatosFooter li {
    margin: 15px 0;
    display: flex;
    gap: 10px;
    justify-content: center;
    list-style: none;
    justify-content: start;
}

.contatosFooter i {
    font-size: 20px;
}

.contatosFooter p {
    text-decoration: none;
    color: rgb(174, 116, 212);
    font-family: Inter;
}

.linksFooter h3,
.contatosFooter h3{
    color:rgb(192, 144, 231);
    font-size: 18px;
}

.copyright {
    background-color: #1a0b38;
    color: #7052c2;
    margin: 0;
    padding: 20px;
}

 
/*--------------------MOBILE-----------------------*/


.icon-menu-mobile {
    display: none; /*Não vai aparecer normalmente*/
    margin-top: 1.1rem;
}

.mobile-menu {
    display: none; /*Não vai aparecer normalmente*/
}

 @media screen and (max-width:1020px){
    .nav-bar-cima {
        justify-content: center;
    }
    .logo {
        margin:0
    }
    .navbar {
        padding: 1.5rem 4rem;
    }
    .contato-computador {
        display: none;
    }
    .nav-item {
        display: none; /*Na tela para celular, os itens nao aparecem na navbar*/
    }
    .icon-menu-mobile {
        display: block; 
    }
    .icon-menu-mobile button {
        background-color: transparent; 
        border:none;
        cursor: pointer;

    }
    .mobile-menu ul {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding-bottom: 1rem;
    }

    .mobile-menu .nav-item {
        display: block;
        padding-top: 1.2rem;

    }
    .mobile-menu .nav-item:hover {
      background-color: rgb(115, 71, 133);

    }

    .mobile-menu .submenu{
        display: none;
    }

    .mobile-menu .submenu .link{
        display: inline-flex;
    }


    /*-----------corpo----------*/
    
    .containerFlex {
        flex-direction: column;
    }


    .artesTelas .desenhoBox {
        width: 100%;
        height: 100%;
        padding: 50px;   
    }

    .desenhoBox {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .desenhoBox img {
        width: 100%;
        height: 100%;
    }

    .desenhoBox p {
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        height: 100%;
    
    }


    /*------------------footer-------------------------*/

        
    footer {
        padding: 30px;
        background-color: #291152;
    }

    .containerFooter {
        padding:10px 0 0;
    }
        
    .logoFooter {
        border-right: 0px solid #483383;
        padding-right: 0px;
    }

    .conteudo {
        display: flex;
        flex-direction: column;
        text-align: center;
        line-height: 1.5rem;
    }

    .logoFooter img {
        padding:10px;
        display:block;
        margin: 0 auto; /*centraliza*/
    }

    .linksFooter,
    .contatosFooter {
        margin-top: 20px;
    }

    .linksFooter h3,
    .contatosFooter h3 {
        margin-bottom: 20px;
    }

        
    .linksFooter h3::after{
        display: flex;
        content: '';
        max-width: 90rem;
        height: 1px;
        background-color: #483383;
        display: block;
        margin-top: 0.5rem;
    }

    .contatosFooter h3::after {
        display: flex;
        content: '';
        max-width: 90rem;
        height: 1px;
        background-color: #483383;
        display: block;
        margin-top: 0.5rem;
    }

    .contatosFooter li {
        margin: 15px 0;
        display: flex;
        gap: 10px;
        justify-content: center;
    }

    .copyright {
        padding:20px;
        text-align: center;

    }


    .open{ /*CLASSE PRO JS*/
        display: block;
    }
    .mobile-menu.open {
        transition: transfom 0.3s ease-in;
    }
 }

 