* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: LoveeeLace, system-ui, -apple-system, BlinkMacSystemFont,
        'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans',
        'Helvetica Neue', sans-serif;
    color: var(--texto);
    letter-spacing: 3px;
    text-wrap: pretty;
}

@font-face {
    font-family: LoveeeLace;
    src: url(../font/Lovelace-ExtraLight.ttf);
}
:root {
    --text: #fff;
    --bg: #191818;
    --bgMenu: #171717fa;
    --menuText: #fff;
    --bgIntroduction: #171717ba;
    --bgNavBar: #17171792;
    --borders: #8c8c8ca3;
    --footer: #1e1e1ea3;
}

body {
    color: var(--text);
    overflow-x: hidden;
    background-color: var(--bg);
    background-image: url(../imgs/bgWebsite.svg);
    background-repeat: repeat;
    text-rendering: optimizeLegibility;
}

.navbar {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    background: none;
    width: 100%;
    padding: 70px;
    top: 0;
    left: 0;
    z-index: 9999999;
    background: none;
    transition: 0.5s ease;
}

.scrolled {
    background: var(--bgNavBar);
}
.nav-logo {
    align-self: center;
    position: relative;
}

.nav-logo > a {
    position: absolute;
    width: 300px;
}

.nav-logo > a > img {
    width: 100%;
    transition: 0.4s ease;
}

.nav-logo > a > img:hover {
    transform-origin: center;
    transform: scale(1.1);
}
.nav-logo,
.nav-menu {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: center;
}

.hamburguer {
    position: absolute;
    z-index: 9999;
    cursor: pointer;
    width: 50px;
    right: 0;
    margin-right: 100px;
}

.nav-links-bg {
    display: none;
    position: absolute;
    background-color: var(--bgMenu);
    top: 0;
    left: 100%;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: 100vh;
    animation: showMenu 0.4s ease forwards;
    transition: 0.4s ease;
    z-index: 8888;
    color: var(--menuText);
}

/*Mostrar menu da direita para a esquerda*/
@keyframes showMenu {
    from {
        opacity: 0;
        left: 100%;
    }
    to {
        opacity: 1;
        left: 0;
    }
}
/*Esconder menu da esquerda para a direita*/
@keyframes hideMenu {
    from {
        opacity: 1;
        left: 0;
    }
    to {
        opacity: 0;
        left: 100%;
    }
}

.nav-links > * {
    font-size: 40px;
    list-style: none;
    transition: 0.3s ease;
    text-transform: uppercase;
    font-weight: 600;
}
li > a {
    text-decoration: none;
}
li > a:hover {
    text-decoration: underline;
}

.separator {
    width: 3px;
    height: 80%;
    background-color: var(--menuText);
    border-radius: 18px;
}

.moreLinks-Space {
    display: flex;
    align-items: center;
    justify-content: center;
}

.moreLinks {
    margin-left: 10px;
    font-size: 62px;
    height: 95px;
    cursor: pointer;
}

.moreLinks:hover {
    text-decoration: underline;
}

.noHover:hover {
    text-decoration: none;
}

.nav-subLinks {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: self-start;
    justify-content: center;
    animation: showSubLinks 0.5s ease forwards;
}

.nav-subLinks > * {
    font-size: 30px;
    transition: 0.3s ease;
    text-transform: uppercase;
    transition: 0.5s ease;
    list-style: square;
    margin: 10px 0;
    font-weight: 400;
}

/*Mostrar links da direita para a esquerda*/

@keyframes showSubLinks {
    from {
        left: 120%;
    }
    to {
        left: 0;
    }
}
/*Esconder links da esquerda para a direita*/
@keyframes hideSubLinks {
    from {
        left: 0;
    }
    to {
        left: 120%;
    }
}

/*MAIN*/
main {
    width: 100%;
    margin: 0px 0px 100px 0px;
}
.mainBG {
    position: relative;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    text-align: left;
    padding: 0px 100px;
    background-image: url(../imgs/montanhas.jpg);
    background-size: cover;
    background-position: center;
    filter: grayscale(0.9);
}

.mainText {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bgIntroduction);
    position: absolute;
    padding: 0px 120px;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}

.title {
    display: flex;
    align-self: self-start;
    flex-direction: column;
}
.title > h1 {
    font-size: 16px;
    margin-bottom: 4px;
}
.title > hr {
    width: 300px;
}
.alignRight {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-top: 80px;
    width: 100%;
    height: 100%;
    text-align: left;
}
.text {
    font-size: 40px;
    font-weight: 600;
    width: 820px;
    margin-top: -100px;
}
.textArea {
    margin: 80px 0px;
    padding: 0px 40px;
}

.textArea > h1 {
    justify-self: start;
    font-size: 16px;
    text-transform: uppercase;
    font-style: italic;
}

