.hero--macuco{
  background-image:url('../../imagenes/sendero-macuco-cataratas/sendero-macuco-cataratas.webp');
}

.meta-tags--hero span{
  background:rgba(255,255,255,.14);
  color:#fff;
}

.sendero-section .card-content{
  text-align:left;
}

.decision-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
}

.decision-box{
  background:#fff;
  border-radius:16px;
  padding:24px;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
}

.decision-box h3{
  margin:0 0 12px;
  font-size:1.2rem;
}

.decision-box ul{
  margin:0;
  padding-left:18px;
  color:#52606d;
}

.decision-box li{
  margin:8px 0;
}

.chips{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
}

.chips span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#fff;
  border:1px solid #e6ecf2;
  border-radius:999px;
  padding:10px 14px;
  font-size:.95rem;
  font-weight:600;
  color:#41515f;
  box-shadow:0 4px 12px rgba(0,0,0,.04);
}

/* GALERÍA */
.photo-gallery{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}

.photo-thumb{
  padding:0;
  border:none;
  background:none;
  cursor:pointer;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
  transition:transform .2s ease, box-shadow .2s ease;
}

.photo-thumb:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 24px rgba(0,0,0,.12);
}

.photo-thumb img{
  width:100%;
  height:240px;
  object-fit:cover;
  display:block;
}

.lightbox[hidden]{
  display:none;
}

.lightbox{
  position:fixed;
  inset:0;
  z-index:3000;
}

.lightbox-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.82);
}

.lightbox-content{
  position:relative;
  z-index:2;
  width:min(92vw, 1100px);
  max-height:90vh;
  margin:4vh auto;
  display:flex;
  align-items:center;
  justify-content:center;
}

.lightbox-content img{
  width:100%;
  max-height:90vh;
  object-fit:contain;
  border-radius:16px;
  box-shadow:0 18px 40px rgba(0,0,0,.35);
}

.lightbox-close{
  position:absolute;
  top:14px;
  right:14px;
  width:44px;
  height:44px;
  border:none;
  border-radius:999px;
  background:rgba(0,0,0,.55);
  color:#fff;
  font-size:1.8rem;
  line-height:1;
  cursor:pointer;
  z-index:3;
}

.lightbox-close:hover{
  background:rgba(0,0,0,.72);
}

@media (max-width:900px){
  .photo-gallery{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:768px){
  .decision-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:640px){
  .photo-gallery{
    grid-template-columns:1fr;
  }

  .photo-thumb img{
    height:220px;
  }
}