/*------------------------------------------------------CEBEÇALHO*/
*{
    font-family: 'Now Bold';
    margin:0;
    padding: 0;
    zoom: 1;
}

html{
    font-size: 50%;
}

header {
    display:flex;
    margin: auto;
    height: auto;
    width: auto;
}

.logo-topo {
    display: block;
    margin: 0px auto;
    width:60%;
    height: 20%; 
}


h1 {
    color: #00524C;
    display: block;
    font-family: 'Now Bold';
    font-size: 3.5rem;
    margin: auto;
    margin-bottom: 2%;
    height: auto;
    text-align: center;
    width: auto;
}

h2 {
    color: #00524C;
    display: block;
    font-family: 'Ibarra Real Nova';
    font-size: 2.4rem;
    font-weight: 400;
    margin: auto;
    height: auto;
    text-align: center;
    width: auto;
}



/*-------------------------------------------------------------*/

.div-corpo {
    display: block;
    height: auto;
    width: auto;
}

/*----------------------------------------------------MENU*/

aside {
    display: block;
    float: left;
    margin: auto;
    padding: 0;
    padding-bottom: 2%;
    text-align: center;
    width: 20vw;
}

.div-previsao-do-tempo {
    margin: auto;
    margin-top: 3%;
    text-align: center;
    width: 90%;
}

.div-previsao-do-tempo h2 {
    font-size: 2.4rem;
    padding-bottom: 5%;
}

.clima image {
    position: relative;
}

.retangulo-topo {
    border-top: 0.4rem solid #00524C;
    height: 0.4rem;
    margin: auto;
    opacity: 0.40;
    padding: 3%;
    width: 80%;
}

.mudar-cor {
    margin-top: 2rem;
}

.mudar-cor a:hover {
    color: #00524C;
}

.nav-list {
    font-size: 1.5rem;
    list-style: none;
    position: relative;
}

.nav-list li {
    margin-bottom: 5.4rem;
}

.navegacao-bottom {
    text-align: center;
}

.nav-list a {
    color: #33323D;
    text-decoration: none;
}

.retangulo-bottom {
    border-top: 0.4rem solid #00524C;
    height: 0.4rem;
    margin: auto;
    opacity: 0.4;
    width: 80%;
}

/*-------------------------------------------------------------------*/

#div-corpo-superior {
    height: auto;
    margin-top: 3%;
    overflow: auto;
}

.div-conteudo-principal {
    display: block;
    float: left;
    height: auto;
    margin: 0;
    padding: 0;
    text-align: center;
    width: 78vw;
}

.div-conteudo {
    clear: both;
    display: block;
    margin: auto;
    margin-top: 10%;
    text-align: center;
    width: 50%;
}

.cor-verde{
    color:#70D446;
    font-size: 1.7rem;
    text-align: center;
}

#div-corpo-inferior {
    height: auto;
    margin: auto;
    margin-top: 2%;
    text-align: center;
    width: 95%;
}

/* ----------------------------------RODAPÉ---------------------*/

.rodape {
    background-color: #00524C;
    display: block;
    margin: auto;
    margin-top: 2%;
    padding: 0;
    padding-bottom: 2%;
    padding-top: 1%;
    position: relative;
    text-align: center;
    width: 100%;
}

.rodape-superior {
    display: block;
    margin: 0rem auto;
    text-align: center;
}

.logo-bottom {
    margin: 0rem 2rem;
    width: 30rem;
    height: 18rem;
}

.nav-list-bottom {
    display: inline-flex;
    justify-content: space-evenly;
    list-style-type: none;
    padding: 2% 0;
    margin: auto;
    text-align: center;
    width: 100%;
}

.nav-list-bottom a {
    color: white;
    font-size: 1.6rem;
    padding: 2rem;
    text-decoration: none;
}

.nav-list-bottom a:hover {
    color: black;
}

.copyright {
    color: white;
    text-align: center;
    font-size: 1.8rem;
}

.btn-voltar-inicio {
    background-color: black;
    border-radius: 50%;
    bottom: 1rem;
    height: 6rem;
    position: fixed;
    right: 1rem;
    width: 6rem;
}

.btn-voltar-inicio img {
    display: block;
    margin: 1rem auto;
    width: 4rem;
    height: 4rem;
}

/* ----------------------------------RESPONSIVIDADE---------------------*/

@media only screen and (max-width:980px){
    
    h1{
        font-size:3rem;
    }
    
    .logo-topo {
    height: 10rem; 
    }
    
    .nav-list-bottom{
        display:none;
    }
    
    header{
        justify-content:inline;
    }
    
    .menu{
        cursor:pointer;
        margin-right:5rem;
        width:7rem;
        height: 10rem; 
        z-index:1;
    }
    
    .menu img{
        display:block;
        width:7rem;
    }
    
    .menu-sair{
        display:none;
    }
    
    aside{
        display:none;
    }
    
    .copyright {
    padding-top:2rem;
    }
    
    .div-conteudo-principal{
        width:100%;
    }
    
    
    .copyright{
        font-size:1rem;
    }
}

@media only screen and (min-width:980px){
    
    .menu, .menu-sair{
        display:none;
    }
}


