/* =============================
   CARRUSEL FULL WIDTH (3 IMÁGENES)
============================= */

.full-carousel {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.full-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease;
}

.full-slide {
  min-width: 100%;
  height: 100%;
}

.full-slide img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

/* FLECHAS */
.full-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  font-size: 3rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.full-arrow:hover {
  background: rgba(0,0,0,0.6);
}

.full-arrow.prev {
  left: 20px;
}

.full-arrow.next {
  right: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .full-carousel {
    height: 45vh;
  }

  .full-arrow {
    font-size: 2.2rem;
    width: 46px;
    height: 46px;
  }
}