hr {
    width: 20%;
    margin-bottom: 20px;
    align-items: self-start;
    margin-top: 1px;
}

.flex {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 35px;
    flex: 1;
}

.flex-space {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    height: 100%;
}

.flex-space > * {
    margin: 0px 20px;
}

.about {
    display: flex;
    align-items: self-start;
    flex-direction: column;
    flex: 1;
    height: 100%;
}

h3 {
    font-weight: 600;
    letter-spacing: 1px;
}

picture {
    width: 500px;
    flex: 1;
}

.imgAnimationRight > img {
    /*Filtro na img e animação ao dar scroll*/
    width: 100%;
    height: 100%;
    filter: grayscale(0.9);
    animation: showRight 0.2s ease forwards;
    animation-timeline: scroll();
    transition: 0.2s ease;
    animation-range: entry 5% cover 45%;
}

.imgAnimationLeft > img {
    /*Filtro na img e animação ao dar scroll*/
    width: 100%;
    height: 100%;
    filter: grayscale(0.9);
    animation: showLeft 0.2s ease forwards;
    animation-timeline: scroll();
    transition: 0.2s ease;
    animation-range: entry 30% cover 55%;
}

/*Mostrar uma img da direita para a esquerda*/

@keyframes showRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/*Mostrar uma img da esquerda para a direita*/
@keyframes showLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.sepCenter {
    display: flex;
    align-content: center;
    justify-content: center;
    margin: 150px 0px;
}
.separator2 {
    align-self: center;
    width: 80%;
}
.lastText {
    text-align: center;
    font-weight: 600;
    line-height: 40px;
    font-size: 22px;
}
.btnCenter {
    display: flex;
    align-content: center;
    justify-content: center;
}

.btnCenter > button {
    margin-top: 50px;
    background: none;
    border: 2px solid var(--borders);
    font-size: 20px;
    cursor: pointer;
    transition: 0.4s ease;
    font-size: 24px;
    padding: 10px;
    text-transform: uppercase;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.btnCenter > button > a {
    text-decoration: none;
}

.btnCenter > button:hover {
    scale: 1.1;
}

/*FOOTER*/

footer {
    background: var(--footer);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}

.topPart,
.botPart {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
}
.topPart {
    justify-content: space-around;
}
.botPart {
    justify-content: center;
    flex-direction: column;
}

.logo-footer {
    width: 150px;
}
.logo-footer > a > img {
    width: 100%;
    transition: 0.4s ease;
}
.logo-footer > a > img:hover {
    scale: 1.05;
}
.menuFooter > ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    line-height: 30px;
    font-size: 13px;
}
.menuFooter > ul > * {
    margin: 0px 20px;
}

.separatorFooter {
    width: 80%;
    height: 2px;
    background-color: var(--borders);
    margin: 40px 0;
}

.socials-footer,
.social-container-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
}

.social-container-footer > li {
    margin: 0px 30px;
}
.social-container-footer > li > a {
    width: 100%;
}

.social-container-footer > li > a > img {
    width: 25px;
    height: 25px;
    transition: 0.4s ease;
}

.social-container-footer > li > a > img:hover {
    scale: 1.2;
}

.lastPartFooter {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 15px 0;
}

.lastPartFooter > * {
    margin: 0px 20px;
}

.textFinalFooter {
    font-size: 12px;
    text-decoration: none;
}
.textFinalFooter > a {
    text-decoration: none;
}
.textFinalFooter > a:hover {
    text-decoration: underline;
}

@media (max-width: 1150px) {
    .moreContacts > * > h2 {
        font-size: 12px;
    }
}

@media (max-width: 900px) {
    .moreContacts {
        flex-direction: column;
    }
    .moreContacts > * {
        margin: 20px 0;
    }
}

@media (max-width: 711px) {
    .mainPart {
        flex-direction: column;
    }
    .mapaInfo {
        display: none;
    }
}

/*MENU/NAVBAR RESPONSIVE*/

@media (max-width: 1600px) {
    /*Tamanho fonte sub likns*/
    .nav-subLinks > * {
        font-size: 20px;
    }
}

@media (max-width: 1400px) {
    /*Tamanho fonte links*/
    .nav-links > * {
        font-size: 28px;
    }
}

@media (max-width: 1220px) {
    /*Mudar o design do menu para vertical*/
    .nav-links-bg {
        flex-direction: column;
        justify-content: center;
    }
    /*Margem para todos*/
    .nav-links-bg > * {
        margin: 30px 0;
    }
    /*O separador fica na horizontal em vês da vertical*/
    .separator {
        width: 850px;
        height: 2px;
        margin: 0;
    }
}
@media (max-width: 1080px) {
    /*Ajuste no separador*/
    .separator {
        width: 650px;
        height: 2px;
        margin: 0;
    }
}

