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

:root {
    --negro: 0, 0, 0;
    --blanco: 255, 255, 255;

    --var: 209, 208, 206;

    /* Colores Oscuros */
    --b01: 62, 58, 57;
    --b02: 79, 65, 44;
    --b03: 124, 117, 109;

    /* Colores Medios */
    --b04: 192, 154, 119;
    --b05: 166, 157, 148;

    /* Colores Claros */
    --b06: 211, 212, 206; --b06a: 230, 194, 161;
    --b07: 235, 235, 235;
    --b08: 245, 245, 245;

    --b09: 213, 214, 206;
    --b10: 209, 208, 206;
    --b11: 78, 74, 73;

    /* Colores Hibridos */
    --h01: 42, 91, 121;
    --h02: 90, 118, 136;
    --h03: 184, 199, 209;

    /* Colores Gasolina */
    --g01: 121, 42, 42; 
    --g02: 144, 100, 100;
    --g03: 208, 174, 174;

}


::selection {
    color: rgb(var(--blanco));
    background: rgba(var(--b01), .6);
}
::-moz-selection {
    color: rgb(var(--blanco));
    background: rgba(var(--b01), .6);
}
::-webkit-selection {
    color: rgb(var(--blanco));
    background: rgba(var(--b01), .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: 'HarmonyOS Sans';
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    line-height: 1.8;
    font-size: 14px;
    color: rgb(var(--b01)); 
    background: rgb(var(--blanco)); 
}
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;
}
main p a {
    color: rgb(var(--b01));
    font-weight: bold;
    text-decoration: underline !important;
}
main p a:hover { color: rgb(var(--b04)); }
ul,
ol {
    margin: 0;
    padding: 0;
    padding-inline-start: 20px;
}
li + li { margin-top: 15px; }
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    line-height: 1.2;
}
h2 {
    font-size: 32px;
    font-weight: bold;
}
h3 {
    font-size: 26px;
    font-weight: normal;
}
h4 {
    font-size: 22px;
    font-weight: 500;
}
h5 {
    font-size: 18px;
    font-weight: normal;
}
input,
select,
textarea {
    display: block;
    width: 100%;
    padding: 10px 16px;
    color: rgb(var(--b01));
    background: rgb(var(--blanco));
    border-radius: 4px;
    border: 1px solid rgb(var(--b01));
    -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)); }
button { background: transparent; }
input:focus,
select:focus,
textarea:focus,
button:focus { outline: none; }

p { margin: 0; }
p + *,
* + p,
* + ol,
* + ul,
h2 + *,
h3 + *,
h4 + *,
h5 + *,
h6 + * { margin-top: 20px; }
ol + *,
ul + *,
* + h2,
* + h3,
* + h4,
* + h5,
* + h6 { margin-top: 40px; }

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

/******************************
*   Loader
******************************/
/* CTA Agenda */
.prueba {
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -o-sticky;
    position: -ms-sticky;
    position: sticky;
    bottom: 0px;
    z-index: 10;
}
a.cta__prueba {
    position: absolute;
    bottom: 15px;
    right: 0;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    background: rgb(var(--b07));
    color: rgb(var(--b03));
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border: 1px solid rgb(var(--b03));
    border-right: 0;
}
.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; }
.cta__prueba > div > div:nth-child(2) { border-left: 1px solid; }

/******************************
*   General
******************************/
main {
    min-height: calc(100vh - 60px);
    position: relative;
}
main section {
    padding: 60px 0;
    position: relative;
}
.c__center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sect__full { padding: 0; }
.page__sc .banner__top + * {
    height: calc(75vh - 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Head Section */
* + .h__sect,
.h__sect + * { margin-top: 40px; }
.h__center { text-align: center; }
.h__sect p { font-size: 16px; }
/* .h__sect h4 { font-weight: bold; } */

/* CTA */
* + .c__cta,
.c__cta + * { margin-top: 40px; }
.c__cta {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 20px;
}
.c__l { justify-content: flex-start; }
.cta,
a.cta,
button.cta {
    -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;
}
.cta,
a.cta {
    display: inline-flex;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
    min-width: 140px;
    padding: 13px 20px;
    font-size: 12px;
    color: rgb(var(--blanco), 1);
    font-weight: bold;
    letter-spacing: 0.03em;
    line-height: 1;
    position: relative;
    border-radius: 4px;
}
.c__cta > *[disabled],
.c__cta > *.disabled { pointer-events: none; }
.c__cta > *[disabled] > *,
.c__cta > *.disabled > * { opacity: .5; }

.cta__01 { background: rgb(var(--b01)); }
.cta__01:hover { background: rgb(var(--b05)); }
.cta__01[disabled],
.cta__01.disabled {
    background: rgb(var(--b06));
    color: rgb(var(--b01));
}

a.cta__02,
.cta__02 {
    background: rgb(var(--blanco));
    border: 1px solid rgba(var(--b01), .2);
    color: rgb(var(--b01));
}
.cta__02:hover { background: rgb(var(--b06)); }
.cta__02[disabled],
.cta__02.disabled { background: rgba(var(--b04), .3); }

a.cta__03,
.cta__03 {
    background: rgb(var(--b04));
    color: rgb(var(--blanco));
}
.cta__03:hover { background: rgb(var(--b06a)); }
.cta__03[disabled],
.cta__03.disabled { background: rgba(var(--b04), .3); }

a.cta__g,
.cta__g {
    background: rgb(var(--g01));
    color: rgb(var(--blanco));
}
.cta__g:hover { background: rgb(var(--g02)); }
.cta__g[disabled],
.cta__g.disabled { background: rgba(var(--g03)); }

a.cta__h,
.cta__h {
    background: rgb(var(--h01));
    color: rgb(var(--blanco));
}
.cta__h:hover { background: rgb(var(--h02)); }
.cta__h[disabled],
.cta__h.disabled { background: rgba(var(--h03)); }

svg {
    width: 100%;
    height: auto;
}

/* Controls LB */
.lb-arrows { padding: 20px; }
.lb-close {
    top: 20px;
    right: 20px;
}
.cntrl__ele {
    width: 40px;
    height: 40px;
    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;
    border-radius: 4px;
}
.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: 20px;
}
.c__slide {
    background: rgb(var(--blanco), .3);
    color: rgb(var(--blanco), 1);
}
/* Controls LB */

/******************************
*   Paginador
******************************/
.con__pagi + *,
* + .con__pagi { margin-top: 40px; }
.con__pagi ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
}
.con__pagi ul li { margin: 0; }
.con__pagi ul li.link__page a {
    display: block;
    padding: 10px 12px;
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
}
.change__page + .link__page,
.link__page + .change__page { margin-left: 20px; }

