/* Scroll das divs */

main {
    overflow: scroll;
    height: 100vh;
    scroll-snap-points-y: repeat(100vh);
    scroll-snap-type: y mandatory;
}
        
.content {
    height: 100vh;
    scroll-snap-align: start;
}

/* Cabeçalho */

header {
    background-color: #000;
    padding: 1em;
    position: fixed;
    width: 100%;
}

header .logo {
    width: 10rem;
}

header .logo img {
    width: 100%;
}

header .menu-mobile {
    display: none;
}

header .wrapper {
    margin: 0 auto;
    max-width: 1500px;
}

@media screen and (max-width: 1380px) {
    header .wrapper {
      max-width: 1200px;
      width: 70%;
    }
  }

header .wrapper .conteudo {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

header .wrapper .conteudo .menu {
    align-items: center;
    -webkit-align-items: center;
    display: flex;
    justify-content: end;
    -webkit-justify-content: end;
}

header .wrapper .conteudo .menu .botao-mobile {
    display: none;
    filter: invert(1);
}

header .wrapper .conteudo .menu li {
    display: inline-block;
}

header .wrapper .conteudo .menu li a {
    color: #fff;
    padding: 5px 8px;
    text-decoration: none;
}

header .wrapper .conteudo .menu li a.ativo {
    font-weight: bold;
}

header .wrapper .conteudo .menu li a.idioma {
    background-color: #323232;
    font-weight: bold;
}

header .wrapper .conteudo .menu li a.idioma select {
    background: none;
    border: 0;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

header .wrapper .conteudo .menu li a.idioma select option {
    color: #000;
}

header .wrapper .conteudo .menu .idioma-mobile {
    display: none;
}

/* Responsivo */

@media (max-width: 489px) {
    
    header.claro {
        background-color: #fff;
    }
    
    header.escuro {
        background-color: #000;
    }
    
    header.escuro .menu-mobile ul li a {
        color: #fff;
    }
    
    header .wrapper .conteudo .menu .botao-mobile {
        display: block;
    }
    
    header .wrapper .conteudo .menu ul {
        display: none;
    }
    
    header .menu-mobile {
        height: 200px;
    }
    
    header .menu-mobile ul {
        align-content: center;
        display: grid;
        height: 100%;
        justify-content: center;
        list-style: none
    }
    
    header .menu-mobile ul li a {
        color: #fff;
        display: block;
        font-size: 1.2em;
        padding: 5px 0px;
        text-align: center;
        text-decoration: none;
    }
    
    header .menu-mobile ul li a.ativo {
        font-weight: bold;
    }
    
    header .menu-mobile ul li a.idioma {
        background-color: #323232;
        font-weight: bold;
        margin-top: 7px;
    }
    
    header .wrapper {
        width: 100%;
    }
    
    header .wrapper .conteudo .menu .idioma-mobile {
        display: block;
    }
    
    header .wrapper .conteudo .menu .idioma-mobile a.idioma {
        background-color: #323232;
        font-weight: bold;
        margin-left: 10px;
        padding: 5px;
    }
    
    header .wrapper .conteudo .menu .idioma-mobile a.idioma select {
        background: none;
        border: 0;
        color: #fff;
        font-family: 'Montserrat', sans-serif;
    }
    
}