/*------ FONTS ------*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Michroma&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Saira+Condensed:wght@100;200;300;400;500;600;700;800;900&family=Saira+Semi+Condensed:wght@100;200;300;400;500;600;700;800;900&family=Saira:ital,wght@0,100..900;1,100..900&display=swap');


/* ==== COLORES ====

#ebebeb; gris

*/

/* ==== ENCABEZADO ==== */

a{
    text-decoration: none !important;
}

.sc3{
    width: 100%;
    opacity: 0;
    margin-top: 92px;
    animation: ani-ent 500ms ease-in-out forwards;
    animation-delay: 250ms;
    position: relative;
    z-index: 1;
}


.encsing{
    max-width: 900px;
    margin: 0 auto;
    padding-top: 10px;
    display: grid;
    grid-template-columns: 200px 30% auto;
    text-align: center;
}

.marca-logo{
    width: 200px;
    height: 100px;
    background-color: #fff;
    border-radius: 10px 0px 0px 10px;
}

.marca-box{
    width: auto;
    height: 100px;
    font-family: Roboto;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    line-height: 100px;
    background: linear-gradient(180deg, rgba(0,57,139,1) 0%, rgba(0,155,245,1) 100%);
    cursor: pointer;
    transition: 250ms ease-in-out;
}

.marca-box-2{
    width: 100%;
    height: 100%;
    color: #fff;
    text-decoration: none;
}

.marca-box:hover{
    background: linear-gradient(180deg, rgba(0,155,245,1) 0%, rgba(0,155,245,1) 100%);
}

.modelo-box{
    height: 100px;
    width: 100%;
    color: #002458;
    background-color: #fff;
    font-family: Roboto;
    font-size: 24px;
    font-weight: 600;
    line-height: 100px;
    border-radius: 0px 10px 10px 0px;
    cursor:default;
}

.cont{
  margin: 0 auto;
  /*width: 95%;*/
  max-width: 1200px;
}

/* CABECERA */

.header{
  position: absolute;
  width: calc(100% - 20px);
  max-width: 1200px;
  
  padding: 10px;

  background-color: #00183abd;
  backdrop-filter: blur(20px);
  border-radius: 10px;

  border-top: #006affbd solid 1px;

  top: 10px;
  left: 50%;
  transform: translateX(-50%);

  z-index: 11;
}

.header-btns{
  width: auto;
  height: 40px;
  position: absolute;
  /*float: right;*/
  display: flex;

  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 12;
}

.btn-header{
  width: 36px;
  padding: 2px;
  position: relative;
  top: 2px;
  margin-right: 10px;
  cursor: pointer;
  transition: all 0.6s ease;
}

.btn-header:hover{
  scale: 1.2;
}

/* MENÚ DESPLEGABLE */

.menu-wrapper {
  position: relative;
  width: 40px;
  height: 40px;
  padding: 2px;
  border-radius: 10%;
  margin-right: 10px;
  transition: all 0.6s ease;


}

.menu-wrapper img{
  width: 34px;
  height: 34px;
  position: relative;
  top: -0px;
}

.menu-wrapper:hover {
  background-color: #006affdd;
}

.menu-trigger {
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
}

/* Menú */
.dropdown {
  position: absolute;
  top: 110%;
  right: 0;
  background: #00183ae1;
  backdrop-filter: blur(20px);
  border-radius: 8px;
  min-width: 180px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  overflow: hidden;

  border-top: #006affbd solid 1px;
  border-bottom: #006affbd solid 1px;

  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;

  transition: opacity 0.25s ease,
              transform 0.25s ease;

  z-index: 1001;
}

.dropdown a {
  display: block;
  padding: 10px 12px;
  font-family: Inter;
  font-weight: 500;
  font-size: 10pt;
  color: white;
  text-decoration: none;
}

.dropdown a:hover {
  background: #006affbd;
}

.dropdown.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ==== IMG PRINCIPAL ==== */

.img-principal{
    width: 100%;
    margin: 0 auto;
    margin-top: 10px;
    height: auto;
    max-height: 440px;
    max-width: 900px;
    border-radius: 10px;
    overflow: hidden;
    transition: 250ms ease-in-out;
}

.img-principal:hover{
    transform: scale(.98);
}

.img-principal img{
    width: 900px;
    border-radius: 10px;
}

/* ==== BOX CONTENEDORES ==== */
.box{
    width: 90%;
    max-width: 900px;
    background-color: #fff;
    border-radius: 10px;
    margin: 0 auto;
    margin-top: 10px;
    padding: 20px;
    text-align: center;
}

.boxgrid{
    width: 90%;
    max-width: 900px;
    background-color: #fff;
    border-radius: 10px;
    margin: 0 auto;
    margin-top: 10px;
    padding: 20px;
    text-align: center;
    display: grid;
    grid-template-columns: auto auto;
    gap: 20px;
}

