*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    
}

body{
    background: linear-gradient(to left, rgb(0, 0, 0), rgb(13, 0, 46),rgb(0, 0, 0));
    
}

header{
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 10vh;
    margin-top: 2vh;
}

header .menu{
    display: flex;
    justify-content: space-around;
    align-items: center;
    overflow: hidden;
    background-color: rgba(252, 252, 252, 0.041);
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    width: 70%;
    height: clamp(3rem, 9vh, 4.5rem);
    border: 0.1vh solid rgba(0, 255, 179, 0.521);
    border-radius: 1.5rem;
}

header .menu span{
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: rgb(255, 255, 255);
    font-family: "Play", sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

header .menu nav ul {
    display: flex;
    justify-content: space-between;
    gap: 3vw;
    width: 100%;
    list-style: none;
}

header .menu nav ul li a {
    text-transform: uppercase;
    font-size: clamp(1rem, 0.2vw, 3rem);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    color: aliceblue;
    cursor: pointer;
    transition: 0.3s ease;
}

header .menu nav ul li a:hover {
    color: rgb(0, 255, 191);
    font-size: 19px;
}

header .menu button{
    font-family: 'Montserrat', sans-serif;
    width: 4vw;
    height: 3vh;
    border: 2px solid pink;
    background: black;
    color: white;
    border-radius: 2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/*---------------menu acaba aqui--------------------*/

main{
    display: flex;
    justify-content: space-around;
    height: 85vh;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.329);
}

main .parte-texto{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 55vw;
    color: aliceblue;
}

main .parte-texto h1{
    font-family: "Play", sans-serif;
    font-size: clamp(3rem, 9vh, 11rem);
    text-transform: uppercase;
    font-weight: 950;
    background: linear-gradient(45deg, #006eff, #b700ff, #006eff);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

main .parte-texto h2{
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2.5vh, 3rem);
    text-align: center;
}

main .parte-texto h2 a{
    color: aquamarine;
    text-decoration: none;
}

main .parte-texto .botoes button{
    width: 55%;
    height: clamp(1rem, 6vh, 7rem);
    border-radius: 1rem;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    font-size: 90%;
    font-weight: 600;
    transition: 0.2s ease;
    cursor: pointer;
    background: #003cff00;
    border: 1px solid rgb(0, 255, 242);
    box-shadow: 2px 1px 25px 2px rgb(119, 0, 255);
    border: none;
}

main .parte-texto .botoes button:hover{
    box-shadow: 2px 1px 25px 2px rgb(0, 247, 255);
    color: aqua;
}

main .parte-texto .botoes{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 130px;
    height: clamp(1rem, 8vh, 5rem);
    width: clamp(1rem, 20vw, 25rem);
}

main .parte-img{
    display: flex;
    align-items: flex-start;    
}

main .parte-img img{
    height: 114%;
}

/*---------------main acaba aqui-------------------*/

.skills{
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.329);
}

.skills .skills-logos{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15vh;
    color: aliceblue;
    margin-top: -15vh;
    width: clamp(4rem, 90vw,89rem);
}

.skills .skills-logos h1{
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 4vw, 3rem);
}

.skills .skills-logos .logos{
    display: flex;
    gap:3vw;
}

.skills .skills-logos .logos a img{
    width: 97%;
    transition: 0.5s ease;
}

.skills .skills-logos .logos a img:hover{
    box-shadow: 1px 2px 28px 2px rgba(140, 0, 255, 0.863);
    border-radius: 25%;
    width: 85%;
}

/*---------------skills abaca aqui-----------*/

.portifolio{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    height: 80vh;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.329);
    
}

.portifolio h1{
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    text-transform: uppercase;
    color: aliceblue;
    margin-bottom: 650px;
}

.content{
    height: 500px;
    width: 950px;
    border-radius: 20px;
    overflow: hidden;
    position: absolute; 
}

.navigation{
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    display: flex;
}

.bar{
    width: 70px;
    height: 17px;
    border: 2px solid rgb(111, 0, 255);
    margin: 6px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.6s ease;
}

.bar:hover{
    background-color: rgb(111, 0, 255);
    margin: 6px;
}

#slide1{
    display: none;
}

#slide2{
    display: none;
}

#slide3{
    display: none;
}

.slides{
    display: flex;
    width: 300%;
}

.slide{
    width: 33.33%;
    transition: .6s ease;
}

#slide1:checked ~ .s1{
    margin-left: 0;
}

#slide2:checked ~ .s1{
    margin-left: -33.32%;
}

#slide3:checked ~ .s1{
    margin-left: -66.67%;
}


/*---------------portfolio acaba aqui----------*/

.contact{
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 80vh;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.329);
}

.contact .informations{
    display: flex;
    flex-direction: column;
    gap: 10%;
    width: 45%;
    height: 70%;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 130%;
    color: aliceblue;
}

