@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

html{
    font-size: 62.5%;
}

body{
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    color:#fff;
}

header{
    display: flex;
    align-items: center;
    justify-content: space-between;

    height: 6vw;
    margin-top: 20px;
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    padding: 1rem 9%;
    z-index: 100;
    filter: drop-shadow(10px);

    background-color: transparent;
    /*border-bottom: 2px solid rgb(0, 195, 25);*/
}

.logo{
    font-size: 4rem;
    color: rgb(0, 255, 191);
    font-weight: 800;
    cursor: pointer;
    transition: .5s ease;
    text-decoration: none;
}

nav ul{
    display: flex;
    align-items: center;
    justify-content: space-around;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav a{
    font-size: 2.2rem;
    margin-left: 4rem;
    color:rgb(7, 255, 243);
    font-weight: 500;
    transition: color 0.3s;
    text-decoration: none;
}

nav a:hover{
    border-bottom: 1px solid rgb(7, 255, 243);
    color: #fff;
    border-radius: 0;
}

section{
    height: 100vh;
    padding: 5rem 9% 5 rem;
}

.home{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8rem;
    background: linear-gradient(to right, rgb(92, 150, 156), rgb(81, 139, 111));
}

.home .home-content h1{
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.3;
}

span{
    color: rgb(0, 255, 191);
}

.home-content h3{
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.home-content p{
    font-size: 1.6rem;
}

.home-img{
    border-radius: 50%;
}

.home-img img{
    position: relative;
    width: 20vw;
    height: 20vw;
    border-radius: 50%;
    box-shadow: 0 0 25px solid rgb(0, 255, 191);
    cursor: pointer;
    transition: 0.2s linear;
}

.home-img img:hover{
    font-size: 1.8rem;
    font-weight: 500;
}

.social-icons a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: transparent;
    color: rgb(0, 255, 191);
    border: 0.2rem solid rgb(0, 255, 191);
    font-size: 2rem;
    border-radius: 50%;
    margin: 3rem 1.5rem 3rem 0;
    transition: 0.3 ease;
}

.social-icons a:hover{
    color: rgb(4, 75, 116);
    transform: scale(1.3) transparent;
    background-color: rgb(0, 255, 191);
    box-shadow: 0 0 25px solid rgb(0, 255, 191);
}

.btn{
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: rgb(0, 255, 191);
    letter-spacing: 0.3rem;
    font-size: 1.6rem;
    font-weight:600;
    border: 2px solid rgb(0, 255, 191);
    cursor: pointer;    
    border-radius: 4rem;
    text-decoration: none;
    transition: .5s ease;
}

.btn:hover{
    background-color: rgb(0, 255, 191);
    color: rgb(4, 75, 116);
    box-shadow: 0 0 25px solid rgb(0, 255, 191);
}

.typing-test{
    font-size: 3rem;
    font-weight: 700;
    min-width: 280px;
}

.typing-text span{
    position: relative;
}

.typing-text span::before{
    content: 'Software Developer';
    color: rgb(0, 255, 191);
    animation: words 15s infinite;
}

.typing-text span::after{
    content: '';
    color: rgb(0, 255, 191);
    background-color: transparent;
    position: absolute;
    width: calc(100% + 8px);
    height: 100%;
    border-left: 3px solid transparent;
    right: -8;
    animation: cursor 0.6s infinite;
}

@keyframes cursor{
    to{
        border-left: 3px solid rgb(0, 255, 191);
    }
}

@keyframes words{
    0%, 33%{
        content: 'Web Developer';
    }
    34%,66%{
        content: 'Musician';
    }
    67%, 100%{
        content: 'Learner';
    }
}

.checkbtn{
    font-size: 30px;
    color: #fff;
    float: right;
    line-height: 80px;
    margin-left: 40px;
    cursor: pointer;
    display: none;
}

#check{
    display: none;
}	

#about{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

 
}

#about h2{
    font-size: 4rem;
    margin-bottom: 4rem;
    border-bottom: 2px solid rgb(0, 255, 191);
    color: rgb(0, 0, 0);
}

.about-content{
    display: flex;
    justify-content: center;    
}

.about-content p{
    font-size: 1.6rem;
    color: rgb(0, 0, 0);
}

.about-content img{
    width: 30rem;
    height: 30rem;
    border-radius: 50%;
    box-shadow: 0 0 25px solid rgb(0, 255, 191);
    cursor: pointer;
    transition: 0.2s linear;
}

#skills {
  padding: 50px;
  background: #f5f5f5;
}

#skills h2 {
  text-align: center;
  margin-bottom: 30px;
}

.skill {
  display: flex;
  align-items: center;
  margin: 15px 0;
}

.skill span {
  width: 120px;
  font-weight: bold;
}

.blocks {
  display: flex;
  gap: 5px;
}

