

/* CSS PERSONALIZADO */
h1#tituloGracias {
    text-align: center;
    font-size: 60px;
}
#RamaSi2 {
    width: 100%;
}
#preguntasArchivo {
    flex-wrap: wrap;
}

 /* Controles del carrusel (desktop y mobile) */
  #comprarPrev, #comprarNext {
    transition: opacity .2s ease, transform .2s ease, filter .2s ease;
    -webkit-tap-highlight-color: transparent; /* mobile */
    touch-action: manipulation;               /* mobile */
  }
  /* Feedback al presionar cuando están activos */
  #comprarPrev:not([disabled]):active,
  #comprarNext:not([disabled]):active {
    transform: scale(0.96);
  }
  /* Estado DESHABILITADO visible en cualquier dispositivo */
  #comprarPrev[disabled],
  #comprarNext[disabled],
  #comprarPrev[aria-disabled="true"],
  #comprarNext[aria-disabled="true"] {
    opacity: .35 !important;
    filter: grayscale(100%);
    cursor: default;
    pointer-events: none; /* bloquea hover/click/touch */
  }

#porque article.centro {
    display: flex;
    gap: 20px;
    text-align: center;
    z-index: 2;
    justify-content: center;
    flex-wrap: wrap;
}
@media (min-width:768px){
    #comprar h2 {
        font-size: 30px;
        font-weight: 400;
    }
    #comprar h3.sub {
        font-size: 82px;
        font-weight: 700;
    }
    #porque article.centro {
        position: absolute;
        left: 0;
        right: 0;
        top: calc(50vh - 152px);
    }
}
@media (max-width:768px){
    #comprar h2 {
        font-size: 18px;
        font-weight: 400;
    }
    #comprar h3.sub {
        font-size: 50px;
        font-weight: 700;
    }
    #porque article.centro {
        position: relative;
        top: 0;
        margin: 24px;
    }
    #porque article.centro::after{
        content: "";
        background: var(--amarillo);
        position: absolute;
        top: -24px;
        left: -24px;
        right: -24px;
        bottom: calc(50% - 12px);
        z-index: -1;
    }
    #porque article.centro::before{
        content: "";
        background: var(--negroFuerte);
        position: absolute;
        top: calc(50% + 12px);
        left: -24px;
        right: -24px;
        bottom: calc(0px - 24px);
        z-index: -1;
    }
}
#porque article.centro img {
    margin-bottom: -30px;
    z-index: 2;
}
#porque article.centro p {
    font-size: 18px;
}
#porque article.centro h3 {
    font-size: 22px;
    font-family: 'Arimo', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    margin-top: 60px;
}
#porque figcaption.BGBlanco {
    padding: 0px 20px 20px 20px;
    height: auto;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 15px;
    border-radius: 25px;
    min-height: 186px;
}
#porque article.centro figure {
    max-width: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#porque {
    flex-direction: column;
    min-height: 100vh;
    padding: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
}
#porque article.BGAmarillo h2 {
    font-weight: 100;
    max-width: 601px;
    margin: 0px;
}
#porque article.BGNegro h2 {
    max-width: 530px;
    margin-bottom: 40px;
}
#porque article.BGAmarillo h2 strong{
    font-weight: 900;
}
#porque article.BGAmarillo, #porque article.BGNegro {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}
#porque article.BGAmarillo{
    justify-content: start;
    padding: 40px;
}
#porque article.BGNegro{
    justify-content: end;
    padding: 40px;
}
img.arriba, img.abajo {
    animation: flechas 4s linear infinite;
    position: absolute;
}

img.abajo {
    bottom: 20px;
    left: 20px;
}

img.arriba {
    top: 20px;
    right: 20px;
}
    
@keyframes flechas {
    0% {
        transform: translateX(0px);
        filter: brightness(0.9) opacity(0.6);
    }
    100% {
        transform: translateX(12px);
        filter: brightness(1.1) opacity(1.1);
    }
}


img.perilla {
    position: absolute;
    top: 96px;
    animation: girar 10s linear infinite;
}

@keyframes girar {
    0%, 100%{
        transform: rotate(-150deg);
    }
    50% {
        transform: rotate(60deg);
    }
}

img.bateria, img.potencia {
    animation: brillar 5s linear infinite;
}

@keyframes brillar {
    0%, 100%{
        filter: drop-shadow(2px 4px 1px white);
    }
    50% {
        filter: drop-shadow(2px 4px 6px #FFF3D2);
    }
}


img.tiempo{
    animation: rodar 5s linear infinite;
}

@keyframes rodar {
    0%,50%, 100% {
    transform: translateX(0px);
    }
    25% {
        transform: translateX(-15px);
    }
    75% {
        transform: translateX(15px);
    }
}

#hero > img {
    display: flex;
    top: 100px;
    z-index: -1;
    margin: auto;
    animation: opacidadBrillo 5s linear infinite;
    z-index: -2;
}

