/* ========================================================================== */
/* 1) TEMA / VARIÁVEIS                                                         */
/* ========================================================================== */
:root{
  --bg-deep:#0b0b13;            /* fundo noite */
  --gold-1:#FFD54A;             /* dourado claro (brilho) */
  --gold-2:#FFB300;             /* dourado médio (acentos) */
  --gold-3:#8C6C00;             /* dourado escuro (sombra) */
  --muted:#b4b7bd;              /* textos secundários */
  /* compat: nomes antigos */
  --neon: var(--gold-1);
  --neon2: var(--gold-2);
}

/* ========================================================================== */
/* 2) BASE / TIPOGRAFIA                                                        */
/* ========================================================================== */
html,body{
  background:var(--bg-deep);
  color:#e7e7ea;
  font-family:'Montserrat',system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial,"Noto Sans";
}
.fw-extrabold{font-weight:800;}
.object-cover{object-fit: cover; width:100%; height:100%;}
.ratio > img{border-top-left-radius: .75rem; border-top-right-radius: .75rem;}

/* ========================================================================== */
/* 3) NAVBAR / LOGO / LINKS / BOTÃO                                           */
/* ========================================================================== */
.blur-nav{
  backdrop-filter: blur(8px);
  background: rgba(11,11,19,.55)!important;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.brand-logo{
  display:block;
  height:44px;
  width:auto;
  filter: drop-shadow(0 0 10px rgba(255,179,0,.18));
}
/* Links dourados da navbar */
header.navbar .nav-link{
  color: var(--gold-1) !important;
  font-weight: 600;
  letter-spacing: .3px;
}
header.navbar .nav-link:hover,
header.navbar .nav-link:focus{
  color: var(--gold-2) !important;
  text-shadow: 0 0 6px rgba(255,179,0,.45);
}
header.navbar .nav-link.active{
  color: var(--gold-1) !important;
  border-bottom: 2px solid var(--gold-2); /* opcional */
}
/* Botão “Ingressos” dourado */
header.navbar .btn-neon{
  background: linear-gradient(90deg, var(--gold-2), var(--gold-1));
  border: 1px solid rgba(255,179,0,.55);
  box-shadow: 0 10px 30px rgba(255,179,0,.25), inset 0 0 0 1px rgba(255,255,255,.06);
  color: #0b0b13;
  font-weight: 700;
}
header.navbar .btn-neon:hover{
  transform: translateY(-1px);
  filter: saturate(1.15);
}

/* ========================================================================== */
/* 4) TÍTULOS / ACENTOS                                                        */
/* ========================================================================== */
.section-title{
  font-weight:800; letter-spacing:.5px; margin-bottom:.25rem; text-transform:uppercase;
  background: linear-gradient(90deg,var(--gold-2),var(--gold-1));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.neon-text{
  background: linear-gradient(90deg,var(--gold-1),var(--gold-2));
  -webkit-background-clip:text; background-clip:text; color: transparent;
  text-shadow: 0 0 18px rgba(255,179,0,.25);
}

/* ========================================================================== */
/* 5) CARDS / FUNDOS                                                           */
/* ========================================================================== */
.card-glow{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 1rem;
  transition: box-shadow .25s ease, transform .2s ease, border-color .25s ease;
}
.card-glow:hover{
  transform: translateY(-2px);
  border-color: rgba(255,179,0,.45);
  box-shadow: 0 10px 36px rgba(255,179,0,.20);
}
.bg-dark-gradient{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
}
.bg-dark-gradient-2{
  background: linear-gradient(180deg, rgba(255,179,0,.12), rgba(0,0,0,0) 40%);
}
.card-event .card-title{min-height: 2.75rem;}

/* ========================================================================== */
/* 6) HERÓI (TOPO) + LUZ ANIMADA NO TÍTULO                                    */
/* ========================================================================== */
.hero-section{ position: relative; min-height: 100svh; overflow: clip; }
.hero-bg{
  position:absolute; inset:0; width:100%; height:100%; object-fit: cover;
  filter: brightness(.38) contrast(1.06) saturate(1.15);
}
.hero-overlay{
  position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(50% 50% at 55% 45%, rgba(255,179,0,.22), rgba(0,0,0,0) 60%),
    linear-gradient(180deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.0) 35%, rgba(0,0,0,.82) 100%);
}

/* Subtítulo do herói (“A casa onde a noite ganha vida…”) — BRANCO */
.hero-section .lead{
  color: #fff !important;
  text-shadow: 0 0 6px rgba(255,255,255,.12);
}

/* --- Luz compacta próxima do texto + troca de cor suave --- */

/* Houdini: variável animável para hue (Chrome/Edge/Safari) */
@property --hero-hue {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

.hero-title{
  position: relative;
  display: inline-block;
  z-index: 0;
  animation: heroGlow 1.4s ease-in-out infinite; /* pulso do brilho do texto */
}

/* Feixe principal (colado na frase) */
.hero-title::before{
  content:"";
  position:absolute; left:50%; top:50%;
  width:  clamp(100%, 28vw, 100%);   /* << tamanho horizontal da luz */
  height: clamp(110%,  10vw, 110%);   /* << tamanho vertical da luz   */
  transform: translate(-50%, -50%);
  pointer-events:none; z-index:-1;

  background: radial-gradient(62% 62% at 50% 50%,
              rgba(255,199,60,.65),
              rgba(255,179,0,.32) 55%,
              rgba(255,179,0,0) 78%);
  filter: blur(2px) saturate(1.1) brightness(1.08) hue-rotate(var(--hero-hue));
  opacity:.92;
  mix-blend-mode: screen;

  /* varredura curta + mudança de cor */
  animation: heroSweep 2.2s ease-in-out infinite alternate,
             heroHue   1s linear infinite;
}

/* Halo extra (aura sutil perto do texto) */
.hero-title::after{
  content:"";
  position:absolute;
  inset:-6% -10%;  /* quanto menos negativo, menor a área do halo */
  background: radial-gradient(46% 46% at 50% 50%,
              rgba(255,210,90,.38),
              rgba(255,179,0,0) 70%);
  filter: blur(18px) hue-rotate(var(--hero-hue));
  opacity:.55;
  pointer-events:none; z-index:-2;
  animation: heroPulse 3.0s ease-in-out infinite,
             heroHue   8s linear infinite;
}

/* Brilho do texto */
@keyframes heroGlow{
  0%,100%{
    text-shadow:
      0 0 16px rgba(255,179,0,.55),
      0 0 44px rgba(255,179,0,.32),
      0 0 88px rgba(255,179,0,.20);
  }
  50%{
    text-shadow:
      0 0 22px rgba(255,199,60,.85),
      0 0 80px rgba(255,179,0,.46),
      0 0 130px rgba(255,179,0,.28);
  }
}

/* Varredura curta (fica “em cima” da frase) */
@keyframes heroSweep{
  0%   { transform: translate(calc(-50% - 8%), -50%)  scale(1.02); opacity:.86; }
  100% { transform: translate(calc(-50% + 8%), -50%)  scale(1.02); opacity:.96; }
}

/* Pulso do halo */
@keyframes heroPulse{
  0%,100% { opacity:.48; }
  50%     { opacity:.72; }
}

/* Alternância suave de cor via hue */
@keyframes heroHue{
  0%   { --hero-hue: -10deg; }
  50%  { --hero-hue:  10deg; }
  100% { --hero-hue: -10deg; }
}

/* Acessibilidade: reduz animações se preferido pelo usuário */
@media (prefers-reduced-motion: reduce){
  .hero-title, .hero-title::before, .hero-title::after{
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
  }
}

/* ========================================================================== */
/* 7) SUBTÍTULOS (ABAIXO DOS H2) — BRANCOS                                    */
/* ========================================================================== */
section .text-center .section-title + p {
  color: #fff !important;
  text-shadow: 0 0 6px rgba(255,255,255,.12);
}
#servicos .text-secondary,
#programacao .text-secondary,
#galeria .text-secondary,
#equipe .text-secondary {
  color: #fff !important;
  text-shadow: 0 0 6px rgba(255,255,255,.12);
}

/* ========================================================================== */
/* 8) ÍCONES DE SERVIÇOS — BEM BRANCOS (Font Awesome)                         */
/* ========================================================================== */
/* Use .svc-icon na <i> dos serviços */
#servicos .svc-icon{
  color:#fff !important;
  filter: drop-shadow(0 0 12px rgba(255,255,255,.22));
  font-size: 2.75rem;
  line-height: 1;
}
/* fallback, caso algum item ainda use Bootstrap Icons */
#servicos .bi{
  color:#fff !important;
  filter: drop-shadow(0 0 12px rgba(255,255,255,.22));
}

