@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Righteous&family=Roboto+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Sarala:wght@400;700&display=swap');

html, body {
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    height: 100%;
}

#contato {
    margin-top: 4rem;
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: #021124;
    overflow-y: auto;
    width: 300px;
    transition: all ease-in-out 0.5s;
    padding: 0 15px;
    z-index: 9999;
}

#header .profile img {
    margin: 15px auto;
    display: block;
    width: 120px;
    border: 8px solid #2c2f3f;
    border-radius: 50%;
}

#header .profile h1 {
    font-size: 26px;
    margin: 0;
    padding: 0;
    font-weight: 600;
    text-align: center;
    color: #fff;
}

#header .profile .social-links a {
    font-size: 1rem;
    color: #fff;
    padding: 0.6rem;
    margin-right: 1rem;
    transition: 0.3s;
    text-decoration: none;
}

#header .profile .social-links a:hover {
    color: #149ddd;
}

.nav-menu {
    padding: 1.5rem;
}

.nav-menu a i, .nav-menu a:focus i{
    padding-right: 0.5rem;
    font-size: 24px;
    color: #6f7180;
}

.nav-menu a, .nav-menu:focus {
    display: flex;
    align-items: center;
    color: #a8a9b4;
    transition: 0.3s;
    font-size: 15px;
}

.nav-menu a:hover,
.nav-menu .active,
.nav-menu .active:focus,
.nav-menu li:hover > a {
    text-decoration: none;
    color: #FFF;
}

.nav-menu a:hover i,
.nav-menu .active i,
.nav-menu .active:focus i,
.nav-menu li:hover > a i{
    color: #149ddd;
}

#main {
    margin-left: 300px;
}

section#inicio {
    background-image: url("./img/banner.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    width: 100%;
    height: 100vh;
}

section#inicio h2 {
    font-size: 4rem;
}

section#inicio span#subtitle {
    font-size: 1.2rem;
}

.text-shadow {
    text-shadow: 4px 4px 10px #000;
}

section#inicio div#arraste a i {
    padding-right: 0.5rem;
}   

section#inicio div#arraste a {
    text-decoration: none;
    font-size: 24px;
}

i.menu-mobile {
    position: fixed;
    color: rgb(79, 106, 226);
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: none;
    justify-content: center;
    align-items: center;
}

.menu-nav-active {
    overflow: hidden;
}

.menu-nav-active #header {
    left: 0
}


*::-webkit-scrollbar {
    width: 10px;
}

*::-webkit-scrollbar-track {
    width: 12px;
    box-shadow: inset 0 0 .3rem #00000050;
    background-color: #fff;
}

*::-webkit-scrollbar-thumb {
    background-color: #021124
}

.curriculo {
    height: 70rem;
    width: 100%;
}

.carousel-control-prev {
    margin-left: -8rem;
}

.carousel-control-next {
    margin-right: -8rem;
}

.carousel-indicators {
    margin-bottom: -35px;
}

.card img {
    height: 12rem;
}

/* Animation */

[data-anime] {
    opacity: 0;
    transition: 1s;
}

[data-anime = "down"] {
    transform: translate3d(0, -100%, 0);
}

[data-anime = "up"] {
    transform: translate3d(0, 100%, 0);
}

[data-anime = "left"] {
    transform: translate3d(-100%, 0, 0);
}

[data-anime].animate {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (max-width: 1024px) {
    #header {
        left: -300px;
    }

    i.menu-mobile {
        display: flex;
    }

    section#inicio h2 {
        font-size: 2.5rem;
    }

    section#inicio span#subtitle {
        margin-right: 0;
        font-size: 1rem;
    }

    #main {
        margin-left: 0px;
    }

    .carousel-control-prev {
        margin-left: 0rem;
    }
    
    .carousel-control-next {
        margin-right: 0rem;
    }

}