@keyframes opacidadBrillo {
    0%, 100% {
        filter: opacity(0.2) brightness(0.5);
    }
    50% {
        filter: opacity(0.5) brightness(0.8);
    }
}

#hero figcaption{
    max-width: 630px;
}
#hero figcaption {
    max-width: 630px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

#hero img {
    position: absolute;
}
#hero {
    min-height: calc(100dvh - 184px);
    position: unset;
    align-items: center;
}
@media (min-width: 768px) {
    #hero > img {
        width: 700px;
        height: 687px;
    }
    #hero figure {
        display: flex;
        align-items: center;
    }
    #hero figure img {
        height: calc(100dvh - 88px);
        width: auto;
        right: 0;
        z-index: 0;
    }
    #hero figcaption{
        position: relative;
        z-index: 1;
    }
    #hero > img {
        right: 20vw;
    }
}
@media (max-width: 768px) {
    #hero > img{
        width: 100%;
        height: auto;
    }
    #hero figcaption{
        height: calc(80dvh - 184px);
        justify-content: space-evenly;
        text-align: center;
        align-items: center;
        padding: 0px 24px;
    }
    #hero figure img {
        display: none;
    }
}




/* ===== Mobile ===== */
@media (max-width: 767.98px) {
  /* XFX */
  #carruselMotos:has(img[alt="XFX" i]) h2 { font-size: 130px; }

  /* APEX */
  #carruselMotos:has(img[alt="APEX" i]) h2 { font-size: 90px; }

  /* Y1 */
  #carruselMotos:has(img[alt="Y1" i]) h2 { font-size: 180px; }

  /* Y2 */
  #carruselMotos:has(img[alt="Y2" i]) h2 { font-size: 180px; }

  /* XFX SPORT */
  #carruselMotos:has(img[alt="XFX SPORT" i]) h2 { font-size: 75px; }

  /* E5 */
  #carruselMotos:has(img[alt="E5" i]) h2 { font-size: 180px; }

  /* TALARIA */
  #carruselMotos:has(img[alt="TALARIA" i]) h2 { font-size: 55px; }

  /* ZL2 */
  #carruselMotos:has(img[alt="ZL2" i]) h2 { font-size: 130px; }

  /* ZL8 */
  #carruselMotos:has(img[alt="ZL8" i]) h2 { font-size: 130px; }

  /* ZS */
  #carruselMotos:has(img[alt="ZS" i]) h2 { font-size: 180px; }
}

/* ===== Desktop ===== */
@media (min-width: 768px) {
  /* XFX */
  #carruselMotos:has(img[alt="XFX" i]) h2 { font-size: 195px; }

  /* APEX */
  #carruselMotos:has(img[alt="APEX" i]) h2 { font-size: 143px; }

  /* Y1 */
  #carruselMotos:has(img[alt="Y1" i]) h2 { font-size: 250px; }

  /* Y2 */
  #carruselMotos:has(img[alt="Y2" i]) h2 { font-size: 250px; }

  /* XFX SPORT */
  #carruselMotos:has(img[alt="XFX SPORT" i]) h2 { font-size: 114px; }

  /* E5 */
  #carruselMotos:has(img[alt="E5" i]) h2 { font-size: 250px; }

  /* TALARIA */
  #carruselMotos:has(img[alt="TALARIA" i]) h2 { font-size: 84px; }

  /* ZL2 */
  #carruselMotos:has(img[alt="ZL2" i]) h2 { font-size: 195px; }

  /* ZL8 */
  #carruselMotos:has(img[alt="ZL8" i]) h2 { font-size: 195px; }

  /* ZS */
  #carruselMotos:has(img[alt="ZS" i]) h2 { font-size: 250px; }
}




@font-face {
  font-family: 'Arimo';
  src: url('/assets/Arimo-VariableFont_wght.ttf') format('truetype');
  font-weight: normal;font-style: normal;font-display: swap;
}

@font-face {
  font-family: 'PFBaselinePro';
  src: url('/assets/PFBaselinePro-Regular.ttf') format('truetype');
  font-weight: normal;font-style: normal;font-display: swap;
}

body{font-family:'Arimo', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif}

footer small, #tranquilidad p, h1, h2, h3, h4 {
    font-family:'PFBaselinePro', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif
}