/* ========================================================================== */
/* 9) GALERIA — HOVER SUTIL                                                    */
/* ========================================================================== */
.gal-item img{transition: transform .25s ease, box-shadow .25s ease;}
.gal-item:hover img{ transform: scale(1.02); box-shadow: 0 8px 26px rgba(255,179,0,.15); }

/* ========================================================================== */
/* 10) DIVISÓRIA DOURADA SUAVE ENTRE SEÇÕES                                   */
/* ========================================================================== */
#servicos, #programacao, #galeria, #equipe{ position: relative; }
#servicos::before,
#programacao::before,
#galeria::before,
#equipe::before{
  content:"";
  position:absolute; top:0; left:50%;
  transform: translateX(-50%);
  width: min(1100px, 92%);
  height: 1px; /* mais sutil */
  background: linear-gradient(90deg,
    rgba(255,179,0,0) 0%,
    rgba(255,179,0,.45) 50%,
    rgba(255,179,0,0) 100%);
  opacity:.45;                 /* suave e não chamativo */
  box-shadow: 0 0 12px rgba(255,179,0,.08);
  pointer-events:none;
}

/* ========================================================================== */
/* A) "Ver Programação" igual ao botão Ingressos                               */
/* ========================================================================== */
header.navbar .btn-neon,
.hero-section .btn-neon{
  background: linear-gradient(90deg, var(--gold-2), var(--gold-1));
  border: 1px solid rgba(255,179,0,.55);
  box-shadow: 0 10px 30px rgba(255,179,0,.25), inset 0 0 0 1px rgba(255,255,255,.06);
  color: #0b0b13 !important;
  font-weight: 700;
}
header.navbar .btn-neon:hover,
.hero-section .btn-neon:hover{
  transform: translateY(-1px);
  filter: saturate(1.15);
}