.con__pagi [disabled],
.con__pagi .disabled { pointer-events: none; }

/******************************
*   Arrows
******************************/
.btn__arrow {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    background: rgb(var(--b01));
    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;
}
.btn__arrow:hover { background: rgb(var(--b05)); }
[disabled] .btn__arrow,
.disabled .btn__arrow {
    opacity: .3;
    pointer-events: none;
}

/******************************
*   Sliders
******************************/
.cont__slide + *,
* + .cont__slide  { margin-top: 40px; }
.cont__slide { position: relative; }
.slide { position: relative; }

.swiper__controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.swiper-button-disabled { pointer-events: none; }
.swiper-button-disabled .btn__arrow { opacity: .2; }


/* Slider Full */
.slide__full .swiper-slide {
    background: rgb(var(--b07));
    height: auto;
}
.slide__full .slide .slide__over {
    color: rgb(var(--blanco));
    display: flex;
    flex-direction: column;
}
.slide__full .slide .slide__fil.slide__over .over__info * + .h__sect,
.slide__full .slide .slide__fil.slide__over .over__info .h__sect + * { margin-top: 20px; }
.slide__full .slide .slide__fil.slide__over .over__info .h__sect h2 { font-weight: normal; }

.slide__full .slide .slide__fil.slide__over .over__info .c__cta { margin-top: 20px; }

.slide__full .swiper-prev,
.slide__full .swiper-next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
}
.slide__full .swiper-prev { left: 20px; }
.slide__full .swiper-next { right: 20px; }
.slide__full .btn__arrow {
    background: rgba(var(--blanco), .4);
    color: rgb(var(--b01));
}

/* Hero */
.slide__hero .slide {
    display: grid;
    grid-template-columns: 1fr;
    height: 100%;
}
.slide__hero .slide .slide__fil { grid-area: 1 / 1 / 2 / 2; }
.slide__hero .slide .slide__fil figure > *,
.slide__hero .slide .slide__fil picture > * {
    max-width: inherit;
    width: 100%;
}
.slide__hero .slide .slide__fil.slide__over { justify-content: flex-end; }
.slide__hero .slide .slide__fil.slide__over .over__info  {
    width: 100%;
    min-height: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.slide__hero .slide .slide__fil.slide__over .over__info { padding: 20px; }
.slide__hero .slide .slide__fil.slide__over .over__info.over__bg { background: rgba(var(--b01), .8);  }
.slide__hero .slide.s__02 .slide__fil.slide__over .over__info { color: rgb(var(--b01)); }
.s__vide 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;banner__vid
    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__galeria .s__vide { aspect-ratio: 16/9; }
.slide__galeria .s__vide video {
    position: relative;
    top: inherit;
    left: inherit;
    width: 100%;
    height: auto;
    display: block;
}

/* Galeria */
.slide__galeria .slide .slide__fil.slide__over .over__info {
    --b01: 79, 65, 44;
    background: rgb(var(--b01));
    text-align: center;
    padding: 30px;
}

/* Slider Grid */
.slide__grid .swiper__controls {
    position: relative;
    justify-content: flex-end;
}
.slide__grid .swiper__controls::before {
    content: '';
    border-top: 1px solid rgb(var(--b03));
    width: 100%;
}


/******************************
*   Componentes para estructuras
******************************/

/* Grid */
.grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}
.g__item { flex: 0 0 100%; }
.g__2 .c__card figure { padding-top: 60%; }

/* Card */
.c__card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.c__card a { display: block; }

