@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
}
html {
    scroll-behavior: smooth;
}

body {
    background-color: rgb(31, 30, 30);
    color: white;
}


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2%;
    padding-left: 3%;
    padding-right: 3%;
    position: sticky;
    top: 0;
    background-color:rgb(31, 30, 30);
 
}

.logo {
    height: 55px;
    width: 55px;
    border: 1px solid rgb(0, 60, 255);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(0, 60, 255);
    font-size: 26px;
    cursor: pointer;
}

.logo:hover {
    background: rgb(0, 60, 255);
    color: white;
    transition: 0.5s;
}

.cabecalho {
    display: flex;
    gap: 3rem;
    align-items: center;

}

.cabecalho a {
    color: rgba(255, 255, 255, 0.877);
    font-size: 90%;
    transition: 0.5s;
    margin-left: 60px;
}

.cabecalho a:hover {
    color: rgb(0, 60, 255);
}

button {
    background: transparent;
    border: 1px solid rgb(0, 60, 255);
    color: rgb(0, 60, 255);
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.5s;
}

button:hover {
    background: rgb(0, 60, 255);
    color: white;
}


.centro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10%;
    padding-left: 10%;
    padding-right: 10%;
}


img {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 3px solid rgb(0, 60, 255);
}

.texto h3 {
    color: rgba(255, 255, 255, 0.87);
    font-size: 14px;
    margin-bottom: 10px;
}

.texto h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.texto span {
    color: rgb(0, 60, 255);
  
}

.texto p {
    max-width: 520px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.795);
    font-size: 15px;
    margin-bottom: 20px;
}

.sociais {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.sociais a {
    color: rgba(255, 255, 255, 0.795);
    font-size: 20px;
    transition: 0.5s;
}

.sociais a:hover {
    color: rgb(0, 60, 255);
}
.sobre {
    padding: 120px 10%;
}

.sobre h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: rgb(0, 60, 255);
}

.sobre p {
    max-width: 800px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.tecnologias {
    padding: 100px 10%;
}

.tecnologias h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: rgb(0, 60, 255);
}

.habilidades {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.habilidades span:hover{
    background: rgb(0, 60, 255);
    color: white;
    transition: 0.5s;
    cursor: pointer;
}

.habilidades span {
    border: 1px solid rgb(0, 60, 255);
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 14px;
    color: rgb(0, 60, 255);
}

.portfolio {
    padding: 100px 10%;
}

.portfolio h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: rgb(0, 60, 255);
}

.projetos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.caixa {
    border: 1px solid rgba(0, 60, 255, 0.4);
    border-radius: 15px;
    padding: 25px;
}

.caixa h3 {
    margin-bottom: 15px;
}

.caixa p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 15px;
}

.caixa a {
    color: rgb(0, 60, 255);
    font-size: 14px;
}
.contato-section {
    padding: 100px 10%;
    text-align: center;
}

.contato-section h2 {
    color: rgb(0, 60, 255);
    margin-bottom: 20px;
}

.contato-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

