/* styles.css */
body {
    font-family: sans-serif;
    background-color: #f0f2f5;
    margin: 0;
    padding: 20px;
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 40px;
}

.gallery-container {
    display: grid;
    /* Cria colunas responsivas: elas terão no mínimo 350px */
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    max-width: 1600px;
    margin: 0 auto;
}

.gallery-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease-in-out;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block; /* Remove o espaço extra abaixo da imagem */
}

.gallery-item .filename {
    padding: 10px;
    background-color: #fff;
    text-align: center;
    font-size: 0.9em;
    color: #555;
    word-wrap: break-word;
}