.card__graf { position: relative; }
.c__card figure {
    width: 100%;
    padding-top: 100%;
    position: relative;
}
.c__card figure img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}
.icon__full {
    position: absolute;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 20px;
    left: 20px;
    background: rgb(var(--b06));
    border-radius: 4px;
    font-size: 20px;
    opacity: .3;
    -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__info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    height: 100%;
    -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__info a {
    text-decoration: underline;
    font-weight: bold;
    color: rgb(var(--b04));
}
.c__card:hover .icon__full { opacity: 1; }
.card__cta:hover .card__info { background: rgb(var(--b03)); }
.card__cta:hover .card__info,
.card__cta:hover .card__info a { color: rgb(var(--blanco)); }

.card__variant figure { padding-top: 50%; }
.card__variant .card__info {
    background: rgb(var(--b04));
    padding-top: 30px;
    padding-bottom: 30px;
}
.card__variant .card__info,
.card__variant .card__info a { color: rgb(var(--blanco)); }


/******************************
*   Banner
******************************/
.cont__banner picture > *,
.cont__banner figure > * {
    max-width: inherit;
    width: 100%;
}
.cont__pie {
    padding: 40px 20px;
    background: rgba(var(--b01), .9);
    color: rgb(var(--blanco));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row wrap;
    gap: 30px;
}
.cont__pie > * { margin: 0; }
.pie__text { text-align: center; }

/******************************
*   Cuadriculas
******************************/
.cuadri {
    display: flex;
    flex-flow: row wrap;
}
.r__item {
    width: 100%;
    min-height: 20vh;
    display: flex;
    overflow: hidden;
}
.r__item > * {
    width: 100%;
    height: 100%;
    position: relative;
}
.r__item > * figure {
    width: 100%;
    height: 100%;
}
.r__item > * figure img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}
.cuadri__tex {
    color: rgb(var(--b08));
    display: flex; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.cuadri__tex .icone__grille {
    position: absolute;
    top: 30px;
    width: 60%;
    max-width: 400px;
    height: auto;
}
.cuadri__tex .icone__grille svg { fill: rgba(var(--b08), .05); }
.cuadri__tex .c__cta { justify-content: flex-start; }
.r__item:hover a .icon__full { opacity: 1; }
.r__item:hover a figure img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.cuadri__gal .cuadri__tex,
.cuadri__spa .cuadri__tex,
.cuadri__fil .cuadri__tex { font-size: 16px; }

/* Cuadricula galeria */
.cuadri__gal .r__item { flex-direction: column; }
.cuadri__gal .r__item:nth-child(2) { width: 60%; }
.cuadri__gal .r__item:nth-child(3) { width: 40%; }
.cuadri__gal .r__item:nth-child(4) { width: 40%; }
.cuadri__gal .r__item:nth-child(5) { width: 60%; }
.cuadri__gal .r__item:nth-child(1) { background: rgb(var(--b05)); }
.cuadri__gal .r__item .cuadri__tex { padding: 60px 30px; }

/* Cuadricula espacio */
.cuadri__spa {
    display: flex;
    gap: 20px;
    padding: 20px;
}
.cuadri__spa .r__item:nth-child(4n+1) { background: rgb(var(--b01)); }
.cuadri__spa .r__item:nth-child(4n+3) { background: rgb(var(--b05)); }
.cuadri__spa .r__item .cuadri__tex { padding: 60px 30px 30px; }
.cuadri__spa .r__item .cuadri__tex .icone__grille { right: 30px; }

/* Fila */
.cuadri__fil .r__item:nth-child(1) { background: rgb(var(--b05)); }
.cuadri__fil .r__item .cuadri__tex { padding: 60px 30px 30px; }
.cuadri__fil .r__item .cuadri__tex .icone__grille { left: 30px; }

.cuadri__var .r__item:nth-child(1) { background: rgb(var(--b05)); }
.cuadri__var .r__item .cuadri__tex { padding: 30px; }
.cuadri__var .r__item .cuadri__tex h3 { font-weight: 500; }
.cuadri__var .r__item .cuadri__tex h4 { font-weight: normal; }
.cuadri__var .r__item .cuadri__tex h5 { font-weight: 500; }


/******************************
*   Info Over
******************************/
.fil__info {
    color: rgb(var(--blanco));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.fil__col {
    padding: 30px;
    text-align: center;
    font-size: 16px;
    background: rgba(var(--negro), .6);
}
.fil__col > * { margin: 0 auto; }
.fil__top { padding-bottom: 0; }
.fil__top > * { max-width: 900px; }
.fil__top > * h2 { font-weight: normal; }

.fil__bot > * { max-width: 1000px; }
.bot__col {
    display: flex;
    flex-flow: wrap;
    gap: 30px;
}
.fil__info .bot__col > div {
    flex: 1 1 calc(50% - 30px);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
    padding: 15px;
}
.fil__info .bot__col > div::before {
    position: absolute;
    height: 100%;
    left: -15px;
    border-left: 1px solid currentcolor;
}

/******************************
*   Autos selector
******************************/
.auto__selector { background: rgb(var(--b07)); }
.auto__selector > * + * { margin-top: 40px; }

/* Tabs */
.type__tabs {
    display: flex;
    justify-content: center;
}
.tab__opt {
    padding: 2px 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 22px;
    text-transform: uppercase;
    color: rgb(var(--b05));
    -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;
}
.tab__opt + .tab__opt { border-left: 1px solid rgb(var(--b05)); }
.tab__opt.active {
    color: rgb(var(--b01));
    pointer-events: none;
}

/* Cont tabs info */
.cont__types { position: relative; }
.cont__types .icone__grille {
    position: absolute;
    width: 90vh;
    max-width: 80%;
    top: 40%;
    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%);
    pointer-events: none;
}
.cont__types .icone__grille svg {
    fill: rgba(var(--blanco), .4);
    width: 100%;
    height: auto;
}
.type__auto {
    display: none;
    position: relative;
}
.type__auto.active { display: block; }
.type__auto .btn__arrow {
    background: rgba(var(--blanco), .4);
    color: rgb(var(--b01));
}
.opt__autos  {
    display: flex;
    justify-content: center;
    flex-flow: wrap;
    gap: 6px 15px;
}
.opt__car {
    cursor: pointer;
    padding: 5px;
    text-align: center;
    color: rgb(var(--b05));
    -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;
    font-weight: 500;
    line-height: 1.2;
}
.opt__car::after {
    content: '';
    display: block;
    width: 0;
    margin: 0 auto;
    height: 2px;
    background: rgb(var(--b04));
    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;
}
.opt__car.active {
    color: rgb(var(--b02));
    pointer-events: none;
}
.opt__car.active::after {
    opacity: 1;
    width: 40px;
}
.car__slide figure {
    margin-left: auto;
    margin-right: auto;
    width: 80vh;
    max-width: 90%;
}

/******************************
*   Colo selector
******************************/
.color__selector {
    color: rgb(var(--b02));
    background: rgb(var(--b08));
    overflow: hidden;
}
.color__selector .swiper { overflow: visible; }

.cont__colors > * + * { margin-top: 40px; }
.options__clrs {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 25px 30px;
    padding: 0 30px;
}
.opt__color {
    position: relative;
    cursor: pointer;
}
.opt__color span {
    opacity: 0;
    position: absolute;
    font-weight: bold;
    font-size: 12px;
    top: calc(100% + 10px);
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(10px);
    -moz-transform: translateX(-50%) translateY(10px);
    -ms-transform: translateX(-50%) translateY(10px);
    -o-transform: translateX(-50%) translateY(10px);
    transform: translateX(-50%) translateY(10px);
    -webkit-transition: all 0.6s ease-out;
    -moz-transition: all 0.6s ease-out;
    -ms-transition: all 0.6s ease-out;
    -o-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
    line-height: 1.2;
    width: 100px;
    text-align: center;
    pointer-events: none;
}
.opt__color.active span {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0px);
    -moz-transform: translateX(-50%) translateY(0px);
    -ms-transform: translateX(-50%) translateY(0px);
    -o-transform: translateX(-50%) translateY(0px);
    transform: translateX(-50%) translateY(0px);
}
.circ__auto {
    position: relative;
    width: 35px;
}
.circ__auto > * {
    width: 100%;
    padding-top: 100%;
    border-radius: 50%;
    background: var(--bg);
}
.circ__auto > *::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid;
    border-color: var(--bg);
    -webkit-transform: scale(.9);
    -moz-transform: scale(.9);
    -ms-transform: scale(.9);
    -o-transform: scale(.9);
    transform: scale(.9);
    -webkit-transition: all 0.6s ease-out;
    -moz-transition: all 0.6s ease-out;
    -ms-transition: all 0.6s ease-out;
    -o-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
}
.opt__color.active .circ__auto > *::before {
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
}
.cont__descrip {
    text-align: center;
    font-size: 12px;
    color: rgb(var(--b03));
    margin-top: 60px;
}
.txt__des { display: none; }
.txt__des.active { display: block; }

/******************************
*   Banner Top
******************************/
.banner__top {
    padding: 0;
    position: relative;
}
.btop__01 { height: 25vh; }
.btop__02 { height: 32vh; }
.banner__top figure,
.banner__top figure img {
    width: 100%;
    height: 100%;
}
.banner__top figure img {
    object-fit: cover;
    object-position: center;
}

/******************************
*   Banner video top
******************************/
.banner__vid {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
}
.con__media { position: relative; } 
.con__media > * {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
}

/******************************
*   Sect Pleca
******************************/
.sect__ple { overflow: hidden; }
.sect__ple > * {
    position: relative;
    z-index: 2;
}
.sect__ple .pleca { position: relative; }
.sect__ple .pleca::before {
    content: '';
    position: absolute;
    width: 100vw;
    min-height: 200vh;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1;
}