@media (max-width: 900px) {
    /*Ajustar a margem do hamburguer*/
    .hamburguer {
        margin-right: 50px;
    }
}

@media (max-width: 680px) {
    /*Ajuste no separador*/
    .separator {
        width: 400px;
    }
    /*Tamanho fonte sub likns*/
    .nav-subLinks > * {
        font-size: 14px;
    }
    /*Tamanho fonte links*/
    .nav-links > * {
        font-size: 20px;
    }
}

@media (max-width: 610px) {
    /*Ajustar a navbar para caber o logo e menu*/
    .navbar {
        justify-content: space-around;
    }
    /*Ajustar margem no logo*/
    .nav-logo {
        margin-left: 20px;
    }
    /*Ajustar o tamanho do logo*/
    .nav-logo > a > img {
        width: 80%;
    }
    .hamburguer > img {
        width: 45px;
    }
}

@media (max-width: 430px) {
    /*Ajuste no separador*/
    .separator {
        width: 320px;
    }
    /*Tamanho fonte sub likns*/
    .nav-subLinks > * {
        font-size: 12px;
    }
    /*Tamanho fonte links*/
    .nav-links > * {
        font-size: 18px;
    }
    .nav-logo {
        width: 280px;
    }
    .nav-logo > a > img {
        width: 190px;
    }
}

/*Footer Responsive*/

@media (max-width: 1100px) {
    /*Tamanho fonte*/
    .menuFooter > ul > * {
        font-size: 10px;
    }
    /*Ajuste tamanho do logo*/
    .topPart > .logo-footer {
        width: 100px;
    }
}

@media (max-width: 905px) {
    /*Ajuste margem do separador*/
    .separatorFooter {
        margin: 10px 0;
    }
    /*Alterar como está feito o design, ou seja pôr o logo em cima e links em baixo*/
    .topPart {
        flex-direction: column;
    }
    /*Ajuste de margem*/
    .topPart > .logo-footer {
        margin-bottom: 10px;
    }
}

@media (max-width: 797px) {
    .menuFooter > ul > * {
        /*Tamanho fonte*/
        font-size: 14px;
    }
    /*Os links irão ficar uns em cima dos outros*/
    .menuFooter > ul {
        flex-direction: column;
        text-align: left;
        align-items: center;
        justify-content: center;
    }
    .firstTwo {
        width: 100%;
        margin: 0;
        text-align: center;
    }
    .lastTwo {
        width: 100%;
        margin: 0;
        text-align: center;
    }
    .lastPartFooter {
        flex-direction: column;
    }
    .lastPartFooter > * {
        margin: 10px 0;
    }
}

@media (max-width: 560px) {
    /*Tamanho fontes*/
    .menuFooter > ul > * {
        font-size: 12px;
    }
    .textFinalFooter {
        font-size: 10px;
    }
}
/*Main*/
@media (max-width: 1002px) {
    /*Tamanho fontes*/
    .areas-list > * {
        font-size: 18px;
    }
    .textArea > h3 {
        font-size: 18px;
    }
}

@media (max-width: 780px) {
    /*Tamanho fontes*/
    .areas-list > * {
        font-size: 14px;
        margin: 0px 10px;
    }
    .textArea > h3 {
        font-size: 16px;
    }
    .mainText {
        padding: 0 10px;
    }

    .text {
        font-size: 30px;
        margin-top: 0;
        text-align: center;
    }
}
@media (max-width: 669px) {
    /*Tamanho fontes*/
    .areas-list {
        align-items: start;
        flex-direction: column;
    }
    .areas-list > * {
        font-size: 18px;
        margin: 10px 20px;
        list-style: square;
    }
    .textArea > h3 {
        font-size: 14px;
        line-height: 35px;
    }
    .text {
        font-size: 24px;
        text-align: center;
    }
}

/*Last addiction*/

@media (prefers-reduced-motion) {
    .imgAnimationRight > img {
        animation: none;
    }
    .imgAnimationLeft > img {
        animation: none;
    }
}

@media (max-width: 1195px) {
    .flex-space {
        flex-direction: column;
    }
    .flex-space > * {
        margin: 40px 0;
    }
    .imgAnimationLeft {
        width: 75%;
    }
    .imgAnimationRight {
        width: 75%;
    }
    picture {
        flex: none;
    }
}

@media (max-width: 900px) {
    h3 {
        font-size: 17px;
        line-height: 30px;
        text-align: center;
    }
}

@media (max-width: 610px) {
    .imgAnimationLeft {
        width: 95%;
    }
    .imgAnimationRight {
        width: 95%;
    }

    .textArea {
        padding: 0 20px;
    }
}