#carruselMotos img.motos {
    object-fit: contain;
}
#thankyou {
    flex-direction: column;
    align-items: center;
    height: auto;
    min-height: 100%;
    gap: 20px;
    padding: 40px;
}

#gracias {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#comprar article::-webkit-scrollbar {
        display: none;
}
#comprarPrev, #comprarNext {
    padding: 0;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    display: flex;
    border: 0px;
    margin: 0;
    position: absolute;
    top: 50%;
}



@media (max-width: 768px) {
    #comprarNext {
        right: 30px;
    }
    #comprarPrev {
        left: 30px;
    }
}
@media (min-width: 768px) {
    #comprarNext {
        right: 80px;
    }
    #comprarPrev {
        left: 80px;
    }
    #comprarPrev, #comprarNext {
        position: absolute;
        top: 50%;
    }

}

.mc-address-group {
    width: 100%;
}
    #comprar article {
        display: flex;
        overflow-x: scroll;
        padding-bottom: 20px;
        gap: 20px;
    }
#comprar {
    padding: 48px 24px;
    text-align: center;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 0px;
    margin-top: 0px;
    max-width: 1920px;
}
#comprar h2 {
    margin-bottom: 0px;
}
#comprar img {
    object-fit: contain;
}
#comprar h3 {
    margin-bottom: 15px;
}
#comprar article figure
 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}










#botonesEnvio {
    width: auto;
    margin: auto;
}


  #preguntasArchivo, #botonesEnvio, #RamaSi1, #RamaSi2, #RamaNo1, #RamaNo2, #RamaNo3{
    display: none;
  }
.select-disabled {
    pointer-events: none;
    background: #ffffff29;
    color: white;
}







@media (min-width:768px){
    #comprar article {
        max-width: 990px;
        padding-left: 30px;
        padding-right: 30px;
        margin-left: auto;
        margin-right: auto;
        width: -webkit-fill-available;
    }
    #formulario img{
        width: 100%;
        height: 100%;
    }
    #formulario {
        min-height: 100vh;
        height: max-content;
    }
    .mc-field-group.mitad {
        width: calc(50% - 20px);
    }
    #formulario h2{
        font-size: 32px;
    }
    #formulario p{
        font-size: 18px;
    }
    #formulario small{
        font-size: 11px;
    }
}
#comprar article .btn.BGNegro {
    margin: auto;
}
#comprar figcaption h3 {
    font-size: 15px;
}
@media (max-width:768px){
    img.arriba, img.abajo {
        display: none;
    }
    #comprar article figure {
        width: calc(100dvw - 48px);
    }
    #mc_embed_shell {
        width: calc(100% - 48px);
    }
    #formulario img{
        width: 100%;
        height: 100%;
    }
    .mc-field-group.mitad, .mc-field-group, #mc_embed_shell {
        width: 100%!important;
    }
    #mc_embed_shell{
        padding: 0px!important;
    }
    #formulario h2{
        font-size: 21px;
    }
    #formulario p{
        font-size: 16px;
    }
    #formulario small{
        font-size: 11px;
    }
}
#formulario small{
    margin: 20px;
}
#formulario p, #formulario small{
    text-align: center;
}
#formulario h2{
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
    color: white;
}

#formulario img{
    object-fit: cover;
    flex: 1;
    position: absolute;
    z-index: -2;
}
#formulario {
    flex-direction: column;
    padding: 48px 0px;
    margin: 0px;
    max-width: 1920px;
    justify-content: center;
}
#carruselMotos img.flechas {
    bottom: 0;
    top: unset;
}
#carruselMotos .botones {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.botones button {
    background: transparent;
    border: 0px;
    padding: 0;
}
#carruselMotos img.motos:hover {
    scale: 1.04;
}
#carruselMotos figcaption {
    position: absolute;
    z-index: 0;
    width: 100%;
}
#carruselMotos figure::after {
    content: "";
    background: #464545;
    border-radius: 50%;
    margin: 0px auto;
    border: none;
    position: relative;
    height: 65px;
    width: auto;
    display: block;
    top: -50px;
}
#carruselMotos img.motos, #carruselMotos figure {
    position: relative;
    z-index: 1;
}
#carruselMotos {
    justify-content: center;
    flex-direction: column;
    width: fit-content;
    gap: 10px;
}
#carruselMotos h2 {
    margin-bottom: 0px;
    color: #595959;
    filter: drop-shadow(2px 4px 6px black);
    line-height: 0.8;
}
#ventajas div{
    position: relative;
}
#ventajas .RecVer {
    padding: 0px;
    position: absolute;
    bottom: -85px;
}
.RecVer {
    position: absolute;
    bottom: 100px;
    right: -50px;
    display: flex;
    gap: 13px;
    flex-direction: column;
    width: 10px!important;
}
.RecVer small {
    height: 10px;
    width: 10px;
}
.RecVer span.seis {
    top: 3px;
}
.RecVer span.cinco {
    top: 26px;
}
.RecVer span.cuatro {
    top: 49px;
}
.RecVer span.tres {
    bottom: 49px;
}
.RecVer span.dos {
    bottom: 26px;
}
.RecVer span.uno {
    bottom: 3px;
}