.ele__bot .pleca::before { top: 40%; }
.ele__top .pleca::before { bottom: 30%; }


/******************************
*   Backgrounds
******************************/
.bg__w { background: rgb(var(--blanco)); }
.bg__01,
.ple__01 .pleca::before { background: rgb(var(--b07)); }
.bg__02,
.ple__02 .pleca::before { background: rgb(var(--b05)); }
.bg__03,
.ple__03 .pleca::before { background: rgb(var(--b01)); }
.bg__04,
.ple__04 .pleca::before { background: rgb(var(--b09)); }
.bg__05,
.ple__05 .pleca::before { background: rgb(var(--b08)); }
.bg__06,
.ple__06 .pleca::before { background: rgb(var(--b10)); }
.bg__07,
.ple__07 .pleca::before { background: rgb(var(--b02)); }
.bg__08,
.ple__08 .pleca::before { background: rgb(var(--b11)); }

.bg__02,
.ple__02,
.bg__03,
.ple__03,
.bg__07,
.ple__07,
.bg__08,
.ple__08 { color: rgb(var(--b08)); }

.c04 { color: rgb(var(--b04)); }
.ch { color: rgb(var(--h01)); }

/******************************
*   Fila de datos
******************************/
.fil__datos + *,
* + .fil__datos { margin-top: 40px; }
.fil__datos {
    display: flex;
    flex-flow: wrap;
    gap: 30px 40px;
}
.datos__num {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    line-height: 1.4;
    position: relative;
}
.datos__num::before {
    position: absolute;
    top: 0;
    left: -20px;
    height: 100%;
    border-left: 1px solid;
}
.d__revers .datos__num { flex-direction: column-reverse; }
.num {
    font-size: 26px;
    display: flex;
    flex-flow: wrap;
    line-height: 1;
    color: rgb(var(--b04));
}
.number {
    display: inline-flex;
    flex-direction: column;
    overflow: hidden;
    width: .6em;
    height: 1em;
}
.number + .number { flex-direction: column-reverse; }
.number::before {
    content: '0 1 2 3 4 5 6 7 8 9 0';
    display: block;
    -webkit-transition: all 1.5s cubic-bezier(0.0, 0.1, 0.58, 1.0);
    -moz-transition: all 1.5s cubic-bezier(0.0, 0.1, 0.58, 1.0);
    -ms-transition: all 1.5s cubic-bezier(0.0, 0.1, 0.58, 1.0);
    -o-transition: all 1.5s cubic-bezier(0.0, 0.1, 0.58, 1.0);
    transition: all 1.5s cubic-bezier(0.0, 0.1, 0.58, 1.0);
}
/* .active .number::before { margin-top: -10em; } */

.active .number + .number::before {
    margin-top: -11em;
    transform: translateY(11em);
}
.active .number::before { margin-top: -11em; }



.datos i { font-style: normal; }

.num span { margin: 0 8px; }
.num span.number { margin: 0; }
.num span.number + .xtra,
.xtra + .num span.number { margin: 0; }


