* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body {
    background-color: #262A33;
   
}

::-webkit-scrollbar-track {
    /*Fundo*/
    background-color: #262A33;
}

::-webkit-scrollbar {
    width: 15px;
    background: #4F618B;
}

::-webkit-scrollbar-thumb {
    border-radius: 25px;
    background: #313236;
}


.container-menu {
    width: 99.1vw;  
    height: 100px;
    display: flex;
    background-color: #4F618B;

}

.container-menu .menu-nav {
    width: 600px;
    height: 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: bold;
    position: absolute;
    left: 53em;
    margin: 30px 180px 30px 0;

}

.container-menu .menu-nav a {
    text-decoration: none;
    padding: 34px 10px 34px 0;
    color: white;
}

.container-menu .menu-nav a:hover {
    text-decoration: underline;
}

.container-menu .menu-nav button {
    width: 100px;
    height: 40px;
    padding: 0 10px 0 10px;
    
    align-items: center;
    justify-content: center;

    text-decoration: none;
    font-size: 20px;
    border-radius: 5px;
    margin-left: 10px;
    margin-top: 5px;
    cursor: pointer;
}

.container-menu .menu-nav button:hover{
    background-color: brown;
    color: white;
}



.bd-logo {
    width: 84px;
    height: 93px;
    display: block;
    bottom: 32px;
    top: 32px;
    padding-left: 135px;
}

/* Estilo Main Container central */

.container {
    width: 82em;
    min-height: 100vh;
    display: block;
    margin: auto;
    margin-top: 5px;


}

/* Estilo Carrosel de imagem página central */
.container-slider {
    width: 67vw;
    min-height: 400px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50px;
    gap: 1rem;
}

.container-images {
    width: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

}

.slider {
    opacity: 0;
    transition: opacity .2s;
    position: absolute;
    width: 100%;
    height: 260px;
    border-radius: 30px;

}

.on {
    opacity: 1;
}

#prev-button,
#next-button {
    width: 30px;
    height: 100px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    color: white
}

#prev-button img,
#next-button img {
    width: 100%;
    height: 100%;
    
}

/* Estatística de visitantes e mensagens enviadas
para a biblioteca, pelo canal de mensagem*/

.estatistica-container {
    width: 60em;
    height: 20em;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;

    
}

.estatisticas-mgs,
.estatisticas-vist {
    width: 270px;
    height: 150px;
    background-color: #D9D9D9;
    box-shadow: 10px 10px rgba(255, 249, 249, 0.45);
    position: relative;
    top: 1px;
    margin: auto 100px;

    cursor: pointer;

}

.estatisticas-mgs,
.estatisticas-vist>h1,
span {
    display: block;
    font-size: 40px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-align: center;
    padding-top: 20px;


}

.estatisticas>img {
    width: 38px;
    height: 38px;
    display: flex;
    margin-left: 20px;

}

.modal-estatistica{
    width: 550px;
    height: 150px;
    background-color: #4869B6;
    position: absolute;

    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-align: center;
    border-radius: 10px;
    top: 32em;
    
    display: none;
    z-index: 100;
}

.modal-estatistica > p{
    font-weight: 900;

    color: white;
    font-size: 20px;
    margin-bottom: 13px;
}

.modal-estatistica > p > strong{
    color: black;
    font-weight: 900;
}

.modal-estatistica> a{
    width: 230px;
    height: 100px;

    background-color:white;
    text-decoration: none;
    font-size: 20px;
    padding: 3px 10px 3px 10px;

    color: black;
    font-weight: 900; 
    border-radius: 5px;
}

.modal-estatistica > a:hover{
    background-color: red;
    color: white;
}


/* Estilos Card, página central museu*/

.card-container {
    width: 100%;
    display: flex;
}

.card-container .card {
    width: 267px;
    background-color: #4F618B;
    box-shadow: 10px 10px rgba(52, 103, 224, 0.45);
    margin: 5em auto;

}

.card-container .card>p {
    text-align: justify;
    font-size: 15px;
    padding: 5px 10px;
    font-family: 'montserrat';
    font-weight: bolder;
    font-variant: normal;
    text-indent: 3em;
    line-height: 1.4em;
    color: white;
}

.card-container .card>img {
    width: 250px;
    height: 200px;
    display: block;
    align-items: center;
    justify-content: center;
    margin: 5px auto;
    border-radius: 10px;
}

.card-container .card .btn-card {
    width: 150px;
    height: 30px;

    margin: 20px auto;
    font-size: 20px;
    font-family:'montserrat';
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    justify-items: center;
    border-radius: 50px;
    border: none;
    background-color: #D9D9D9;
   
    box-shadow: 2px 10px 15px rgba(0, 0, 0, 0.40);

}

.card-container .card .btn-card>a {
    text-decoration: none;
    cursor: pointer;
}