.RecHor small{
    width: 10px;
}
.RecVer span {
    height: 4px;
    width: 4px;
    position: absolute;
    left: -13px;
}
.RecHor {
    position: absolute;
    bottom: 0px;
    display: flex;
    gap: 10px;
    height: 10px;
    z-index: -2;
    width: auto !important;
    left: -120px;
}
.whats-contact {
    position: fixed;
    bottom: 24px;
    right: 0px;
    width: 60px;
    z-index: 10;
    animation: whatsapp 4s linear infinite;
    filter: brightness(0.8);
}

@keyframes whatsapp {
    0%, 100% {
        transform:  scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

footer small {
    font-size: 16px;
    text-align: center;
    width: 100%;
    display: block;
    padding-bottom: 24px;
}
footer ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
footer {
    background: var(--amarillo);
}
footer nav {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 24px;
    flex-wrap: wrap;
    gap: 24px;
}
@media (min-width: 1024px) {
    #tranquilidad h2 {
        text-align: justify;
        max-width: min-content;
    }
}
@media (max-width: 1024px) {
    .RecHor, .RecVer {
        display: none;
    }
    #tranquilidad figure{
        flex-direction: column;
        align-items: center;
    }
    #tranquilidad figcaption {
        margin: 0px 24px;
    }
    
}

#tranquilidad p::after {
    position: absolute;
    content: '';
    width: 5px;
    height: 100%;
    background: #FFC600;
    top: 0;
    left: 0;
    bottom: 0;
}
#tranquilidad ul {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#tranquilidad p{
    font-size: 18px;
    position: relative;
    padding-left: 15px;
}
#tranquilidad li{
    font-size: 20px;
    display: unset;
}
#tranquilidad h2 {
    font-weight: 400;
    margin-bottom: 15px;
}
#tranquilidad figure {
    display: flex;
    gap: 50px;
    max-width: 1200px;
}
#tranquilidad h2 {
    font-weight: 400;
}
#tranquilidad {
    margin: 0px;
    max-width: 1920px;
    padding-top: 40px;
    padding-bottom: 40px;
    justify-content: center;
}
#beneficios p {
    text-align: center;
}
#beneficios h2{
    margin-bottom: 0px;
}
#principal p {
    max-width: 1000px;
    margin: auto;
}
#beneficios article.BGAmarillo {
    width: 100%;
    padding: 80px 40px 40px;
}
#beneficios img.paloma {
    position: absolute;
    top: 88px;
}
#beneficios img.engrane {
    animation: gear 1800s linear infinite;
}

@keyframes gear {
    0%, 100% {
        transform: rotate(3600deg);
    }
    50% {
        transform: rotate(-36000deg);
    }
}


@media (min-width:1024px){
    .beneficios figure{
        width: 25%;
    }
}

@media (min-width:500px) and (max-width:1024px){
    .beneficios figure{
        width: 50%;
    }
    #beneficios .beneficios{
        flex-wrap: wrap;
    }
}

@media (max-width:500px){
    .beneficios figure.BGAmarillo{
        margin-top: -1px;
    }
    .beneficios figure{
        width: 100%;
    }
    #beneficios .beneficios{
        flex-wrap: wrap;
    }
}

.beneficios figure {
    border-bottom: 15px solid;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 40px;
}
#beneficios .beneficios {
    width: 100%;
    display: flex;
}
.beneficios figure.BGAmarillo {
    border-color: var(--negro);
}
.beneficios figure {
    border-color: var(--amarillo);
}
#beneficios {
    padding: 0px;
    margin: 0;
    flex-wrap: wrap;
    max-width: 1920px;
}
#ventajas a.btn {
    margin: 0px;
    position: relative;
}
#ventajas h2{
    margin-bottom: 0px;
    max-width: 80%;
}
#ventajas ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#ventajas {
    margin: 0px;
    padding: 0px;
    max-width: 1920px;
}
#ventajas li {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
#ventajas figcaption {
    display: flex   ;
    align-items: center;
    justify-content: center;
}
#ventajas h3, #ventajas p {
    font-size: 18px;
    position: relative;
}
#ventajas h3::before{
    content: "✔";
    position: absolute;
    color: var(--amarillo);
    font-size: 28px;
    line-height: 1em;
}
.beneficios p, .beneficios h3{
    padding-left: 15px;
    padding-right: 15px;
}
#beneficios h3{
    margin-bottom: 15px;
    font-size: 22px;
}
#beneficios p{
    font-size: 16px;
}

