*{ /* Configurações Gerais */
    margin: 0;
    padding: 0;
    box-sizing: border-box;    
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
 
section {
    scroll-margin-top: 20px;
}

:root { /* Cria variaveis para facilitar colocar a fonte) */
    --titulos: "Space Grotesk", sans-serif;
    --textos: "Inter", sans-serif;
}

.menu-pc a { 
    font-family: var(--titulos);
}


body{
    background-color: black;
    height: 100vh;
    font-family: var(--textos);
}



.opcoesIniciais{ /* É a class(função) que eu criei o div */
    max-width: 1800px;
    margin: 0 auto;
    margin-top: 50px;
}


.opcoesIniciais img{
    max-width: 200px;
    max-height: 200px;
    width: auto;
    height: auto;
}


header{
    padding: 40px 4%;
    color: rgb(124, 124, 124);
    font-size: large;
}

header > .opcoesIniciais{  /* Ele busca a class dentro do header */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header a{ /* Para configurar quando colocar o mouse por cima (precisa converter o link para block level) */
    text-decoration: none;
    color: rgb(124, 124, 124);
    display: inline-block;
    transition: .2s;
}

header a:hover{
    color: white;
    transform: scale(1.2);
}


header nav ul{
    list-style-type: none;
}

header nav ul{
    display: flex;
    gap: 40px;
    padding: 0;
    margin: 0;
}

header nav ul li{
    list-style: none;
}

header .botao-contato button{
    padding: 15px 40px;
    font-size: 18px;
    border: 0;
    border-radius: 20px;
    font-weight: 600;
    background-color: #8a2be2;
    color: white;
    cursor: pointer;
    font-family: var(--titulos);
}

header .botao-contato button:hover{
    box-shadow: 0px 0px 8px #d4a6ff;
}


/* Tela inicial */

.texto-inicial h1{
    font-family: var(--titulos);
    color: white;
    line-height: 40px;
    font-size: 40px;
}

.texto-inicial h1 span{
    font-family: var(--titulos);
    color: #8a2be2;
    line-height: 100px;
    font-size: 70px;
    display: block;
}

.texto-inicial p{
    font-family: var(--textos);
    color: white;
    line-height: 30px;
    font-size: 20px;
}

.texto-inicial button{
    padding: 15px 40px;
    font-size: 18px;
    border: 0;
    border-radius: 20px;
    font-weight: 600;
    background-color: #8a2be2;
    color: white;
    cursor: pointer;
    margin-top: 10px;
    font-family: var(--titulos);
}

.texto-inicial button:hover{
    box-shadow: 0px 0px 8px #d4a6ff;
    transition: .2s;
    transform: scale(1.05);
}

section .inicial{
    padding: 40px 4%;
}

.opcoesIniciais{
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: end;
    margin: 0px 200px;
}

main .opcoesIniciais img{
    max-width: 400px;
    max-height: 400px;
    width: auto;
    height: auto;
    background-color: #8a2be2;
    padding: 20px;
    border-radius: 10px;
}

/* Projetos */

section.projetos{
    padding: 80px 0;
    margin: 50px;
}

section.projetos h1 span{
    display:contents;
}
section.projetos p {
    padding-bottom: 20px;
}

.projetos .projetos-container{
    display: grid;
    grid-template: 1fr/ 1fr 1fr 1fr;
    gap: 30px;
}
.projetos-container .caixa-projetos{
    min-width: 200px;
    height: 600px;
    border: 2px solid #8a2be2;
    border-radius: 15px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: block;
    position: relative;
}

.projetos-container .caixa-projetos:hover{
    transition: background-position 10s;
    background-position-y: 100%;
    background-position-x: 100%;
    
}

.projetos-container .gameboxd{
    background-image:url(projetos/GameBoxd.png); 
    cursor: pointer;
}
.projetos-container .tactic-eye{
    background-image:url(projetos/TaticEye.png);
    cursor: pointer;
}
.projetos-container .all-count{
    background-image:url(projetos/All\ Count.png);
    cursor: pointer;
}

.projetos-container .caixa-projetos .info-projeto{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;

    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
    font-weight: 600;
    font-family: var(--titulos);
}

.projetos-container .caixa-projetos .info-projeto:hover{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background-color: #341650b4;
}

/* Formação */
.formacao{
    font-family: var(--textos);
    color: rgb(255, 253, 253);
    background-color: #8a2be2;
    display: flex;
}

.formacao h1 span{
    color: #000000;
    justify-content: space-between;
}
.formacao h1 {
    color: #ffffff;
    padding: 80px 80px;
    margin: 50px;
    justify-content: space-between;
}

.formacao h2{
    font-family: var(--titulos);
    height: 40px;
    padding-bottom: 80px;
}

.formacao h2 span{
    font-family: var(--titulos);
    height: 40px;
    color:#8a2be2;
}

.formacao img{
    max-width: 200px;
    max-height: 200px;
    width: auto;
    height: auto;
    border-radius: 40px;
}

.formacao article{
    display: grid;
    grid-template: 1fr 1fr/ 1fr 1fr 1fr;
}

.formacao .caixa-formacao{
    background-color: #000000;
    padding: 30px;
    margin: 50px;
    border-radius: 20px;
    text-align: center;
}

section.sobre-mim{
    padding: 80px 0;
}

.texto-sobre-mim{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin: 60px;
}

.texto-sobre-mim .texto-inicial{
    max-width: 600px;
}

.sobre-mim img{
    max-width: 1000px;
    max-height: 1000px;
    width: auto;
    height: auto;
    border-radius: 40px;
}


.botao-sociais button:hover {
    box-shadow: 0 0 12px #8a2be2;
    transform: scale(1.1);
    transition: .2s;
}

.botao-sociais {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.botao-sociais button {
    width: 100px;
    height: 100px;
    padding: 0;
    border-radius: 50%;
    border: none;
    background-color: #8a2be2;
    cursor: pointer;

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

.botao-sociais img {
    width: 70px;
}

/* Contato */
section.contato{
    background-color:#331153;
    padding: 80px 0 ;
}


section.contato .interface{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1700px;
    margin: 20px ;
    gap: 60px;
}

.contato .interface h1{
    font-family: var(--titulos);
    color: white;
    line-height: 40px;
    font-size: 70px;
}

.contato .interface h1 span{
    font-family: var(--titulos);
    color: #8a2be2;
    line-height: 100px;
    font-size: 70px;
}

.contato .interface p{
    font-family: var(--textos);
    color: white;
    line-height: 30px;
    font-size: 1.2 rem;
    display: flex;
    align-items: center;
}

.contato .interface p i{
    font-size: 2rem;
    color: #8a2be2;
    display: flex;
    align-items: center;
    padding: 10px;
}

.contato form{
    width: 50%;
}

.contato form input{
    width: 100%;
    padding: 40px;
    background: transparent;
    border: 2px solid #e1cdf3;
    border-radius: 20px;
    outline: none;
    color: white;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contato textarea{
    resize: none;
    height: 150px;
    width: 100%;
    border-radius: 20px;
    background-color: transparent;
    border: 2px solid #e1cdf3;
    outline: none;
    color: white;
    font-size: 1.1rem;
    padding: 20px;
    margin-top: 10px;
}

.botao-enviar{
    width: 100%;
    padding: 20px;
    font-size: 18px;
    border: 0;
    border-radius: 20px;
    font-weight: 600;
    background: linear-gradient(90deg, #8a2be2, #a855f7);
    color: white;
    cursor: pointer;
    margin-top: 10px;
    font-family: var(--titulos);
}

.botao-enviar:hover{
    transition: 0.6s;
    background-color: #d4a6ff;
    transform: scale(1.02);
    border-color: rgb(255, 255, 255);
    color: black;
    box-shadow: 0px 0px 8px #d4a6ff;
}

footer{
    background-color: #000;
    padding: 40px 0;
    text-align: center;
    border-top: 2px solid #8a2be2;
    
}

footer p{
    color: white;
    font-family: var(--textos);
    margin: 5px 0;
}

footer a{
    color: white;
    text-decoration: none;
}

footer a:hover{
    color: #d4a6ff;
}

footer .email-footer{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

footer i{
    color: #8a2be2;
    font-size: 1.2rem;
    
}

footer .copyright{
    font-size: 0.9rem;
    color: #aaa;
}

header > .opcoesIniciais{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