.boxgrid2{
    width: 90%;
    max-width: 900px;
    background-color: #fff;
    border-radius: 10px;
    margin: 0 auto;
    margin-top: 10px;
    padding: 20px;
    text-align: center;
    display: grid;
    justify-content: space-between;
    grid-template-columns: 23% 23% 23% 23%;
    gap: 20px;
}

.boxg-a{
    width: 100%;
}
.boxg-b{
    width: 100%;
}

.boxg-a iframe{
    min-width: 450px;
    min-height: 253px;
}

.boxg-b iframe{
    min-width: 450px;
    min-height: 253px;
}

.boxg-a img, .boxg-b img{
    width: 100%;
    height: auto;
    border-radius: 5px;
    overflow: hidden;
    transition: 250ms ease-in-out;
}
.boxg-a img:hover, .boxg-b img:hover{
    transform: scale(1.1);
}

.bar-grey{
    color: #fff;
    background-color: rgba(0,155,245,.85);
}
#EBEBEB
/* ==== IMAGENES ==== */

.energia img{
    width: 100%;
    max-width: 653px;
}

.img-hori img{
    width: 100%;
    border-radius: 5px;
    transition: 250ms ease-in-out;
}

.img-hori img:hover{
    transform: scale(1.05);
}

/* ==== ESLOGAN ==== */

.titulo-single{
    font-family: Roboto;
    color: #002458;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    cursor: default;
}

.titulo-tagline{
    font-family: Roboto;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    cursor: default;
}

/* ==== TEXTOS ==== */

.txt-tit-single{
    font-family: Roboto;
    color: #002458;
    font-size: 1.6rem;
    font-weight: 600;
    text-align: left;
    cursor: default;
    margin-bottom: 10px;
}

.txt-tit-single-tag{
    font-family: Roboto;
    color: #002458;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: left;
    cursor: default;
    margin-bottom: 10px;
}

.txt-tit-single-mini{
    font-family: Roboto;
    color: #002458;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    letter-spacing: 2px;
    cursor: default;
    margin-bottom: 10px;
}

.txt-tit-single-center{
    font-family: Roboto;
    color: #002458;
    font-size: 1.6rem;
    font-weight: 600;
    text-align: left;
    cursor: default;
    margin-bottom: 10px;
    text-align: center;
}

.txt-desc-single{
    font-family: Roboto;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: default;
}

.txt-desc-single-grey{
    font-family: Roboto;
    font-size: .8rem;
    font-weight: 500;
    text-align: left;
    cursor: default;
    color: #303030;
}

/* ==== DETALLES PRINCIPALES ==== */

.det-principales{
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 24.4% 24.4% 24.4% 24.4%;
    text-align: center;
    margin-top: 10px;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.detalle{
    height: 100px;
    width: 100%;
    color: #fff;
    background-color: #002458;
    font-family: Roboto;
    font-size: 1rem;
    font-weight: 500;
    /*line-height: 80px;*/
    border-radius: 5px;
    cursor: default;

    display: flex;
    justify-content: center;
    align-items: center;
    word-break:break-all;
    overflow: hidden;
    transition: 250ms ease-in-out;
}

.detalle:hover{
    background-color: rgba(0,155,245,1);
    transform: scale(1.2);
    box-shadow: 0px 0px 15px rgba(0,155,245,1);
}

#det{
    display: grid;
}

#det-a{
    width: 100%;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 0.7rem;
    grid-column: 1/2;
    padding-bottom: 5px;
    letter-spacing: 3px;
}

.det-b{
    width: 100%;
    height: auto;
    grid-column: 1/2;
}

/*  ====  GALERIA  ====  */

.galeria{
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    max-width: 900px;
    margin: 10px auto 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 10px;
}

.galeria-mini{
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    max-width: 100%;
    margin: 10px auto 10px;
    display: grid;
    grid-template-columns: auto auto;
    gap: 10px;
}

.galeria img{
    border-radius: 5px;
    width: 100%;
    cursor: zoom-in;
    transition: 250ms;
}

.galeria img:hover{
    transform: scale(1.2);
    box-shadow: 0px 0px 15px #002458;
}

.full-img{
    width: 100%;
    height: 100vh;
    background-color: rgba(0,24,58,0.95);
    top: 0;
    left: 0;
    display: none;
    position: fixed;
    align-items: center;
    justify-content: center;

    z-index: 23;
}

.full-img span{
    width: 60px;
    position: absolute;
    bottom: 15%;
    right: calc(50% - 30px);
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    transition: 500ms ease-in-out;
}

.full-img span:hover{
    transform: scale(1.4);
}

.full-img img{
    border-radius: 10px;
    width: 90%;
    max-width: 1000px;
}

/*  ====  SELECTOR DE IMÁGENES  ====  */

.box .selector-img{
    width: 100%;
    margin-bottom: 10px;
}

.box .selector-img .main_img{
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}
.main_img{
    width: 100%;
    border-radius: 5px;
}
.box .cont-miniaturas{
    height: 80px;
    display: flex;
    justify-content: space-between;
}

