/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.4.1752723398
Updated: 2025-07-17 03:36:38

*/

/* Estilos para a galeria criada com campos ACF (versão gratuita) */
.minha-galeria-acf-gratis {
    display: grid; /* Usa o sistema de grade do CSS */
    /* Define colunas: adapta automaticamente (auto-fit) com mínimo de 200px por coluna, e 1 fração (1fr) de espaço disponível */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px; /* Espaçamento entre as imagens na grade */
    margin-top: 20px;
    margin-bottom: 20px;
}

.minha-galeria-acf-gratis .item-galeria {
    border: 1px solid #ddd; /* Borda leve para cada item */
    padding: 10px; /* Espaçamento interno */
    text-align: center; /* Centraliza a imagem e qualquer texto */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Sombra suave para o item */
}

.minha-galeria-acf-gratis .item-galeria img {
    max-width: 100%; /* Garante que a imagem não ultrapasse o tamanho do contêiner */
    height: auto; /* Mantém a proporção original da imagem */
    display: block; /* Remove o espaço extra abaixo da imagem que navegadores adicionam */
    margin: 0 auto 10px auto; /* Centraliza a imagem e adiciona um pouco de margem abaixo */
}