/* ========================================================================== */
/* B) Divisória dourada: incluir a nova seção #acasa                           */
/* ========================================================================== */
#acasa{ position: relative; }
#acasa::before{
  content:"";
  position:absolute; top:0; left:50%;
  transform: translateX(-50%);
  width: min(1100px, 92%);
  height: 1px;
  background: linear-gradient(90deg,
    rgba(255,179,0,0) 0%,
    rgba(255,179,0,.45) 50%,
    rgba(255,179,0,0) 100%);
  opacity:.45;
  box-shadow: 0 0 12px rgba(255,179,0,.08);
  pointer-events:none;
}

/* ========================================================================== */
/* C) Modal fullscreen da seção "A Casa"                                       */
/* ========================================================================== */
.modal-acasa .modal-content{
  background: rgba(0,0,0,.95);
  border: 1px solid rgba(255,255,255,.08);
}
.modal-acasa .modal-body{
  min-height: 100vh;
  display:flex; align-items:center; justify-content:center;
  padding: 2rem;
}
.modal-acasa .modal-img{
  max-width: min(92vw, 1600px);
  max-height: 88vh;
  width: auto; height: auto;
  border-radius: .5rem;
  box-shadow: 0 12px 60px rgba(0,0,0,.6), 0 0 40px rgba(255,179,0,.08);
}
/* ========================================================================== */
/* EQUIPE – CAROUSEL                                                          */
/* ========================================================================== */
/* Indicadores abaixo do conteúdo, dourados e discretos */
#equipe .carousel-indicators{ position: static; margin-top: 1rem; }
#equipe .carousel-indicators [data-bs-target]{
  width: 10px; height: 10px; border-radius: 50%;
  background-color: rgba(255,179,0,.6);
}
#equipe .carousel-indicators .active{
  background-color: var(--gold-1);
}

