/* =========================================
   PÁGINA DE GALERIA
========================================= */

/* Hero Section (Cabeçalho Verde) */
.hero-gallery {
    background-color: var(--forest);
    padding: 120px 0 60px 0;
    text-align: center;
    color: var(--cream);
}

.hero-gallery-title {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-gallery-line {
    width: 60px;
    height: 2px;
    background-color: var(--gold);
    margin: 0 auto;
}

/* Secção da Galeria */
.gallery-section {
    padding: 5rem 0;
    background-color: var(--cream, #F9F6F0);
}

/* Títulos Centrais */
.gallery-headline-wrapper {
    text-align: center;
    margin-bottom: 1rem;
}

.gallery-headline {
    color: var(--forest);
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 2.5rem;
}

.gallery-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: #556b2f;
    font-style: italic;
    font-size: 1.1rem;
}

/* Filtros da Galeria */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.text-center {
    margin-top: 3rem; 
    text-align: center;
}

.btn-primary {
    display: none; 
    padding: 10px 30px; font-family: var(--font-body); 
    background-color: var(--forest); 
    color: white; 
    border: none; 
    border-radius: 5px; 
    cursor: pointer; 
    transition: 0.3s;
}