
@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');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&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;
    transition: .5s;
}


.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);
 }


 /*--------------------CORPO-----------------------*/
 .containerzão {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #d3c1db;
    padding: 1.5rem;
    width: 100%;
}

.container-boasvindas { /*A ÁREA DO TITULO */
    display: flex;
    height: 6rem;
}

.boasvindas {
    display: flex;
    margin-top: 2rem;
    margin-left: 2rem;
    font-size: 1rem;
    letter-spacing: 0.1rem;
    color:rgba(75, 67, 105, 0.836);
    font-family: Merriweather;
}

h2::after{
    content: '';
    width: 100%;
    max-width: 600px;
    height: 1px;
    background-color: #483383;
    display: block;
    margin-top: 0.5rem;
}

.container-inicio {  /*Espaço (caixa) das caixa da imagem e carrossel*/
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #706c99;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    gap: auto;
}


.container-sarinha { /*Espaço (caixa) da imagem*/
    width: 100%;
    max-width: 400px;  /* Limita o tamanho máximo da imagem */
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem auto;
}

.container-sarinha img {
    width: 90%;  
    max-width: 100%; /* imagem não ultrapassa 100% do tamanho do container */
    height: auto;
    object-fit: contain; 
}

/*-----CARROSSEL-------*/


.slider{  /*Espaço (caixa) do carrossel*/
    width: 100%;
    max-width: 800px; 
    margin: 0 auto;
    overflow: hidden; 
    margin-right: 1rem;
  
}

.slides{
    display: flex;
    width: 200%;
}

.imagemPc{
    max-width: 100%;
    transition: 2s;
    position: relative; 
    animation: imagemPc 7s infinite ease-out;
}

.imagemPc img {
    width: 100%;
    height: auto;
}



@keyframes imagemPc {

    0% {left: 0px;}

    20% {left: -50%}

}


.imagemPc img{
    width: 100%;
    max-width: 810px;
    height: auto;
}


/*--------------------SOBRE-----------------------*/

.sobre {
    background-color: rgb(38, 12, 71);
    padding: 45px 9%;
}


.container-txt-img { /*Flex*/
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 90px; /*para dar espaço entre o texto e imagem*/

}

.txtSarah {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.txtSarah::before { 
    display: flex;
    content: '';
    max-width: 90rem;
    height: 1px;
    background-color: #9c87eb;
    display: block;
    margin: 1rem;
}


.txtSarah h1 {
    color: bisque;
    font-size: 39px;
}

.txtSarah h1 span {
    color: rgb(219, 107, 247);
}

.txtSarah p {
    line-height: 1.8;
    text-indent: 5%;
    color: bisque;
    font-family: Inter;
    margin: 40px 0;
    text-align: justify;

}

.txtSarah p span {
    color: rgb(219, 107, 247);
}

.imgSarah {
    align-items: center;
}

.imgSarah img {
    margin-top: 2rem;
    border: 6px solid #7f66c5;
    border-radius: 4px;
}


.BOTAO button {
    text-decoration: none;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    height: 50px;
    width: 200px;
    border: none;
    border-radius: 6px;
    background-color: rgb(178, 80, 202);
    font-size: 20px;
    font-family: Inter;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.5s ease-in-out; /*Altera o transform do hover abaixo*/
}

button:hover { /*Quando passa o mouse por cima*/
    transform:scale(1.05);
    box-shadow: 0 0 8px rgb(178, 80, 202);
}


/*------------------FOOTER-------------------------*/

footer {
    padding: 30px;
    background-color: #1c0c38;
}

.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: #140829;
    color: #7052c2;
    margin: 0;
    padding: 20px;
}

/*---------------------------COOKIES-------------------------------*/

#cookies {
    width: 80%;
    background-color: #dbc1ee;
    position: fixed; /*fica fixo na parte de baixo do site*/
    bottom: 5%;
    left:50%;
    font-family: Inter;
    transform: translate(-50%);
    border-radius: 20px;
    padding: 20px;
    display: none; /*PRO JS*/
}

#cookies.mostrar {
    display: block;
}

.mostrar .cookiesTxt {
    display: flex;
    align-items: center;
    text-align: justify;
    padding: 20px;

}

.mostrar .cookiesBtn {
    margin-left: 30px;

}


.mostrar .cookiesBtn button {
    background-color: #703d92;
    color: #c0a9f8;
    font-weight: 700;
    font-size: 18px;
    padding:8px 40px;
    cursor: pointer;
    border: 1px solid rgb(83, 14, 97);
    transition: 0.5s;

}


/*--------------------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:768px){
    .nav-bar-cima {
        justify-content: center;
    }
    .logo {
        margin:0;
    }
    .navbar {
        padding: 1.5rem 4rem;
    }
    .trilhoComp{
        display: none;
    }
    .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-----------------------*/
    .containerzão {
        display: flex;
        justify-content: center;
        background-color: #d3c1db;
        height: auto;
        width: 100%;
    }

    .container-boasvindas { /*A ÁREA DO TITULO */
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .boasvindas {
        display: flex;
        margin-left: 1rem;
        font-size: 1rem;
        letter-spacing: 0.1rem;
        color:rgba(75, 67, 105, 0.836);
    }

    h2::after{
        content: '';
        width: 0rem;
        height: 0.5px;
        background-color: #483383;
        display: block;
        margin-left: 20rem;
    }

    .container-inicio {  /*Espaço (caixa) das caixa da imagem e carrossel*/
        display: flex;
        flex-wrap: wrap-reverse;
        justify-content: center;
        align-items: center;
        background-color: #706c99;;
        width: auto;
        height: auto;

    }

    .container-sarinha { /*Espaço (caixa) da imagem*/
        width: 80%;
        max-width:400px;
        height: auto;
        display: flex;
        justify-content: center;
    }
    
    .container-sarinha img {
        width: 90%;
        max-width: 250px; /*o tamanho da Sarah*/
        height: auto;
    }


        
    /*-----CARROSSEL-------*/

    
  .slider{
    display: flex;
    width: auto;
    max-width: 800px;
    height: auto;
    justify-content: center;
    overflow: hidden;
    margin: 0.5rem;

  }

  
.imagemPc{
    flex: 0 0 100%; /* Cada slide ocupa 100% da largura do container */
}


@keyframes imagemPc {

    0% {left: 0px;}

    20% {left: -100%}

}


/*---------sobre-------------*/



.container-txt-img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.imgSarah {
    display: flex;
    flex-direction: column;
}

.imgSarah img{
    width: 100%;
    height: 100%;

}
   
.txtSarah {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

button {
    margin-left: auto;
}

@keyframes slide {

    0% {left: 0px;}

    20% {left: -576px}

}

/*---------------Cookies----------------*/


.mostrar .cookiesTxt {
    flex-direction: column;

}
.mostrar .cookiesBtn {
    margin-top: 30px;
    margin-left: 0px;

}




    /*------------------footer-------------------------*/

        
    footer {
        padding: 30px;
        background-color: #1c0c38;
    }

    .containerFooter {
        padding:10px 0 0;
    }

    .conteudo {
        display: flex;
        flex-direction: column;
        text-align: center;
        line-height: 1.5rem;
    }

    .logoFooter img {
        padding:10px;
        display:block;
        margin: 0 auto; /*centraliza*/
    }

    .logoFooter {
        border-right: 0px solid #483383;
        padding-right: 0px;
    }

    .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: transform 0.3s ease-in;
    }
 }
