/* ============================================================
   Suzana Sefrin — Tema Galeria de Arte
   Paleta: Creme · Verde Floresta · Ouro Antigo
   ============================================================ */

/* ============================================================
   VARIÁVEIS
   ============================================================ */
:root {
    --cream:   #F8F4EC;
    --cream2:  #F0EAE0;
    --green:   #2A4A2E;
    --green2:  #1E3620;
    --gold:    #B5924C;
    --gold2:   #9A7B3C;
    --dark:    #1C1C1C;
    --warm:    #6B5E4E;
    --border:  #DDD5C8;
    --white:   #FFFEF9;
    --shadow:  0 2px 12px rgba(42,74,46,.08);
    --shadow-lg: 0 8px 32px rgba(42,74,46,.14);
    --radius:  4px;
    --radius-lg: 8px;

    --font-script:  'Great Vibes', cursive;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Lato', system-ui, sans-serif;

    --container: 1160px;
    --gap:       2rem;
    --section:   5rem;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--dark);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }

a { color: var(--green); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--dark);
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--section) 0;
}
.section--cream2 { background: var(--cream2); }
.section--white  { background: var(--white); }
.section--green  { background: var(--green); color: var(--cream); }

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

.section__eyebrow {
    font-family: var(--font-body);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .6rem;
    display: block;
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    color: var(--dark);
    margin-bottom: .75rem;
}

.section--green .section__title { color: var(--cream); }

.section__subtitle {
    font-size: 1.05rem;
    color: var(--warm);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.divider-gold {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: .75rem auto 0;
}

/* ============================================================
   GRID
   ============================================================ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }

@media (max-width: 900px) {
    .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-family: var(--font-body);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .75rem 1.75rem;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .22s;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}
.btn-primary:hover {
    background: var(--green2);
    border-color: var(--green2);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
}
.btn-outline:hover {
    background: var(--green);
    color: var(--white);
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.btn-gold:hover {
    background: var(--gold2);
    border-color: var(--gold2);
    color: var(--white);
}

.btn-outline-cream {
    background: transparent;
    color: var(--cream);
    border-color: var(--cream);
}
.btn-outline-cream:hover {
    background: var(--cream);
    color: var(--green);
}

.btn-wa {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
    font-size: .95rem;
    padding: .9rem 2rem;
}
.btn-wa:hover { background: #1EAE54; border-color: #1EAE54; color: #fff; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .25s;
}
.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 1rem;
}

.site-logo {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--green);
    letter-spacing: .02em;
    flex-shrink: 0;
    line-height: 1;
    text-decoration: none;
}
.site-logo:hover { color: var(--gold); }

.site-logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.site-nav a {
    font-family: var(--font-body);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--warm);
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s;
}
.site-nav a:hover,
.site-nav a.active { color: var(--green); border-bottom-color: var(--gold); }

.nav-wa-btn {
    display: inline-flex !important;
    align-items: center;
    gap: .3rem;
    font-family: var(--font-body);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--green) !important;
    background: transparent;
    padding: .4rem .95rem !important;
    border-radius: var(--radius);
    border: 1.5px solid var(--gold) !important;
    cursor: pointer;
    transition: background .2s, color .2s;
    text-decoration: none !important;
    white-space: nowrap;
    line-height: 1;
}
.nav-wa-btn:hover { background: var(--gold) !important; color: var(--green) !important; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.hamburger span {
    display: block;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
    transition: all .25s;
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .site-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid var(--border);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: .5rem 0;
        box-shadow: var(--shadow);
    }
    .site-nav.open { display: flex; }
    .site-nav a {
        padding: .9rem 1.5rem;
        border-bottom: none;
        border-left: 3px solid transparent;
        font-size: .8rem;
    }
    .site-nav a:hover,
    .site-nav a.active { border-left-color: var(--gold); background: var(--cream); }
    .site-nav .nav-wa-btn { margin: .75rem 1.5rem; border-radius: var(--radius); text-align: center; }
}

/* ============================================================
   VERNISSAGE BANNER
   ============================================================ */
.vernissage-banner {
    background: var(--green);
    color: var(--cream);
    padding: .7rem 1.5rem;
    text-align: center;
    font-size: .82rem;
    letter-spacing: .04em;
    position: relative;
}
.vernissage-banner strong { color: var(--gold); }
.vernissage-banner a { color: var(--gold); border-bottom: 1px solid transparent; }
.vernissage-banner a:hover { border-bottom-color: var(--gold); }
.vernissage-banner-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(248,244,236,.6);
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    padding: .2rem;
}
.vernissage-banner-close:hover { color: var(--cream); }

