/* ========================================== */
/* SWIPER: GALERÍA DE FOTOS                   */
/* ========================================== */
.swiper-button-next,
.swiper-button-prev {
  color: var(--text-main);
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--primary-blue);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.2rem;
  font-weight: bold;
}

.gallery-slide {
  height: 350px;
  /* Altura fija para que todas las fotos se vean parejas */
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Evita que las fotos se deformen */
  transition: transform 0.5s ease;
}

.gallery-slide:hover img {
  transform: scale(1.05);
  /* Efecto zoom al pasar el mouse */
}
.footer-link {
  color: #adb5bd;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.footer-link:hover {
  color: white;
  transform: translateX(5px);
}
.social-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-circle.fb:hover {
  background-color: #1877f2;
  transform: translateY(-3px);
  color: white;
}
.social-circle.ig:hover {
  background-color: #e4405f;
  transform: translateY(-3px);
  color: white;
}
.social-circle.wa:hover {
  background-color: #25d366;
  transform: translateY(-3px);
  color: white;
}
.activo {
  color: #ff6d00 !important;
}
