.galeria-fotos {
  margin-bottom: 30px;
}

.galeria-fotos .item {
  position: relative;
  padding: 5px;
}

.galeria-fotos img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.galeria-fotos img:hover {
  transform: scale(1.02);
}

.galeria-legenda {
  font-size: 0.9rem;
  color: #666;
  margin-top: 10px;
}

.galeria-fotos .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9) !important;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.galeria-fotos .owl-nav button:hover {
  background: rgba(217, 154, 65, 0.9) !important;
}

.galeria-fotos .owl-nav button.owl-prev {
  left: -25px;
}

.galeria-fotos .owl-nav button.owl-next {
  right: -25px;
}

.galeria-fotos .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.galeria-fotos .owl-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #ddd;
  border-radius: 50%;
  margin: 0 5px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.galeria-fotos .owl-dot.active {
  background: #d99a41;
  width: 30px;
  border-radius: 10px;
}

.owl-theme .owl-dots .owl-dot span {
  margin: 0 !important;
}

.owl-dot.active span {
  opacity: 0;
}

@media (max-width: 768px) {
  .galeria-fotos .owl-nav button.owl-prev {
    left: 10px;
  }

  .galeria-fotos .owl-nav button.owl-next {
    right: 10px;
  }
}