/* ============================================================
   HERO VERNISSAGE (home page)
   ============================================================ */
.hero-vernissage {
    background: var(--green);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-vernissage::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 20% 50%, rgba(181,146,76,.12) 0%, transparent 70%),
        radial-gradient(ellipse 50% 70% at 80% 50%, rgba(181,146,76,.08) 0%, transparent 70%);
    pointer-events: none;
}

.vern-eyebrow {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .75rem;
    position: relative;
}

.vern-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 400;
    font-style: italic;
    color: var(--cream);
    margin-bottom: .5rem;
    position: relative;
}

.vern-subtitle {
    font-size: .9rem;
    color: rgba(248,244,236,.7);
    margin-bottom: 1.75rem;
    position: relative;
}

.vern-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    position: relative;
}
.vern-meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .15rem;
}
.vern-meta-item span:first-child {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
}
.vern-meta-item span:last-child {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--cream);
    font-weight: 500;
}

.vern-divider {
    width: 1px;
    height: 36px;
    background: rgba(248,244,236,.2);
    align-self: center;
}

.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.25rem;
    position: relative;
}
.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.countdown-num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--cream);
    line-height: 1;
    min-width: 2.5ch;
    text-align: center;
}
.countdown-label {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(248,244,236,.55);
    margin-top: .2rem;
}
.countdown-sep {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: .8rem;
    font-weight: 300;
    position: relative;
}

/* ============================================================
   HERO PRINCIPAL
   ============================================================ */
.hero-main {
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: var(--cream);
    background-size: cover;
    background-position: center;
    gap: 0;
    overflow: hidden;
}

.hero-main__overlay {
    position: absolute;
    inset: 0;
    background: rgba(248,244,236,.55);
    pointer-events: none;
}
.hero-main__text {
    position: relative;
    z-index: 1;
    padding: 5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 680px;
}

.hero-main__eyebrow {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.hero-main__script {
    font-family: var(--font-script);
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    color: var(--green);
    line-height: 1;
    margin-bottom: .25rem;
    display: block;
}

.hero-main__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 300;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--warm);
    margin-bottom: 1.5rem;
}

.hero-main__desc {
    font-size: 1.05rem;
    color: var(--warm);
    max-width: 400px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-main__actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.hero-main__image { display: none; }
.hero-main__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--cream) 0%, transparent 15%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .hero-main { min-height: 70vh; }
    .hero-main__text { padding: 3rem 1.5rem; }
    .hero-main__script { font-size: 3rem; }
}

/* ============================================================
   OBRA CARD
   ============================================================ */
.obra-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}
.obra-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.obra-card__thumb {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--cream2);
}
.obra-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.obra-card:hover .obra-card__thumb img { transform: scale(1.04); }

.obra-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(42,74,46,.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
}
.obra-card:hover .obra-card__overlay { opacity: 1; }

.obra-card__body {
    padding: 1.1rem 1.2rem 1.3rem;
}

.obra-card__category {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .3rem;
}

.obra-card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: .3rem;
    line-height: 1.3;
}

.obra-card__meta {
    font-size: .78rem;
    color: var(--warm);
}

.obra-card__price {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--green);
    margin-top: .5rem;
}

/* ============================================================
   GALERIA / CATALOGO
   ============================================================ */
.galeria-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2.5rem;
    align-items: start;
}

.galeria-sidebar {
    position: sticky;
    top: 96px;
}

.filter-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.filter-title {
    font-family: var(--font-body);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--warm);
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: .5rem;
}