.contact .informations .topic-one{
    background: linear-gradient(45deg, #006eff, #b700ff, rgb(1, 134, 106));
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact .informations .bloco-info{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50%;
    
}

.contact .informations .bloco-info .bloco1{
    height: 100%;
}

.contact .informations .bloco-info .bloco1 .my-email{
    color: rgb(0, 132, 255);
    text-transform: lowercase;
    font-size: 130%;
   
}

.contact .informations .bloco-info .bloco1 .medias{
    display: none;

}

.contact .informations .bloco-info .bloco2{
    height: 100%;
}

.contact .informations .bloco-info .medias nav ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none; 
}

.contact .informations .bloco-info .medias nav ul{
    height: 10vh;
    font-size: 199%;
}


.contact .informations .bloco-info .medias nav ul li a{
    color: aliceblue;
}

.contact .informations .bloco-info .medias nav ul li .linkedin:hover{
    color: rgb(0, 153, 255);
}

.contact .informations .bloco-info .medias nav ul li .git:hover{
    color: rgb(119, 0, 255);
}

.contact .informations .bloco-info .medias nav ul li .face:hover{
    color: rgb(0, 47, 255);
}

.contact .informations .bloco-info .medias nav ul li .whats:hover{
    color: rgb(0, 255, 85);
}

.contact .informations .bloco-info .medias nav ul li .insta:hover{
    background: linear-gradient(45deg, #eeff00, #b700ff, rgb(76, 0, 255));
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


/*-----------------formulario comeca aqui-------------*/

.formulario{
    display: flex;
    flex-direction: column;
    width: 35vw;
    height: 90%;
}

.formulario form {
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: space-between;
    gap: 25px;
}

.formulario form h1{
    color: rgb(0, 132, 255);
    font-family: 'Montserrat', sans-serif;
    font-size: 172%;
    text-transform: uppercase;
}

.formulario form input{
    width: 100%;
    height: 50px;
    font-size: 35px;
    font-family: 'Montserrat', sans-serif;
    border-radius: 15px;
    border: 1px solid white;
    background-color: rgba(255, 0, 0, 0);
    color: aliceblue;
}

.formulario form label{
    color: aliceblue;
    font-family: 'Montserrat', sans-serif;
    height: 5vh;
    font-size: 28px;
}

.formulario form button{
    width: 10vw;
    height: 4vh;
    border-radius: 15px;
    font-family: 'Montserrat', sans-serif;
    background-color: #006aff;
    color: aliceblue;
    border: none;
    font-size: 20px;
    text-transform: uppercase;
    cursor: pointer;
    transition: .5s ease;
}

.formulario button:hover{
    background-color: #8c00ff;
}

/*----------form acaba aqui-----------------*/

footer{
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: aliceblue;
    font-family: 'Montserrat', sans-serif;
    height: 5vh;
    font-size: 112%;
}

/*----------------------responsividade---------------*/

@media screen and (max-width: 1000px){
    header .menu{
        display: none;
    }
    /*------menu------*/

    main{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    main .parte-img{
        display: none;
    }
    
    main .parte-img img{
        width: 100px;
        margin-top: -400px;
    }

    main .parte-texto h1{
        text-align: center;
        margin-bottom: 100px;
        font-size: 55px;
        margin-top: -90px;
    }

    main .parte-texto{
        width: 100%;
    }

    main .parte-texto h2{
        margin-bottom: 85px;
    }

    main .parte-texto .botoes{
        width: 100%;
    }

    /*-----------main acaba aqui----------*/


    .skills{
        height: 105vh;
    }

    .skills h1{
        margin-top: 100px;
        text-align: center;
    }

    .skills .skills-logos .logos{
        display: flex;
        flex-wrap: wrap; /* Permite que os itens quebrem para a próxima linha */
        gap: 20px; /* Espaço entre os ícones */
        justify-content: center; /* Centraliza os itens */
    }

    .skills .skills-logos .logos a{
        width: calc(50% - 10px); /* Cada link ocupa 50% da largura considerando o gap */
        display: flex;
        justify-content: center; /* Centraliza a imagem dentro do link */
    }

    .skills .skills-logos .logos a img{
        max-width: 100px; /* Ajuste o tamanho máximo dos ícones */
        height: auto;
    }

    .portifolio h1{
        margin-top: 28px;
    }

    /*---------- contato comeca aqui ---------*/

    .contact{
        display: flex;
        flex-direction: column;
        height: 135vh;
    }
    
    .contact .informations{
        margin-left: -50%;
    }

    .contact .bloco2{
        margin-top: -140px;
        margin-left: 200px;
        width: 200px;
    }

    .contact .bloco2 .medias{
        width: 300px;
    }

    .contact .formulario {
        width: 70%;
    }

}

@media screen and (max-width: 950px){
    .content{
        height: 300px;
        width: 650px;
        border-radius: 20px;
        overflow: hidden;
        position: absolute; 
    }
}

@media screen and (max-width: 699px){
    .content{
        height: 290px;
        width: 550px;
        border-radius: 20px;
        overflow: hidden;
        position: absolute; 
    }
}

@media screen and (max-width: 608px){
    .content{
        height: 220px;
        width: 400px;
        border-radius: 20px;
        overflow: hidden;
        position: absolute; 
    }
}

@media screen and (max-width: 833px){
    .contact{
        display: flex;
        flex-direction: column;
        height: 165vh;
    }

    .contact .bloco2{
        margin-top: -160px;
        margin-left: 120px;
        width: 200px;
    }

    .contact .bloco2 .medias{
        width: 300px;
    }

    .contact .formulario {
        width: 80%;
    }

    .contact .formulario h1{
        color: #8c00ff;
    }

    .contact .formulario button{
        width: 40%;
    }

    footer{
        font-size: 72%;
    }
}

@media screen and (max-width: 750px){
    .contact .bloco2 {
        display: none;        
    }

    .contact .informations .bloco-info .bloco1 .medias{
        display: flex;
    }

    .contact .informations .bloco-info .bloco1 .medias nav ul{
        display: flex;
        gap: 2vw;
    }
}


