/* Galería - Carrusel (Swiper) */

.gallery-swiper {
  width: 100%;
  padding: 10px 0 45px;
}

.gallery-swiper .swiper-slide {
  height: 380px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f2f2;
}

.gallery-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-swiper .swiper-slide:hover img {
  transform: scale(1.05);
}

.gallery-swiper .swiper-button-prev,
.gallery-swiper .swiper-button-next {
  color: #333;
}

.gallery-swiper .swiper-pagination-bullet-active {
  background: #333;
}

@media (max-width: 640px) {
  .gallery-swiper .swiper-slide {
    height: 260px;
  }
}