.acceseo-galerias-wrapper{ width:100%; }
.acceseo-galerias-section{ margin-bottom:120px; }

.acceseo-galerias-title{
  font-family:"Work Sans", sans-serif;
  font-size:40px;
  font-style:normal;
  font-weight:700;
  line-height:104%;
  color:#282E74;
  margin: 0 0 24px 0;
}

.acceseo-galerias-grid{
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(283px, 283px));
  justify-content: start;
}

.acceseo-galerias-item{
  width:283px;
  height:290px;
  border-radius:32px;
  overflow:hidden;
}

.acceseo-galerias-link{
  display:block;
  width:100%;
  height:100%;
  border-radius:32px;
  overflow:hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}

.acceseo-galerias-img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.acceseo-galerias-link:hover{
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}

/* ===== Lightbox moderno con miniaturas ===== */
.acceseo-lb{
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display:none;
}
.acceseo-lb.is-open{ display:block; }

.acceseo-lb__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.75);
}

.acceseo-lb__panel{
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%);
  width: min(1400px, calc(100vw - 24px));
  background:#111;
  border-radius:18px;
  overflow:hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

.acceseo-lb__stage{
  width:100%;
  height: min(82vh, 820px);
  display:flex;
  align-items:center;
  justify-content:center;
  background:#0c0c0c;
}

.acceseo-lb__img{
  max-width: 100%;
  max-height: 100%;
  width:auto;
  height:auto;
  transition: opacity .18s ease;
}
.acceseo-lb__img.is-fading{ opacity:.25; }

.acceseo-lb__close{
  position:absolute;
  top:12px;
  right:12px;
  width:40px;
  height:40px;
  border-radius:999px;
  border:0;
  cursor:pointer;
  background:#fff;
  font-weight:900;
  z-index:5;
}

.acceseo-lb__nav{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:44px;
  height:44px;
  border-radius:999px;
  border:0;
  cursor:pointer;
  background: rgba(255,255,255,.92);
  font-size:26px;
  font-weight:900;
  z-index:5;
}
.acceseo-lb__prev{ left:12px; }
.acceseo-lb__next{ right:12px; }

.acceseo-lb__thumbs{
  display:flex;
  gap:10px;
  padding:12px;
  overflow:auto;
  background:#151515;
}
.acceseo-lb__thumb{
  flex: 0 0 auto;
  width:72px;
  height:56px;
  border-radius:12px;
  overflow:hidden;
  border:2px solid transparent;
  padding:0;
  cursor:pointer;
  background:transparent;
}
.acceseo-lb__thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.acceseo-lb__thumb.is-active{
  border-color:#ffffff;
}

/* Responsive */
@media (max-width: 768px){
  .acceseo-galerias-title{ font-size:30px; line-height:normal; }
  .acceseo-galerias-grid{ grid-template-columns: repeat(auto-fit, minmax(114px, 114px)); gap: 12px; }
  .acceseo-galerias-item{ width:114px; height:122.9px; border-radius:32px; }

  .acceseo-lb__stage{ height: min(62vh, 520px); }
  .acceseo-lb__thumb{ width:60px; height:46px; }
}
