*{

    align-items: center;
    justify-content: center;

}

/* SLIDER PRINCIPAL */

.carouseles{

    width: 1792px;
    height: 900px;
    margin-top: 0px;
    overflow: hidden;
    position: relative;

}

.carouseles .listas .item_interior{

    width: 180px;
    height: 250px;
    position: absolute;
    top: 75%;
    transform: translateY(-70%);
    left: 70%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background-position: 50% 50%;
    background-size: cover;
    transition: 1s;

}

.carouseles .listas .item_interior:nth-child(1){
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;

}

.carouseles .listas .item_interior:nth-child(2){

    left: 67%;

}

.carouseles .listas .item_interior:nth-child(3){

    left: calc(67% + 200px);

}

.carouseles .listas .item_interior:nth-child(4){

    left: calc(67% + 400px);

}

.carouseles .listas .item_interior:nth-child(5){

    left: calc(67% + 600px);

}

.carouseles .listas .item_interior:nth-child(6){

    left: calc(67% + 800px);
    opacity: 0;

}

.carouseles .listas .item_interior:nth-child(n+7){

    left: calc(67% + 1000px);
    opacity: 0;

}

/* CSS responsive tablets and celulares */


/* SLIDER PRINCIPAL */




/* CONTENIDO SLIDERS */
.item_interior .contenido{

    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    width: 800px;
    text-align: left;
    color: #fff;

    display: none;

}

.listas .item_interior:nth-child(1) .contenido{

    display: block;

}

.contenido .titulo{

    font-size: 100px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    text-transform: uppercase;
    color: #2671da;
    font-weight: bold;
    line-height: 1;
    text-shadow: 3px 4px 4px rgba(0, 0, 0, 0.5);

    opacity: 0;
    animation: animate 1s ease-in-out 0.3s forwards;

}

.contenido .nombre{

    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin-top: 20px;
    font-size: 50px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1;
    text-shadow: 3px 4px 4px rgba(0, 0, 0, 0.5);

    opacity: 0;
    animation: animate 1s ease-in-out 0.6s forwards;

}

.contenido .descripcion{

    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 20px;
    margin-left: 5px;
    text-shadow: 3px 4px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: animate 1s ease-in-out 0.9s forwards; 

}

.contenido .boton button{

    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border: 40px;
    border: 2px solid #0078FF;

    opacity: 0;
    animation: animate 1s ease-in-out 1.2s forwards;

}

@keyframes animate{

    from{

        opacity: 0;
        transform: translate(0, 50px);
        filter: blur(0px);

    }

    to{

        opacity: 2;
        transform: translate(0);
        filter: blur(0);

    }

}

/* CONTENIDO SLIDERS */




/* flechas prev and next */

.flechas{

    position: absolute;
    top: 80%;
    right: 52%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;

}

.flechas button{

    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #0078FF;
    color: #fff;
    border: none;
    outline: none;
    font-size: 25px;
    font-family: monospace;
    font-weight: bold;
    transition: .5s;
    cursor: pointer;

}

/* flechas prev and next */


/* time running */

.carouseles .time-running{

    position: absolute;
    z-index: 1000;
    width: 0;
    height: 4px;
    background-color: #002d5f;
    left: 0;
    top: 0;
    animation: runningTime 7s linear 1 forwards;

}

@keyframes runningTime{

    from{width: 0;}
    to{width: 100%;}

}

/* time running */

/* time running */
@media screen and (max-width: 999px) {
    
    .item_interior .contenido{
        left: 50px;
    }

    .contenido .titulo, .contenido .nombre{
        font-size: 70px;
    }

    .contenido .descripcion{
        font-size: 16px;
    }

}

/* slider marcas */

.slider{

    width: 75vw;
    height: auto;
    margin: auto;
    overflow: hidden;

}

.slider .slider-track {

    display: flex;
    animation: scroll 40s linear infinite;
    -webkit-animation: scroll 40s linear infinite;
    width: calc(200px * 14);

}

.slider .slide {

    width: 200px;

}

.slider .slide img{

    width: 100%;

}

@keyframes scroll {

    0%{

        -webkit-transform: translateX(0);
        transform: translateX(0);

    }

    100%{

        -webkit-transform: translateX(calc(-200px * 7));
        transform: translateX(calc(-200px * 7));

    }


}


/* Acordeon informacion */
.acordeon {

    margin: auto auto;

}

.acordeon li {

    list-style: none;
    width: 100%;
    margin: 20px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 3px 3px 10px -1px rgba(0, 0, 0, 0.15);

}

.acordeon li label {

    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    
}

label::before {

    content: '+';
    margin-right: 10px;
    font-size: 24px;
    font-weight: 500;

}

input[type="radio"]{

    display: none;

}

.acordeon .content-prin {

    color: #555;
    line-height: 26px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s, padding 0.8s;

}

.acordeon input[type="radio"]:checked + label + .content-prin {

    max-height: 400px;
    padding: 10px 10px 20px;

}

.acordeon input[type="radio"]:checked + label::before {

    content: '-';

}

/* codigo responsive celular tablet acordeon */
@media (min-width: 200px) and (max-width: 601px) {

    .acordeon {

    width: 330;
    padding: auto;
    text-align: justify;
    justify-content: center;
    align-items: center;

    }    

}

@media (min-width: 602px) and (max-width: 1024px) {

    .acordeon {

    width: auto;
    padding: auto;
    text-align: justify;
    justify-content: center;
    align-items: center;

    }    

}



/* Codigo responsive para celulares y tablets */

/* === RESPONSIVE: Celulares (hasta 600px) === */
@media (min-width: 200px) and (max-width: 601px) {
  .carouseles {
    width: 100%;
    height: 800px;
  }

  .carouseles .listas .item_interior {
    width: 120px;
    height: 180px;
    top: 80%;
   
  }

  .carouseles .listas .item_interior:nth-child(1) {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }

  .contenido {
    width: 70%;
    left: 2%;
    top: 70%;
  }

  .contenido .titulo {
    width: 40%;
    font-size: 38px;
  }

  .contenido .nombre {
    width: 35%;
    font-size: 25px;
  }

  .contenido .descripcion {
    width: 25%;
    font-size: 18px;
  }

  .contenido .boton button {
    font-size: 16px;
    padding: 8px 16px;
  }

  .flechas {
    top: 92%;
    right: 50%;
    transform: translateX(50%);
    width: auto;
  }

  .flechas button {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

/* === RESPONSIVE: Tablets (601px - 1024px) === */
@media (min-width: 602px) and (max-width: 1024px) {
  .carouseles {
    width: 100%;
    height: 600px;
  }

  .carouseles .listas .item_interior {
    width: 150px;
    height: 200px;
    top: 72%;
    left: 65%;
  }

  .contenido {
    width: 70%;
    left: 10%;
  }

  .contenido .titulo {
    width: 50%;
    font-size: 40px;
  }

  .contenido .nombre {
    width: 45%;
    font-size: 25px;
  }

  .contenido .descripcion {
    width: 65%;
    font-size: 18px;
  }

  .contenido .boton button {
    font-size: 20px;
  }

  .flechas {
    top: 85%;
    right: 50%;
    transform: translateX(50%);
    width: auto;
  }
}