/******************************
*   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 { padding-right: 32px; }
.select select { padding-right: 32px; }
.c__campos .campo.c__cta {
    width: 100%;
    margin: 0;
    padding: 0;
}
.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 rgb(var(--b01));
    border-radius: 3px;
}
.cont__check input:checked ~ label::before { background: rgb(var(--b01)); }
.campo input[type="date"] { height: 47px; }

/******************************
*   Grid Info min
******************************/
.grid__info {
    display: flex;
    flex-flow: wrap;
    gap: 60px 30px;
    color: rgb(var(--b02));
}
.info__item {
    flex: 0 1 calc((100% - (1 * 30px)) / 2);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.item__bot > * + * { margin-top: 10px; }
.item__bot > span { color: rgb(var(--b04)); }

/******************************
*   Grid Icons
******************************/
.grid__icons + *,
* + .grid__icons { margin-top: 40px; }
.grid__icons {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    gap: 30px;
}
.icon__item { width: 90px; }

/******************************
*   Columnas
******************************/
.grid__col + *,
* + .grid__col { margin-top: 40px; }
.grid__col {
    display: flex;
    flex-flow: wrap;
    gap: 30px;
}
.col__02 .col__g,
.col__03 .col__g { flex: 0 1 100%; }
.col__g { position: relative; }

/******************************
*   Acordeon
******************************/
.fil__acor + .fil__acor { margin-top: 20px; }
.fil__acor {
    background: rgba(var(--b07), .5);
    border: 1px solid rgba(var(--b07), .5);
    border-radius: 4px;
    -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;
}
.fil__acor > * { padding: 15px; }
.acor__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}
.acor__title > * {
    margin: 0;
    font-size: 18px;
    color: rgba(var(--b01), .5);
}
.acor__title h5 { font-weight: 500; }
.acor__title > *,
.acor__title > * 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;
}
.acor__info {
    display: none;
    padding: 30px;
}
.fil__acor.active {
    background: rgba(var(--b07), .5);
    border-color: rgb(var(--b04));
}
.fil__acor.active .acor__title > * { color: rgba(var(--b01), 1); }
.rotate i {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

/******************************
*   Column lines
******************************/
.col__lines { gap: 60px 80px; }

/* Column lines */
.col__lines .col__g::before {
    position: absolute;
    border-color: currentcolor;
}

.info__icon {
    margin-right: auto;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 20px;
}
.icon__col {
    width: 70px;
    min-width: 70px;
}
.text__col > * + * { margin-top: 10px; }

/******************************
*   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; }

/******************************
*   Blog
******************************/
[data-page="post"] .ele__top .h__sect h4 { font-weight: 500; }
[data-page="post"] .sect__ple + * { padding-top: 0; }

/******************************
*   Distribuidores
******************************/
[data-page="distribuidores"] .bg__03 { padding: 40px 0; }
.cont__mapa {
    width: 100%;
    height: calc(70vh - 60px);
    position: relative;
}
.cont__mapa > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.cont__selector {
    position: relative;
    background: rgb(var(--b06));
    -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__selector::before {
    content: '';
    position: absolute;
    width: 100%;
    top: 218px;
    bottom: 0;
    background: url('../img/logo.svg') center no-repeat;
    background-size: 200px;
    pointer-events: none;
    opacity: .2;

}
.cont__selector.ocultar { left: -500px; }
.cont__selector > * { position: relative; }
.hide__search {
    position: absolute;
    top: 0;
    left: 100%;
}
.btn__hide {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(var(--b04));
    color: rgb(var(--blanco));
    font-size: 22px;
    cursor: pointer;
}
.btn__hide.active i {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
.box__top {
    padding: 40px 30px;
    height: 218px;
    background: rgb(var(--b07));
}
.box__top .campo > div select { border-color: rgb(var(--b04)); }
.box__bot {
    width: 100%;
    background: rgb(var(--b06));
}
.box__bot > div > span {
    display: block;
    color: rgb(var(--h01));
    font-size: 16px;
    font-weight: 500;
    padding: 20px 30px;
    line-height: 1;
}
.list__distr > div { padding: 0 30px 30px 30px; }
.card__dis + .card__dis { margin-top: 15px; }
.card__dis {
    background: rgb(var(--b07));
    border: 1px solid rgb(var(--b07));
    border-radius: 4px;
    -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__dis.active {
    background: rgb(var(--blanco));
    border: 1px solid rgb(var(--b04));
}
.card__dis.active .top__indi {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
}
.dis__info > * { padding: 15px; }
.info__top {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    font-weight: 500;
    cursor: pointer;
    line-height: 1;
}
.info__tex {
    padding-top: 0;
    display: none;
}
.info__tex > * + * { margin-top: 20px }
.des__info > * + * { margin-top: 6px }
.info__tex .c__cta { justify-content: flex-start; }

/******************************
*   Flotillas
******************************/
.box__middle h4 { color: rgb(var(--b04)); }
* + .t__flo { margin-top: 80px }
.t__flo {
    font-size: 16px;
    color: rgba(var(--b03));
}
.fil__flo {
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(var(--b03), .3);
    display: flex;
    flex-flow: wrap;
    gap: 80px;
}
.flo__col { flex: 0 0 calc((100% - 80px) / 2); }
.cont__gar {
    display: flex;
    flex-flow: wrap;
    gap: 30px;
    text-align: center;
    align-items: center;
}
.cont__gar > * { flex: 0 0 100%; }

/******************************
*   Contacto
******************************/
.graf__contac {
    max-width: 25vh;
    width: 80%;
    position: relative;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 40px;
}
.graf__contac > *:last-child { position: relative; }
.d__cont {
    position: absolute;
    bottom: 34%;
    left: -10px;
    right: -10px;
}
.d__cont svg { fill: rgb(var(--blanco)); }

.cont__contact {
    text-align: center;
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
}
.cont__contact h2 { font-size: 20px; }
.datos__cont {
    display: flex;
    flex-flow: wrap;
    margin: 20px 0;
}
.datos__cont > * {
    flex: 1 1 100%;
    padding: 20px;
    position: relative;
}
.datos__cont > * > * {
    display: flex;
    justify-content: center;
    gap: 6px;
}
.datos__cont > * > span { font-size: 16px; }
.datos__cont > * > a {
    display: inline-block;
    font-weight: 500;
    font-size: 24px;
}
.cont__contact ul { justify-content: center; }
.cont__contact ul li {
    list-style: none;
    margin: 0;
}

/******************************
*   Gracias
******************************/
.car__gracias {
    max-width: 70vh;
    width: 95%;
    margin: -25vh auto 10vh;
}
.graf + * { margin-top: 0; }

/******************************
*   The gratest
******************************/
[data-page="clientes"] .cuadri__spa .r__item { background: rgb(var(--h01)); }

/******************************
*   Postventa
******************************/
[data-page="atencion-cliente"] .h__sect p {
    max-width: 600px;
    margin-right: auto;
    margin-left: auto;
}
[data-page="atencion-cliente"] .h__sect p a { color: rgb(var(--b04)); }

/******************************
*   Promociones
******************************/
.btn__opt {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
}
.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.activo .cta {
    pointer-events: none;
    background: rgb(var(--b06));
}
.fil__select { color: rgb(var(--b01)); }
.grid__filter .col__g { width: 100%; }

/* Card Car */
.conten__card {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.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; }
.c__01 { background: rgb(var(--b06)); }
.c__02 { background: rgb(var(--b08)); }

.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(--b01), .7);
    z-index: 1000;
    display: none;
}
.lb__info {
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 60px 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(--b08));
    background: rgb(var(--b05));
    cursor: pointer;
}
.card__legal {
    font-size: 12px;
    color: rgb(var(--b03));
}

.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;
}

/******************************
*   Legales
******************************/
.list__leagls {
    padding-inline-start: 0;
    list-style: none;
    display: flex;
    flex-flow: wrap;
    gap: 20px;
}
.list__leagls li {
    margin: 0;
    flex: 0 1 100%;
}

.list__leagls li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 15px;
    color: rgb(var(--b03));
    background: rgb(var(--b08));
    text-decoration: underline;
    height: 100%;
    border-radius: 4px;
    border: 1px solid rgb(var(--b08));
    line-height: 1.3;
}
.list__leagls li a:hover {
    color: rgb(var(--b01));
    border-color: rgb(var(--b06));
}
.car__legal {
    max-width: 50vh;
    width: 70%;
    margin-top: -100px;
    margin-right: auto;
    margin-left: auto;
}
.cont__legal {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

/******************************
*   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) {


.fil__info .bot__col > div:nth-child(2n+2)::before { content: ''; }

/* Contacto */
.datos__cont > * + *::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    border-top: 1px solid;
    width: 80px;
    opacity: .5;
}


}
@media (min-width : 680px) {
/* Info Over */
.fil__info .bot__col > div { flex: 1 1 calc((25% - 30px) / 4); }
.fil__info .bot__col > div + div::before { content: ''; }

/* Formularios */
.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; }

/* Contacto */
.datos__cont { margin: 40px 0; }
.datos__cont > * {
    flex: 1 1 50%;
    padding: 0 10px;
}
.datos__cont > * + * { border-left: 1px solid; }

/* flotillas */
.flo__col { flex: 0 1 calc((100% - 160px) / 3); }
.cont__gar > * { flex: 0 0 calc((100% - (2 * 30px)) / 3); }

/* Grid Info min */
.info__item { flex: 0 1 calc((100% - (2 * 30px)) / 3); }

