/* Configurações Globais--------------------------------*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    border-spacing:0;
    border:0;
    outline: none;
}

:root{
    --lightt: #fff;

    --black-10: #ededed;
    --black-20: #dadada;
    --black-40: #b2b2b2;
    --black-60: #878787;
    --black-80: #575757;
    --black-85: #282828;
    --black-90: #202020;
    --black-95: #141414;
    --black-100: #0c0c0c;


    --green-10:#5ab450;
    --green-40:#327828;

}

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

.container{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-width: 100vw;
    font-family: 'Roboto', sans-serif;
    justify-content: space-between;
  
  }

  .div{
    height: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/*Scrollbar--------------------------------*/

::-webkit-scrollbar{
    width:10px;
    background-color: var(--black-10);
}

::-webkit-scrollbar-thumb{
    width:7px;
    background-color: var(--black-20);
}

/*Nav--------------------*/

.nav {
    height: 71.05px;
    min-width: 600px;
    margin-top: 10px;
    display: flex;
    flex-direction: row;
}


.cabecalho {
    width: 100%;
    margin-left: 25px;
}

.input_noturno {
    width: 100%;
    height: 40px;
    margin-top: 20px;
    display: flex;
    flex-direction: row;
}

.input {
    width: 100%;
    height: 30px;
}

.noturno {
    width: 25px;
    height: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
}

.menu {
    margin-top: -18px;
    width: 100%;
    display: flex;

}

.menu ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-weight: 500;
}

nav ul a {
    color: #B290BA;
    text-decoration: none;
    font-size: 0.8rem;
}

nav ul a:hover {
    color: #642175;
}

.vazio {
    min-width: 189px;
}

.logo {
    width: 164px;
    height: 71.05px;
}

#logo {
    margin-top: 10px;
    width: 164px;
}

#mode_icon{
    font-size: 20px;
    color: #B290BA;
}

#mode_icon:hover{
    color: #642175;
    cursor:pointer;
}

/*Input------------------------------------------------*/

.input{
    display: flex;
    flex-direction: row;
    border-radius: 20px;
    outline: solid 1px;
    outline-color: #642175;
}

.nav input {
    width: 100%;
    height: 30px;
    border-radius: 20px 0 0 20px;
}

.nav button{
    width: 40px;
    height: 30px;
    background-image:url(../img/icons/lupa.svg);
    background-position:center;
    background-repeat: no-repeat;
    background-color: #ffffff00;
}

.input button:hover{
    cursor:pointer;
}

.nav input[type='text'] {
    text-indent: 14px;
}

.nav input::placeholder {
    color: #B290BA;
}

.noturno{
    display: none;
}


/*Titulo--------------------------------*/

.titulo{
    max-width: 600px;
    border-radius: 10px;
    background-color: rgb(100,33,117);
    height: 50px;
    width: 100%;
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}


/*Main-------------------------------------------*/

main{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
}

h1{
    text-transform:uppercase;
    color: white;
    font-size:1.1rem;
}

main{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #642175;
}

main ul{
    padding: 20px;
}
main ul li{
    padding: 20px;;
    list-style: none;
    text-decoration: none;
}

main ul li a{
    color: #642175;
}

main ul li iframe{
    max-width: 600px;
    max-height: 150px;
    margin-top: 50px;
    border-radius: 20px;
}

h3{
    font-size: 1.1rem;
}

main ul li{
    font-size: 1rem;
}

main ul li img{
    width:50px;
}


/*Footer-------------------------------*/

footer{
    width:100%;
    height: 80px;
    margin-top: -40px;;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
}

footer ul{
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    gap: 5px;
}

footer ul li{
    font-size: 0.6rem;
}

footer ul li a{
    color: #A5A5A5;
    text-decoration: none;
    font-size: 0.8rem;
}

footer ul li a:hover{
    color: #878787;
}



/*Responsividade de telas---------------------*/

@media(max-width:600px){
   
    /*Nav--------------------*/

    nav{
        min-width: 90%;
    }

    .nav {
        height: 71.05px;
        min-width: 100%;
        margin-top: 0px;
        display: flex;
        flex-direction: row;
    }


    .cabecalho {
        width: 100%;
        margin-left: 25px;
    }

    .input_noturno {
        width: 100%;
        height: 40px;
        margin-top: 20px;
        display: flex;
        flex-direction: row;
    }

    .input {
        width: 100%;
        height: 30px;
    }

    .menu {
        margin-top: -18px;
        width: 100%;
        display: flex;

    }

    .menu ul {
        list-style: none;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    nav ul a {
        color: #B290BA;
        text-decoration: none;
        font-size: 0.8rem;
    }

    nav ul a:hover {
        color: #642175;
    }

    .vazio {
        min-width: 0;
        display: none;
    }

    .logo {
        width: 85px;
        margin-right: -12px;
    }

    #logo {
        margin-top: 18px;
        width: 85px;
        height: 29.56px;
    }


    /*Contatos-----------------------*/
    main ul li iframe{
        max-width: 90%;
        max-height: 100px;
        margin-top: 30px;
        border-radius: 20px;
    }
   

   /*Legenda------------------*/

     .titulo{
        border-radius: 0;
        width: 100%;
        margin-top:20px;
    }

    #titulo_legenda{
        width: 100%;
    }
}

@media(max-width:320px) {

    .menu{
        display: none;
    }

}



