<style>
.photo-gallery {
    width: 100%;
    padding: 20px 0 30px 0;
}

.gallery-title {
    text-align: center;
    margin-bottom: 20px;
}

.gallery-title h2 {
    font-size: 28px;
    margin-bottom: 8px;
    color: #222;
}

.gallery-title p {
    font-size: 14px;
    color: #666;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid #ddd;
    background: #fff;
}

.gallery-item img {
    width: 100%;
    height: 120px; /* fotos pequenas */
    object-fit: cover;
    display: block;
    transition: 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Tablet */
@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item img {
        height: 130px;
    }
}

/* Celular */
@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .gallery-item img {
        height: auto;
    }
}
</style>