/* Legales */
.list__leagls { gap: 30px; }
.list__leagls li { flex: 0 1 calc((100% - 30px)/2); }


}
@media (min-width : 680px) and (max-width : 767px) {
}
/* Small Devices, Nav */
@media (max-width : 767px) {
main:has(+ .prueba) > section:last-child { padding-bottom: 80px; }

/* Fila de datos */
.fil__datos { text-align: center; }
.fil__datos > * { flex: 0 0 calc((100% - (20px * 2)) / 2);}
.fil__datos > *:nth-child(2n+2)::before { content: ''; }
.num { justify-content: center; }

.hide__search { display: none; }

.card__cta .card__info { background: rgb(var(--b03)); }
.card__cta .card__info,
.card__cta .card__info a { color: rgb(var(--blanco)); }

/* Autos selector */
.type__auto .cont__slide .swiper__controls  { margin-top: 30px;}


/* Column lines */
.col__lines .col__g::before {
    top: -30px;
    width: 80px;
    left: 0;
    border-top: 1px solid;
    opacity: .6;
}
/* Column lines */
.col__lines .col__g + .col__g::before { content: ''; }

/* 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) {
h2 { font-size: 42px; }
h3 { font-size: 34px; }
h4 { font-size: 24px; }

/* Head Section */
.h__sect p { font-size: 18px; }
.h__middle { width: 80%; }


/*--------- Sliders ---------*/
/* Slider Full */
.slide__full .swiper-prev { left: 40px; }
.slide__full .swiper-next { right: 40px; }


/*---------  Componentes para estructuras ---------*/
/* Grid */
.grid { flex-wrap: wrap; }
.g__2 .g__item { flex: 0 0 calc((100% - 50px) / 2); }
.g__3 .g__item { flex: 0 0 calc((100% - 50px) / 2); }


/* Grid Galeria */
.cuadri__gal .r__item:nth-child(1) { width: 65%; }
.cuadri__gal .r__item:nth-child(2) { width: 35%; }
.cuadri__gal .r__item:nth-child(3),
.cuadri__gal .r__item:nth-child(4),
.cuadri__gal .r__item:nth-child(5) { width: 33.33%; }

/* Cuadricula espacio */
.cuadri__spa .r__item .cuadri__tex {
    justify-content: flex-end;
    padding: 60px;
}
.cuadri__spa .r__item:nth-child(1) { order: 1; }
.cuadri__spa .r__item:nth-child(2) { order: 0; }

.cuadri__spa .r__item:nth-child(3) { order: 1; }
.cuadri__spa .r__item:nth-child(4) { order: 2; }

.cuadri__spa .r__item:nth-child(5) { order: 4; }
.cuadri__spa .r__item:nth-child(6) { order: 3; }

.cuadri__spa .r__item:nth-child(7) { order: 5; }
.cuadri__spa .r__item:nth-child(8) { order: 6; }

.cuadri__spa .r__item:nth-child(2n+2) { flex: 1 1 calc(40% - 20px); }
.cuadri__spa .r__item:nth-child(2n+1) { flex: 1 1 calc(60% - 20px); }

/* The gratest */
[data-page="clientes"] .cuadri__spa .r__item:nth-child(1) { order: 0; }
[data-page="clientes"] .cuadri__spa .r__item:nth-child(2) { order: 1; }

/* Fila */
.fil__reverse { flex-direction: row-reverse; }
.cuadri__fil .r__item { min-height: 70vh; }
.cuadri__fil .r__item:nth-child(1),
.cuadri__fil .r__item:nth-child(2) { width: 50%; }
.cuadri__fil .r__item .cuadri__tex { justify-content: flex-end; }

.cuadri__var .r__item:nth-child(1),
.cuadri__var .r__item:nth-child(2) { width: 50%; }
.cuadri__var .r__item .cuadri__tex { padding: 60px 30px; }

/* Autos selector */
.type__auto .cont__slide .swiper__controls > * {
    position: absolute;
    top: 40%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
}
.type__auto .cont__slide .swiper__controls .swiper-prev { left: 40px; }
.type__auto .cont__slide .swiper__controls .swiper-next { right: 40px; }

/* Fila de datos */
.fil__auto > * { max-width: 25%; }
.fil__full > * { flex: 0 0 calc((100% - (40px * 3)) / 4);}

.fil__datos > * + *::before { content: ''; }

/* Distribuidores */
.cont__dis { display: flex; }
.cont__mapa {
    width: calc(100% - 450px);
    height: calc(100vh - 60px);
}
.cont__selector {
    width: 450px;
    display: flex;
    flex-direction: column;
}
.box__bot {
    height: calc(100vh - 301px);
    height: calc(100dvh - 301px);
}
.box__bot > div {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.list__distr {
    width: 100%;
    height: 100%;
}
.list__distr > div {
    height: calc(100% - 56px);
    overflow: auto;
}

/* Columnas */
.col__02 .col__g { flex: 0 1 calc((100% - (30px * 1)) / 2); }
.col__03 .col__g { flex: 0 1 calc((100% - (30px * 3)) / 3); }

/* Flotillas */
.box__middle { width: 60%; }

/* Grid Info min */
.info__item { flex: 0 1 calc((100% - (3 * 30px)) / 4); }

/* Column lines */
.col__lines .col__g::before {
    top: 0;
    bottom: 0;
    left: -40px;
    border-left: 1px solid;
}
.col__02.col__lines .col__g,
.col__03.col__lines .col__g { flex: 0 1 calc((100% - (1 * 80px)) / 2); }

.info__icon { max-width: 320px; }

/* 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: 240px; }

/* Legales */
.list__leagls li { flex: 0 1 calc((100% - 60px)/3); }

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

/* Column lines */
.col__lines .col__g:nth-child(2n+2)::before { content: ''; }

/* Card Car */
.col__g .c__01 {
    min-height: 280px;
    justify-content: center;
}
.col__g .c__02 {
    justify-content: space-between;
    min-height: 210px;
}

/* Distribuidores */
.cont__mapa { width: calc(100% - 320px); }
.cont__selector { width: 320px; }

}
@media (max-width : 867px) {
/*--------- Sliders ---------*/
/* Slider Full */
.slide__full .slide .slide__fil.slide__over .over__info { text-align: center; }

/* Hero */
.slide__hero .slide.s__02 .slide__fil.slide__over .over__info { min-height: 50%; }

}
@media (min-width : 868px) {
/*--------- Sliders ---------*/
/* Slider Full */
.slide__full .slide .slide__fil.slide__over .over__info { font-size: 16px; }
.slide__full .slide .slide__fil.slide__over .over__info .c__cta { justify-content: flex-start; }

.slide__full .slide .slide__fil > picture *,
.slide__full .slide .slide__fil > figure * { width: 100%; }

/* Hero */
.slide__hero .slide .slide__fil picture > * { margin: 0 0 0 auto; }
.slide__hero .slide .slide__fil figure,
.slide__hero .slide .slide__fil picture {
    height: 100%;
    /* display: flex; */
}
.slide__hero .slide .slide__fil figure > *,
.slide__hero .slide .slide__fil picture > * {
    object-fit: cover;
    height: 100%;
}
.slide__hero .slide.s__02 .slide__fil picture > * { object-fit: contain; }
.slide__hero .slide .slide__fil.slide__over {
    padding: 40px 120px;
    justify-content: center;
}
.slide__hero .slide .slide__fil.slide__over .over__info {
    padding: 40px;
    width: 50%;
    min-height: 80%;
}
.slide__hero .slide.s__02 picture > * { width: 50%; }

/* Banner video top */
.banner__vid { padding-top: 60vh; }
.banner__vid > div {
    position: absolute;
    width: 100%;
    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%);
}

}
@media (max-width : 991px) {
/* Card Car */
.col__g .graf__card figure { height: 190px; }
.col__g .graf__card figure img {
    height: 100%;
    object-fit: contain;
}

}
@media (min-width : 992px) {
/* Head Section */
.h__middle { width: 50%; }

/*--------- Sliders ---------*/
/* Galeria */
.slide__galeria .slide {
    display: grid;
    grid-template-columns: 1fr;
    height: 100%;
}
.slide__galeria .slide .slide__fil { grid-area: 1 / 1 / 2 / 2; }
.slide__galeria .slide .slide__fil.slide__over { justify-content: flex-end; }
.slide__galeria .slide .slide__fil.slide__over .over__info {
    padding: 40px 30px;
    background: rgba(var(--b01), .8);
}

/*---------  Componentes para estructuras ---------*/
/* Grid */
.g__3 .g__item { flex: 0 0 calc((100% - (50px * 2)) / 3); }

/* Grid Galeria */
.cuadri__gal .r__item { min-height: 45vh; }
.cuadri__gal .r__item:nth-child(1) { width: 40%; }
.cuadri__gal .r__item:nth-child(2) { width: 60%; }
.cuadri__gal .r__item:nth-child(3) { width: 50%; }
.cuadri__gal .r__item:nth-child(4),
.cuadri__gal .r__item:nth-child(5) { width: 25%; }
.cuadri__gal .cuadri__tex > div { width: 80%; }

/* Cuadricula espacio */
.cuadri__spa .r__item { min-height: 60vh; }

/* Fila */
.cuadri__fil .r__item:nth-child(1) { width: 40%; }
.cuadri__fil .r__item:nth-child(2) { width: 60%; }
.cuadri__fil .r__item .cuadri__tex { padding: 60px; }

.cuadri__var .r__item:nth-child(1) { width: 60%; }
.cuadri__var .r__item:nth-child(2) { width: 40%; }
.cuadri__var .r__item .cuadri__tex > * { width: 80%; }

/* Fila de datos */
.fil__datos { gap: 30px 80px; }
.datos__num + .datos__num::before { left: -40px; }
.fil__full > * { flex: 0 0 calc((100% - (80px * 3)) / 4);}

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

/* Grid Info min */
.info__item { flex: 0 1 calc((100% - (4 * 30px)) / 5); }

/* Column lines */
.col__03.col__lines .col__g { flex: 0 1 calc((100% - (2 * 80px)) / 3); }
.col__03.col__lines .col__g:nth-child(3n+2)::before,
.col__03.col__lines .col__g:nth-child(3n+3)::before,
.col__02.col__lines .col__g:nth-child(2n+2)::before { content: ''; }

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


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

}
@media (min-width : 1000px) {
/* Info Over */
.info__over {
    display: grid;
    grid-template-columns: 1fr;
}
.over__fil {
    grid-area: 1 / 1 / 2 / 2;
    min-width: 0;
    position: relative;
    z-index: 1;
}
.over__fil.fil__info { pointer-events: none; }
.over__fil.fil__info .fil__col > * { pointer-events: all; }
.fil__col { background: rgba(var(--negro), .2); }
.fil__col.fil__top  {
    padding: 40px 30px;
    background: linear-gradient(to bottom, rgba(var(--negro), 0.65) 0%,rgba(var(--negro),0) 100%);
}

}

