#aplicacoes {
    display: grid;
    grid-template-columns: repeat(3, minmax(20vw, auto));
    gap: 2vw;
    justify-content: center;
    width: 90%;
    margin: 5vw auto;
    height: auto;
}

.card_project {
    display: flex;
    background-color: var(--card-color);
    justify-content: space-between;
    align-items: center;
    text-align: center;
    width: 25vw;
    padding: 2vw 0;
    border-radius: 0.5vw;
    flex-direction: column;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card_project:hover {
    box-shadow: 1px 7px 10px rgba(0, 157, 230, 0.5);
}

.projeto-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: space-between;
    gap: 2vw;
    width: 80%;
    font-size: var(--font-size-projects);
}


.projeto-text p {
    line-height: 2vw;
    text-align: center;
    width: 90%;
    font-size: 1vw;
}

.btn-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.project-btn {
    background-color: var(--color-btn);
    width: 70%;
    font-size: 1vw;
    text-decoration: none;
    color: var(--color-text);
    padding: 0.5vw;
    border: none;
    border-radius: 0.3vw;
    padding: 0.5vw;
    font-weight: bold;
    transition: ease-in-out 0.2s;
}

.projeto-img {
    width: 20vw;
    text-align: center;
}

.card_project img {
    width: 20vw;
}



/* ==================== VERSAO MOBILE ==================== */

@media (max-width: 768px) {

    #aplicacoes {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 95%;
        gap: 5vw;
        padding-bottom: 5vh;

        .card_project {
            width: 80vw;
            border-radius: 10px;
            padding: 5vw;
        }
    }

    #aplicacoes img {
        width: 70vw;
    }

    .projeto-img {
        width: 100%;
        height: 100%;
    }

    .projeto-text {
        width: 100%;
    }

    .projeto-text p {
        width: 100%;
        font-size: 1.4rem;
        line-height: 2rem;
        text-align: center;
    }

    .btn-container {
        width: 100%;
        margin: 2rem 0;
        justify-content: center;
    }

    .project-btn {
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
        border-radius: 2vw;
        width: 100%;
    }

}