@media (min-width:768px){
    #carruselMotos h2 {
        font-size: 195px;
    }
    #carruselMotos .botones {
        left: -24px;
        right: -24px;
    }
    .beneficios figure {
       padding: 40px 0px;
    }
    #beneficios h2 {
        font-size: 80px;
    }
    #beneficios h3 {
        font-size: 23px;
        text-align: center;
    }
    #ventajas h3::before{
        left: -45px;
    }
    #elegir-roue .RecVer{
        right: 0px;
    }
    #elegir-roue h2{
        font-size: 38px;
    }
    #ventajas ul, #ventajas div {
        padding: 48px 48px 48px 150px;
    }
    #ventajas ul {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    #ventajas h2 .CNegro{
        font-size: 52px;
    }
    #ventajas h2 .CBlanco{
        font-size: 42px;
    }
    #ventajas h2{
        text-align: left;
    }
    #ventajas > * {
        width: 50vw;
    }
    #ventajas aside {
        border-top-color: var(--amarillo);
        border-top-width: 15px;
        border-top-style: solid;
    }
    #ventajas figcaption {
        height: 50vh;
        border-top-color: black;
        border-top-width: 15px;
        border-top-style: solid;
    }
    #ventajas img {
        height: 50vh;
    }
    #tranquilidad h2 {
        font-size: 32px;
    }
}
@media (max-width:768px){
    #ventajas h2{
        font-size: 20px;
    }
    #principal p{
        font-size: 14px;
    }
    #carruselMotos img.motos {
        width: 90vw;
        height: auto;
    }
    #carruselMotos h2 {
        font-size: 130px;
    }
    #carruselMotos .botones {
        left: 24px;
        right: 24px;
        bottom: 70px;
    }
    img.flechas{
        display: none;
    }
    #tranquilidad figure > img {
        width: 100%;
        height: auto;
    }
    .beneficios figure {
       padding: 40px 0px;
    }
    #tranquilidad h2 {
        font-size: 27px;
    }
    #beneficios .beneficios{
        flex-wrap: wrap;
    }
    #beneficios h2{
        font-size: 28px;
    }
    #beneficios h3{
        text-align: center;
    }
    #ventajas h3::before{
        left: -24px;
    }
    #ventajas li{
        text-align: center;
    }
    #ventajas ul {
        padding: 30px;
    }
    #ventajas div {
        padding: 0px 24px 24px;
        display: flex;
        justify-content: center;
    }
    #ventajas {
        flex-direction: column;
    }
    #ventajas figcaption {
        height: 15vh;
    }
    #ventajas img {
        height: 30vh;
    }
}
#ventajas img {
    width: 100%;
    object-fit: cover;
}
#ventajas figure {
    display: flex;
    flex-direction: column;
}
#principal, #elegir-roue {
    flex-direction: column;
    justify-content: center;
    position: relative;
    text-align: center;
}
#principal {
    gap: 20px;
    overflow: hidden;
}
#elegir-roue h2{
    margin: 0px;
}
img.flechas {
    animation: flechas 4s linear infinite;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

#elegir-roue h3 {
    border-radius: 5px;
    padding: 5px;
    font-weight: 500;
    font-size: 16px;
}
#elegir-roue p {
    font-size: 18px;
    margin-top: 15px;
}
#elegir-roue .pasos {
    max-width: 1080px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}
#elegir-roue .pasos div.largo {
    width: 100%;
    position: relative;
    z-index: 2;
}

@media (min-width: 900px) {
    #elegir-roue{
        gap: 45px;
    }
    #elegir-roue .pasos div {
        width: 30%;
    }
    #elegir-roue div.largo h3 {
    font-size: 30px;
    }
    #elegir-roue div.largo p {
        font-size: 26px;
    }
    .impulsa {
        margin-top: 45px;
    }
    #elegir-roue .impulsa p {
        font-size: 20px;
    }
}
@media (max-width: 900px) {
    #elegir-roue .impulsa p {
        font-size: 16px;
    }
    #elegir-roue{
        gap: 40px;
    }
    #elegir-roue .pasos div {
        width: 100%;
    }
    #principal, #elegir-roue {
        padding: 0px 24px;
    }
}

