/* Gallery Strip Minimalist Styles */
.gallery-section {
  padding: 3rem 0;
}

.gallery-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Oculta a barra de rolagem em navegadores modernos */
.gallery-strip::-webkit-scrollbar {
  height: 4px;
}

.gallery-strip::-webkit-scrollbar-track {
  background: transparent;
}

.gallery-strip::-webkit-scrollbar-thumb {
  background: var(--border, #e2ddd7);
  border-radius: 2px;
}

.gallery-strip-item {
  position: relative;
  flex: 0 0 auto;
  width: 180px;
  height: 180px;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--border, #e2ddd7);
  background-color: var(--white, #ffffff);
}

.gallery-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

/* Zoom discreto ao passar o mouse */
.gallery-strip-item:hover img {
  transform: scale(1.05);
}

/* Legenda limpa que surge suavemente */
.gallery-strip-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 6px;
  font-size: 0.75rem;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.75);
  text-align: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.gallery-strip-item:hover .gallery-strip-caption {
  opacity: 1;
}