/******************************
*   Tipografias
******************************/
@import url('all.css');
@import url('typo.css');

:root {
    --negro: 0, 0, 0;
    --blanco: 255, 255, 255;
    --gris_d: 70, 64, 64;
    --gris_l: 232, 232, 232;
    --rojo: 230, 2, 17;

    --space_32: 2em;

    --swiper-theme-color: 0, 0, 0;
}

::selection {
    color: rgb(var(--blanco));
    background: rgba(var(--gris_d), .6);
}
::-moz-selection {
    color: rgb(var(--blanco));
    background: rgba(var(--gris_d), .6);
}
::-webkit-selection {
    color: rgb(var(--blanco));
    background: rgba(var(--gris_d), .6);
}

/******************************
*   Reset
******************************/
*{
    border: 0px;
    margin: 0px;
    padding: 0px;
}
html {
    scroll-behavior: smooth;
    scroll-padding: 70px;
}
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: 'Work Sans';
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    line-height: 1.4;
    font-size: 16px;
    color: rgb(var(--negro), 1); 
    background: rgb(var(--gris_l), 1); 
}
figure {
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
figure img { margin: 0 auto; }
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a, a:link, a:hover, a:visited {
    text-decoration: none;
    color: inherit;
    cursor: pointer;

    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
ul,
ol {
    margin: 0;
    padding: 0;
    padding-inline-start: 1.25em;
}
li + li { margin-top: 15px; }
h1, h2, h3, h4, h5, h6 { margin: 0; }
h1 { font-size: 28px; /* 1.75em */ }
h2 { font-size: 24px; /* 1.5em */ }
h3 { font-size: 20px; /* 1.25em */ }
h4 { font-size: 18px; /* 1.125em */ }
h5 { font-size: 16px; /* 1em */ }
h6 { font-size: 14px; /* 0.875em */ }
input,
select,
textarea {
    display: block;
    width: 100%;
    padding: 12px 16px;
    color: rgb(var(--negro), 1);
    background: rgb(var(--blanco), 1);
    border-radius: .3em;
    -moz-appearance: none;
    -webkit-appearance: none;
}
textarea {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
}
/* Change autocomplete styles in WebKit */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: ;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
}
input::placeholder,
textarea::placeholder { color: rgb(var(--name), 1); }
button { background: transparent; }
input:focus,
select:focus,
textarea:focus,
button:focus { outline: none; }

p { margin: 0; }
p + *,
* + p,
* + ol,
* + ul { margin-top: 1.25em; }
ol + *,
ul + *,
* + h2,
* + h3,
* + h4,
* + h5,
* + h6 { margin-top: 2.5em; }

ul > li::marker,
ul > li > ul > li::marker { color: rgb(var(--name), 1); }

label { font-weight: 500; }

strong { font-weight: 600; }

.no-dealer { display: none; }

/******************************
*   General
******************************/
main {
    min-height: calc(100vh - 4.563em);
    position: relative;
    display: flex;
    flex-direction: column;
}
.h__center { justify-content: center; }
main section {
    padding: 3.75em 0;
    position: relative;
}

/* Head Section */
.t__sect + *,
* + .t__sect { margin-top: 3.75em; }
.t__sect {
    text-align: center;
    text-transform: uppercase;
}
.t__sect > * { letter-spacing: .05em; }
.t__sect p { color: rgba(var(--negro), .6); }
.t__left { text-align: left; }

/* CTA */
* + .c__cta { margin-top: 40px; }
.c__cta {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 1em;
}
button.cta {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.cta,
a.cta {
    display: inline-flex;
    justify-content: center;
    white-space: nowrap;
    text-align: center;
    line-height: 1;
    padding: .9em 2em;
    color: rgb(var(--blanco), 1);
    text-transform: uppercase;
    border-radius: .3em;
    font-weight: 500;
    letter-spacing: .05em;
}
.cta,
.cta__01 { background: rgb(var(--rojo)); }
.cta__02 { background: rgb(var(--negro)); }
a.cta__03 {
    text-decoration: underline;
    background: transparent;
    color: rgb(var(--negro));
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: .05em;
}

/* Espacio */
.no__space { padding: 0; }

/* Slider */
.cont__contrls > * {
    border-width: 0.05em;
    border-style: solid;
    border-color: rgba(var(--negro));
    color: rgba(var(--negro));
    width: 2em;
    height: 2em;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.cont__contrls > *::before,
.cont__contrls > *::after { font-size: .9em; }
.cont__contrls .swiper-button-next,
.cont__contrls .swiper-rtl .swiper-button-prev { right: 1em; background-color: rgba(198, 205, 215, 0.5) }
.cont__contrls .swiper-button-prev,
.cont__contrls .swiper-rtl .swiper-button-next { left: 1em; background-color: rgba(198, 205, 215, 0.5)}

/* Banner Page */
.banner__page { padding: 0; }
.banner__fil {
    display: grid;
    grid-template-columns: 1fr;
}
.fil__info {
    grid-area: 1 / 1 / 2 / 2;
    position: relative;
    display: flex;
    flex-direction: column;
}

.fil__overlay {
    justify-content: flex-end;
    background: linear-gradient(to top,  rgba(var(--negro), .60) 0%,rgba(var(--negro), 0) 50%);
}
.banner__info {
    padding: 30px;
    text-transform: uppercase;
    color: rgb(var(--blanco));
}
.fil__img > *,
.fil__img > * > * {
    width: 100%;
    height: 100%;
}
.fil__img img {
    object-fit: cover;
    object-position: center;
}
.banner__logo {
    width: 15em;
    max-width: 60%;
}
.banner__info * + * { margin-top: 1.25em }
.banner__info h2 { letter-spacing: .05em; }

/* Background */
.sect__gray { background: rgb(var(--gris_l)); }
.sect__white { background: rgb(var(--blanco)); }

/* CTA Agenda */
main:has(+ .prueba) > section:last-child { padding-bottom: 80px; }
.prueba {
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -o-sticky;
    position: -ms-sticky;
    position: sticky;
    bottom: 0px;
    z-index: 10;
}
.cta__prueba {
    position: absolute;
    bottom: 15px;
    right: 0;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    background: rgb(var(--blanco), 1);
    filter: drop-shadow(0px 0px 10px rgb(var(--negro), .2));
    will-change: filter;
}
.cta__prueba > div,
.cta__prueba > div > div {
    display: flex;
    align-items: center;
}
.cta__prueba > div > div { padding: 12px; }
.cta__prueba > div > div:nth-child(1) {
    font-size: 26px;
    border-left: 2px solid rgb(var(--rojo));
}
.cta__prueba > div > div:nth-child(2) { border-left: 1px solid; }

/******************************
*   Home
******************************/
.autos { padding-top: 4.5em; }
.bg__autos {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgb(var(--blanco));
    height: 65%;
}

/******************************
*   Hero
******************************/
.slide__hero .cont__contrls > * {
    border-color: rgba(var(--blanco));
    color: rgba(var(--blanco));
}
.slide__hero img {
    width: 100%;
    max-width: initial;
}
.item__slide {
    display: grid;
    grid-template-columns: 1fr;
}
.slide__overlay {
    grid-area: 1 / 1 / 2 / 2;
    position: relative;
}
.slide__info {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2em;
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 100%);
    color: rgb(var(--blanco));
    text-transform: uppercase;
}
.slide__info > div {
    display: flex;
    flex-direction: column;
}
.slide__info > div h2 { font-size: 1.5em; }
.cont__vid { position: relative; }
.cont__vid video {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.volume {
    position: absolute;
    font-size: 1.2em;
    top: 0;
    right: 0;
    width: 2.2em;
    height: 2.2em;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(var(--blanco), 1);
    z-index: 10;
}

/******************************
*   Slide Autos
******************************/
.auto__slide {
    text-transform: uppercase;
    padding-bottom: 2px;
}
.auto__slide > * + * { margin-top: 2em; }
.auto__name { text-align: center; }
.auto__name h2 {
    font-weight: 600;
    font-size: 1.5em;
}
.auto__name figure {
    height: 2vw;
    max-height: 25px;
    min-height: 15px;
    display: inline-block;
}
.auto__name figure img {
    object-fit: contain;
    height: 100%;
}
.auto__img {
    margin: 0 auto;
    width: 80%;
}
.auto__img img {
    width: 100%;
    max-width: initial;
}
.auto__desc {
    padding: 1.5em 0;
    border-top: 0.05em;
    border-bottom: 0.05em;
    border-style: solid;
    border-color: rgba(var(--negro), .4);
    display: flex;
    flex-direction: column;
    gap: 1.5em 0;
    opacity: 0;
}
.auto__desc > * {
    display: flex;
    flex-flow: row wrap;
    gap: 1em 1.5em;
    justify-content: center;
}
.desc__text { text-align: center; }
.price__cont {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: .5em 1em;
}
.last__p {
    position: relative;
    color: rgba(var(--name), .6);
}
.last__p::before {
    content: '';
    width: 100%;
    height: 1px;
    left: 0;
    background: currentColor;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.current__p { font-weight: 600; }
.slide__autos .cont__contrls > * { top: 20%; }

/******************************
*   Benner
******************************/
.banner { padding: 0; }
.banner img {
    width: 100%;
    max-width: initial;
}

/******************************
*   Deatalle de auto
******************************/
[data-page="detail-car"] { background: rgb(var(--balnco), 1); }
.sect__galery > * + * { margin-top: 2.5em; }
[data-page="detail-car"] main h2,
[data-page="detail-car"] main h3 {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .05em;
}
[data-page="detail-car"] main .container { max-width: 59.375em; }

.sect__intro { text-align: center; }
.sect__intro h2 + span,
.sect__intro h3 + span,
.sect__intro h4 + span { margin-top:2em }
.sect__intro span {
    position: relative;
    vertical-align: middle;
    font-size: 1.625em;
    font-weight: 700;
    line-height: 1;
    margin-top: 1em;
}
.sect__intro span,
.sect__intro i {
    display: block;
    margin-left: .5em;
    margin-right: .5em;
}
.sect__intro span + i { font-size: 80%; }
.con__vid {
    width: 100%;
    max-width: 120vh;
    margin-right: auto;
    margin-left: auto;
    border-radius: 1em;
    overflow: hidden;
}
.con__vid > div {
    position: relative;
    padding-top: 56%;
}
.con__vid > div iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.sect__color { text-align: center; }
.collr__cont + *,
* + .collr__cont { margin-top: 3.75em; }

[data-page="detail-car"] main .sect__color .container { max-width: 100%; }
.cont__colors > * + * { margin-top: 30px; }
.color__slide { position: relative; }
.color__slide span {
    display: inline-block;
    padding: 1em;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: rgb(var(--blanco));
    font-size: 80%;
    background: rgb(var(--negro), 1);
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-right-radius: .6em;
    border-bottom-left-radius: .6em;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    -webkit-transform: translateY(-1px);
    -moz-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    -o-transform: translateY(-1px);
    transform: translateY(-1px);
    line-height: 1;
}
.img__color {
    margin: 0 auto;
    max-width: 120vh;
    width: 100%;
    border-radius: 1em;
    overflow: hidden;
    background: 
      radial-gradient(circle at 15% 30%, rgba(255,255,255,0.05), transparent 40%),
      linear-gradient(to right, #1a1f21 0%, #2a2f31 60%, #3c4042 100%),
      linear-gradient(to bottom, #1a1f21 0%, #4c4c4c 70%);
}
.options__clrs {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
}
.line {
    position: absolute;
    width: 100%;
    height: 2px;
    top: 9px;
    background: linear-gradient(to right,  rgba(var(--gris_d),0) 0%,rgba(var(--gris_d),.5) 25%,rgba(var(--gris_d),.5) 50%,rgba(var(--gris_d),.5) 75%,rgba(var(--gris_d),0) 100%);
    opacity: .5;
}
.options__clrs > div { text-align: center; }
.circ__auto {
    display: flex;
    justify-content: center;
    align-items: center;
}
.circ__auto div {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: red;
    position: relative;
    border: 1px solid rgb(var(--negro));
}
.opt__color > * + * { margin-top: 6px; }
.circ__auto div {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.toldo > div {
    -webkit-transform: rotate(-30deg);
    -moz-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    -o-transform: rotate(-30deg);
    transform: rotate(-30deg);
}
.toldo > div::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 50%;
    background: rgb(var(--negro));
    top: 0;
    left: 0;
}
.opt__color.active .circ__auto div {
    -webkit-box-shadow: 0 0 10px rgba(var(--negro), .6);
    box-shadow: 0 0 10px rgba(var(--negro), .6);
}
* + .cont__descrip,
.cont__descrip + * { margin-top: 40px; }
.txt__des {
    font-size: 80%;
    opacity: .6;
    display: none;
}
.txt__des.active { display: block; }
.txt__des p + p { margin-top: 6px; }

.con__vers {
    display: flex;
    flex-direction: column;
    text-align: center;
}
.vers {
    display: flex;
    flex-direction: column;
    gap: .6em;
    position: relative;
}
.ver__01 {
    color: rgb(var(--rojo));
    font-weight: 600;
    font-size: 1.5em;
    letter-spacing: .05em;
}

.sect__galery {
    padding: 0;
    overflow: hidden;
    margin-top: 3em;
}
.sect__galery ~ .sect__galery  { margin-top: 0; }
.sect__galery + .sect__galery { padding-top: 5.75em; }
.sect__galery:has(+ :not(.sect__galery)) { padding-bottom: 5.75em; }
.cont__big .item__big picture > * {
    width: 100%;
    max-width: inherit;
}
.cont__big .cont__vid video { position: relative; }
.cont__big .cont__contrls > * {
    border: 0;
    background: rgb(var(--blanco), .3);
    color: rgba(var(--blanco));
}
/* .cont__slide { overflow: hidden; } */
.cont__slide .swiper { overflow: visible; }
.cont__small {
    margin-left: auto;
    margin-right: auto;
    width: calc(100vw - 1.875em);
}
.sect__galery:nth-of-type(odd) > .cont__small {
    background: rgb(var(--gris_l), 1);
    padding: 15px;
    border-radius: 1em;
    overflow: hidden;
}
.item__small > * + * { margin-top: 1em; }
.item__small > * {
    display: block;
    position: relative;
}
.item__small figure {
    position: relative;
    overflow: hidden;
    border-radius: .9em;
}
.item__small figure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--negro), 0);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.img__size {
    position: absolute;
    bottom: 1em;
    left: 1em;
    width: 2.3em;
    height: 2.3em;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(var(--rojo));
    color: rgb(var(--blanco));
    border-radius: .2em;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.img__size > * { font-size: 1.2em; }
.small__info .info__title { text-align: left; } 
.small__info p { font-size: 0.875em; }
.cont__small .cont__contrls {
    display: flex;
    justify-content: center;
    gap: 1em;
}
.cont__small .cont__contrls > * {
    position: relative;
    left: inherit !important;
    right: inherit !important;
    top: inherit !important;
    margin-top: 1.5em !important;
}
/* Controls LB */

.cntrl__ele {
    width: 50px;
    height: 50px;
    position: relative;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.cntrl__ele > * {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 28px;
}
.c__slide {
    background: rgb(var(--blanco), .3);
    color: rgb(var(--blanco), 1);
}
/* Controls LB */

.sect__ficha { text-align: center; }
[data-page="detail-car"] main .sect__ficha h2,
[data-page="detail-car"] main .sect__ficha h3,
[data-page="detail-car"] main .sect__ficha h4 {
    position: relative;
    display: inline-block;
}
[data-page="detail-car"] main .sect__ficha h2::after,
[data-page="detail-car"] main .sect__ficha h3::after,
[data-page="detail-car"] main .sect__ficha h4::after {
    content: '';
    width: 40px;
    height: 2px;
    background: rgb(var(--rojo));
    display: block;
    margin-top: 0.25em;
}
.sect__ficha figure {
    margin-right: auto;
    margin-left: auto;
    max-width: 46.875em;
    overflow: hidden;
    border-radius: .8em;
}
.sect__ficha * + figure,
.sect__ficha figure + * { margin-top: 2em; }
.sect__ficha span {
    position: relative;
    display: inline-block;
    font-size: 1.625em;
    font-weight: 700;
    line-height: 1;
    padding-top: 0.813em;
    margin-top: 1em;
}
.sect__ficha span sup {
    position: absolute;
    top: 0.813em;
    display: block;
    font-size: 50%;
    font-weight: normal;
    opacity: .8;
}
.sect__ficha i {
    font-style: normal;
    font-size: 80%;
}
.sect__ficha span, 
.sect__ficha i {
    margin-left: 1.2em;
    margin-right: 1.2em;
}
.sect__ficha span + i { margin-left: -2em; }

.sect__ficha a span {
    font-size: initial;
    font-weight: normal;
}

.sect__ficha .container > p:last-of-type {
    font-size: 0.75em;
    opacity: .7;
}

/******************************
*   Contacto
******************************/
.info__pap { padding: 0; }
.cont__map {
    position: relative;
    width: 100%;
    height: 70vh;
}
.cont__ubi {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.info__contact ul { padding-inline-start: 0px; }
.info__contact li + li { margin-top: 0; }
.info__contact .contact__info {
    display: flex;
    gap: 2em 0;
    flex-flow: row wrap;
    list-style: none;
}
.info__contact .contact__info > * {
    padding: 0 1em;
    position: relative;
}
.info__contact .contact__info > *::before {
    content: '';
    position: absolute;
    top: 0;
    left: -0.063em;
    border-left: 0.125em solid rgb(var(--rojo));
    height: 2em;
}
.info__contact .info__extra span + span { margin-top: .5em; }
.info__contact .social__media { list-style: none; }
.info__contact .c__cta { margin-top: 0; }
.btn__road {
    top: inherit !important;
    bottom: 20px;
    text-transform: uppercase;
    padding: .9em 2em;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .05em;
    border-radius: .3em;
}

/******************************
*   Prueba de manejo
******************************/
[data-page="form-test-drive-model"] .t__sect h2 {
    margin-left: auto;
    margin-right: auto;
    max-width: 60rem;
}

/******************************
*   Formularios
******************************/
.c__campos .campo { padding: 15px 0; }
.campo label {
    margin: 0 0 6px;
    font-weight: 500;
}
.campo > div { position: relative; }
.campo > div i {
    right: 10px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    pointer-events: none;
}
.campo > div select {
    background: rgb(var(--negro));
    color: rgb(var(--blanco));
    padding-right: 32px;
}
.campo > div select + i { color: rgb(var(--blanco)); }
.select select { padding-right: 32px; }
.campo > div select option {
    color: rgb(var(--negro));
    background: rgb(var(--blanco));
}
.campo > div select:-webkit-autofill {
    -webkit-text-fill-color: rgb(var(--blanco));
    color: rgb(var(--blanco));
}
.c__campos .campo.c__cta {
    width: 100%;
    margin-top: 20px;
}
.campo .cta { min-width: 130px; }
.c__campos .campo.checks { width: 100%; }
.cont__check { position: relative; }
.cont__check input {
    position: absolute;
    background: transparent;
    width: 20px;
    height: 20px;
    top: 0;
    left: 0;
    margin: 0;
}
.cont__check label {
    margin: 0;
    position: relative;
    display: inline-flex;
    align-content: center;
    flex-wrap: wrap;
    cursor: pointer;
}
.cont__check label::before {
    display: inline-block;
    content: '';
    width: 20px;
    height: 20px;
    background: rgb(var(--blanco));
    margin-right: 8px;
    border: 1px solid rgba(var(--gris_d), .5);
    border-radius: .2em;
}
.cont__check input:checked ~ label::before { background: rgb(var(--negro)); }

/******************************
*   Precios de Mantenimiento 
******************************/
.fil__acor + .fil__acor { margin-top: 20px; }
.head__acor {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.acor__txt {
    position: relative;
    padding-left: 15px;
}
.acor__txt > * { display: block; }
.acor__txt > * + * { margin-top: 4px; }
.acor__txt figure { width: 160px; }
.acor__indi i {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.head__acor.active .acor__indi i {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
}
.cont__precios > div {
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(60px, 1fr));
    gap: 15px;
}
.card__price {
    overflow: hidden;
    border-radius: .3em;
}
.card__fil {
    padding: 12px 4px;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
    text-align: center;
}
.card__top { color: rgb(var(--blanco)); }
.card__bot { background: rgb(var(--gris_l)); }
.fil__acor:nth-child(odd) .card__top { background: rgb(var(--negro)); }
.fil__acor:nth-child(even) .card__top { background: rgb(var(--negro)); }
* + .text__legal { margin-top: 30px; }
.text__legal { font-size: 14px; }
.txt__mod span { font-size: 90%; }
.txt__mod::before {
    top: 0;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
}

/******************************
*   Legal
******************************/
[data-page="legals"] main .container { max-width: 850px; }

/******************************
*   Blog
******************************/
/* ----- */
.banner__top {
    padding: 0;
    position: relative;
    height: 40vh;
}
.banner__top figure,
.banner__top figure img {
    width: 100%;
    height: 100%;
}
.banner__top figure img {
    object-fit: cover;
    object-position: center;
}

/* ----- */
.content__post {
    max-width: 850px;
    margin-right: auto;
    margin-left: auto;
}
.content__post > * + * { margin-top: 40px; }
.post__head > * { display: block; }
.post__head > * + * { margin-top: 30px; }
.post__head .t__sect + *,
.post__head * + .t__sect { margin-top: 2.5em; }
* + .head__date { margin-top: 8px; }
.head__date {
    display: block;
    text-transform: uppercase;
    opacity: .6;
    font-size: 80%;
}
.post__head figure {
    overflow: hidden;
    border-radius: .9em;
}
.post__info ul li::marker,
.post__info ol li::marker {
    color: rgba(var(--negro), .6);
    font-weight: bold;
}

/* ----- */
.grid {
    display: flex;
    flex-flow: wrap;
    gap: 60px 40px;
}
.g__item { flex: 0 1 100%; }

.c__card {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    height: 100%;
}
.c__card > a { display: block; }
.card__graf figure {
    position: relative;
    overflow: hidden;
    border-radius: .9em;
}
.card__graf figure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(var(--negro));
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.card__graf figure img {
    aspect-ratio: 10 / 6;
    object-fit: cover;
}
.card__info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5em;
    height: 100%;
    font-size: .9em;
}
.info__head > * + * { margin-top: 4px; }
.info__head h4 {
    font-size: 1.25em;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.info__head span {
    display: block;
    font-size: 90%;
    opacity: .4;
}
.card__info p { color: rgba(var(--negro), .6); }
.c__card:hover .card__graf figure::before { opacity: .4; }


/******************************
*   Paginador
******************************/
.cont__pagi + *,
* + .cont__pagi { margin-top: 40px; }
.cont__pagi ul {
    display: flex;
    gap: 6px;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding-inline-start: 0;
}
.cont__pagi ul li { margin: 0; }
.cont__pagi ul li a {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    background: rgba(var(--negro), .4);
    color: rgb(var(--blanco));
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.cont__pagi ul li.link__page a {
    font-weight: 500;
    background: rgba(var(--negro), .4);
    color: rgb(var(--blanco));
}
.cont__pagi ul li.link__page.active a { background: rgba(var(--negro), 1); }
.cont__pagi ul li a:hover { background: rgba(var(--rojo), .8); }

/******************************
*   Promociones
******************************/
.head__promo {
    padding-top: 3em;
    background: rgb(var(--blanco));
}
.head__promo .t__sect + *,
.head__promo * + .t__sect { margin-top: 2em; }
.btn__opt {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
}
.btn__type {cursor: pointer;}
.btn__type figure {
    margin: 0 auto;
    width: 120px;
    -webkit-transition: all .8s ease-out;
    -moz-transition: all .8s ease-out;
    -ms-transition: all .8s ease-out;
    -o-transition: all .8s ease-out;
    transition: all .8s ease-out;
}
.btn__type.activo figure { opacity: .4; }
.btn__type .cta {
    font-size: 0.75em;
    padding: 1.09em 1.7em;
    border-radius: .4em;
}
.btn__type.activo { pointer-events: none; }
.btn__type.activo .cta { background: rgb(var(--rojo)); }
.grid__filter .col__g { width: 100%; }

/* Card Car */
.conten__card {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    background: rgb(var(--blanco));
    overflow: hidden;
    border-radius: .9em;
    box-shadow: 0 0 10px rgba(var(--negro), .05);
}
.card__col {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
}
.card__col > * { margin: 0; }
.card__col .c__cta { gap: 15px; }
.card__col .c__cta .cta {
    min-width: auto;
    font-size: 0.75em;
    padding: 1.09em 1.7em;
    border-radius: .4em;
}
.c__01 { background: rgba(var(--negro), .2); }
.c__01 { font-weight: 500; }
.graf__card {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.col__g .c__02 strong {
    font-size: 120%;
    display: block;
}
.lb {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: auto;
    background: rgba(var(--negro), .7);
    z-index: 1000;
    display: none;
}
.lb__info {
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 30px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.closr {
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(var(--blanco));
    background: rgb(var(--rojo));
    cursor: pointer;
}
.card__legal {
    font-size: 12px;
    color: rgba(var(--negro), .5);
}
.lb__promo .conten__card { flex-direction: column; }
.lb__promo .conten__card .card__col {
    width: 100%;
    padding: 30px 20px;
}
.lb__promo .graf__card { gap: 30px; }
.lb__promo .c__02 > p:nth-child(1) {
    font-size: 22px;
    line-height: 1.2;
}
.color__r { color: rgba(var(--rojo), .7); }

/******************************
*   Box Cont
******************************/
.box__cont {
    margin-right: auto;
    margin-left: auto;
}
.b__01 { max-width: 700px; }
.b__02 { max-width: 800px; }
.b__03 { max-width: 900px; }


/******************************
*   Mobile
******************************/
/* Extra Small Devices, Phones */ 
@media (max-width : 479px) {
}
@media (min-width : 480px) {
}
/* Small Devices, Tablets */
@media (min-width : 480px) and (max-width : 767px) {
}
@media (max-width : 679px) {

/* Deatalle de auto */
.vers + .vers {
    padding-top: 20px;
    margin-top: 20px;
}
.vers + .vers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 60px;
    border-top: 1px solid;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

}
@media (min-width : 680px) {

/* Contacto */
.info__contact { padding: 5em 0; }
.info__contact .contact__info > * { width: 50%; }
.info__contact .contact__info > *::before {
    top: -0.25em;
    height: 2.5em;
}

/* Formulario */
.c__campos {
    display: flex;
    flex-flow: row wrap;
}
.c__campos .campo {
    width: 50%;
    padding: 15px;
}
.test__form .h__sect .sect__tit i { font-size: 60px; }

/* Deatalle de auto */
.color__slide span {
    position: absolute;
    left: 50%;
    bottom: 0;
    background: rgba(var(--negro), .4);
    border-top-right-radius: .6em;
    border-top-left-radius: .6em;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    -webkit-transform: translate(-50%, 100%);
    -moz-transform: translate(-50%, 100%);
    -ms-transform: translate(-50%, 100%);
    -o-transform: translate(-50%, 100%);
    transform: translate(-50%, 100%);
}
.swiper-slide-active .color__slide span {
    -webkit-transform: translate(-50%, 0%);
    -moz-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    -o-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
}
.con__vers {
    display: flex;
    justify-content: center;
    flex-direction: row;
}
.vers {
    padding: 10px 20px;
    width: 33.33%;
}
.vers + .vers { border-left: 1px solid rgba(var(--negro), .8); }

.cont__small .cont__contrls {
    display: flex;
    justify-content: flex-end;
    gap: 1em;
}

/* Blog */
.g__item { flex: 0 1 calc((100% - (40px * 1)) / 2); }

}
@media (min-width : 680px) and (max-width : 767px) {
}
/* Small Devices, Nav */
@media (max-width : 767px) {

/* Promociones */
.head__promo {
    padding: 20px 0 30px;
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -o-sticky;
    position: -ms-sticky;
    position: sticky;
    top: 60px;
    z-index: 100;
}
.head__promo * + .h__sect,
.head__promo .h__sect + * { margin-top: 15px; }
.fil__btn { display: none; }
.grid__filter .col__g { margin-bottom: 30px; }
.cont__promos { padding: 30px 0; }
.grid__filter { margin-bottom: -30px; }


}
/* Medium Devices to Large Devices */
@media (min-width : 768px) {

/* Slider */
.cont__contrls > * {
    width: 2.5em;
    height: 2.5em;
}
.cont__contrls > *::before,
.cont__contrls > *::after { font-size: 1.2em; }
.cont__contrls .swiper-button-next,
.cont__contrls .swiper-rtl .swiper-button-prev { right: 2em; }
.cont__contrls .swiper-button-prev,
.cont__contrls .swiper-rtl .swiper-button-next { left: 2em; }

/* Home */
.bg__autos { height: 50%; }

/* Slide Autos */
.auto__name { text-align: left; }
.auto__img { max-width: 80vh; }
.auto__desc {
    padding: 1em 0;
    border-color: rgba(var(--negro), 1);
}
.auto__desc { flex-direction: row; }
.auto__desc > * {
    width: 33.33%;
    justify-content: space-around;
    align-items: center;
    padding: 0 1em;
}
.auto__desc > * + * { border-left: 2px solid rgba(var(--rojo)); }
.desc__text { text-align: left; }
.slide__autos .cont__contrls > * { top: 35%; }

/* Banner Page */
.fil__overlay {
    justify-content: center;
    background: linear-gradient(to right,  rgba(var(--negro), .50) 0%,rgba(var(--negro), 0) 50%);
}
.banner__info {
    padding: 120px 30px;
    width: 80%;
}

/* Precios */
[data-page="post-venta"] main .container {
    width: 95%;
    max-width: 1600px;
}

/* Deatalle de auto */
.img__size { opacity: 0; }
.item__small:hover figure::before  { background: rgba(var(--negro), .4); }
.item__small:hover .img__size { opacity: 1; }

/* Blog */
.g__item { flex: 0 1 calc((100% - (40px * 2)) / 3); }

/* Promociones */
.fil__select { display: none; }
.grid__filter { margin: -15px; }
.grid__filter .col__g {
    width: 50%;
    padding: 15px;
}
/* Card Car */
.col__g .conten__card { min-height: 251px; }


}
/* Medium Devices, Desktops */
@media (min-width : 768px) and (max-width : 991px) {

/* Blog */
.sect__grid .container { width: 100%; }
.sect__grid .grid { gap: 60px 20px; }
.sect__grid .g__item { flex: 0 1 calc((100% - (20px * 2)) / 3); }

}
@media (max-width : 991px) {
/* Precios */
.head__acor {
    border: 1px solid;
    padding: 18px;
    border-radius: .3em;
}
.content__acor { display: none; }

}
@media (min-width : 992px) {

/* Formulario */
.c__campos .campo { width: 33.33%; }

/* Banner Page */
.banner__info { width: 50%; }

/* Precios */
.acor__indi { display: none; }

/* Deatalle de auto */
.cont__small { width: calc(100vw - 5em); }
.sect__galery:nth-of-type(odd) > .cont__small { padding: 2em 1.5em; }

/* Card Car */
.conten__card { flex-direction: row; }
.c__01 { width: 40%; }
.c__02 { width: 60%; }

}
/* Large Devices, Wide Screens */
@media (min-width : 992px) and (max-width : 1200px) {
/* Precios */
.fil__acor + .fil__acor { margin-top: 80px; }

}
@media (max-width : 1199px) {
/* Precios */
.fil__acor > div + div { margin-top: 20px; }

}
@media (min-width : 1200px) {
/* Contacto */
.info__contact .contact__info > * { width: 25%; }
.info__contact .contact__info > *:nth-child(1) { padding-left: 0; }
.info__contact .contact__info > *:nth-child(1)::before { content: unset; }
.info__contact .contact__info > *:nth-child(2) { align-items: center; }

/* Precios */
.fil__acor {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.content__acor {
    width: calc(100% - 221px);
    padding-left: 30px;
}


}
@media (min-width : 1200px) and (max-width : 1366px) {
/* Precios */
.content__acor {
    width: calc(100% - 180px);
    padding-left: 20px;
}

}
@media (min-width : 1366px) {
/* Precios */
.card__fil { font-size: 14px; }

}





header ul,
footer ul,
header ol,
footer ol {
    padding-inline-start: 0;
    list-style: none;
}
header li + li,
footer li + li { margin-top: 0; }

/******************************
*   Header
******************************/
.header {
    background: rgb(var(--gris_l));
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -o-sticky;
    position: -ms-sticky;
    position: sticky;
    top: 0px;
    z-index: 1000;
    filter: drop-shadow(0px 0px 10px rgb(var(--negro), .2));
    will-change: filter;
}
.head__cont {
    border-bottom: 1px solid rgba(var(--gris_d), .5);
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    font-weight: 500;
}
.head__cont > * {
    display: flex;
    justify-content: center;
    align-items: center;
}
.h__01 {
    width: 13.5em;
    min-width: 10em;
    mix-blend-mode: difference;
}
.logo__brand { width: 80%; }
.logo__brand span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.h__02 nav ul li a,
.cont__dealer span { letter-spacing: .05em; }
.h__02 nav ul li a { line-height: 1; }
.h__02 nav > ul > li > a {
    padding: 1em;
    display: block;
}

/* Sub menu */
.sub__men ul {
    flex-flow: column;
    justify-content: center;
}
.sub__men ul li { text-align: center; }
.sub__men ul li a {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 1em 0;
}
.sub__men ul li a > .opt__info * + * { margin-top: .9em; } 
.sub__men ul li a > .opt__info { padding: 0 1em; }
.sub__men ul li a > .info__img {
    padding: 0 1em;
    height: 100%;
}
.sub__men ul li a > .info__img img { max-width: 10em; }

/* Sub menu: Modelos */
.modelos .sub__men ul { justify-content: flex-start; }
.modelos .sub__men ul li { text-align: left; }
.modelos .sub__men ul li a {
    display: flex;
    flex-direction: column-reverse;
    height: initial;
}
.modelos .sub__men ul li + li a .info__img { border-top: 1px solid rgba(var(--blanco), .2); }
.modelos .sub__men ul li a .info__img {
    padding: 0 1em;
    height: auto;
}
.modelos .sub__men ul li a .info__img img {
    width: 100%;
    max-width: inherit;
}
.modelos .sub__men ul li a { color: rgba(var(--blanco), .8); }
.modelos .sub__men ul li a .info__title {
    font-weight: 700;
    color: rgb(var(--blanco));
}
.modelos .sub__men ul li a > .opt__info .info__desc,
.modelos .sub__men ul li a > .opt__info .info__price { font-size: 80%; }

/* Dealer */
.cont__dealer {
    padding: 1em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(var(--gris_d), .5);
}
.cont__dealer > div > a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .4em;
    line-height: 1.2;
    font-size: .8em;
}
.cont__dealer i { font-size: 1.6em; }

/* Btn mobile */
.btn__men {
    width: 60px;
    height: 60px;
    cursor: pointer;
    position: relative;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    z-index: 10;
}
.btn__men > div {
    position: absolute;
    width: 60%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.btn__men > div span {
    display: block;
    width: 100%;
    -webkit-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -moz-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -ms-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -o-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
}
.btn__men > div span {
    display: block;
    width: 100%;
    height: 2px;
    background: rgb(var(--negro));
}
.btn__men > div span + span { margin-top: 6px; }
.btn__men.active > div span:nth-child(2) {
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
}
.btn__men.active > div span:nth-child(1) {
    -webkit-transform: translate(0px, 8px) rotate(45deg);
    -moz-transform: translate(0px, 8px) rotate(45deg);
    -ms-transform: translate(0px, 8px) rotate(45deg);
    -o-transform: translate(0px, 8px) rotate(45deg);
    transform: translate(0px, 8px) rotate(45deg);
}
.btn__men.active > div span:nth-child(3) {
    -webkit-transform: translate(0px, -8px) rotate(-45deg);
    -moz-transform: translate(0px, -8px) rotate(-45deg);
    -ms-transform: translate(0px, -8px) rotate(-45deg);
    -o-transform: translate(0px, -8px) rotate(-45deg);
    transform: translate(0px, -8px) rotate(-45deg);
}

/* Extra Small Devices, Phones */ 
@media (max-width : 479px) {
}
@media (min-width : 480px) {
}
/* Small Devices, Tablets */
@media (min-width : 480px) and (max-width : 767px) {
}
@media (max-width : 679px) {
}
@media (min-width : 680px) {
/* Sub menu */
.sub__men ul { flex-flow: row wrap; }

/* Sub menu: Modelos */
.modelos .sub__men ul li { width: 50%; }
.modelos .sub__men ul li + li a .info__img { border-top: 0; }
.modelos .sub__men ul li a .info__img { border-left: 1px solid rgba(var(--blanco), .2); }

}
@media (min-width : 680px) and (max-width : 767px) {
}
@media  (min-width : 680px) and (max-width : 1149px)  {
/* Sub menu: Modelos */
.modelos .sub__men ul li:nth-child(2n+1) a .info__img { border-left: none; }

}
/* Small Devices, Nav */
@media (max-width : 767px) {
}
/* Medium Devices to Large Devices */
@media (min-width : 768px) {
}
/* Medium Devices, Desktops */
@media (min-width : 768px) and (max-width : 991px) {
}
@media (max-width : 991px) {
}
@media (min-width : 992px) {
}
/* Large Devices, Wide Screens */
@media (min-width : 992px) and (max-width : 1200px) {
}
@media (max-width : 1149px) {
.wrapper::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(var(--gris_l), .5);
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    will-change: filter;
}
.wrapper.active { position: relative; }
.wrapper.active::before{
    opacity: 1;
    pointer-events: all;
    visibility: visible;
}
.h__02 {
    --negro: 12, 12, 12;
    position: absolute;
    top: 0;
    left: -100%;
    background: rgb(var(--negro));
    height: 100vh;
    height: 100dvh;
    max-width: 600px;
    width: calc(100% - 60px);
    padding-top: 60px;
    color: rgb(var(--blanco));
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    align-items: flex-start;
    z-index: -1;
}
.h__02.active { left: 0; }
.h__02 nav {
    width: 100%;
    height: 100%;
    overflow: auto;
}
.h__02 nav > ul { padding-bottom: 30px; }
.h__02 nav > ul > li { position: relative; }
.h__02 nav > ul > li + li { border-top: 1px solid rgba(var(--gris_d), .5); }
.h__02 nav > ul > li:last-child { border-bottom: 1px solid rgba(var(--gris_d), .5); }
.sub__men {
    border-top: 1px solid rgba(var(--gris_d), .5);
    padding: 1em;
    display: none;
}
.sub__men ul {
    display: flex;
    gap: 1.5em 0;
}
.h__02 nav > ul > li .arrow {
    width: 48px;
    height: 48px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 1px solid rgba(var(--gris_d), .5);
    position: absolute;
    top: 0;
    right: 0;
}
.h__02 nav > ul > li .arrow i {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.h__02 nav > ul > li .arrow.active i {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
}

}
@media (min-width : 1150px) {
.btn__men,
.arrow { display: none; }
.h__01 { border-right: 1px solid rgba(var(--gris_d), .5); }
.h__03 {
    width: 11em;
    min-width: 10em;
    border-left: 1px solid rgba(var(--gris_d), .5);
}
.h__02 nav ul li a,
.cont__dealer span { font-size: .9em; }
.h__02 nav ul {
    display: flex;
    justify-content: center;
}
.h__02 nav > ul > li > a {
    color: rgba(var(--negro), .6);
    padding: 2em .6944444em;
}

/* Sub menu */
.sub__men {
    position: absolute;
    left: 50%;
    max-width: 1600px;
    width: calc(90% - 30px);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    background: rgb(var(--negro));
    border-bottom-right-radius: 1.5em;
    border-bottom-left-radius: 1.5em;
    padding: 1.8em;
    color: rgb(var(--blanco));
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

/* Sub menu: Modelos */
.modelos .sub__men ul {
    justify-content: flex-start;
    gap: 1em 0;
}
.modelos .sub__men ul li { width: 20%; }
.modelos .sub__men ul li:nth-child(5n+1) a .info__img { border-left: none; }

/* Mostrar menu desktop */
li:hover .sub__men {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
}
.h__02 nav > ul > li:hover > a { color: rgba(var(--negro), 1); }
.cont__dealer {
    width: calc(100% - 2em);
    border-bottom: 0;
}

}


/******************************
*   Footer
******************************/
.footer {
    color: rgb(var(--blanco));
    background: rgb(var(--negro));
    padding-top: var(--space_32);
}
.legal p {
    font-size: .75em;
    color: rgba(var(--blanco), .6);
}
.legal p + p { margin-top: 0; }
* + .foo__nav { margin-top: var(--space_32); }
.foo__nav {
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-color: rgba(var(--blanco), .6);
}
.nav__col {
    padding: var(--space_32) 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 3em;
}
.nav__col > * { margin: 0; }
.nav__col + .nav__col {
    border-top: 1px;
    border-style: solid;
    border-color: rgb(var(--blanco), .6);
}
.nav__col > ul {
    display: flex;
    flex-flow: column;
    gap: 2em;
}
.nav__col > ul > li > * {
    font-size: .875em;
    font-weight: 500;
    text-transform: uppercase;
}
.nav__col > ul > li > * + * { margin-top: 1.25em; }
.nav__col > ul > li > span {
    font-weight: 700;
    white-space: nowrap;
}
.nav__col > ul > li > ul > li + li { margin-top: .6em; }
.nav__02 .contact__info  > li + li { margin-top: .9em; }
.nav__02 { justify-content: space-between; }
.contact__info li {
    display: flex;
    flex-direction: column;
    gap: 1em;
}
.contact__info li > div {
    display: flex;
    align-items: baseline;
    gap: 0.625em;
}
.contact__info li i {
    font-size: 1.2em;
    width: 1.2em;
    min-width: 1.2em;
    text-align: center;
}
.social__media {
    display: flex;
    gap: 1em;
}
.footer .social__media { gap: 2em; }
.nav__col > ul > li > ul.social__media li + li { margin-top: 0; }
.footer .social__media li a { font-size: 1.8em; }
.logos__grupo {
    display: flex;
    justify-content: center;
}
.logos__grupo { height: 1.2em; }
.logos__grupo figure,
.logos__grupo figure img { height: 100%; }
.logos__grupo figure img {
    object-fit: contain;
    object-position: center;
    max-width: initial;
}
.logos__grupo figure img { max-width: 100%; }
.logos__grupo figure {
    padding-top: .3em;
    padding-bottom: .3em;
}
.logos__grupo figure + figure {
    padding-left: 1em;
    margin-left: 1em;
    border-left: 0.125em solid red
}
.lega__short {
    display: flex;
    justify-content: space-between;
    gap: 1em var(--space_32);
    padding: var(--space_32) 0;
}
.lega__short > * {
    font-size: .8em;
    color: rgba(var(--blanco), .6);
}
.lega__short .band__name { text-transform: uppercase; }

.contact__info li > *.info__extra,
.info__extra span { display: block }
.info__extra span + span { margin-top: .9em; }



/* Extra Small Devices, Phones */ 
@media (max-width : 479px) {
}
@media (min-width : 480px) {
}
/* Small Devices, Tablets */
@media (min-width : 480px) and (max-width : 767px) {
}
@media (max-width : 679px) {

.nav__01 li { position: relative; }
.nav__01 li + li::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 1px;
    top: -1em;
    left: 0;
    background: rgba(var(--rojo), 1);
}

.lega__short {
    flex-direction: column;
    text-align: center;
}

}
@media (min-width : 680px) {
.foo__nav { display: flex; }
.nav__col {
    width: 50%;
    padding: var(--space_32) 1.2em;
}
.nav__col + .nav__col {
    border-top: 0px;
    border-left: 1px solid rgb(var(--blanco), .6);
}
.nav__col > ul { flex-flow: row wrap; }

.nav__02 > li:nth-child(1) { max-width: 20.625em; }

.logos__grupo { justify-content: flex-end; }
.lega__short > *:nth-child(2) { text-align: right; }

}
@media (min-width : 680px) and (max-width : 767px) {
}
/* Small Devices, Nav */
@media (max-width : 767px) {
}
/* Medium Devices to Large Devices */
@media (min-width : 768px) {
.footer .container { width: 95%; }

}
/* Medium Devices, Desktops */
@media (min-width : 768px) and (max-width : 991px) {
}
@media (max-width : 991px) {
}
@media (min-width : 992px) {
}
/* Large Devices, Wide Screens */
@media (min-width : 680px) and (max-width : 1200px) {
.nav__01 > li { width: calc(50% - 1em); }

}
@media (min-width : 992px) and (max-width : 1200px) {
}
@media (max-width : 1199px) {
}
@media (min-width : 1200px) {
}