.body-listas{
  padding: 4rem 5%;
  color: #fff;
}

.listas-header{
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Marko One", serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  
}

.mySwiper {
  width: 60%;
  padding: 50px 0;
}

.mySwiper .swiper-slide {
  position: relative;
  width: 320px;
  aspect-ratio: 3/4;
  border-radius: 14px;
  
}

.mySwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  user-select: none;
  /*filter: drop-shadow(0 0 0.3rem rgb(189, 189, 189));*/
}

/*
.mySwiper .swiper-pagination {
  --swiper-pagination-bottom: -6px;
  display: none;
}*/

.mySwiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #676464;
  border-radius: 40%;
  transition: all 0.3s ease-in-out;
}

.mySwiper .swiper-pagination-bullet-active {
  width: 12px;
  background-color: rgb(195, 192, 192) !important;
  border-radius: 50%;
}

@media (max-width: 1100px) {
  .mySwiper{
      width: 80%;
    }

  .mySwiper .swiper-slide {
    width: 500px;
  }
}

@media (max-width: 900px) {

  .mySwiper{
      width: 100%;
    }

  .mySwiper .swiper-slide {
    width: 450px;
  }
}

@media (max-width: 700px) {

    .mySwiper{
      width: 100%;
      
    }

    .mySwiper .swiper-slide{
        width: 300px;
    }

    .mySwiper .swiper-slide img{
      width: 200px;
      height: 200px;
      object-fit: cover;
    }

    .mySwiper .swiper-pagination {
    margin-top: 15px;  /* separa toda la fila de bullets de la imagen */
    bottom: 0px;       /* ajusta si es necesario */
  }

    .mySwiper .swiper-pagination-bullet{
      width: 10px;
    height: 10px;
    margin: 0 5px; 
    }
}

@media (max-width: 610px) {
    .mySwiper .swiper-slide{
        width: 200px;
    }

    
}