.card-container .card .btn-card a:hover {
   color:#262A33;
}

/* 
*
* Rodape central
*
*
*/

.rodape-container {
    width: 100%;
    height: 33vh;
    display: flex;
    background-color: #313236;
    position: initial;
    top: 16vh;
    color: white;

}

.rodape-container .rodape-nav {
    width: 194px;
    height: 213px;
    padding-right: 300px;
    margin: 20px 30px 0 200px;

}

.rodape-container .rodape-redes {
    width: 327px;
    height: 184px;
    display: inline-block;
    margin: 20px 30px 0 300px;
}

.rodape-container .rodape-bibliDigital {
    width: 236px;
    height: 171px;
    display: inline-block;
    margin: 20px 30px 0 300px;
}

.rodape-container,
h1 {
    font-size: 32px;
    font-family: 'montserrat';
    font-weight: bold;
    padding-bottom: 5px;
}

.rodape-container ul>li {
    font-size: 24px;
    font-family: 'montserrat';
    font-weight: bold;
    margin-left: 50px;
    padding-bottom: 5px;
}

h1#reservado {
    font-size: 10px;
    display:inline-block;
 

    position: absolute;
    top: 165em;
    left: 750px;

}


/*1032px - 1864px*/
@media only screen and (min-width: 64.5em) and (max-width: 116.5em) {
 .container {
        width: 41em;
        height: 124em;
    }

    .container-menu {
        width: 100%;
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
    }

    .container-menu .menu-nav {
        width: 90px;
        height: 120px;
        font-size: 14px;
        position: absolute;
        left: 48em;
        top: 15px;
        margin-top: 85px;
        background-color: #4F618B;
        display: none;
        border-radius: 0 0 10px 10px;
    }

    .container-menu .menu-nav a {
        margin: 15px;
        padding: 0;
    }

    .menu-hamburguer {
        width: 50px;
        height: 50px;

        border-radius: 50%;
        background-color: white;
        position: relative;
        top: 20px;
        left: 43em;
    }


    .container-menu .menu-nav button {
        width: 60px;
        height: 20px;
        align-items: center;
        justify-content: center;

        text-decoration: none;
        font-size: 20px;
        border: none;
        border-radius: 10px;
        margin-left: 10px;
        margin-top: 5px;

    }

    .bd-logo {
        width: 20px;
        height: 20px;
        margin: 0;
        padding-left: 10px;
    }

    /*========================================*/
    .container-slider {
        width: 80%;
        height: 24em;
        margin-top: 40px;
        margin-left: 60px;

    }


    /*=================================*/
    .estatistica-container {
        width: 100%;
        height: 355px;
        display: flex;
        flex-wrap: wrap;
        position: relative;
        margin: 0;
        top: -40px;
        left: -20px;


    }

    .estatisticas-vist {

        margin-bottom: 25px;
    }

    /*======================================================*/

    .card-container {
        width: 20em;
        height: 100em;
        display: flex;
        flex-direction: column;
        position: relative;
        right: 420px;
    }

    .card-container .card {
        width: 500px;
        height: 350px;
        margin: 50px;
        margin-top: 10px;
        top: 10px;
        left: 420px;
    }

/*======================================================*/

    .rodape-container {
        width: 100%;
        height: 10em;
        position: relative;
        top: 5em;
        display: flex;
    }

    .rodape-container .rodape-nav {
        width: 200px;
        height: 213px;
        padding-right: 100px;
        margin: 20px 30px 0 20px;

    }

    .rodape-container .rodape-redes {
        width: 400px;
        height: 213px;
        padding-right: 50px;
        margin: 20px 30px 0 30px;
    }

    .rodape-container .rodape-bibliDigital {
        width: 200px;
        height: 213px;
        padding-right: 30px;
        margin: 20px 30px 0 -10px;
    }

    .rodape-container h1#reservado {
        width: 400px;
        top: 260px;
        left: 300px;
    }

}