@keyframes flechas {
    0% {
    transform: translateX(0px);
    filter: brightness(0.9) opacity(0.6);
}
100% {
    transform: translateX(12px);
    filter: brightness(1.1) opacity(1.1);
}
}

.uno{background: var(--uno);animation: color1 6s linear infinite;}
.dos{background: var(--dos);animation: color2 6s linear infinite;}
.tres{background: var(--tres);animation: color3 6s linear infinite;}
.cuatro{background: var(--cuatro);animation: color4 6s linear infinite;}
.cinco{background: var(--cinco);animation: color5 6s linear infinite;}
.seis{background: var(--seis);animation: color6 6s linear infinite;}

#colores {
    margin: 0px;
    height: 20px;
    padding: 0px;
    display: flex;
    max-width: 100%;
}
#colores article{
    flex: 1;
}

#row--23074 .col-md-2 {height: 20px;padding: 0px;}
@keyframes color1 {
 20%,100% { background: var(--uno);}
 50% { background: var(--seis);}
 70% { background: var(--seis);}
}
@keyframes color2 {
 20%,100% { background: var(--dos);}
 50% { background: var(--cinco);}
 70% { background: var(--cinco);}
}
@keyframes color3 {
 20%,100% { background: var(--tres);}
 50% { background: var(--cuatro);}
 70% { background: var(--cuatro);}
}
@keyframes color4 {
 20%,100% { background: var(--cuatro);}
 50% { background: var(--tres);}
 70% { background: var(--tres);}
}
@keyframes color5 {
 20%,100% { background: var(--cinco);}
 50% { background: var(--dos);}
 70% { background: var(--dos);}
}
@keyframes color6 {
 20%,100% { background: var(--seis);}
 50% { background: var(--uno);}
 70% { background: var(--uno);}
}


body.gracias {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--negroFuerte);
}
body.gracias main{
    position: relative;
    padding: 20px;
}
body.gracias img.der {
    right: 5%;
}
body.gracias img.izq {
    left: 5%;
}

body.gracias h1 {
    text-align: center;
    font-size: clamp(30px,6vw + 6px,78px);
    margin: 40px 0px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
body.gracias h2{
    font-size: clamp(15px,2vw + 1px,25px);
}
body.gracias img.logo {
    animation: brillo 5s linear infinite !important;
    transform: rotate(38deg) !important;
    height: clamp(30px,3vw + 9px,45px);
}

/* Inicio de animacion reveal */

#formulario img, #formulario h2, #formulario p, #formulario small, #elegir-roue .pasos div, #elegir-roue h2, #elegir-roue p, #ventajas img, #ventajas figcaption, #ventajas aside, #ventajas li, #ventajas p, #ventajas a.btn, #ventajas .RecVer, #elegir-roue .RecVer small, #ventajas .RecVer small, #beneficios article.BGAmarillo, #beneficios figure, #tranquilidad img, #tranquilidad p, #tranquilidad h2, #tranquilidad p, #tranquilidad li, #comprar h2, #comprar > figure img, #comprar p {
    animation: reveal linear both;
      animation-range: entry 10% cover 20%;
      animation-timeline: view();
  }
  
  footer section,footer article,footer article,footer div,footer, footer img, footer svg{
    animation: none!important;}
    
  @keyframes reveal{
    0% {
      filter: opacity(0);
      transform: translateY(100px) scale(0.4);
  }
  
  100% {
      filter: opacity(1);
      transform: translateY(0px) scale(1);
  }
  }
  
  @keyframes reveal2{
    0% {
      filter: opacity(0.5);
      transform: translateY(20px) scale(0.5);
  }
  
  100% {
      filter: opacity(1);
      transform: translateY(0px) scale(1);
  }
  }

/* Fin de animacion reveal */

svg:hover, img:hover {
    filter: drop-shadow(0px 2px 3px lightgray);
}
.btnCarrusel:hover path {
    fill: black;
}
.btnCarrusel:hover {
    background: var(--amarillo);
    outline: 2px solid black;
}
#mc-embedded-subscribe:hover, a.btn.info:hover, a.btn.cart:hover {
    background: black;
    color: white;
}
a:hover {
    filter: brightness(1.1);
    transform: translate(0px, -5px);
}

