@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');

* {
    padding: 0px;
    margin: 0px;
    text-decoration: none;
}

body{
    font-family: 'Sora', sans-serif;
    overflow-x: hidden !important;
}

body::-webkit-scrollbar {
    width: 12px;               /* width of the entire scrollbar */
  }
  
  body::-webkit-scrollbar-track {
    background: black;        /* color of the tracking area */
  }
  
  body::-webkit-scrollbar-thumb {
    background-color: #8270FF;    /* color of the scroll thumb */
    border-radius: 20px;       /* roundness of the scroll thumb */
    border: 1px solid #b8adff;  /* creates padding around scroll thumb */
  }

#nav-menu {
    
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 15px 0px;
    font-size: 14px;
    margin-bottom: -80px;
    background: rgba(0, 0, 0, 0.329);
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 10px );
    -webkit-backdrop-filter: blur( 3px );
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    position: fixed;
    z-index: 10;
}

.mobile-menu div {
    width: 32px;
    height: 1px;
    background-color: #fff;
}

#nav-menu ul {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style-type: none;
}

#nav-menu ul li a {
    font-weight: 300;
    color: #fff;
}

#nav-menu ul li a:hover {
    color: #C7BFFF;
}

#nav-menu ul li button {
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: bold;
    padding: 10px 35px;
    background: linear-gradient(90deg, #5444C1, #8270FF);
    border: none;
    border-radius: 60px;
    color: #fff;
    cursor: pointer;
}

#nav-menu ul li button:hover {
    transform: scale(0.90);
    transition: 0.3s;
}

#header {
    background-image: url(./imagens/bg-header.jpg);
    background-repeat: no-repeat;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 320px;
}

#img-header {
    width: 100vh;
    margin: 0px -300px -150px 0px;
}

#header h1 {
    font-size: 55px;
    color: #fff;
    margin-bottom: 20px;
}

#header p {
    font-size: 23px;
    line-height: 30px;
    color: #fff;
    margin-bottom: 25px;
}

#botao1 {
    margin-right: 10px;
    padding: 14px 40px;
    border-radius: 100px;
    border: none;
    background: linear-gradient(90deg, #5444C1, #8270FF);
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
}

#botao2 {
    padding: 14px 50px;
    background: #3A3B46;
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: bold;
    font-size: 15px;
    border: 1px solid #8270FF;
    border-radius: 100px;
    cursor: pointer;
}

.botao-header:hover {
    transform: scale(0.90);
    transition: 0.3s;
}

.gradient {
    color: transparent;
    font-weight: 700;
    background: linear-gradient(90deg, #C8BDFF, #A193F6);
    background-clip: text;
}

#container-imagem{
    z-index: 0px;
}

#vetor-bigode {
    width: 5rem;
    position: absolute;
    top: 195px;
    right: 38rem;
    animation: flutuando01 10s ease;
	animation-iteration-count: infinite;
    z-index: 1;
}

@keyframes flutuando01 {
	0% {
    	transform: translateY(0px);
	} 50% {
    	transform: translateY(-50px) translateX(75px);
	} 100% {
    	transform: translateY(0px) translateX(0px);
	}
}


#vetor-tag {
    width: 5rem;
    position: absolute;
    top: 500px;
    right: 19rem;
    animation: flutuando02 10s ease;
	animation-iteration-count: infinite;
}

@keyframes flutuando02 {
	0% {
    	transform: translateY(0px);
	} 50% {
    	transform: translateY(60px) translateX(-75px);
	} 100% {
    	transform: translateY(0px) translateX(0px);
	}
}

#vetor-bigode2{
    position: absolute;
    bottom: 150px;
    left: -60px;
    animation: flutuando03 8s ease;
    animation-iteration-count: infinite;
}

#vetor-tag2{
    position: absolute;
    top: 150px;
    right: -60px;
    animation: flutuando03 8s ease;
    animation-iteration-count: infinite;
}


@keyframes flutuando03 {
	0% {
    	transform: translateY(0px);
	} 50% {
    	transform: translateY(100px);
	} 100% {
    	transform: translateY(0px);
	}
}


.faixa{
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1F1F2C;
    padding: 15px;
    color: #fff;
    font-size: 11px;
    font-weight: 200;
    letter-spacing: 2px;
    word-spacing: 5px;
    border: 1px solid #4A4C59;
    border-left: 0px;
    width: 100%;
}

#sobre-mim{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 70px 320px;
    background-color: #101017;
}

#img-thali {
    width: 35vh;
}

#div-sobre {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 50px;
    color: #fff;
    background-color: #1C1C27;
    border: 1px solid #292A37;
    width: 80%;
}

#primeiro-titulo {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 5px;
    color: transparent;
    background: linear-gradient(90deg, #C8BDFF, #A193F6);
    background-clip: text;
}

