.projetos .section-title h2 {
    font-size: 3.3rem;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 3rem;
}

.projetos .container-projetos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    margin: 0 auto;
    grid-gap: 30px;
}

.projeto.auto-hover img {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.projeto {
    overflow: hidden;
    box-shadow: 0 5px 15px rgb(2 104 115 / 0.25);
    cursor: pointer;
}

.projeto:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgb(102 51 153 / 0.6);
}

.projeto .informacoes-projeto:hover p {
    color: rgb(220, 214, 224);
    font-weight: 800;
    background-color: rgb(6, 1, 14);
}

@media(max-width: 1280px) {
    .projetos .container-projetos {
        padding: 0 var(--mobile-padding);
    }
}

.projetos .container-projetos .projeto {
    border-radius: 5px;
    transition: all 0.3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    position: relative;
}

.projetos .container-projetos .projeto:hover,
.projetos .container-projetos .projeto:hover .informacoes-projeto {
    opacity: 0.7;
    color: aqua;
}

.projetos .container-projetos .projeto img {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    width: 100%;
    height: 270px;
    object-fit: cover;
}

.projetos .container-projetos .projeto .informacoes-projeto {
    padding: 20px;
    background-color: var(--cor-fundo-escuro);
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all .3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    line-height: 22px;
}

.projetos .container-projetos .projeto .informacoes-projeto p:nth-child(2) {
    font-weight: 800;
    margin-top: 10px;
    font-size: 1.6rem;
    color: #cfe5e7;
    opacity: 10;
}

.projetos .container-projetos .projeto h3 {
    font-size: 1.8rem;
    font-weight: 800;
    position: absolute;
    opacity: 0.7;
    background-color: var(--cor-fundo-escuro);
    width: 100%;
    padding-left: 20px;
    padding-bottom: 10px;
    padding-top: 10px;
    bottom: 0;
    color: #bcb3e0;
}