.footer-menu ul span {
    color: var(--grisBajo);
}
footer .maps span {
    display: block;
    width: 185px;
}
.footer-copy p {
    font-size: 14px;
    text-align: center;
    padding: 10px;
}
footer .pagosRedes {
    display: flex;
    flex-direction: column;
    gap: 35px;
}
footer .pagos, footer .redes {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
footer li.contacto a {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 14px;
    height: max-content;
    align-items: center;
}
footer li.contacto {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}
.footer-menu ul span {
    color: white;
}
.footer-menu ul {
    display: flex;
    gap: 20px;
    padding: 0px;
    list-style: none;
}
#carrusel strong {
    font-size: 20px;
}
#carrusel figure {
    padding: 12px;
    border-right: 1px solid var(--gris);
    display: flex;
    flex-direction: column;
    gap: 15px;
}
#carrusel figcaption {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
#carrusel {
    margin: auto;
    display: flex;
    overflow: hidden;
    gap: 15px;
    position: relative;
    align-items: baseline;
}
#productos {
    flex-direction: column;
}

header {
    background: var(--amarillo);
    padding: 19px 0px;
    text-align: center;
}

/* Estilos TABLET */

@media (max-width:1180px){
    footer .h4, footer .h4{
        width: 100%;
    }
    .footer-menu ul, footer li.contacto {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
    .footer-menu {
        padding: 30px;
    }
}

@media (min-width:1180px){
    .footer-menu ul {
        justify-content: space-between;}
    .footer-menu {
        padding: 60px 135px 28px 73px;
    }
}

/* Estilos mobile */

@media (max-width:768px){
    body.gracias img.logo{
        width:30px!important;
    }
    a.btn.cart {
        width: 75%;
        margin-bottom: 20px;
        margin-top: 20px;
    }
    footer .pagos, footer .redes {
        justify-content: center;
    }
    #carrusel strong {
        font-size: 16px;
    }
    #carrusel p {
        font-size: 12px;
    }
    #carrusel figcaption {
        padding: 0px;
    }
    #carrusel figure {
        width: 42%;
    }
    #carrusel {width: 100%;height: 350px;}
    h2{
        font-size: 24px;
    }
    footer .pagos, footer .redes {
        gap: 15px 30px;
    }
}


/* Estilos desktop */

@media (min-width:768px){
    footer .pagos, footer .redes {
        gap: 6px 11px;}
    h2{
        font-size: 36px;
    }
    section {
        padding-left: 48px;
        padding-right: 48px;
    }
}


/*INICIO ESTILOS FORMULARIO  MAILCHIMP*/

.mc-field-group.completo {
    width: 100%;
}

#mc_embed_signup_scroll {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.mc-address-fields-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0px 15px;
}
#mc_embed_shell {
    max-width: 800px;
    margin: 0px auto;
    padding: 0px 24px;
}
#mc_embed_signup {
    background: #00000000;
    padding: 20px;
    border-radius: 20px;
    backdrop-filter: blur(3px);
}

.indicates-required {
    font-size: 12px;
    margin-bottom: 10px;
    width: 100%;
    color: white;
}
span.asterisk {
    color: var(--rojoFuerte);
}
.mc-field-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 21px;
    width: calc(50% - 20px);
    padding: 0px 10px;
}

.numeroConLada {
    display: flex;
    gap: 10px;
    align-items: center;
}
#mce-LADA {
    width: 55px;
    pointer-events: none;
    background: #f5f5f5;
}
#mce-PHONE {
    width: -webkit-fill-available;
}
textarea {
    height: 162px;
}
#mc-embedded-subscribe {
    border: 1px solid;
    border-radius: 15px;
    padding: 10px;

    background: var(--amarillo);
    font-weight: 700;
    width: 100%;
    margin: auto;
    display: block;
    border: none;
    cursor: pointer;
}


/*Inicio recaptcha*/
#mc_embed_signup .clear >div {
    display: flex;
    justify-content: center;
}
#mc_embed_signup .clear {
    display: flex;
    flex-flow: column-reverse;
    width: 100%;
}
.grecaptcha-badge {
    left: 0px;
    top: 0px;
    margin-top: 10px;
}
#mc_embed_signup .foot > div, .grecaptcha-badge, #mc_embed_signup .clear {
    position: relative !important;
}
/*Fin recaptcha*/
/*FIN ESTILOS FORMULARIO  MAILCHIMP*/


/*ESTILOS BASE ROUE*/

ul {
    padding: 0px;
}


section.bannerPrincipal {
    width: 100%;
    min-width: 100%;
    margin-top: 0px;
}
section.bannerPrincipal img {
    width: 100%;
}
main {
    max-width: 1920px;
}
section {
    max-width: 1920px;
    margin: 48px auto;
    position: relative;
    display: flex;
}
*{
    line-height: normal;
    margin: 0px;
    transition: 1s ease;
}

h1, h2{
    font-weight: 700;
    color: var(--negroFuerte); /**/
}

