.category-wrapper {
  min-height: 100vh;
  padding-top: 70px;
  display: flex;
  position: relative;
  align-items: center;
  background: black;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 1%,
    rgba(181, 181, 181, 1) 100%
  );
  overflow: hidden;
}

.category-title {
  font-family: "Estricta Black", sans-serif;
  font-size: 3rem;
  color: #143f90;
  text-transform: uppercase;
  white-space: normal;
  display: block;
  word-wrap: anywhere;
  display: block;
  margin-top: -0.5rem;
  margin-left: 1rem;
  transition: opacity 0.3s ease;
  opacity: 1;
}

.category-nuevo-modelo {
  background-color: #143f90;
  padding: 2px 0px;
  color: white;
  font-family: "Estricta Regular", sans-serif;
  font-size: 1.2rem;
  width: 70%;
  text-align: center;
  margin: 10px 0px;
  transition: opacity 0.3s ease;
  opacity: 1;
}

.category-image {
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  opacity: 1;
  transform: scale(0.95);
}

.category-imagen-texto {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 1rem;
}

.category-imagen-texto p {
  font-size: 15px;
  color: white;
}

.category-wrapper-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding-top: 20px;
  margin: auto;
  margin-top: 5vh;
  min-width: 70vw;
}

.category-wrapper-content h5 {
  color: white;
  font-size: 2rem;
}

.category-listado-motos .modelos {
  white-space: normal;
  display: block;
  word-wrap: anywhere;
}

.modelos_list {
  overflow-y: auto;
  height: 50vh;

  scrollbar-width: thin; /* scroll fino */
  scrollbar-color: red transparent;
}

/* CHROME, EDGE, OPERA, BRAVE, SAFARI */
.modelos_list::-webkit-scrollbar {
  width: 6px; /* grosor */
}

.modelos_list::-webkit-scrollbar-track {
  background: transparent; /* sin fondo */
}

.modelos_list::-webkit-scrollbar-thumb {
  background-color: #143f90; /* color de la barra */
  border-radius: 10px; /* redondeado */
}

.modelos_list::-webkit-scrollbar-thumb:hover {
  background-color: #ff3a3a;
}

/* .category-listado-motos .modelos h3 {
  font-family: "Estricta Black", sans-serif;
  font-size: 3rem;
  line-height: 3.2rem;
  color: white;
  text-transform: uppercase;
  white-space: normal;
} */

.category-listado-motos .modelos .active {
  color: #143f90;
}

.category-listado-motos .modelos .active span {
  color: #ffffff;
}

.modelos h3:hover {
  color: #143f90;
  cursor: pointer;
}

.category-listado-motos h2 {
  font-family: "Estricta Regular", sans-serif;
  font-size: 1.2rem;
  line-height: 1.8rem;
  margin: 10px 0px;
  color: white;
  text-transform: uppercase;
  white-space: normal;
}

.category-listado-motos {
  /* padding-top: 20px; */
  padding-top: 5rem;
  user-select: none;
}

/* .category-wrapper-content .informacion-tecnica {
  padding-top: 80px;
} */

.category-wrapper-right {
  /* min-width: 200px; */
  height: 100%;
  width: 10rem;
}

.image-garantia {
  display: flex;
  /* margin: 0 0 0 auto; */
}

.modelos span {
  display: none;
}

.category-top-header img {
  display: none;
}

.slides_container {
  display: flex;
  flex: 0 0 70%;
  height: 100%;
  position: relative;

  gap: 500px; /* espacio entre slides */
  /* padding: 0 40px; */
}

.category_slide {
  /* min-width: 100vw; */
  height: 100vh;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 2rem; */
}

body {
  margin: 0;
  /* bloqueamos el scroll nativo */
}

.slides_container {
  display: flex;
  height: 100vh;
  width: 70vw;
  /* position: absolute; */
  top: 0;
  left: 0;
}

.category_slide {
  flex: 0 0 70vw;
  width: 70vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: start;
  font-size: 3rem;
}

.slides_area {
  /* overflow: hidden; */
  width: 100%;
}

.category-top-header h5 {
  position: absolute;
  z-index: 999;
  font-size: 1.5rem;
}

.wrapper.titular {
  width: 20%;
}

@media screen and (max-width: 768px) {
  .category-wrapper {
    flex-direction: column;
    height: 100vh;
    padding: 0;
  }

  .category-wrapper-content {
    flex-direction: column;
    height: 600px;
    padding-top: 80px;
    position: relative;
    justify-content: start;

    margin-left: 0;
  }

  .category-wrapper-content h5 {
    color: white;
    font-size: 1.5rem;
  }

  .category-listado-motos h2 {
    display: none;
  }

  .category-nuevo-modelo {
    width: 6rem;
    font-size: 0.8rem;
    margin: 0;
  }

  .category-title {
    font-size: 2rem;
    margin: 0;

    text-align: center;
  }

  .category-listado-motos {
    /* display: none; */
    display: flex;
    width: 100%;
    position: relative;
    gap: 15px;
    padding-top: 20px;
  }

  .category-listado-motos .modelos {
    position: relative;
    /* flex: 1; */
  }

  .category-listado-motos .modelos h3 {
    font-size: 0.9rem;
    display: flex;
  }

  .category-listado-motos .modelos {
    word-wrap: normal;
    text-wrap: nowrap;
  }

  .modelos_list {
    display: flex;

    overflow-x: auto;
    height: fit-content;

    gap: 10px;
  }

  .category-image {
    /* position: absolute;
    left: -50%; */
    width: 100%;
  }

  .category-wrapper-content .informacion-tecnica {
    padding-top: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;

    margin-left: 0;
  }

  .informacion-tecnica div {
    width: 40%;
    margin-bottom: 0.4rem !important;
  }

  .category-wrapper-right {
    width: 100%;
  }

  .informacion-tecnica h4,
  .informacion-tecnica p {
    font-size: 10px !important;
    text-align: center !important;
  }

  .informacion-tecnica h4 {
    margin-top: 0.5rem !important;
  }

  .modelos span {
    display: block;
    margin-left: 10px;
  }

  .category-imagen-texto,
  .image-garantia {
    display: none;
  }

  .category-button-wrapper-mobile {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
  }

  .category-button-wrapper {
    display: none;
    justify-content: start;
  }

  .category-button-wrapper a {
    font-size: 0.7rem;
    padding: 5px 10px;
    flex-direction: column;
  }

  .category-top-header img {
    display: block;
  }

  .category-top-header {
    display: flex;
    justify-content: space-between;
  }

  .category-top-header h5 {
    position: unset;
  }

  .slides_container {
    display: flex;
    height: 100vh;
    width: 100vw;
    /* position: absolute; */
    top: 0;
    left: 0;
  }

  .category_slide {
    flex: 0 0 100vw;
    width: 95vw;
    height: 70vh;
    display: flex;
    font-size: 3rem;
    align-items: start;
    flex-direction: column;
  }

  .slides_area {
    width: 100vw;
    height: 100vh;
    overflow: visible;
  }

  .modelos h3:hover {
    color: white;
    cursor: pointer;
  }
  .wrapper.titular {
    width: 100%;
  }
}
