/* Carrusel de obras - Swiper personalizado */
.obras-carousel-section {
  margin: 3rem 0;
}
.obras-swiper {
  width: 100%;
  padding-bottom: 3rem;
}
.swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  padding: 1.5rem 1rem;
  transition: box-shadow 0.3s;
}
.swiper-slide:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.obra-img img {
  max-width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
}
.obra-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0.5rem 0 0 0;
  text-align: center;
}
.swiper-pagination-bullet {
  background: #222;
  opacity: 0.7;
}
.swiper-pagination-bullet-active {
  background: #e85d04;
  opacity: 1;
}
.swiper-button-next, .swiper-button-prev {
  color: #e85d04;
}
