/* ── Gallery grid ── */
.tour-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #f0ebe3;
  margin: 0;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption {
  font-size: 0.75rem; color: #666;
  padding: 0.3rem 0.5rem;
  background: rgba(0,0,0,0.5);
  color: #fff;
  position: absolute;
  bottom: 0; left: 0; right: 0;
}
.gallery-item { position: relative; }

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

/* Passeios page extras */
.breadcrumb ol {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  list-style: none;
  margin-bottom: 1.5rem;
}
.breadcrumb li { font-size: 0.82rem; color: rgba(255,255,255,0.65); }
.breadcrumb li:not(:last-child)::after { content: '›'; margin-left: 0.5rem; }
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: #fff; }

.filter-btn {
  padding: 0.4rem 1rem;
  border-radius: 100px;
  border: 1px solid #e8e0d0;
  background: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  color: #666;
  transition: all 0.25s;
}
.filter-btn:hover { border-color: #E8A020; color: #C8861A; }
.filter-btn--active { background: #E8A020; border-color: #E8A020; color: #fff; font-weight: 600; }
