@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --main-color: #00eeff;
    --text-color: #ffffff;
    --bg-color-01:#1f232d;
    --bg-color-02:#323946;
    --bg-color-03:#232325;
    --color-00: #0000001a;
    
    /*Cores extras*/
    --color-01: #dcdff0;
    --color-02: #009539;
    --color-03: #7950f2;
    --color-04: #3295ff;
    --color-05: #232323;
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
}

html{
    font-family: "Poppins", serif;
    font-size: 16px;
}

body{
    background-color: var(--bg-color-03);
    color: var(--text-color);
}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.1rem;
    background-color: var(--color-05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    border: solid 1px var(--color-03); 
}

.logo{
    font-size: 1.7rem;
    color: var(--text-color);
    font-weight: 600;
    cursor: default;
}

.nav a{
    font-size: 1.2rem;
    color: var(--text-color);
    padding: 0.5rem 1rem;
    transition: 0.4s;
    border: 1px solid var(--bg-color-03);
}

.nav a:hover{
    color: var(--main-color);
}

section{
    min-height: 100vh;
    padding: 6rem 6rem 2rem;
     border: 1px solid var(--color-03);
}

.home, .sobre{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.home-img{
    border-right: solid 0.6rem;
    border-bottom: solid 0.6rem;
    border-image: linear-gradient(135deg, transparent 35%, var(--main-color))1;

}
.sobre-img{
    border-left: solid 0.6rem;
    border-bottom: solid 0.6rem;
    border-image: linear-gradient(225deg, transparent 35%, var(--main-color))1;
}

.home-content, .sobre-content{
    width: 45%;
}

.home-content h1, .sobre-content h1{
    font-weight: 700;
    line-height: 1.3;
}

.home-content h3, .sobre-content h3{
    font-weight: 700;
    font-size: 1.6rem;
}

.home-img img, .sobre-img img{
    width: 450px;

}

.home-content p, .sobre-content p{
    margin-top: 1.2rem;
    text-align: justify;
}

.tecnologias h2,
.portfolio h2,
.contato h2{
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.tecnologias-container{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
.tecnologias-box{
    padding: 2rem 1rem 2.5rem;
    border-radius: 1.2rem;
    text-align: center;
    border: solid 0.15rem var(--main-color);
    background-color: var(--bg-color-02);
    transition: 0.5s ease;
}
.tecnologias-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 25rem;
    margin-bottom: 1rem;
    margin:5px;

}