/* Setas com leve destaque dourado */
#equipe .carousel-control-prev-icon,
#equipe .carousel-control-next-icon{
  filter: drop-shadow(0 0 8px rgba(255,179,0,.35)) invert(1) sepia(1) saturate(6) hue-rotate(340deg) brightness(1.1);
}
#equipe .carousel-control-prev, 
#equipe .carousel-control-next{
  width: 6%;
}

/* Cartão da equipe mantém o visual */
#equipe .team-card .btn{
  border-color: rgba(255,255,255,.22);
}
#equipe .team-card .btn:hover{
  border-color: rgba(255,255,255,.36);
}
/* ========================================================================== */
/* EQUIPE — CONTROLES DO CAROUSEL MAIS EVIDENTES                              */
/*  - Maior tamanho, botão circular, borda dourada, glow e opacidade total    */
/*  - Mantém os ícones padrão do Bootstrap (setas brancas)                    */
/* ========================================================================== */

#equipe .carousel-control-prev,
#equipe .carousel-control-next{
  opacity: 1;                 /* sempre visíveis */
  width: auto;                /* não ocupar 15% da largura */
  z-index: 5;
}

#equipe .carousel-control-prev { left: -0.25rem; }
#equipe .carousel-control-next { right: -0.25rem; }

#equipe .carousel-control-prev-icon,
#equipe .carousel-control-next-icon{
  width: 3.25rem;             /* ↑ aumenta a seta */
  height: 3.25rem;
  background-size: 45% 45%;   /* tamanho do glifo dentro do círculo */
  background-color: rgba(0,0,0,.55); /* círculo escuro translúcido */
  border: 2px solid rgba(255,179,0,.85); /* borda dourada */
  border-radius: 50%;
  box-shadow: 
    0 0 0 3px rgba(255,179,0,.12),
    0 10px 24px rgba(0,0,0,.35),
    0 0 18px rgba(255,179,0,.18);
  filter: none;               /* mantém a seta branca */
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease;
}

#equipe .carousel-control-prev-icon { background-position: 45% 50%; }
#equipe .carousel-control-next-icon { background-position: 55% 50%; }

#equipe .carousel-control-prev:hover .carousel-control-prev-icon,
#equipe .carousel-control-next:hover .carousel-control-next-icon{
  background-color: rgba(255,179,0,.15);  /* leve banho dourado no hover */
  box-shadow:
    0 0 0 4px rgba(255,179,0,.2),
    0 0 28px rgba(255,179,0,.55),
    0 12px 28px rgba(0,0,0,.45);
  transform: scale(1.08);
}

/* Acessibilidade: foco visível nos botões */
#equipe .carousel-control-prev:focus .carousel-control-prev-icon,
#equipe .carousel-control-next:focus .carousel-control-next-icon{
  outline: none;
  box-shadow:
    0 0 0 4px rgba(255,179,0,.30),
    0 0 28px rgba(255,179,0,.65);
}

/* Responsivo: em telas pequenas, um pouco menores */
@media (max-width: 576px){
  #equipe .carousel-control-prev-icon,
  #equipe .carousel-control-next-icon{
    width: 2.6rem;
    height: 2.6rem;
  }
}