#segundo-titulo {
    margin-bottom: 15px;
    font-size: 33px;
}

#div-sobre p {
    font-weight: 300;
    font-size: 16px;
    line-height: 25px;
}

#minhas-habilidades {
    background-color: #101017;
    display: flex;
    justify-content: center;
    align-items: center;
}

#div-habilidades {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, #8171FF, #CE2AFF);
    width: 53%;
    padding: 50px;
    margin-bottom: -165px;
}

#div-habilidades h1{
    color: #fff;
    font-size: 32px;
    margin-bottom: 40px;
}

#div-habilidades p{
    margin-top: 15px;
}

#icons-habilidades{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.icon-style{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    flex-grow: 0;
    padding: 30px;
    border: 1px solid #fff;
    font-size: 15px;
    color: #fff;
    background-color: #1c1c2781;
}

#html-icon {
    padding: 30px 40px;
}

#css-icon {
    padding: 30px 40px;
}


#js-icon img {
    width: 8vh ;
    margin-bottom: -5px;
    margin-top: -10px;
}

#figma-icon {
    padding: 26px 35px;
}

#figma-icon img {
    margin-bottom: -5px;
}

#projetos {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 230px 200px 70px 175px;
    background-image: url(./imagens/fundo-projetos.jpg);
    border: 1px solid #434458;
}

#projetos h1 {
    color: #fff;
    font-size: 32px;
}

#container-projetos {
    margin-top: 50px;
    display: flex;
    gap: 20px;
}

#container-projetos2 {
    margin-top: 50px;
    display: flex;
    gap: 20px;
}

#container-projetos h1 {
    font-size: 20px;
}

#container-projetos2 h1 {
    font-size: 20px;
}

.botao-projeto {
    margin-right: 10px;
    padding: 14px 40px;
    border-radius: 100px;
    border: none;
    background: linear-gradient(90deg, #5444C1, #8270FF);
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
}

.botao-projeto:hover {
    transform: scale(0.90);
    transition: 0.3s;
}

.box-projeto {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background-color: #00000075;
    border: 1px solid #434458;
    padding: 0px 30px 50px 30px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}


#container-projetos img {
    width: 35vh;
    border: 1px solid #4A4C59;
}

#container-projetos2 img {
    width: 35vh;
    border: 1px solid #4A4C59;
}

#container-projetos p {
    color: #fff;
    text-align: center;
    background: linear-gradient(90deg, #8171FF, #CE2AFF);
    padding: 15px;
}

.andamento-box {
    height: 20px;
    width: 330px;
}

.andamento {
    background: linear-gradient(90deg, #8171FF, #CE2AFF);
    height: 100%;
    animation-name: barra;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

@keyframes barra {

    from {
        width: 0;
    }
    to {
        width: 100%;
    }

}

.tecnologias li {
    color: white;
    list-style-type: square;
    margin-bottom: 0px;
    line-height: 25px;
}

#tech-php {
    margin-bottom: -20px;
}

#sistema-box {
    padding-top: 51px;
}

#box-lp {
    padding-top: 50px;
}

.box-projeto h3 {
    color: white;
    align-items: center;
    text-align: center;
}

.titulo-andamento {
    color: white;
    font-size: 20px;
}

#minhas-qualificacoes {
    background-color: #101017;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 70px 320px;
}

#qualificacoes-div01 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    color: #fff;
    margin-bottom: 30px;
}

#titulo01 {
    font-size: 32px;
    margin-bottom: 100px;
}

#qualificacoes-div02 {
    color: #fff;
    display: flex;
}

.titulo-qualificacao{
    font-size: 20px;
    margin-bottom: 12px;
    color: transparent;
    background: linear-gradient(90deg, #C8BDFF, #A193F6);
    background-clip: text;
}

#tag01 {
    position: absolute;
    left: -10px;
    width: 25vh;
    animation: flutuando03 8s ease;
    animation-iteration-count: infinite;
}

#tag02 {
    position: absolute;
    right: -40px;
    width: 37vh;
    animation: flutuando03 8s ease;
    animation-iteration-count: infinite;
}

.barra {
    height: 2px;
    width: 50px;
    background-color: #ffffff;
    position: relative;
    margin-bottom: 10px;
}

#img-notebook {
    width: 75vh;
    margin: -200px -50px -180px -60px;
}

.paragrafo-style {
    margin-bottom: 60px;
}

#rodape {
    padding: 50px 320px;
    background-color: #08080C;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#rodape div h1 {
    color: #fff;
    font-size: 25px;
    text-align: center;
    margin-bottom: 15px;
}

#redes-sociais {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

#redes-sociais img {
    width: 5vh;
}