@media (min-width:768px){
    h1{
        font-size: 38px;
    }
}
@media (max-width:768px){
    h1{
        font-size: 24px;
    }
}
h2{
    margin-bottom:48px;
    text-align: center;
}

body, p{
    font-size: 22px; /**/
}
body{
    color: var(--negroFuerte);
    position: relative;
    background-color: var(--negro);
}


h1, h2, h3, h4{
    font-weight: 700;
}
li {
    list-style: none;
}
button.btn, a.btn {
    display: block;
    width: fit-content;
    padding: 10px 40px;
    border-radius: 50px;
    background: var(--amarillo);
    color: var(--negroFuerte);
    font-weight: 700;
    text-align: center;
    font-size: 18px;
}



label {
    padding: 0px 10px;
    color: white;
    font-size: 16px;
}

a{
    text-decoration: none;
}
button, a{
    cursor: pointer;
}

input, select, textarea{
    border: var(--negroBajo) 1px solid;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 16px;
}

input:focus, select:focus, textarea:focus {
    background-color: var(--azulAlert2);
    outline: 1px solid var(--azulAlert1);
    color: var(--negroBajo);
}

.CNegro { color: var(--negroFuerte); }
.BGNegro { background-color: var(--negroFuerte); }

.btn.BGNegro { background-color: var(--negroFuerte); color: white;}

.CNegroBajo { color: var(--negroBajo); }
.BGNegroBajo { background-color: var(--negroBajo); }

.CAmarillo { color: var(--amarillo); }
.BGAmarillo { background-color: var(--amarillo); }

.CAmarillo1 { color: var(--amarillo1); }
.BGAmarillo1 { background-color: var(--amarillo1); }

.CAmarillo2 { color: var(--amarillo2); }
.BGAmarillo2 { background-color: var(--amarillo2); }

.CAzulAlert1 { color: var(--azulAlert1); }
.BGAzulAlert1 { background-color: var(--azulAlert1); }

.CAzulAlert2 { color: var(--azulAlert2); }
.BGAzulAlert2 { background-color: var(--azulAlert2); }

.CVerdeFuerte { color: var(--verdeFuerte); }
.BGVerdeFuerte { background-color: var(--verdeFuerte); }

.CVerdeBajo { color: var(--verdeBajo); }
.BGVerdeBajo { background-color: var(--verdeBajo); }

.CAmarilloFuerte { color: var(--amarilloFuerte); }
.BGAmarilloFuerte { background-color: var(--amarilloFuerte); }

.CAmarilloBajo { color: var(--amarilloBajo); }
.BGAmarilloBajo { background-color: var(--amarilloBajo); }

.CNaranjaFuerte { color: var(--naranjaFuerte); }
.BGNaranjaFuerte { background-color: var(--naranjaFuerte); }

.CNaranjaBajo { color: var(--naranjaBajo); }
.BGNaranjaBajo { background-color: var(--naranjaBajo); }

.CRojoFuerte { color: var(--rojoFuerte); }
.BGRojoFuerte { background-color: var(--rojoFuerte); }

.CRojoBajo { color: var(--rojoBajo); }
.BGRojoBajo { background-color: var(--rojoBajo); }

.CGris { color: var(--gris); }
.BGGris { background-color: var(--gris); }

.CGrisMedio { color: var(--grisMedio); }
.BGGrisMedio { background-color: var(--grisMedio); }

.CGrisBajo { color: var(--grisBajo); }
.BGGrisBajo { background-color: var(--grisBajo); }

.BGBlanco { background-color: white; }

.CBlanco{
    color: white;
}

:root{
  --uno: #FFF3D2;
  --dos: #FFE8A3;
  --tres: #FFDC73;
  --cuatro: #FFDC73;
  --cinco: #FFD13F;
  --seis: #FFC600;
  --amarillo:#FFC600;
  --negro:#161615;
  --blanco:#ffffff;
  --amarillo1: #FFD200;
  --amarillo2: #FFE466;
  --negroFuerte: #000000;
  --azulAlert1: #005080;
  --azulAlert2: #e9f4ff;
  --verdeFuerte: #005531;
  --verdeBajo: #c1ffe0;
  --amarilloFuerte: #ffec00;
  --amarilloBajo: #fffad8;
  --naranjaFuerte: #ffba00;
  --naranjaBajo: #fff1e1;
  --rojoFuerte: #f70000;
  --rojoBajo: #ffe8e7;
  --negroBajo: #231F20;
  --gris: #A8A8A9;
  --grisMedio: #e5e5e5;
  --grisBajo: #F5F5F5;
}