/* ========================================================================== */
/* (OPCIONAL) SETAS DOURADAS (substitui o glifo branco por dourado)           */
/*  - Descomente o bloco abaixo se quiser a seta interna dourada também       */
/* ========================================================================== */
/*
#equipe .carousel-control-prev-icon{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FFB300' viewBox='0 0 16 16'%3E%3Cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0'/%3E%3C/svg%3E");
}
#equipe .carousel-control-next-icon{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FFB300' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
}
*/
/* ========================================================================== */
/* RODAPÉ – TEXTO BRANCO, FONTE MAIOR, SEM SUBLINHADO, TÍTULOS E CENTRALIZAÇÃO */
/* ========================================================================== */

/* Base do footer: textos mais visíveis */
.site-footer{
  font-size: 1rem; /* ↑ um pouco maior que o default */
  color: #fff;
}
.site-footer p,
.site-footer address,
.site-footer .footer-policy{
  color: #fff !important;
  line-height: 1.5;
}

/* Títulos acima do texto (visuais e contraste) */
.site-footer .footer-heading{
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: .35rem;
}

/* Links do footer: brancos, sem sublinhado (também no hover) */
.site-footer .footer-link{
  color: #fff;
  text-decoration: none;
  border-bottom: none;         /* remove o traço usado antes */
  transition: color .2s ease, opacity .2s ease;
}
.site-footer .footer-link:hover{
  color: var(--gold-1);
  text-decoration: none;       /* garante sem sublinhado no hover */
}

/* Ícones de redes sociais – mantém o estilo dourado discreto */
.site-footer .footer-social .social-link{
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  color: var(--gold-1);
  border: 1px solid rgba(255,179,0,.35);
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
.site-footer .footer-social .social-link i{ font-size: 1.1rem; }
.site-footer .footer-social .social-link:hover{
  transform: translateY(-2px);
  background-color: rgba(255,179,0,.10);
  box-shadow: 0 8px 26px rgba(255,179,0,.18);
  color: #fff; /* ícone fica branco no hover */
}

/* Centraliza a linha de direitos reservados */
.site-footer .footer-copy{
  color: #fff;
  font-size: .975rem;
  opacity: .95;
}

/* Responsivo: títulos sem itálico no <address> e espaçamento amigável */
@media (max-width: 768px){
  .site-footer address { font-style: normal; }
}
/* HERO – vídeo de fundo */
.hero-bg{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit: cover;
  filter: brightness(.38) contrast(1.06) saturate(1.15);
  pointer-events: none;              /* não intercepta cliques/scroll */
}

/* Acessibilidade: se usuário prefere menos movimento ou economia de dados, pausa o vídeo */
@media (prefers-reduced-motion: reduce), (prefers-reduced-data: reduce){
  .hero-bg{ display:none; }          /* some o vídeo e fica só o overlay + título */
}

/* Garante que o "X" do modal fique sempre clicável acima de tudo */
.modal .btn-close {
  position: absolute;
  top: .75rem;
  right: .75rem;
  z-index: 1080;      /* acima do conteúdo da modal */
  pointer-events: auto;
}

/* Evita filhos com posicionamento "cobrirem" o X */
.modal .modal-body,
.modal .modal-content {
  position: relative;
}

/* Opcional: imagem não ultrapassar viewport */
.modal .modal-img {
  max-width: 100%;
  max-height: 100vh;
  display: block;
  margin: 0 auto;
}
/* ========================================================================== */
/* PROGRAMAÇÃO — Aspect ratio 5:4 (1350×1080) e controle de corte           */
/* ========================================================================== */

/* Novo ratio 5:4 usando a variável do Bootstrap */
.ratio-5x4 { --bs-aspect-ratio: 80%; } /* 4/5 * 100 = 80% */

/* Para eventos, defina o ratio e tamanho do card um pouco maior */
.card-event .ratio { --bs-aspect-ratio: 80%; } /* aplica 5:4 por padrão nos cards */
@media (min-width: 992px){
  /* Opcional: aumentar um pouco a altura visual dos cards no desktop */
  .card-event .ratio { --bs-aspect-ratio: 78%; }
}

/* Duas opções de ajuste da imagem: COVER (corta) ou CONTAIN (não corta) */
.object-cover { object-fit: cover;  width:100%; height:100%; }
.object-contain{
  object-fit: contain; width:100%; height:100%;
  background: #0b0b13; /* fundo discreto para as “barras” quando necessário */
}

/* Mesmo efeito visual das outras imagens (serviços/equipe/galeria) */
#programacao .gal-item img{
  transition: transform .25s ease, box-shadow .25s ease;
}
#programacao .gal-item:hover img{
  transform: scale(1.02);
  box-shadow: 0 8px 26px rgba(255,179,0,.15);
}

