/* =========================
   GALERIA DE IMAGENS
   ========================= */

.galeria {
    margin: 3rem auto;
    max-width: 1366px;
    padding: 0 1rem;
	padding-bottom: 50px;
}

.galeria h2 {
    text-align: center;
    color: #2e52dc;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

/* Lista da galeria */
.galeria ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Item */
.galeria li {
    display: flex;
    justify-content: center; /* centraliza quando houver poucos itens */
}

/* Figura (limite físico da miniatura) */
.galeria figure {
    width: 100%;
    max-width: 300px;
    background: #fff;
    border: 1px solid rgba(46, 82, 220, 0.15);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

/* Hover / foco */
.galeria figure:hover,
.galeria figure:focus-within {
    transform: translateY(-4px);
    border-color: #2e52dc;
    box-shadow: 0 8px 18px rgba(46, 82, 220, 0.25);
}

/* Imagem */
.galeria img {
    width: 100%;
    max-height: 300px;
    object-fit: cover; /* mantém proporção e corta excesso */
    display: block;
}

/* Legenda */
.galeria figcaption {
    padding: 0.75rem;
    font-size: 0.9rem;
    color: #858688;
    text-align: center;
    background: #f9f9f9;
    line-height: 1.4;
}