.filter-list { list-style: none; }
.filter-list li { margin-bottom: .15rem; }
.filter-list a {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    color: var(--warm);
    padding: .35rem .5rem;
    border-radius: var(--radius);
    transition: background .15s, color .15s;
}
.filter-list a:hover { background: var(--cream); color: var(--green); }
.filter-list a.active { background: var(--green); color: var(--white); }

.filter-search {
    width: 100%;
    border: 1px solid var(--border);
    background: var(--cream);
    border-radius: var(--radius);
    padding: .55rem .75rem;
    font-family: var(--font-body);
    font-size: .85rem;
    color: var(--dark);
    outline: none;
    transition: border-color .2s;
    margin-bottom: 1.25rem;
}
.filter-search:focus { border-color: var(--green); }

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.galeria-results {
    font-size: .82rem;
    color: var(--warm);
    margin-bottom: 1.25rem;
}

@media (max-width: 900px) {
    .galeria-layout { grid-template-columns: 1fr; }
    .galeria-sidebar { position: static; }
    .galeria-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
    .galeria-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   OBRA DETALHE
   ============================================================ */
.obra-detail {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 3rem;
    align-items: start;
    padding: 3rem 0;
}

.obra-gallery__main {
    aspect-ratio: 3/4;
    max-height: 640px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--cream2);
    cursor: zoom-in;
}
.obra-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .3s;
}
.obra-gallery__main:hover img { transform: scale(1.03); }

.obra-gallery__thumbs {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-top: .75rem;
}
.obra-gallery__thumb {
    width: 64px;
    height: 64px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color .2s;
    background: var(--cream2);
    flex-shrink: 0;
}
.obra-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.obra-gallery__thumb.active { border-color: var(--gold); }

.obra-info__category {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .6rem;
}

.obra-info__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    font-style: italic;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.obra-info__meta-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .35rem 1rem;
    margin-bottom: 1.5rem;
    font-size: .875rem;
}
.obra-info__meta-label {
    font-weight: 700;
    color: var(--warm);
    font-size: .78rem;
    letter-spacing: .04em;
}
.obra-info__meta-value { color: var(--dark); }

.obra-info__price {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 1.5rem;
}

.obra-info__desc {
    font-size: .95rem;
    color: var(--warm);
    line-height: 1.8;
    margin-bottom: 2rem;
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
}

.obra-info__actions { display: flex; flex-direction: column; gap: .75rem; }

@media (max-width: 900px) {
    .obra-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .obra-gallery__main { max-height: 70vw; }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius);
}
.lightbox__close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    opacity: .7;
    transition: opacity .2s;
}
.lightbox__close:hover { opacity: 1; }
.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.12);
    border: none;
    color: #fff;
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
    padding: .25rem .75rem;
    border-radius: var(--radius-lg);
    opacity: .7;
    transition: opacity .2s, background .2s;
    z-index: 1;
}
.lightbox__prev { left: 1.25rem; }
.lightbox__next { right: 1.25rem; }
.lightbox__prev:hover,
.lightbox__next:hover { opacity: 1; background: rgba(255,255,255,.22); }
.lightbox__prev[hidden],
.lightbox__next[hidden] { display: none; }

/* ============================================================
   SOBRE / ARTISTA
   ============================================================ */
.sobre-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 3.5rem;
    align-items: start;
}

.sobre-photo {
    position: sticky;
    top: 96px;
}

.sobre-photo img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.sobre-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1.25rem;
}

.sobre-text p {
    color: var(--warm);
    font-size: 1.02rem;
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.sobre-text p:last-child { margin-bottom: 0; }

@media (max-width: 860px) {
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .sobre-photo { position: static; max-width: 320px; }
}

/* ============================================================
   CURSOS CARD
   ============================================================ */
.curso-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.curso-card__thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--cream2);
}
.curso-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.curso-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.curso-card__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: .4rem;
}
.curso-card__desc { font-size: .875rem; color: var(--warm); flex: 1; margin-bottom: 1rem; }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination { display: flex; gap: .4rem; justify-content: center; margin-top: 2.5rem; }
.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius);
    font-size: .85rem;
    font-weight: 600;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--warm);
    transition: all .2s;
    text-decoration: none;
}
.pagination a:hover { border-color: var(--green); color: var(--green); }
.pagination .active,
.pagination span[aria-current="page"] {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

/* ============================================================
   CONTATO / WHATSAPP
   ============================================================ */
.contato-hero {
    text-align: center;
    padding: 5rem 0 3rem;
}

.wa-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    text-align: center;
    max-width: 520px;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow);
}