/* Opcional: cards 3 por linha no desktop (mais largos) */
@media (min-width: 992px){
  .programacao-3porlinha .col-lg-3 { width: 33.3333%; flex: 0 0 33.3333%; }
}
/* ===== Modal Galeria ===== */
#galeriaModal .modal-content{
  background: radial-gradient(60% 60% at 50% 45%, rgba(255,179,0,.05), rgba(0,0,0,.95) 65%);
}
#galeriaModal .carousel-control-prev-icon,
#galeriaModal .carousel-control-next-icon{
  filter: drop-shadow(0 0 8px rgba(255,179,0,.45));
}

/* Thumbs */
.gal-thumbs{
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
  padding: .75rem 1rem;
  overflow-x: auto;
}
.gal-thumbs img.thumb{
  height: 72px; width: auto;
  border-radius: .5rem;
  border: 1px solid rgba(255,255,255,.12);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.gal-thumbs img.thumb:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,179,0,.18);
}
.gal-thumbs img.thumb.active{
  border-color: var(--gold-2);
  box-shadow: 0 0 0 2px rgba(255,179,0,.35) inset, 0 0 10px rgba(255,179,0,.18);
}
#galeriaModal .modal-content{
  background: radial-gradient(60% 60% at 50% 45%, rgba(255,179,0,.05), rgba(0,0,0,.95) 65%);
}
#galeriaModal .carousel-control-prev-icon,
#galeriaModal .carousel-control-next-icon{
  filter: drop-shadow(0 0 8px rgba(255,179,0,.45));
}

.gal-thumbs{
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
  padding: .75rem 1rem;
  overflow-x: auto;
}
.gal-thumbs img.thumb{
  height: 72px; width: auto;
  border-radius: .5rem;
  border: 1px solid rgba(255,255,255,.12);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.gal-thumbs img.thumb:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,179,0,.18);
}
.gal-thumbs img.thumb.active{
  border-color: var(--gold-2);
  box-shadow: 0 0 0 2px rgba(255,179,0,.35) inset, 0 0 10px rgba(255,179,0,.18);
}
  .album-card { text-decoration: none; }
  .album-card .album-title{
    color: #fff;
    font-weight: 700;
    letter-spacing: .3px;
  }
  .album-card:hover .album-title{
    color: var(--gold-1);
    text-shadow: 0 0 6px rgba(255,179,0,.35);
  }

  /* Thumbs do modal (caso ainda não tenha) */
  .gal-thumbs{
    position: sticky; bottom: 0; width: 100%;
    padding: 12px 16px 18px; background: rgba(0,0,0,.55);
    backdrop-filter: blur(6px);
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .gal-thumbs img.thumb{
    width: 86px; height: 64px; object-fit: cover; border-radius: 8px;
    opacity:.65; cursor:pointer; transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease;
  }
  .gal-thumbs img.thumb:hover{ opacity:.9; transform: translateY(-1px); }
  .gal-thumbs img.thumb.active{
    opacity:1; box-shadow: 0 0 0 2px var(--gold-2), 0 6px 18px rgba(255,179,0,.25);
  }