/*504px - 1024px*/
@media only screen and (min-width: 31.5em) and (max-width: 116.5em) {
    .container {
        width: 41em;
        height: 124em;
    }

    .container-menu {
        width: 100%;
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
    }

    .container-menu .menu-nav {
        width: 90px;
        height: 120px;
        font-size: 14px;
        position: absolute;
        left: 48em;
        top: 15px;
        margin-top: 85px;
        background-color: #4F618B;
        display: none;
        border-radius: 0 0 10px 10px;
    }

    .container-menu .menu-nav a {
        margin: 15px;
        padding: 0;
    }

    .menu-hamburguer {
        width: 50px;
        height: 50px;

        border-radius: 50%;
        background-color: white;
        position: absolute;
        top: 20px;
        left: 43em;
    }


    .container-menu .menu-nav button {
        width: 60px;
        height: 20px;
        align-items: center;
        justify-content: center;

        text-decoration: none;
        font-size: 20px;
        border: none;
        border-radius: 10px;
        margin-left: 10px;
        margin-top: 5px;

    }

    .bd-logo {
        width: 20px;
        height: 20px;
        margin: 0;
        padding-left: 10px;
    }

    /*========================================*/
    .container-slider {
        width: 80%;
        height: 24em;
        margin-top: 40px;
        margin-left: 60px;

    }


    /*=================================*/
    .estatistica-container {
        width: 100%;
        height: 355px;
        display: flex;
        flex-wrap: wrap;
        position: relative;
        margin: 0;
        top: -40px;
        left: -20px;


    }

    .estatisticas-vist {

        margin-bottom: 25px;
    }

    /*======================================================*/

    .card-container {
        width: 20em;
        height: 100em;
        display: flex;
        flex-direction: column;
        position: relative;
        right: 420px;
    }

    .card-container .card {
        width: 500px;
        height: 350px;
        margin: 50px;
        margin-top: 10px;
        top: 10px;
        left: 420px;
    }

/*======================================================*/

    .rodape-container {
        width: 100%;
        height: 10em;
        position: relative;
        top: 5em;
        display: flex;
    }

    .rodape-container .rodape-nav {
        width: 200px;
        height: 213px;
        padding-right: 100px;
        margin: 20px 30px 0 20px;

    }

    .rodape-container .rodape-redes {
        width: 400px;
        height: 213px;
        padding-right: 50px;
        margin: 20px 30px 0 30px;
    }

    .rodape-container .rodape-bibliDigital {
        width: 200px;
        height: 213px;
        padding-right: 30px;
        margin: 20px 30px 0 -10px;
    }

    .rodape-container h1#reservado {
        width: 400px;
        top: 260px;
        left: 300px;
    }

}


/*320px - 496px*/
@media only screen and (min-width: 20em) and (max-width: 32em) {
    .container {
        width: 20em;
        height: 120em;
    }

    .container-menu{
        width: 100%;
        display: inline-block;
        
    }

    .container-menu .menu-nav{
        width: 220px;
        height: 250px;
        font-size: 28px;
       

        position: absolute;
        left: 5em;
        margin-top: 80px;
        
        background-color: #4F618B;

        display: none;
        border-radius: 0 0 10px 10px;
        z-index: 100;
    }

    .container-menu .menu-nav a{
        width: 100px;
        margin: 15px auto;
        display: flex;
        flex-direction: column;
  
        padding: 0;
    }

    .menu-hamburguer{
        width: 50px;
        height: 50px;
        
        border-radius: 50%;
        background-color: white;
        position: absolute;
        top: 20px;
        left: 20em;
    }

    .container-menu .menu-nav button{
        width: 200px;
        height: 30px;
        
        
        text-decoration: none;
        font-size: 28px;
        border: none;
        border-radius: 10px;
        margin-left: -50px;

    }

    .bd-logo {
        width: 20px;
        height: 20px;
        margin: 0;
        padding-left: 10px;
    }

    /*========================================*/
    /* Slider */
    .container-slider {
        width: 25.1em;
        margin: 0;
        position: relative;
        right: 40px;
    }


    /*=================================*/
    .estatistica-container {
        width: 20.1em;
        height: 55vh;
        display: flex;
        flex-wrap: wrap;
        position: relative;
        left: -10px;
        right: 0;
        margin: 0;

    }

    .estatistica-container .estatisticas-vist, .estatisticas-mgs {

        margin: 0 0 100px 0;
    }


    /*======================================================*/

     .card-container {
        width: 14.5em;
        height: 20em;
        flex-wrap: nowrap;
        display: flex;

        flex-direction: column;
        position: relative;
        right: 460px;    
    }
    .card-container .card{
        width: 20.5em;
        height: 60em;
        margin: 30px; 
        margin-top: 10px;
        top: 200px;
        left: 415px;
        
    }

    .card-container .card .btn-card {
        margin: 10px auto;
        
          
    }


    /*======================================================*/

      .rodape-container {
        width: 100%;
        height: 27em;
        position: relative;
        top: 80vh;
        display: flex;
        flex-direction: column;
    }


    
    .rodape-container .rodape-nav {
        width: 200px;
        height: 213px;
        padding-right: 100px;
        margin: 20px 30px 0 50px;
    
    }
    
    .rodape-container .rodape-redes {
        width: 300px;
        height: 213px;
        padding-right: 50px;
        margin: 20px 30px 0 50px;
    }
    
    .rodape-container .rodape-bibliDigital {
        width: 200px;
        height: 213px;
        padding-right: 50px;
        margin: 20px 30px 0 50px;
    }
    h1#reservado{
        width: 400px;
        top: 740px;
        left: 10px;
    }

}