@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 {

    --fonte-titulo:"Poppins";
    

    --cor-btn:#096452;
    --cor-fundo-footer:#105e4d;
    --cor-btn-hover:#2aa88d;
    --cor-subtitulo:#F5F5F5;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #0bc49c;
    box-sizing: border-box;
}
.projetos{
    width: 100%;
    display: grid;
    place-items: center;
    padding: 5% 5% 5%;
    justify-content: center;
    gap: 150px;
}
.projetos-conteudo{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.projetos-conteudo h1{
    font-family: var(--fonte-titulo);
    color: white;
    font-size: 36px;
}
.projetos-conteudo h2{
    font-family: var(--fonte-titulo);
    color: var(--cor-subtitulo);
    font-size: 18px;
}
.projetos-cards{
    width: 100%;
    display: flex;
    gap:15px;
}
.projetos-cards-cont{
    width: 300px;
    border-radius: 12px;
    overflow: hidden;

    background: var(--cor-btn);
    border: 1px solid #333;

    transition: 0.3s;
}
.projetos-cards-cont:hover{
    transform: translateY(-5px);
    box-shadow: 0 0 15px var(--cor-btn-hover);
}
.projetos-cards-cont img{
    width: 100%;
    height: 160px;
    object-fit: cover;
}
.cards-cont{
    padding: 15px;
}
.cards-cont h3{
    color: white;
    margin-bottom: 8px;
}

.cards-cont p{
    color: white;
    font-size: 14px;
    margin-bottom: 10px;
}
.cards-tags{
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.cards-tags span{
    background: var(--cor-btn-hover);
    color: var(--cor-subtitulo);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-family: var(--fonte-link-menu);
}
.cards-actions{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.card-btn{
    padding: 8px 12px;
    background: var(--cor-subtitulo);
    color: black;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}
.github-btn{
    display: flex;
    align-items: center;
    justify-content: center;

    width: 35px;
    height: 35px;

    background: var(--cor-btn-hover);
    border-radius: 8px;

    text-decoration: none;
    color: white;

    transition: 0.3s;
}

.github-btn i{
    font-size: 20px;
}

.github-btn:hover{
    background: var(--cor-subtitulo);
    color: black;
}
.projetos-cardsLN2{
    width: 100%;
    display: flex;
    gap:15px;
}
@media (max-width: 1024px) {
    .projetos{
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
    }
    .projetos-conteudo{
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .projetos-conteudo h1{
        font-size: 30px;
    }
    .projetos-conteudo h2{
        font-size: 20px;
    }
}
@media (max-width: 768px) {
    .projetos{
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
    }
    .projetos-conteudo{
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .projetos-conteudo h1{
        font-size: 25px;
        
    }
    .projetos-conteudo h2{
        font-size: 15px;
    }
    .projetos-cards{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .projetos-cardsLN2{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}