#redes-sociais img:hover {
    transform: scale(0.90);
    transition: 0.3s;
}



#rodape div h2 {
    color: #b0b0b9;
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 15px;
}

@media screen and (max-width: 1366px) {
    
    #header {
        padding: 0px 200px;
}

#img-header {
    width: 99vh;
    margin: 0px -320px -150px 0px;
}

#vetor-bigode {
    top: 185px;
    right: 28rem;
}

#vetor-tag {
    top: 28rem;
    right: 9rem;

}

#vetor-tag2{
    width: 18rem;
    top: 100px;
    right: -50px;
    animation: flutuando03 8s ease;
    animation-iteration-count: infinite;
}

#vetor-bigode2{
    width: 20rem;
    bottom: 150px;
    left: -50px;
    animation: flutuando03 8s ease;
    animation-iteration-count: infinite;

}

#sobre-mim{
    padding: 70px 150px;

}

#div-habilidades {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, #8171FF, #CE2AFF);
    width: 70%;
    padding: 50px;
    margin-bottom: -165px;
}

#js-icon {
    padding: 29px 28px;
}

#minhas-qualificacoes {
    padding: 70px 190px;
}

#img-notebook {
    width: 65vh;
    margin: -160px -60px -180px -90px;
}

}

@media screen and (max-width: 770px) {
    
    body {
        overflow-x: hidden !important;
    }

    @keyframes flutuando01 {
        0% {
            transform: translateY(20px);
        } 50% {
            transform: translateY(-40px) translateX(60px);
        } 100% {
            transform: translateY(0px) translateX(10px);
        }
    }

    @keyframes flutuando02 {
        0% {
            transform: translateY(-60px);
        } 50% {
            transform: translateY(20px) translateX(-60px);
        } 100% {
            transform: translateY(-60px) translateX(0px);
        }
    }

    #nav-menu{
        display: none;
    }

    #header {
        flex-direction: column;
        padding: 40px 40px 30px 40px;
        background-size: cover;
    }

    #header div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    }    
    
    #header h1 {
    font-size: 60px;
    text-align: center;
    line-height: 62px;
    margin: 0px;
    }

    #header p {
    text-align: center;
    margin: 0px;
    }

    #img-header {
        margin: -70px 0px -165px 0px;
        width: 93vh;
    }

    #vetor-bigode {
    top: 33rem;
    right: 20rem;
    width: 4.5rem;
    }

    #vetor-tag{
    top: 720px;
    right: 0px;
    width: 4.3rem;
    }

    #vetor-bigode2 {
        width: 10rem;
    }

    #vetor-tag2 {
        width: 10rem;
        top: 20rem;
    }

    #sobre-mim {
        padding: 30px 30px;
    }

    .faixa {
        border-left: 0px;
    }

    #div-sobre {
        flex-direction: column;
        padding: 30px 22px;
        width: 100%;
    }

    #img-thali {
        width: 100%;
    }

    #conteudo {
        width: 100%;
    }

    #minhas-habilidades{
        padding: 30px 00px;
        flex-direction: column;
    }

    #div-habilidades{
        padding: 30px;
    }

    #div-habilidades h1 {
        text-align: center;
    }

    #icons-habilidades{
        padding: 0px;
        flex-direction: column;
    }

    #js-icon {
        padding: 30px;
    }

    #wordpress-icon{
        padding: 30px 28px;
    }

    #figma-icon {
        padding: 26px 33px;
    }

    #ps-icon {
        padding: 30px 33px;
    }

    #projetos {
        padding: 170px 0px 33px 0px;
        flex-direction: column;
        text-align: center;
        border-width: 1px 0px;
    }  

    #container-projetos {
        margin-top: 30px;
        flex-direction: column;
    }

    #container-projetos2 {
        margin-top: 30px;
        flex-direction: column;
        margin: 20px 30px 20px 30px;
    }

    .andamento-box {
        height: 20px;
        width: 293px;
    }

    .box-projeto{
        padding: 30px;
    }

    #sistema-box {
        padding-top: 30px;
    }

    .tecnologias li {
        text-align: start;
    }

    #minhas-qualificacoes {
        padding: 30px 40px 10px 40px;
    }

    #qualificacoes-div02 {
        flex-direction: column;
        padding: 0px 0px;
        text-align: center;
    }

    #titulo01 {
        text-align: center;
        margin-bottom: 30px;
    }

    .paragrafo-style {
        margin-bottom: 40px;
    }

    #img-notebook{
        width: 60vh;
        padding: 0px;
        margin: -80px -150px;
    }

    .barra {
        left: 130px;
        margin: 20px 0px;
    }

    #tag01 {
        width: 15vh;
    }

    #tag02 {
        width: 20vh;
    }

    #rodape {
        padding: 30px 30px;
    }
}