.projetos {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5%;
}

.projetos h2 {
    color: var(--primary-color);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    text-transform: uppercase;
}

.projetos p {
    color: var(--font-color);
    font-size: 1.2rem;
}

.projetos-container {
    display: flex;
    flex-direction: column;
    gap: 10rem;
    margin-top: 8%;
}

.projetos-line {
    display: flex;
    justify-content: space-around;
}

.card-projeto {
    width: 30%;
}

.card-projeto img {
    width: 100%;
    border-left: solid 7px var(--primary-color);
    cursor: pointer;
    transition: 0.7s;
}

.card-projeto img:hover {
    transform: scale(1.1);
}

.card-projeto figcaption {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 30vh;
    margin-top: 5%;
}

.card-projeto h3 {
    color: var(--font-color);
    font-size: clamp(1rem, 2vw, 3rem);
}

.card-projeto p {
    font-size: clamp(0.8rem, 1vw, 1.7rem);
    margin-top: 3%;
}

.VainaWeb {
    color: var(--primary-color);
}

.card-projeto button {
    background-color: transparent;
    color: var(--font-color);
    border: solid 1px var(--primary-color);
    width: 40%;
    height: 5vh;
    font-size: clamp(0.8rem, 1vw, 2rem);
    margin-top: 5%;
    cursor: pointer;
    transition: 0.4s;
}

.card-projeto button:hover {
    letter-spacing: 3px;
}

.card-projeto-breve {
    width: 30%;
}

.card-projeto-breve img {
    width: 100%;
    cursor: pointer;
    border-left: solid 7px var(--primary-color);
    transition: 0.7s;
}

.card-projeto-breve img:hover {
    transform: scale(1.1);
}

.card-projeto-breve p {
    margin-top: 5%;
}

.Repositorio {
    color: var(--primary-color);
    margin-top: 5rem;
    font-size: 1.3rem;
    transition: .5s;
}

.Repositorio:hover {
    letter-spacing: 5px;
}

@media screen and (max-width:920px) {
    .projetos-line {
        flex-direction: column;
        align-items: center;
        gap: 5rem;
    }

    .card-projeto {
        width: 90%;
    }

    .card-projeto-breve {
        width: 90%;
    }

    .projetos-container {
        gap: 5rem;
    }
}