*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    font-size: 1em;
    overflow-x: hidden;
}

header{
    background-color: #2c291f;
    color: #ca882c;
    /* padding: 20px 100px; */
}

.nav-bar{
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 2rem;
}

.logo{
    display: flex;
    align-items: center;
}

.logo h1{
    font-size: 2em;
    font-weight: normal;
}

.logo h1 span{
    color: #fff;
}

.nav-list{
    display: flex;
    align-items: center;
}

.nav-list ul{
    display: flex;
    justify-content: center;
    list-style: none;
}

.nav-item{
    margin: 0 5px;
}

.nav-link{
    text-decoration: none;
    font-size: 1em;
    color: #ca882c;
}

.mobile-menu-icon{
    display: none;
}

.mobile-menu{
    display: none;
}

.nav-link:hover{
    color: rgb(255, 255, 255);
    font-weight: bold;
}

.section-first {
    margin-top: 10px;
    margin-bottom: 20px;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 10px;
}

article > .container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: stretch;
    width: 100vw;
    
}

article .container section.first{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    width: 55vw;
    height: 100%;
}

article .container section.first div{
    display: inline;
    width: 50%;
}

article .container section.first div h3{
    color: #0b7c00;
    font-size: 1.4em;
    margin: 15px;
    text-transform: uppercase;
}

.box-exposicoes ul li a{
    color: orangered;
    text-decoration: none;
}

.box-exposicoes ul li{
    margin-left: 50px;
}

.box-exposicoes ul li a:hover , .box-introducao a:hover{
    text-decoration: underline;
}

.box-introducao p{
    margin-bottom: 10px;
    margin-left: 15px;
    text-align: justify;
}

.box-introducao a{
    margin-left: 15px;
    text-decoration: none;
    color: orangered;
}

iframe{
    width: 100%;
}

aside{
    width: 30vw;
    background-color: #ebe6de;
}

aside > .container{
    padding: 20px;
    background-color: #ccc8b5;
}

aside > .container > h3{
    color: #825736;
    text-transform: uppercase;
}

aside > .container div input[type='submit']{
    width: 100%;
    height: 40px;
    border: none;
    background-color: #9b9273;
    color: white;
    font-weight: bold;
    cursor: pointer; 
}

aside label{
    display: inline-block;
    margin: 5px;
    font-size: 0.9em;
}

aside > .container2{
    padding: 20px;
    background-color: #ebe6de;
    display: flex;
    flex-direction: column;
}

aside > .container2 > h3{
    color: #825736;
    text-transform: uppercase;
    margin: 10px;
    
}

aside .container2 .box1{
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

aside .container2 .card1,
aside .container2 .card2,
aside .container2 .card3,
aside .container2 .card4 {
    background-image: url("../img/fundo-foto.png");
    background-size: cover;
    height: 125px;
    width: 125px;
    position: relative;
    margin: 10px;
}

aside .container2 .card1 img,
aside .container2 .card2 img,
aside .container2 .card3 img,
aside .container2 .card4 img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

footer{
    text-align: center;
    margin-top: 10px;
    background-color: #ebe6de;
    padding: 20px;
}

footer ul{
    list-style: none;
}

footer ul li{
    display: inline-block;
    text-transform: lowercase;
    padding: 5px;
}

footer ul li a{
    text-decoration: none;
    color: #825736;
    padding: 5px;
}

footer ul li a:hover{
    text-decoration: underline;
}

footer p{
    margin: 15px;
}

footer p span{
    color: #825736;
}

@media screen and (max-width: 880px){
    article .container section.first{
        width: 100vw;
    }

    aside{
        width: 70vw;
        margin-top: 20px;
    }
}

@media screen and (max-width: 740px){
    article .container section.first{
        flex-direction: column;
        align-content: center;
    }
    article .container section.first div{
        width: 70%;
    }
}

@media screen and (max-width: 730px){
    .foto-museu{
        width: 90%;
    }
    .foto-depoimento{
        width: 50%;
    }
    
}

@media screen and (max-width: 770px){
    .nav-bar{
        padding: 1.5rem 2rem;
    }

    .nav-item{
        display: none;
    }

    .mobile-menu-icon{
        display: block;
        
    }
    .mobile-menu-icon 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;
    }
    .open{
        display: block;
    }
    .section-first .foto-museu{
        margin-right: 0px;
        margin-bottom: 20px;
    }
}