.box .cont-miniaturas .selector-miniaturas{
    width: 100%;
    height: 80;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    object-fit: cover;
    opacity: .7;
    transition: 500ms ease-in-out;
}

.box .cont-miniaturas .selector-miniaturas:hover{
    opacity: 1;
}

.active {
    opacity: 1 !important;
    box-shadow: 0px 0px 10px #002458;
}

/*  ==== FINANCIACION ==== */

.financiacion{
    transition: 250ms ease-in-out;
}
.financiacion:hover{
    transform: scale(.96);
}

/*  ====  VIDEOS  ====  */
video{
    position: relative;
    left: 0;
    transform: translate(0);
    border-radius: 5px;
}

/*  ====  BOTON DESCARGAR  ====  */

.btn-descargar{
    width: fit-content;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #002458;
    color: #fff;
    font-family: Roboto;
    font-weight: 700;
    font-size: 1rem;
    float: right;
    margin: 10px;

    cursor: pointer;
    transition: 250ms ease-in-out;
}

.btn-descargar:hover{
    background-color: rgba(0,155,245,1);
}

/*  ====  DETALLES BACKGROUNDS  ====  */

#det-motor{
    background-image: url(./../imagenes/iconsingles/motor.png);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: -20px;
}

#det-cambios{
    background-image: url(./../imagenes/iconsingles/cambios.png);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: -30px;
}

#det-seguridad{
    background-image: url(./../imagenes/iconsingles/seguridad.png);
    background-size: 40%;
    background-repeat: no-repeat;
    background-position: -10px;
}

#det-design{
    background-image: url(./../imagenes/iconsingles/design.png);
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: -40px -20px;
}

#det-tecnologia{
    background-image: url(./../imagenes/iconsingles/tecnologia.png);
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: -40px -16px;
}

#det-wifi{
    background-image: url(./../imagenes/iconsingles/wifi.png);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: -40px -6px;
}
/* ==== ANIMACIONES ENTRADA ==== */

.ent{
    opacity: 0; 
    animation: ani-ent 1.5s ease-in-out forwards;
    animation-delay: 250ms;
}

@keyframes ani-ent{
    from{
      margin-top: 25vh;
    }
    to{
      margin-top:none;
      opacity: 1;
    }
}

@keyframes entra-img-principal {
    from{
        border-radius: 10px 10px 10px 10px;
      }
      to{
        border-radius: 0px 0px 10px 10px;
      }
}

/* ==== RESPONSIVE ==== */

@media screen and (max-width:1024px){

    /* ==== ENCABEZADO ==== */

    .sc3{
        margin-top: 0px;
        margin-inline: auto;
        width: 95%;

    }

    .encsing{
        padding-top: 20px;
        max-width: calc(100% - 20px);
        grid-template-columns: 50% 50%;
    }

    .boxgrid, .box, .det-principales{
        width: calc(100% - 20px);
    }

    .marca-logo{
        width: auto;
    }
    
    .marca-box{
        width: 100%;
        border-radius: 0px 10px 10px 0px;
        
    }

    .modelo-box{
        height: 100px;
        width: 100%;
        font-size: 2rem;
        margin-top: 10px;
        grid-column: 1/3;
        border-radius: 10px 10px 0px 0px;
    }

    /* ==== IMG PRINCIPAL ==== */

    .img-principal{
        max-width: calc(100% - 20px);
        border-radius: 0px 0px 10px 10px;
        margin-top: 0px;
    }


    .img-principal:hover {
        transform: none;
    }

    .img-principal img{
        width: 100%;
        border-radius: 0 0 10px 10px;
    }

    /* ==== DETALLES PRINCIPALES ==== */

    .det-principales{
        max-width: calc(100% - 20px);
        grid-template-columns: 49.4% 49.4%;
    }

    .detalle{
        margin-bottom: 10px;
    }

    /* ==== GALERIA ==== */

    .galeria{
        max-width: calc(100% - 20px);
        grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
    }

    /* ==== BOX CONTENEDORES ==== */

    .boxgrid{
        grid-template-columns: auto;
    }

    .boxgrid2{
        grid-template-columns: 47% 47% !important;
    }

    .energia img{
        width: 100%;
        max-width: 653;
    }
}

@media screen and (max-width:550px){
    .encsing{
        max-width: calc(100% - 20px);
        grid-template-columns: 100%;
    }

    .marca-logo{
        width: 100%;
        grid-column: 1/2;
        border-radius: 10px;
    }

    .marca-box{
        height: 60px;
        grid-column: 1/2;
        border-radius: 10px;
        line-height: 60px;
        margin-top: 10px;
        /*display: none; */     
    }

    .galeria{
        grid-template-columns: repeat(auto-fit,minmax(100px,1fr));
        border-radius: 5px;
        gap: 5px;
    }
}