.wa-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wa-icon svg { width: 40px; height: 40px; fill: #fff; }

.wa-card h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: .75rem;
}

.wa-card p { color: var(--warm); font-size: .95rem; margin-bottom: 1.75rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #1a1a1a;
    color: var(--cream);
    padding: 3rem 0 1.5rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(248,244,236,.15);
    flex-wrap: wrap;
}

.footer-logo {
    font-family: var(--font-script);
    font-size: 2.2rem;
    color: var(--cream);
    letter-spacing: .02em;
    line-height: 1;
    margin-bottom: .5rem;
    display: block;
}
.footer-logo:hover { color: var(--gold); }

.footer-logo img { height: 52px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }

.footer-tagline { font-size: .82rem; color: rgba(248,244,236,.6); }

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.footer-nav a {
    font-size: .82rem;
    color: rgba(248,244,236,.75);
    transition: color .2s;
}
.footer-nav a:hover { color: var(--gold); }

.footer-social {
    display: flex;
    gap: .6rem;
    margin-top: .75rem;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(248,244,236,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(248,244,236,.75);
    font-size: .85rem;
    transition: all .2s;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

.footer-bottom {
    padding-top: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .75rem;
    color: rgba(248,244,236,.45);
    flex-wrap: wrap;
    gap: .5rem;
}
.footer-bottom a { color: rgba(248,244,236,.45); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    color: var(--warm);
    padding: .75rem 0;
    margin-bottom: .5rem;
    flex-wrap: wrap;
}
.breadcrumb a { color: var(--warm); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb-sep { color: var(--border); }

/* ============================================================
   EMPTY STATE
   ============================================================ */
.empty-state {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--warm);
}
.empty-state i { font-size: 2.5rem; opacity: .25; margin-bottom: 1rem; display: block; }
.empty-state p { font-size: .9rem; }

/* ============================================================
   BADGE / TAGS
   ============================================================ */
.tag {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .22rem .7rem;
    border-radius: 99px;
    background: var(--cream2);
    color: var(--warm);
    border: 1px solid var(--border);
}
.tag--green { background: var(--green); color: var(--white); border-color: var(--green); }
.tag--gold  { background: var(--gold);  color: var(--white); border-color: var(--gold); }

/* ============================================================
   MISC
   ============================================================ */
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-green  { color: var(--green); }
.text-muted  { color: var(--warm); }

.mt-1 { margin-top: .25rem; }
.mt-2 { margin-top: .5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }
.mb-1 { margin-bottom: .25rem; }
.mb-2 { margin-bottom: .5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }

/* ============================================================
   GALERIA DE OBRAS
   ============================================================ */
.gallery-grid {
    columns: 4;
    column-gap: 1rem;
}
.gallery-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.gallery-item img {
    width: 100%;
    display: block;
    transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item__caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(28,28,28,.7));
    color: #fff;
    font-size: .72rem;
    padding: 1.5rem .75rem .5rem;
    opacity: 0;
    transition: opacity .25s;
}
.gallery-item:hover .gallery-item__caption { opacity: 1; }

@media (max-width: 1024px) { .gallery-grid { columns: 3; } }
@media (max-width: 640px)  { .gallery-grid { columns: 2; } }

.home-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .75rem;
}
.home-gallery-grid .gallery-item { margin-bottom: 0; }
.home-gallery-grid .gallery-item img { height: 220px; object-fit: cover; width: 100%; }
@media (max-width: 1024px) { .home-gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .home-gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   PRINT
   ============================================================ */
@media print {
    .site-header, .site-footer, .vernissage-banner { display: none; }
}
