@charset "UTF-8";
.showcase-item {
  position: relative;
  height: 500px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
}

/* ---- Galería Turismo ---- */
.tour-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.tour-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(30, 27, 58, 0.14);
}

.tour-card .tour-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, #e9ecef, #dee2e6);
}

.tour-card .tour-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.tour-card:hover .tour-img img {
  transform: scale(1.06);
}

.tour-card .tour-info {
  padding: 1rem 1.25rem 1.15rem;
  background: linear-gradient(to top, rgba(30, 27, 58, 0.95), rgba(30, 27, 58, 0.85));
}

.tour-card .tour-info .tour-category {
  color: #FFC30B;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.15rem;
}

.tour-card .tour-info .tour-name {
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
}

/* ---- Lightbox ---- */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 8, 30, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  -o-object-fit: contain;
     object-fit: contain;
}

.lightbox-overlay .lb-caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
}

.lightbox-overlay .lb-caption .lb-cat {
  color: #FFC30B;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.lightbox-overlay .lb-caption .lb-name {
  font-family: "Sora", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  background: none;
  border: none;
  line-height: 1;
}

.lightbox-close:hover {
  opacity: 1;
}

@media (max-width: 600px) {
  .tour-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }
  .tour-card .tour-info {
    padding: 0.7rem 0.9rem;
  }
  .tour-card .tour-info .tour-name {
    font-size: 0.9rem;
  }
  .tour-card .tour-info .tour-category {
    font-size: 0.65rem;
  }
}/*# sourceMappingURL=custom.css.map */