@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

html, body{
    font-family: Ubuntu, Arial;
    width: 100%;
    height: 100%;
}

#main{
    margin-left: 300px;
}

section#inicio {
    background-image: url("./img/ESTAGIO4.jpeg");
    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.5rem;
}

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

section#inicio div#arraste {
    width: 9rem;
}

section#inicio div#arraste a {
    text-decoration: none;
    color: #fff;
}

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

#header .profile img{
    margin: 20px auto;
    display: block;
    width: 100px;
    border: 5px solid #fda65e;
    border-radius: 100%;
}

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

#header .profile .social-links a {
    font-size: 1rem;
    background: #fda65e;
    color: white;
    padding: 0.6rem;
    margin-right: 1rem;
    border-radius: 50%;
    transition: 0.3s;
    text-decoration: none;
}

#header .profile .social-links a:hover {
    background: #e6e6e6;
}

.nav-menu {
    padding: 1.5rem;
}

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

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

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

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

i.menu-mobile{
    position: fixed;
    color: #fff;
    background-color: #fda65e;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    border-radius: 4rem;
    cursor: pointer;
    z-index: 10;
    width: 45px;
    height: 75px;
    display: none;
    justify-content: center;
    align-items: center;
}

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

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

@media (max-width: 1035px) {
    #header {
        left: -300px;
    }
    i.menu-mobile{
        display: flex;
    }
    section#inicio h2{
        font-size: 2rem;
    }
    section#inicio span#subtitle {
        margin-right: 0;
        font-size: 1rem;
    }
    #main{
        margin-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: #fda65e;
}

.section-bg {
    background-color: #eff5ff;
}

.img-icons {
    display: flex;
    justify-content: space-around;
}

#img-icons-width {
    margin: 15px auto;
    width: 120px;
}

@media (max-width: 400px) {
    .img-icons {
        flex-direction: column;
        align-items: center;
    }
}

.cv .cv-title {
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #050d18;
}

.cv .cv-item {
    padding: 0 0 20px 20px;
    margin-top: -2px;
    border-left: 2px solid #1f5297;
    position: relative;
}

.cv .cv-item h4{
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: #050d18;
    margin-bottom: 10px;
}

.cv .cv-item h5 {
    background: #e4edf9;
    padding: 5px 15px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 10px;
}

.cv .cv-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -9px;
    width: 16px;
    height: 16px;
    border: 2px solid #1f5297;
    background: #fff;
    border-radius: 50%; 
}

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


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


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


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

[data-anime="right"] {
    transform: translate3d(50px, 0, 0);
    
}

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

@media (max-width: 1860px) {
    [data-anime="right"] {
        transform: translate3d(0, 100%, 0);
    }
}

@media (max-width: 400px) {
    .img-icons {
        flex-direction: column;
        align-items: center;
    }
}

section#contato .email h4 {
    font-size: 20px;
}

section#contato .telefone h4 {
    font-size: 20px;
}

section#contato .endereco h4 {
    font-size: 20px;
}