@import url('https://fonts.googleapis.com/css2? family= Krona+One & family= Montserrat:ital,wght@0,600;1,300;1,400 & family= Noto+Sans+Chorasmian & family= Roboto:wght@100 & display=swap');

/* Reset básico */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Corpo da página */

body{
    background-color: #0f172a;
    color: #f1f5f9;
    font-family: Arial, Helvetica, sans-serif;
}


/* Cabeçalho */

.cabecalho{
    padding: 2% 0 0 10%;
}

.cabecalho__menu{
    display: flex;
    gap: 40px;
}

.cabecalho__menu__link{
    font-size: 18px;
    font-weight: 600;
    color: #38bdf8;
    text-decoration: none;
}


/* Apresentação */

.apresentacao{
    padding: 5% 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 82px;
}


/* Conteúdo */

.apresentacao__conteudo{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}


/* Título */

.apresentacao__conteudo__titulo{
    font-size: 36px;
    font-weight: bold;
}

.titulo-destaque{
    color: #38bdf8;
}


/* Texto */

.apresentacao__conteudo__texto{
    font-size: 18px;
    line-height: 1.6;
}


/* Links */

.apresentacao__links{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.apresentacao__links__subtitulo{
    font-size: 22px;
}


/* Botões */

.apresentacao__links__navegacao{
    display: flex;
    justify-content: center;
    padding: 14px 0;
    width: 250px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    color: #0f172a;
    background-color: #38bdf8;
    transition: 0.3s;
}


/* Hover */

.apresentacao__links__navegacao:hover{
    background-color: #0ea5e9;
}


/* Imagem */

.apresentacao__imagem{
    width: 35%;
    border-radius: 12px;
}


/* Rodapé */

.rodape{
    padding: 20px;
    text-align: center;
    font-size: 16px;
    background-color: #020617;
}


/* Responsividade */

@media (max-width: 900px){

    .apresentacao{
        flex-direction: column-reverse;
        text-align: center;
    }

    .apresentacao__conteudo{
        width: auto;
    }

    .apresentacao__imagem{
        width: 60%;
    }

    .apresentacao__links{
        align-items: center;
    }

}
/* Projetos */

.projetos{
    padding: 5% 10%;
}

.projetos__titulo{
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #38bdf8;
}

.projetos__container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.projeto__card{
    background-color: #020617;
    border-radius: 10px;
    padding: 25px;
    width: 320px;
    border: 1px solid #1e293b;
    transition: 0.3s;
}

.projeto__card:hover{
    transform: translateY(-6px);
    border-color: #38bdf8;
}

.projeto__titulo{
    font-size: 22px;
    margin-bottom: 10px;
}

.projeto__descricao{
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.projeto__botao{
    display: inline-block;
    padding: 10px 18px;
    background-color: #38bdf8;
    color: #0f172a;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.projeto__botao:hover{
    background-color: #0ea5e9;
}