#servicio-page h2{
  font-size: x-large !important;
  font-weight: 600;
}

#servicio-page section{
  padding: 40px 0;
}

/* Contenido de servicios */
.servicios-container {
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .servicios-container {
    padding: 0 1rem;
  }
}

.servicio h2 {
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.servicio p {
  color: #444;
  margin-bottom: 1rem;
}

.galeria {
  /* width: 400px; */ /* Changed */
  max-width: 700px; /* Added */
  width: 90%; /* Added - Adjust percentage as needed */
  margin: 0 auto;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Image Styling - Retained fixed size, object-fit */
.swiper-slide img {
  display: block;
  width: 300px;
  height: 300px;
  object-fit: cover;
  /* Ensure image doesn't exceed its own container */
  max-width: 100%;
}

.swiper-slide {
  width: 80%;
}

.swiper-slide:nth-child(2n) {
  width: 60%;
}

.swiper-slide:nth-child(3n) {
  width: 40%;
}

/* Responsive */
@media (max-width: 768px) {
  .galeria img {
    width: 100%;
  }
}
