.projetos .container-projetos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(393px, 1fr));
    margin: 0 auto;
    grid-gap: 20px;
    justify-content: center;
}

.projetos .container-projetos .projeto {
    margin-bottom: 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    position: relative;
}

.projetos .container-projetos .projeto img {
    border-radius: 12px;
    width: 100%;
    height: 100%;
}

.projetos .container-projetos .projeto h3 {
    color: var(--high-pure);
    font-size: 2rem;
    font-weight: 500;
    position: absolute;
    top: 0;
    background-color: var(--low-medium);
    width: 100%;
    padding-left: 20px;
    padding-bottom: 10px;
    padding-top: 10px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    opacity: 0.6;
}
