/* Color-list
Letras: #fff
! bg de fondo sobre imagenes: rgba(255, 255, 255, 0.20)
* verde (btn-whatsapp): #25d366   
? Azul1 claro: rgb(7, 86, 130) = #075682 (footer)
todo Azul2 oscuro: rgb(2, 16, 23) = #021017 (fondo)
  background: linear-gradient(0deg,  rgb(2, 16, 23,.4),rgb(2, 16, 23,.4));  (fondo Blur)
  backdrop-filter: blur(10px);
azul3 brillante: #007bfe (logo)
azul4 bajo: #38bdf8 (logo)
azul shark (logo): #201a3d
azul5: #0466a2
azul6: #023289
azul7: #057cc6
//amarillo (border-color): #b99b62;
                      .    
*/

.ban-shop{/*! - - - - - - - - - - - - - - -Portada de Shop - - - - - - - - - - - - - - -*/
  display:flex;
  width: 95%;
  height: auto;
  margin: 0 auto; /**alinea contenido centralmente*/
  -webkit-flex-direction:column;/**con esto hacemos compatible esta propiedad css para navegadores basados en webkit*/
  -moz-flex-direction:column;/**Mozilla firefox*/
  -ms-flex-direction:column;/**Internet explorer*/
  -o-flex-direction:column;/**opera*/
  flex-direction: column;/**Estandar*/
  aspect-ratio: 506/63;
  margin-bottom: 0;
  margin-top: 15px;
  border-radius: 8px;
}


.slider-container {/*!- - - -- - - - - - - - - -slide banner - - - - - - - - - - - - --*/
  width: 90%;
  height: auto;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: -30px;
  position: relative;
  overflow: hidden;
  overflow-x: scroll;
  z-index: 0;
}

.slider-container::-webkit-scrollbar {
 display: none;
}

.slider {
  display: flex;
  transition: transform 0.35s ease;
}
.slide {
  flex: 0 0 100%;
  padding: 1px;
}
.slider-nav {
  text-align: center;
  margin-top: 0;
  padding-top: 0;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 25px;
  width: 90%;
  display: none;
  justify-content: space-between;
  font-size: 14px;
}
.slider-nav button{
  background-color: #075682;
  text-decoration: none;
  color: #fff;
  margin: 2px;
  font-weight: bold;
  padding-left: 1.2vw;
  padding-right: 1.2vw;
  border-radius: 5px;
}
.slider-nav button:hover{
  -webkit-transition: color 200ms ease;
  transition: color 200ms ease;
  box-shadow: #075682  0px 0px 1px 1px;
  background-color: transparent;
  color: hsla(0, 0%, 100%, 0.55);
  text-decoration: none;
  transform: scale(1.02);
}
.slider-dots {
  text-align: center;
  margin-top: 0px;
}
.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: #fff  0px 0px 1px 1px;
  margin: 0 5px;
  cursor: pointer;
  margin-top: 0;
}
.dot:hover{
  box-shadow: #075682  0px 0px 1px 1px;
}
.dot.active {
  background-color: hsla(0, 0%, 100%, 0.55);
  /* background-color: hsla(0, 0%, 100%, 0.55); */
}

