/* --- SEÇÃO GALLERY --- */
.gallery {
    /* Remover padding top para encostar suavemente nos depoimentos se desejar, ou manter o padrão */
    padding: 0 0 80px 0;
    /* background-color já puxado via .bg-light (#EDE9E5) */
}

/* --- GRID DA GALERIA --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

.gallery-col {
    display: flex;
    flex-direction: column;
}

/* Colunas (Gap e Offsets) */
.gallery-col.col-1 {
    gap: 120px;
}

.gallery-col.col-2 {
    gap: 120px;
    padding-top: 148px;
    /* Offset central */
}

.gallery-col.col-3 {
    gap: 120px;
}

/* --- WRAPPERS E IMAGENS --- */
.gallery-img-wrap {
    position: relative;
    width: 100%;
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* Cores de placeholder para alternar */
}

.gallery-img.placeholder-1 {
    background-color: #2A2A2A;
}

.gallery-img.placeholder-2 {
    background-color: #333333;
}

/* Alturas */
.gallery-col.col-1 .img-1 {
    height: 350px;
}

.gallery-col.col-1 .img-2 {
    height: 350px;
}

.gallery-col.col-2 .img-3 {
    height: 472px;
}

.gallery-col.col-2 .img-4 {
    height: 200px;
}

.gallery-col.col-3 .img-5 {
    height: 200px;
}

.gallery-col.col-3 .img-6 {
    height: 500px;
}

/* HOVER EFFECT OPCIONAL (Sugestão para galeria) */
.gallery-img-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-overlay);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.gallery-img-wrap:hover::after {
    opacity: 0.3;
    /* Leve escurecida ao passar o mouse */
}

/* --- RESPONSIVO --- */
@media (max-width: 1199px) {
    .gallery-grid {
        gap: 32px;
    }

    .gallery-col.col-1 {
        gap: 60px;
    }

    .gallery-col.col-2 {
        padding-top: 80px;
        gap: 60px;
    }

    .gallery-col.col-3 {
        gap: 60px;
    }

    .gallery-col.col-1 .img-1,
    .gallery-col.col-1 .img-2 {
        height: 280px;
    }

    .gallery-col.col-2 .img-3 {
        height: 380px;
    }

    .gallery-col.col-2 .img-4 {
        height: 180px;
    }

    .gallery-col.col-3 .img-5 {
        height: 180px;
    }

    .gallery-col.col-3 .img-6 {
        height: 400px;
    }
}

@media (max-width: 809px) {
    .gallery {
        padding: 20px 0 60px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .gallery-col.col-1,
    .gallery-col.col-2,
    .gallery-col.col-3 {
        padding-top: 0;
        gap: 24px;
    }

    .gallery-col .gallery-img-wrap {
        height: 350px !important;
        /* Força todas a terem o mesmo tamanho no mobile */
    }
}