/* Large Devices, Wide Screens */
@media (min-width : 868px) and (max-width : 1200px) {
/*--------- Sliders ---------*/
/* Slider Full */
.slide__full .slide .slide__fil.slide__over .over__info .h__sect h2 { font-size: 32px; }

/* Hero */
.slide__hero .slide .slide__fil.slide__over .over__info { padding: 30px 20px; }

}

@media (min-width : 992px) and (max-width : 1200px) {
}
@media (max-width : 1199px) {
}
@media (min-width : 1200px) {
main { min-height: calc(100vh - 83px); }
.page__sc .banner__top + * { height: calc(75vh - 83px); }

/* Cuadricula espacio */
.cuadri__spa .r__item:nth-child(2n+2) { flex: 1 1 calc(60% - 20px); }
.cuadri__spa .r__item:nth-child(2n+1) { flex: 1 1 calc(40% - 20px); }

/* Distribuidores */
.cont__mapa { height: calc(100vh - 83px); }


}




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

/******************************
*   Header
******************************/
.header {
    background: rgb(var(--var));
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -o-sticky;
    position: -ms-sticky;
    position: sticky;
    top: 0px;
    z-index: 1000;
}
.cont__menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px 0 20px;
}

.logo { width: 180px; }
.logo a { display: flex; }
.logo a span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.logo a figure { display: flex; }

.menu__nav > nav > ul > li > a,
.sub__opt > ul > li > a {
    display: block;
    padding: 15px;
    line-height: 1;
    text-transform: uppercase;
    position: relative;
}
.sub__opt { background: rgba(var(--b05), .5); }

/* Btn mobile */
.btn__mob {
    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__mob > 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__mob > 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__mob > div span {
    display: block;
    width: 100%;
    height: 2px;
    background: rgb(var(--b01));
}
.btn__mob > div span + span { margin-top: 6px; }
.btn__mob.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__mob.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__mob.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) {
}
@media (min-width : 680px) and (max-width : 767px) {
}
/* 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 : 1199px) {
.header { box-shadow: 0 0 8px rgba(var(--negro), .2); }
.menu {
    position: absolute;
    top: 100%;
    left: -100%;
    width: 100%;
    max-width: 680px;
    height: calc(100vh - 60px);
    height: calc(100dvh - 60px);
    overflow: auto;
    background: rgb(var(--b07));
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}
.menu.active {
    left: 0%;
    box-shadow: 0 8px 8px rgba(var(--negro), .2);
}

.menu__nav > nav > ul li { position: relative; }
.menu__nav > nav > ul li + li::before {
    content: '';
    position: absolute;
    top: 0;
    right: 15px;
    left: 15px;
    border-top: 1px solid currentcolor;
    opacity: .1;
}
.sub__opt,
.sub__opt > ul > li > ul,
.large__detail { display: none; }
.arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.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;
}
.arrow.active i {
    -webkit-transform: rotateX(-180deg);
    -moz-transform: rotateX(-180deg);
    -ms-transform: rotateX(-180deg);
    -o-transform: rotateX(-180deg);
    transform: rotateX(-180deg);
}
.sub__opt > ul > li > ul { background: rgba(var(--b05), .5); }
.sub__opt > ul > li > ul > li > a {
    display: block;
    padding: 15px;
    line-height: 1;
    text-transform: uppercase;
}

.s__large > ul > li::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 100%;
    top: 0;
    left: 0;
}

}
@media (min-width : 1200px) {
.header {
    filter: drop-shadow(0px 0px 10px rgb(var(--negro), .2));
    will-change: filter;
}
.btn__mob,
.arrow { display: none; }
.menu__nav { font-size: 13px; }
.menu__nav > nav > ul {
    display: flex;
    justify-content: center;
}
.menu__nav > nav > ul > li > a,
.sub__opt > ul > li > a { padding: 35px 10px; }
.sub__opt {
    background: rgb(var(--b07));
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

/* Hover */
.menu__nav nav ul li:hover .sub__opt {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
}
.menu__nav > nav > ul > li > a::before,
.s__simple ul > li > a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgb(var(--b04));
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    transform-origin: 0 0;
}
.menu__nav > nav > ul > li:hover > a::before,
.menu__nav a:hover::before  {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
}

