body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #1c1c1c;
  font-family: 'Roboto', sans-serif;
}

.container{
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.container h1{
  color: #fff;
  text-align: center;
  margin-top: 50px;
  font-size: 2em;
  font-weight: bold;
  letter-spacing: 3px;
}

.swiper-container {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.swiper-wrapper {
  width: 100%;
  height: calc(100% - 60px); /* Ajusta esto según el tamaño que quieras para los controles */
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 300px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  z-index: 10;
}

.swiper-button-next,
.swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  margin: 0 10px;
  width: 30px;
  height: 30px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.swiper-button-next::after, .swiper-button-prev::after {
  display: none;
}

.swiper-button-next {
  background-image: url('/assets/left_arrow.png');
}

.swiper-button-prev {
  background-image: url('/assets/right_arrow.png');
}

.swiper-pagination {
  position: relative;
  bottom: auto;
  left: auto;
  width: auto;
  color: RGB(235,235,235);
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid #ffc400;
  border-radius: 50%;
  border-top-color: transparent;
  animation: swiper-preloader-spin 1s infinite linear;
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}

/* Estilos para dispositivos móviles */
@media (max-width: 1025px) {
  .swiper-controls {
    bottom: 10px;
    max-width: 250px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 25px;
    height: 25px;
  }

  .swiper-pagination {
    font-size: 12px;
  }
}

/* Estilos para dispositivos smartphones */
@media (max-width: 767px) {
  .swiper-controls {
    bottom: 10px;
    max-width: 250px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 25px;
    height: 25px;
  }

  .swiper-pagination {
    font-size: 12px;
  }
}