.projects-title {
    padding-left: 12rem;
    padding-bottom: 50px;
}

.grid { 
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 8px;
    align-items: stretch;
    justify-items: center;
    margin-right: 50px;
    margin-left: 50px;
    margin-bottom: 50px;
}
.grid .grid-image img{
    box-shadow: 2px 2px 6px 0px  rgba(0,0,0,0.3);
    max-width: 100%;
    height: 100%;
}

.grid-image {
    position: relative;
    display: inline-block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 50%); /* Vermelho com 50% de opacidade */
    opacity: 0; /* Começa invisível */
    transition: opacity 0.3s ease; /* Transição suave */
}

.overlay:hover {
    opacity: 1; /* Torna-se visível ao passar o mouse */
}

.overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: black; /* Cor do texto */
    text-align: center;
}

.overlay-content h2 {
    color: #fff;
    font-size: 30px;
}

.overlay-content h3 {
    color: #fff;
    font-size: 20px;
}

@media(max-width: 767px)
{
    .grid {
        display: block;
        margin-right: 15px;
        margin-left: 15px;
        margin-bottom: 30px;
    }

    .grid-image {
        margin-bottom: 10px;
    }

    .projects-title {
        padding-left: 0;
        text-align: center;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .vlt-footer-content a {
        font-size: 15px;
    }

    .vlt-gap-80 {
        display: none;
    }

    h2.projects-title {
        font-size: 38px;
    }
}