/* Simple */
.s__simple ul {
    display: flex;
    justify-content: center;
}

/* Large */
.s__large {
    /* opacity: 1;
    pointer-events: all;
    visibility: visible; */
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    overflow: hidden;
}
.s__large > ul {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.s__large > ul > li {
    display: grid;
    grid-template-columns: 200px 1fr;
    height: 100%;
}
.s__large > ul > li > a {
    grid-area: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: bold;
}
.s__large > ul > li > ul {
    width: 200px;
    position: absolute;
    left: 200px;
    top: 0;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    background: rgb(var(--b07));
    justify-content: start;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.s__large > ul > li ul > li > a {
    display: block;
    padding: 12px;
}

.large__detail {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    position: absolute;
    left: 200px;
    width: calc(100vw - 400px);
    background: rgb(var(--b07));
    min-height: 400px;
    top: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    z-index: 10;
    padding: 30px 30px;
    display: flex;
}
.detail__desc { width: 30%; }
.detail__graf { width: 70%; }
.detail__desc span {
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
}
.detail__desc .c__cta { justify-content: start; }
.detail__graf {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 0;
}
.cont__icon {
    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%);
    width: 100%;
    height: 100%;
}
.cont__icon figure {
    width: 100%;
    height: 100%;
}
.cont__icon figure svg {
    fill: rgb(var(--b08));
    object-fit: contain;
    object-position: center;
    height: 100%;
}
.cont__graf { position: relative; }
.cont__graf figure {
    max-width: 500px;
    margin: 0 auto;
}

.s__large > ul > li:hover > ul,
.menu__nav > nav > ul > li:hover .s__large > ul > li:nth-child(1) > ul,
.s__large > ul > li.activo > ul > li:nth-child(1) .large__detail {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
}
.s__large > ul > li > ul > li:hover .large__detail {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
}

.s__large > ul > li ul > li:hover > a { background: rgba(var(--negro), .1); }
.s__large > ul > li.activo > ul li a,
.s__large > ul > li.activo > ul li a { color: rgb(var(--b08)); }

}
@media (max-width : 1299px) {
}
@media (min-width : 1300px) {
.cont__menu { padding: 0 15px 0 30px; }
.logo { width: 200px; }
.menu__nav > nav > ul > li > a,
.sub__opt > ul > li > a { padding: 35px 15px; }

}


/******************************
*   Footer
******************************/
.footer {
    background: rgb(var(--b07));
    padding: 60px 0 30px;
    line-height: 1.4;
}
.foo__fil + .foo__fil {
    border-top: 1px solid rgba(var(--b01), .3);
    margin-top: 30px;
    padding-top: 30px;
}
.foo__top {
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.nav__footer {
    display: flex;
    flex-direction: column;
    gap: 50px;
    text-transform: uppercase;
}
.nav__footer li {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.nav__footer li a:hover { color: rgb(var(--b04)); }
.nav__footer li span { font-weight: bold; }
.nav__footer li ul li + li { margin-top: 12px; }
.top__01 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.logo__footer { width: 280px; }
.social__media {
    list-style: none;
    display: flex;
    gap: 20px;
}
.social__media li a {
    display: flex;
    font-size: 22px;
    color: rgb(var(--b04));
}
.icon__grill {
    width: 80%;
    opacity: .4;
}
.foo__bot {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 30px 60px;
    text-align: center;
    font-size: 14px;
    line-height: 1.8;
}
.foo__bot a { font-weight: bold }
.foo__bot .bot__02 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.foo__bot .bot__02 p span:last-of-type { display: none; }
.logo__grupo {
    max-width: 350px;
    margin: 0 auto;
}
.txt__legal { color: rgb(var(--b02)); }
.txt__refe { opacity: .5; }


/* 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) {
.footer { font-size: 12px; }
.nav__footer {
    flex-direction: row;
    justify-content: space-around;
}

}
@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%; }
.foo__top {
    flex-direction: row-reverse;
    justify-content: space-between;
}
.top__01 { align-items: flex-end; }
.icon__grill { width: 300px; }
.foo__bot {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    line-height: 1.2;
    font-size: 12px;
}
.logo__grupo { min-width: 300px; }
.foo__bot .bot__02 {
    text-align: right;
    gap: 12px;
}

}
/* 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 : 1199px) {
}
@media (min-width : 1200px) {
}



.header,
.footer {
    -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;
}
.header svg,
.footer svg { fill: rgb(var(--b01)); }

/******************************
*   Componentes por color
******************************/
[data-page="car-page"] .footer,
[data-page="car-page"] .txt__legal,
[data-page="car-page"] .social__media li a { color: rgb(var(--b08)); }

[data-page="car-page"] .header svg,
[data-page="car-page"] .footer svg { fill: rgb(var(--b08)); }
[data-page="car-page"] .foo__fil + .foo__fil { border-color: rgba(var(--b08), .3); }

[data-page="car-page"] .btn__mob > div span { background: rgb(var(--b08)); }

@media (min-width : 1200px) {
    [data-page="car-page"] .header nav > ul > li > a { color: rgb(var(--b08)); }

    
    [data-car-type] .header svg,
    [data-car-type] .footer svg { fill: rgb(var(--b08)); }
    [data-car-type] .foo__fil + .foo__fil { border-color: rgba(var(--b08), .3); }

    [data-car-type] .footer,
    [data-car-type] .txt__legal,
    [data-car-type] .social__media li a { color: rgb(var(--b08)); }
}