.blocks span {
  width: 20px;
  height: 20px;
  border: 2px solid #333;
  border-radius: 4px;
}

.blocks span.filled {
  background: #333;
}

.skills-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.card {
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}


/*.home{
    display: flex;
    align-items: center;
    justify-content: space-evenly;

    min-height: 85vh;
    /*background-image: url(../images/historia/historia.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;*/
    /*h1{  
        font-size: 3vw;
        color: #fff;
        margin-bottom: 2vw;
    }
    span{
        color: rgb(0, 255, 191);
    }
    img{
        display: block;

        border-radius: 50%;
        border: 2px solid rgb(0, 255, 191);
        object-fit: cover;
        height: 22vw; 
        width: 22vw;
    }
    .quote{
        font-size: 1.1vw;
        color: #fff;
    }
    .home-content{
        display: flex;
        flex-direction: column;
    }
}*/

/*.content-sobre{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    min-height: 100vh;
    margin-top: 5vw;
    width: 100%; 
    height: 100vw;
}

.project-sobre h2{
    border-bottom: 2px solid rgb(0, 255, 191);
}

 .project-title h2{
     margin-top: 5vw;
     border-bottom: 2px solid rgb(0, 255, 191);
     font-size: 3.5vw;
 }

.image-sobre{
    border-radius: 50%;
}

.devs{
    min-height:100vh;
    width: 100%;

    display:flex;
    align-items: center;
    justify-content: center;
    

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container-card{
    position: relative;
    display:flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    flex-wrap: wrap;
    z-index: 1;
}

.devs .container-card .card{
    position: relative;
    width: 280px;
    height: 400px;
    margin: 30px;
    box-shadow: 20px 20px 50px 10px rgba(63, 21, 139, 0.5);
    border-radius: 15px;

    background: rgba(46, 30, 189, 0.5);

    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;


    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(2px);
}

.container-card .card .content{
    padding:20px;
    text-align: center;
}

/*.container-card .card .content h2{
    position: absolute;
    top: -80px;
    right: 30px;
    font-size: 8em;

    color: rgba(255, 38, 38, 0.05);
    pointer-events: none;
}*/

/*.container-card .card .content h3{
    margin-bottom: 30px;

    font-size: 1.8em;
    color: #fff;
    z-index: 1;
}

.container-card .card .content p{
    font-size: 1em;
    color: #fff;
    font-weight: 300;
}

.container-card .card .content a{
    position: relative;
    display: inline-block;
    padding: 8px 20px;
    margin-top: 15px;
    background-color: #3e4dd5;
    color: rgb(255, 255, 255);
    text-decoration: none;
    border-radius: 20px;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.main-btn {
    margin-top: 10px;


    text-transform: uppercase;
    width: 120px;
    height: 45px;
    padding: 5px 20px;
    border-radius: 30px;
    border: 3px solid transparent;
    transition: .5s;
}

.main-btn:hover {
  text-decoration: none;
  color: #3EC1D5;
  border-color: #3EC1D5;
}

.logos{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;

    width: 37vw;
    height: 27vw;

    background-color: rgb(70, 3, 196);

    border-radius: 10%;
}

.image{
    border-radius: 50%;

    width: 150px;
    height: 150px;
    margin-top: 30px;

    background-color: rgb(92, 6, 253);

    display: flex;
    align-items: center;
    justify-content: center;
}

.image img{
    height: 100px;
}

.contatos{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    min-height: 100vh;
    margin-top: 5vw;
}

.contatos h2{
    margin-top: 2vw;
    margin-bottom: 4vw;
    font-size: 50px;

    border-bottom: 1px solid rgb(0, 255, 221);
}

.container-contatos{
    width: 95vw;
    padding: 10vw;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.container-contatos .card{
    position: relative;

    padding: 10px;
    width: 300px;
    margin: 20px;
    
    background-color: #fff;
    border: 1px solid black;
    border-radius: 20px;

    overflow: hidden;
    transition: 0.5s;
    text-align: center;
}

.container-contatos .card img{
    height: 10vw;

    transition: 0.5s;
}

.container-contatos .card h1{
    font-size: 2rem;
}

.container-contatos .card .content{
    padding: 20px;
    text-align: center;
}

.container-contatos .card .content p{
    color: #664;
    transition: 0.5s;
}

.container-contatos .card .content a{
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    transition: 0.5s;
    outline: none;
    margin-top: 20px;
}

.container-contatos .card:hover{
    background-color: #dc2e69;
    color: white;
    margin-top: -30px;
    box-shadow: 2px 20px 25px #dc2e685d;
}

.container-contatos .card:hover img{
    filter: invert(1);
}

.container-contatos .card:hover .content p{
    color: white;
}

.container-contatos .card:hover .content a{
    color: black;
    background-color: white;
}*/