/*Corpo das páginas*/

  
.principal{
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #6f6e70, #1f1927, #00010D, #0D0D0D);
    background-size: 400% 400%;
    animation: colors 10s ease infinite;
    }

@keyframes colors{
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
        }
    }
    .principal-index-museu{
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, #6f6e70, #1f1927, #00010D, #0D0D0D);
        background-size: 400% 400%;
        animation: colors 10s ease infinite;
        }
    
    @keyframes colors{
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
            }
        }

.principal-index{
    width: 100%;
    height: 100%;
   background-image: url(../img/fundo-index.png);
    background-size:cover;
    background-repeat: no-repeat;
    
} 



/* Navegação Geral*/
nav a{
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    font-family: OpenSans;
    color: #fefefe;
    }

nav a:hover{
    background: #87858b;
    font-size: 18px;
    
}
.logo-deitada{
    width: 15rem;
}
.item-nav--ativo{
    color: #f60101;
    font-weight: bold;
    font-size: 18px;
}

#header{
    box-sizing:border-box;
    display: flex;
    width: 100%;
    height: 60px;
    padding: 1.5rem;
    align-items: center;
    justify-content: space-between;
    background: radial-gradient(#666565, #000000 70% );
    opacity: 0.7;
}

#menu{
    display: flex;
    gap: 2rem;
}

#menu a{
    display: block;
    padding: 0.5rem;
}
#btn-mobile{
    display: none;
}
.item-nav-btn{
    background-color: #F60101;
    color:#fefefe;
    font-size:16px;
    font-family: TextMeOne;
    padding: 5px 15px;
    border-radius: 8px;
 }
.item-nav-btn:hover{
    background-color: #fefefe;
    color:#F60101;
    font-weight: bold;
    font-size:16px;
    transition: 0.5s background;
}
.item-nav:hover{
    color: #fefefe;
}


/* Rodapé*/

.icone-rede{
    width: 2rem;
 }

 .icone-rede:hover{
     transform: scale(1.2);
 }

.rodape{
    width: 90%;
    margin: 0 auto;
    padding: 10px 0;
}
    
.rodape li{
    display: inline-block;
    text-align: center;
    color: #ffffff;
    font-family: OpenSans;
    font-size: 14px;
    line-height: 20px;
    width: 28%;
    vertical-align: top;
    margin: 0 1.5%;
    padding: 10px 10px;
}
footer h3{
    padding-bottom: 15px;
    font-size: 16px;
}
.curadoria{
    padding-top: 7px;
}
.comissao-de-curadoria{
    font-family: Karla;
    font-size: 16px;
    color: #fefefe;
    text-align: center;
}
.icones li{
    display: block;
    margin: 0 auto;
    padding: 2px;
    }

.rodape-geral{
    background-image: url(../img/fundo.png);
    }
.copyright{
    text-align: center;
    color:#ffffff;
    font-family: OpenSans;
    font-size: 12px;
    padding-bottom: 10px;
}

/* Responsividade */


@media screen and (max-width: 480px){
    .logo-deitada{
       margin: 0;
       }
    #nav{
        margin: 0 auto;
        padding-bottom: .5rem;
    }
    #btn-mobile{
        display: block;
    }
        #menu{
        display: block;
        position: absolute;
        width: 100%;
        top: 60px;
        right: 0px;
        background-color: black;
        opacity: .9;
        transition: .6s;
        z-index: 1000; 
        height: 0px;
        visibility: hidden;
        overflow-y: hidden;
    }
    
    #nav.active #menu{
        height: calc(100vh - 60px);
        visibility: visible;
        overflow-y: auto;
        }

    #menu a{
            padding: 1rem 1rem;
            margin: 0 1rem;
            text-align: center;
            border-bottom: 3px solid rgba(241, 220, 220, 0.05);
            
        }
        
    #btn-mobile{
        display: flex;
        padding: 2rem .5rem 1rem 1rem;
        font-family: TextMeOne;;
        color:#ffffff;
        font-size: 1.2rem;
        border: none;
        background: none;
        cursor: pointer;
        gap: .5rem;
        }
    #hamburguer{
        display: block;
        border-top: 2px solid;
        color:#ffffff;
        width: 20px;
    }
    #hamburguer::after, #hamburguer::before{
        content: '';
        display: block;
        width: 20px;
        height: 2px;
        background: currentColor;
        margin-top: 5px;
        transition: .5s;
        position: relative; 
    }
    #nav.active #hamburguer{
        border-top-color: transparent;

    }
    #nav.active #hamburguer::before{
        transform: rotate(135deg);
    }
    #nav.active #hamburguer::after{
        transform: rotate(-135deg);
        top: -7px;
    }
    #header{
        background-color: black;
        opacity: 1;
    }

    h1 {
    max-width: 380px;
    text-align: center;
    margin: 0 auto;
    padding: 0;
}

.logo{
    padding-top: 0px;
    padding-bottom: 5em;
    max-width: 380px;
    text-align: center;
    margin: 0 auto;  
    }


.rodape li{
    display: block;
    width: 90%;
}

}