.container-details {
  margin-top: 2vw;
  display: flex;
  justify-content: space-around;
}
.buton-download {
  background-color: #075682;
  text-decoration: none;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  font-weight: bold;
  padding: 3px;
  padding-left: 2vw;
  padding-right: 2vw;
  border-radius: 5px;
}
.buton-download:hover{
  -webkit-transition: color 200ms ease;
  transition: color 200ms ease;
  box-shadow: #075682  0px 0px 1px 1px;
  background-color: transparent;
  color: hsla(0, 0%, 100%, 0.55);
  text-decoration: none;
  transform: scale(1.02);
}
  .product{/* - - - - - - - - - - - - - Contenido de cada slide - - - - - - - - - - - - -*/
    background-color:transparent;
    display: flex;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .product:hover{
    box-shadow: #075682  0px 0px 1px .7px;
  }
  .desc-product{
    display: block;
    padding-right: 10px;
    padding-left: 30px;
    margin: 0;
    width: 50%;
    height:48%;
  }
  .img-product{
  width: 48%;
  height: 48%;
  }
  .img-product img{
    padding: 0;
    margin: 0;
    height: auto;
    width: fit-content; /*ajusta el ancho del contenedor por el de su contenido*/
    object-fit: contain; /*ajusta la imagen al contenedor*/
    aspect-ratio: 1/1; /*Considera el ancho de la caja antes de cargar la img*/
  }

.category{/* - - - - - - - - - - - - - - -Seccion de categorias - - - - - - - - - - - - - - -*/
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  display: flex;
  margin-top: 10px;
  margin-bottom: 2.5vw;
  
}
.movie{
  width: 30%;
  margin-left: auto;/*alinea contenido centralmente conjunto a la siguiente linea*/
  margin-right: auto;/*alinea contenido centralmente conjunto a la anterior linea*/
  display: block;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  border-radius: 8px ;
  margin-top: 10px;
  color: #fff;
  height: fit-content;
}
.movie:hover{
  box-shadow: #075682  0px 0px 1px 1px;
}
.movie img{
  aspect-ratio:3/2;
  border-radius: 10px 10px 0px 0px;
}
.category .movie img:hover{
  transform: scale(1.01);
}
.resume{
  width: 90%;
  height: auto;
  font-size: 16px;
  line-height: 18px;
  margin: 0;
  margin-inline: auto;
  -webkit-margin-inline:auto;
}
.resume h2{
  font-size: 28px;
  margin: 0;
  margin-bottom: 5px;
}
/* R E S P O N S I V E   1 0 8 0 P */

@media screen and (max-width: 768px) { /*      < - -  - - - - - - - - - - - -       R E S P O N S I V E   7 6 8 P    */
  .category{
    flex-direction: column;
    width: 100%;
    margin-top: 0px;
  }
  
  .movie{
    width: 80%;
    padding: 0;
    margin-top: 15px;
  }
  .resume{
    width: 95%;
    -webkit-margin-inline:auto;
    margin-inline: auto;
    font-size: 13px;
    line-height: 15px;
  }
  .resume h2{
    font-size: 25px;
    margin: 0;
    margin-top: 5px;
  }
  .desc-product{
    width: 65%;
    padding-left: 15px;  

  }
  .desc-product p{
    font-size: 14px;
    line-height: 14px;
  }
  .desc-product h2{
    font-size: 18px;
    line-height: 3px;
  }
  .img-product img {
    max-width: 100%;
    height: auto;
    -webkit-object-fit:contain;
    object-fit: contain;
    
  }


  .slider-container{
    margin-top: -40px;
    margin-bottom: 0;
  }
.dot{
  width: 12px;
  height: 12px;
}
.next{
  font-size: 14px;
}
.prev{
  font-size: 14px;
}
}
/* R E S P O N S I V E   425P */
@media screen and (max-width: 425px) {
  .desc-product{
    font-size: 12px;
    width: 70%;
    padding-left: 10px;
  }
  .desc-product p{
    font-size: 12px;
    line-height: 13px;
  }
  .desc-product h2{
    font-size: 16px;
    line-height: 3px;
  }
  
  .ban-shop img{
    display:flex ;
    width: 90vw;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .movie {
    width: 80%;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    color: #fff;
    height: auto;
}
.category{
  width: 100%;
}
.bg-img {
  border-radius: 5px;
}
.detail {
  color: #fff;
  background-color: transparent;
  width: auto;
  border-radius: 5px;
  margin: auto;
  text-align: center;
  font-size: 10px;
  font-weight: bold;
  padding-left: 0.3vw;
  padding-right: 0.4vw;
}
.resume {
  width: 90%;
  height: auto;
  font-size: 12px;
  line-height: 12px;
  
  margin-left: auto;
  margin-right: auto;
}
.resume h2{
  font-size: 20px;
  margin: 0;
}


.buton-download {
  color: #fff;
  font-weight: bold;
  padding-left: 2vw;
  padding-right: 2vw;
  border-radius: 5px;
}
.container-details {
  margin-top: 2vw;
  display: flex;
  justify-content: space-around;
}

/* .next{
  font-size: 10px;
}
.prev{
  font-size: 10px;
} */
}