/* --- CONTENEDOR PRINCIPAL --- */
.image-galery-custom {
  overflow: hidden;
  background: #000;
  position: relative;
}

/* --- ELIMINAR DESPLAZAMIENTO Y CREAR ZOOM --- */
.image-galery-custom .slick-slide {
  /* Forzamos que no haya rastro de movimiento lateral */
  transition:
    opacity 1000ms ease,
    transform 1200ms cubic-bezier(0.7, 0, 0.3, 1) !important;
  transform: scale(0.8); /* La foto nueva nace pequeña en el centro */
  opacity: 0 !important;
  z-index: 1;
}

.image-galery-custom .slick-current {
  opacity: 1 !important;
  transform: scale(1); /* Crece hasta su tamaño original */
  z-index: 2;
}

/* La foto que se va se desvanece mientras crece un poco */
.image-galery-custom .slick-slide:not(.slick-current) {
  transform: scale(1.1);
  opacity: 0 !important;
}

/* --- FLECHAS PROFESIONALES --- */
.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  width: 60px;
  height: 60px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 0;
}

.slick-prev:before,
.slick-next:before {
  font-family: "IcoFont";
  font-size: 50px;
  color: #fff;
  opacity: 0.6;
  transition: 0.3s;
}

.slick-prev:hover:before,
.slick-next:hover:before {
  opacity: 1;
}

.slick-prev {
  left: 20px;
}
.slick-next {
  right: 20px;
}
.slick-prev:before {
  content: "\eac9";
}
.slick-next:before {
  content: "\eaca";
}

/* --- DOTS MINIMALISTAS --- */
.slick-dots {
  position: absolute;
  bottom: 25px;
  width: 100%;
  list-style: none;
  padding: 0;
  text-align: center;
  z-index: 101;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots li button {
  width: 30px;
  height: 3px;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  font-size: 0;
  transition: 0.4s;
}

.slick-dots li.slick-active button {
  background: #fff;
  width: 50px; /* Estiramiento elegante */
}
