:root {
    --bg: #0c0c0d;
    --border: rgba(255, 255, 255, 0.08);
    --text: #f4f4f5;
    --accent: #e4231a;
    --accent-hover: #ff3b32;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.page {
    min-height: 100vh;
}

/* Montserrat en toda la p¨¢gina GS7 (herencia + sustituye Instrument en componentes) */
body.gs7-page {
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body.gs7-page .feature-slider .fs-kicker {
    font-family: "Montserrat", system-ui, sans-serif;
}

body.gs7-page .cotizacion-field input[type="text"],
body.gs7-page .cotizacion-field input[type="email"],
body.gs7-page .cotizacion-field input[type="tel"],
body.gs7-page .cotizacion-field input[type="date"],
body.gs7-page .cotizacion-field select,
body.gs7-page .cotizacion-field textarea,
body.gs7-page .cotizacion-submit-btn {
    font-family: "Montserrat", system-ui, sans-serif;
}

body.gs7-page .heading-xl,
body.gs7-page .heading-lg,
body.gs7-page h1,
body.gs7-page .h1,
body.gs7-page h2,
body.gs7-page .h2,
body.gs7-page h3,
body.gs7-page .h3,
body.gs7-page h4,
body.gs7-page .h4,
body.gs7-page h5,
body.gs7-page .h5,
body.gs7-page h6,
body.gs7-page .h6,
body.gs7-page p,
body.gs7-page label,
body.gs7-page .btn,
body.gs7-page b,
body.gs7-page strong,
body.gs7-page .heading-bold,
body.gs7-page .bold {
    font-family: "Montserrat", system-ui, sans-serif;
}

/* Preventa (gs7.html): Instrument Sans como en la landing original */
body.gs7-page--preventa,
body.gs7-page--preventa .heading-xl,
body.gs7-page--preventa .heading-lg,
body.gs7-page--preventa h1,
body.gs7-page--preventa .h1,
body.gs7-page--preventa h2,
body.gs7-page--preventa .h2,
body.gs7-page--preventa h3,
body.gs7-page--preventa .h3,
body.gs7-page--preventa h4,
body.gs7-page--preventa .h4,
body.gs7-page--preventa h5,
body.gs7-page--preventa .h5,
body.gs7-page--preventa h6,
body.gs7-page--preventa .h6,
body.gs7-page--preventa p,
body.gs7-page--preventa label,
body.gs7-page--preventa .btn,
body.gs7-page--preventa b,
body.gs7-page--preventa strong,
body.gs7-page--preventa .heading-bold,
body.gs7-page--preventa .bold,
body.gs7-page--preventa .cotizacion-field input,
body.gs7-page--preventa .cotizacion-field select,
body.gs7-page--preventa .cotizacion-field textarea,
body.gs7-page--preventa .cotizacion-submit-btn {
    font-family: "Instrument Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Barra flotante inferior (AP?RTALA): --gs7-sticky-inset controla margen al borde */
.gs7-sticky-cta {
    --gs7-sticky-inset: 32px;
    position: fixed;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 8px;
    z-index: 1050;
    width: max-content;
    max-width: calc(100vw - 2 * var(--gs7-sticky-inset));
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(16px, 3vw, 32px);
    padding: 9px 32px 12px 32px;
    background: #000;
    border-radius: 54px;
    border: 1px solid #2a2a2a;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
    color: inherit;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.gs7-sticky-cta.gs7-sticky-cta--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%);
}

.gs7-sticky-cta__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}

.gs7-sticky-cta__eyebrow {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #fafafa;
    line-height: 1.15;
}

.gs7-sticky-cta__wordmark {
    display: block;
    height: 20px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    object-position: left center;
}

.gs7-sticky-cta__link-versions {
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #fafafa;
    text-decoration: none;
    white-space: nowrap;
    padding: 6px 4px;
    border-radius: 4px;
    transition: color 0.2s ease, background 0.2s ease;
}

.gs7-sticky-cta__link-versions:hover {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.gs7-sticky-cta__link-versions:focus-visible {
    outline: 2px solid #fafafa;
    outline-offset: 2px;
}

.gs7-sticky-cta__btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 32px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fafafa;
    text-decoration: none;
    border: 1px solid #fafafa;
    border-radius: 4px;
    background: transparent;
}

.gs7-sticky-cta__btn:focus-visible {
    outline: 2px solid #fafafa;
    outline-offset: 2px;
}

@media (max-width: 1299px) {
    .gs7-sticky-cta {
        --gs7-sticky-inset: 16px;
    }
}

@media (max-width: 480px) {
    .gs7-sticky-cta {
        padding: 8px 12px;
        gap: 0;
        justify-content: space-evenly;
        width: 90%;
    }

    .gs7-sticky-cta__eyebrow {
        font-size: 12px;
    }

    .gs7-sticky-cta__wordmark {
        max-width: 100px;        
    }

    .gs7-sticky-cta__link-versions {
        font-size: 12px;        
        white-space: normal;
        text-align: center;        
        line-height: 1.2;
    }

    .gs7-sticky-cta__btn {
        padding: 8px 12px;
        font-size: 12px;
    }
}

.gs7-main {
    padding-top: 50px;
}

/* Intro preventa GS7 ¡ª titular revelado al scroll */
.gs7-intro-scroll {
    position: relative;
    height: 170vh;
    margin: 0;
}

.gs7-intro-scroll__sticky {
    position: sticky;
    top: 0;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.gs7-intro-scroll__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.gs7-intro-scroll__media-picture {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
}

.gs7-intro-scroll__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
}

.gs7-intro-scroll__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.35) 0%,
            transparent 35%,
            transparent 55%,
            rgba(0, 0, 0, 0.5) 100%);
}

.gs7-intro-scroll__inner {
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-height: inherit;
    padding: calc(30px + 1.5rem) clamp(1.25rem, 4vw, 3rem) 2rem;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}

.gs7-intro-scroll__headline-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: calc(50px + 1.5rem);
    padding-bottom: 2rem;
    padding-left: clamp(1.25rem, 4vw, 3rem);
    padding-right: clamp(1.25rem, 4vw, 3rem);
    box-sizing: border-box;
    pointer-events: none;
}

.gs7-intro-scroll__top {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
}

.gs7-intro-scroll__eyebrow {
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.15;
}

.gs7-intro-scroll__wordmark {
    display: block;
    height: clamp(28px, 6vw, 48px);
    width: auto;
    max-width: min(220px, 55vw);
    object-fit: contain;
    object-position: center center;
    margin: 0 auto;
}

.gs7-intro-scroll__headline {
    position: relative;
    margin: 0;
    width: 100%;
    max-width: 100%;
    padding: 0 clamp(0.75rem, 3vw, 1.5rem);
    box-sizing: border-box;
    font-size: 96px;
    font-weight: 650;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fafafa;
    text-align: center;
    text-shadow: 0 2px 32px rgba(0, 0, 0, 0.55);
    pointer-events: auto;
}

.gs7-intro-scroll__headline-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 0 24px;
    max-width: min(68rem, 100%);
    margin: 0 auto;
}

.gs7-intro-scroll__word {
    --word-reveal: 0;
    display: inline-block;
    opacity: calc(0.06 + var(--word-reveal) * 0.94);
    filter: blur(calc((1 - var(--word-reveal)) * 10px));
    transform: translateY(calc((1 - var(--word-reveal)) * 0.35em));
    will-change: opacity, filter, transform;
}

.gs7-intro-scroll.gs7-intro-scroll--reduced-motion .gs7-intro-scroll__word {
    opacity: 1;
    filter: none;
    transform: none;
}

@media (max-width: 1299px) {
    .gs7-intro-scroll__headline {
        font-size: 64px;
    }
}

@media (max-width: 767px) {
    .gs7-intro-scroll__headline {
        font-size: 52px;
    }
}

/* Hero GS7 PHEV: video + logo + tagline (encima del intro scroll) */
.gs7-phev-banner {
    position: relative;
    isolation: isolate;
    min-height: clamp(20rem, 58vh, 40rem);
    display: flex;
    align-items: stretch;
    justify-content: center;
    margin: 0;
    overflow: hidden;
    background: #000;
}

.gs7-phev-banner__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.gs7-phev-banner__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
}

.gs7-phev-banner__video--mobile {
    display: none;
}

@media (min-width: 768px) {
    .gs7-phev-banner {
        height: 988px;
        min-height: 988px;
    }
}

@media (max-width: 767px) {
    .gs7-phev-banner {
        height: 800px;
        min-height: 800px;
    }

    .gs7-phev-banner__video--desktop {
        display: none;
    }

    .gs7-phev-banner__video--mobile {
        display: block;
    }
}

.gs7-phev-banner__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(0, 0, 0, 0.2) 40%,
            rgba(0, 0, 0, 0.55) 100%);
}

.gs7-phev-banner__inner {
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 18px;
}

.gs7-phev-banner__logo {
    display: block;
    width: 280px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.gs7-phev-banner__tagline {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.01em;
    color: #fafafa;
    text-wrap: balance;
    max-width: 36em;
    text-shadow: 0 1px 24px rgba(0, 0, 0, 0.45);
}

@media (max-width: 767px) {
    .gs7-phev-banner__logo {
        width: 160px;
    }

    .gs7-phev-banner__tagline {
        font-size: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gs7-phev-banner__video {
        display: none !important;
    }

    .gs7-phev-banner__media {
        background: #0a0a0a;
    }
}

/* Bloque featured MRP (no confundir con vitrina preventa .gs7-showcase.gs7-frame-scroll) */
section.gs7-frame-scroll:not(.gs7-showcase) {
    position: relative;
    height: 170vh;
    margin: 0;
}

.gs7-frame-scroll__sticky {
    position: sticky;
    top: 0;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.gs7-frame-scroll__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.gs7-frame-scroll__media-picture {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
}

.gs7-frame-scroll__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
}

.gs7-frame-scroll__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.35) 0%,
            transparent 35%,
            transparent 55%,
            rgba(0, 0, 0, 0.5) 100%);
}

.gs7-frame-scroll__inner {
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: inherit;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: clamp(1.5rem, 4vh, 3rem) clamp(1.25rem, 4vw, 3rem);
}

.gs7-frame-scroll__headline-layer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    pointer-events: none;
}

.gs7-frame-scroll__headline {
    position: relative;
    margin: 0;
    width: 100%;
    max-width: 100%;
    padding: 0 clamp(0.75rem, 3vw, 1.5rem);
    box-sizing: border-box;
    font-size: 72px;
    font-weight: 650;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fafafa;
    text-align: center;
    text-shadow: 0 2px 32px rgba(0, 0, 0, 0.55);
    pointer-events: auto;
}

.gs7-frame-scroll__headline-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.08em;
    max-width: min(76rem, 100%);
    margin: 0 auto;
}

.gs7-frame-scroll__headline-line {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 0 24px;
}

.gs7-frame-scroll__word {
    --word-reveal: 0;
    display: inline-block;
    opacity: calc(0.06 + var(--word-reveal) * 0.94);
    filter: blur(calc((1 - var(--word-reveal)) * 10px));
    transform: translateY(calc((1 - var(--word-reveal)) * 0.35em));
    will-change: opacity, filter, transform;
}

.gs7-frame-scroll.gs7-frame-scroll--reduced-motion .gs7-frame-scroll__word {
    opacity: 1;
    filter: none;
    transform: none;
}

@media (max-width: 1299px) {
    .gs7-frame-scroll__headline {
        font-size: 64px;
    }
}

@media (max-width: 767px) {
    .gs7-frame-scroll__headline {
        font-size: 48px;
        font-weight: 500;
    }
}

/* Rendimiento: fondo seg¨²n texto seleccionado (tabs en la parte inferior) */
.gs7-rendimiento-tabs {
    position: relative;
    isolation: isolate;
    height: 800px;
    min-height: 800px;
    margin: 0;
    overflow: hidden;
    background: #0a0a0a;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .gs7-rendimiento-tabs {
        height: 988px;
        min-height: 988px;
    }
}

.gs7-rendimiento-tabs__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.gs7-rendimiento-tabs__bg-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
}

.gs7-rendimiento-tabs__bg-slide--active {
    opacity: 1;
    z-index: 1;
}

.gs7-rendimiento-tabs__bg-slide picture {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
}

.gs7-rendimiento-tabs__bg-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
}

.gs7-rendimiento-tabs__bg-slide > video.gs7-rendimiento-tabs__bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
}

.gs7-rendimiento-tabs__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.35) 42%,
            rgba(0, 0, 0, 0.12) 100%);
}

@media (max-width: 767px) {
    .gs7-rendimiento-tabs__overlay {
        background: linear-gradient(180deg,
                rgba(0, 0, 0, 0.15) 0%,
                rgba(0, 0, 0, 0.55) 45%,
                rgba(0, 0, 0, 0.82) 100%);
    }
}

.gs7-rendimiento-tabs__inner {
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px;
    min-height: 0;
}

.gs7-exterior-spec-tabs .gs7-rendimiento-tabs__inner {
    justify-content: flex-end;
}

.gs7-tecnologia-tabs .gs7-rendimiento-tabs__inner {
    justify-content: flex-end;
    padding: 0 0 clamp(20px, 3vw, 36px);
    max-width: 1440px;
}

/* Tecnolog¨ªa: fondo negro, imagen centrada (no full-bleed), mismos tabs */
.gs7-rendimiento-tabs.gs7-tecnologia-tabs {
    box-sizing: border-box;
    background: #000;
    padding: clamp(24px, 4vw, 56px) clamp(16px, 3vw, 48px) 0;
    height: 700px;
    min-height: 600px;
}

.gs7-tecnologia-tabs .gs7-rendimiento-tabs__overlay {
    display: none;
}

.gs7-tecnologia-tabs .gs7-rendimiento-tabs__bg-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 0 clamp(8px, 2vw, 24px) clamp(160px, 22vmin, 240px);
}

.gs7-tecnologia-tabs .gs7-rendimiento-tabs__bg-slide picture {
    position: relative;
    inset: auto;
    width: 91%;    
    height: auto;
    max-height: min(50vh, 560px);
    margin: 0 auto;
}

.gs7-tecnologia-tabs .gs7-rendimiento-tabs__bg-slide img {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    max-height: min(50vh, 560px);
    object-fit: contain;
    object-position: center center;
    pointer-events: none;
}

.gs7-tecnologia-tabs .gs7-rendimiento-tabs__bg-slide > video.gs7-rendimiento-tabs__bg-video {
    position: relative;
    inset: auto;
    width: 100%;
    padding: 60px;
    max-width: 1640px;    
    height: auto;    
    object-fit: contain;
    object-position: center center;
    pointer-events: none;
    display: block;
    margin: 0 auto;
    align-self: center;
}

.gs7-tecnologia-tabs
    .gs7-rendimiento-tabs__bg-slide
    > video.gs7-rendimiento-tabs__bg-video--suite-adas {
    position: relative;
    box-sizing: border-box;
    aspect-ratio: 9 / 16;    
    object-fit: contain;
    object-position: center center;
}

.gs7-rendimiento-tabs__intro {
    display: flex;
    flex-direction: column;    
    width: 100%;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
    gap: 12px;
}

.gs7-rendimiento-tabs__eyebrow {
    display: block;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.02em;
    color: #fafafa;
}

.gs7-rendimiento-tabs__title {
    margin: 0;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #fafafa;
    text-wrap: balance;
}

@media (max-width: 767px) {
    
    .gs7-rendimiento-tabs__inner {
        padding: 40px 16px;
    }

    .gs7-rendimiento-tabs__intro {
        align-items: center;
        text-align: center;
        max-width: none;
    }

    .gs7-rendimiento-tabs__eyebrow {
        font-size: 12px;
    }

    .gs7-rendimiento-tabs__title {
        font-size: 28px;
    }
}

.gs7-rendimiento-tabs__list {
    display: flex;    
    align-items: flex-start;
    gap: 32px;
    width: 100%;
    max-width: none;
}

@media (max-width: 767px) {
    .gs7-rendimiento-tabs__list {
        flex-direction: column;
        justify-content: flex-start;
        gap: 1rem;
    }
}

.gs7-rendimiento-tabs__tab {
    margin: 0;
    padding: 1rem 0 0;
    border: 0;
    border-top: 1px solid #71717a;
    background: transparent;
    font-family: inherit;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0.01em;
    text-align: left;
    color: #71717a;
    cursor: pointer;
    transition: color 0.25s ease, border-color 0.25s ease;
    flex: 1 1 0;
    min-width: 0;
}

@media (max-width: 767px) {
    .gs7-rendimiento-tabs__tab {
        flex: none;
        width: 100%;
    }
}

.gs7-rendimiento-tabs__tab:hover {
    color: #a1a1aa;
    border-top-color: #a1a1aa;
}

.gs7-rendimiento-tabs__tab:focus {
    outline: none;
}

.gs7-rendimiento-tabs__tab:focus-visible {
    outline: 2px solid #fafafa;
    outline-offset: 4px;
}

.gs7-rendimiento-tabs__tab--active {
    color: #fafafa;
    border-top-color: #fafafa;
}

.gs7-rendimiento-tabs__tab--active:hover {
    color: #fafafa;
    border-top-color: #fafafa;
}

@media (prefers-reduced-motion: reduce) {

    .gs7-rendimiento-tabs__bg-slide {
        transition: none;
    }

    .gs7-rendimiento-tabs__tab {
        transition: none;
    }
}

@media (max-width: 767px) and (prefers-reduced-motion: reduce) {
    .gs7-rendimiento-tabs__bg {
        scroll-behavior: auto;
    }
}

/* Leyenda por slide: visible solo en m¨®vil (carrusel horizontal) */
.gs7-rendimiento-tabs__slide-caption {
    display: none;
    margin: 0;
    box-sizing: border-box;
}

@media (max-width: 767px) {

    .gs7-rendimiento-tabs {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto minmax(280px, min(72vh, 560px));
        height: auto;
        min-height: 0;
        overflow: visible;
    }

    .gs7-rendimiento-tabs.gs7-tecnologia-tabs {
        height: auto;
        min-height: 0;
        padding: 0;
    }

    .gs7-tecnologia-tabs .gs7-rendimiento-tabs__inner {
        padding: 0;
    }

    .gs7-tecnologia-tabs .gs7-rendimiento-tabs__bg-slide > video.gs7-rendimiento-tabs__bg-video {
        padding: 0;
    }

    .gs7-rendimiento-tabs__bg {
        grid-column: 1;
        grid-row: 2;
        position: relative;
        inset: auto;
        z-index: 0;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: stretch;
        width: 100%;
        height: 100%;
        min-height: 0;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .gs7-rendimiento-tabs__bg::-webkit-scrollbar {
        display: none;
    }

    .gs7-rendimiento-tabs__overlay {
        display: none;
    }

    .gs7-rendimiento-tabs__inner {
        grid-column: 1;
        grid-row: 1;
        position: relative;
        z-index: 1;
        flex: none;
        min-height: 0;
    }

    .gs7-rendimiento-tabs__list {
        display: none !important;
    }

    .gs7-rendimiento-tabs__bg-slide,
    .gs7-rendimiento-tabs__bg-slide.gs7-rendimiento-tabs__bg-slide--active {
        position: relative;
        inset: auto;
        flex: 0 0 90%;
        width: 90%;
        min-width: 90%;
        box-sizing: border-box;
        align-self: stretch;
        min-height: 100%;
        height: auto;
        opacity: 1 !important;
        z-index: auto !important;
        pointer-events: auto;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        transition: none;
    }

    .gs7-rendimiento-tabs__bg-slide picture {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .gs7-rendimiento-tabs__bg-slide img,
    .gs7-rendimiento-tabs__bg-slide > video.gs7-rendimiento-tabs__bg-video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .gs7-rendimiento-tabs__slide-caption {
        display: block;
        position: relative;
        z-index: 2;
        flex: 0 0 auto;
        padding: 14px 16px 18px;
        font-size: 16px;
        font-weight: 500;
        line-height: 1.45;
        letter-spacing: 0.01em;
        text-align: left;
        color: #fafafa;
        background: linear-gradient(180deg,
                transparent 0%,
                rgba(0, 0, 0, 0.55) 35%,
                rgba(0, 0, 0, 0.88) 100%);
    }

    .gs7-tecnologia-tabs .gs7-rendimiento-tabs__bg-slide {
        align-items: stretch;
        justify-content: flex-end;
        padding: 0;
    }

    .gs7-tecnologia-tabs .gs7-rendimiento-tabs__bg-slide picture {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
    }

    .gs7-tecnologia-tabs .gs7-rendimiento-tabs__bg-slide img,
    .gs7-tecnologia-tabs
        .gs7-rendimiento-tabs__bg-slide
        > video.gs7-rendimiento-tabs__bg-video:not(
            .gs7-rendimiento-tabs__bg-video--suite-adas
        ) {
        position: absolute;
        inset: 0;
        width: 100%;
        max-width: none;
        height: 100%;
        margin: 0;
        padding: 0;
        transform: none;
        object-fit: cover;
        object-position: center center;
    }

    /* ADAS: llena el slide (misma l¨®gica que img) para evitar bandas negras laterales */
    .gs7-tecnologia-tabs
        .gs7-rendimiento-tabs__bg-slide
        > video.gs7-rendimiento-tabs__bg-video--suite-adas {
        position: absolute;
        inset: 0;
        width: 100%;
        max-width: none;
        height: 100%;
        margin: 0;
        padding: 0;
        transform: none;
        aspect-ratio: unset;
        object-fit: cover;
        object-position: center center;
    }
}

/* Videos full-bleed entre secciones (mismo archivo m¨®vil / desktop) */
.gs7-fullbleed-video {
    position: relative;
    width: 100%;
    margin: 0;
    background: black;
    overflow: hidden;
    padding: 80px 80px 0;
}

.gs7-fullbleed-video--flush {
    padding: 0;
}

/* Solo banner tecnolog¨ªa y seguridad: padding uniforme 80px (incl. inferior) */
.gs7-fullbleed-video--padding-80 {
    padding: 80px;
}

.gs7-fullbleed-video__frame {
    position: relative;
    display: block;
    width: 100%;
}

/* T¨ªtulo sobre video full-bleed (tipograf¨ªa: .gs7-exterior-banner__title) */
.gs7-fullbleed-video__title-overlay {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
    padding: clamp(16px, 3.5vw, 40px) clamp(16px, 3.5vw, 40px) 0
        clamp(16px, 3.5vw, 40px);
    margin: 0;
    text-align: center;
    pointer-events: none;
}

.gs7-fullbleed-video__media {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
    aspect-ratio: 16 / 9;
    min-height: 200px;
    max-height: min(92vh, 980px);
}

@media (max-width: 767px) {
    .gs7-fullbleed-video {
        padding: 0;
    }

    .gs7-fullbleed-video--flush {
        padding: 0;
    }

    .gs7-fullbleed-video--padding-80 {
        padding: 0;
    }

    .gs7-fullbleed-video__media {
        box-sizing: border-box;
        width: min(100%, calc(800px * 9 / 16));
        height: 800px;
        min-height: 0;
        max-height: 800px;
        aspect-ratio: 9 / 16;
        margin: 0 auto;
        object-fit: cover;
        object-position: center center;
    }
}

/* Carrusel interior GS7: videos en slides */
.gs7-feature-slider .fs-slide .gs7-feature-slider__video {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: center center;
    display: block;
}

@media (max-width: 768px) {
    .gs7-feature-slider .fs-slide .gs7-feature-slider__video {
        height: 550px;
        min-height: 280px;
        aspect-ratio: 16 / 10;
        object-fit: cover;
        object-position: center center;
    }
}

/* Banner dise?o exterior (misma estructura visual que Rendimiento, sin tabs) */
.gs7-exterior-banner {
    position: relative;
    isolation: isolate;
    height: 800px;
    min-height: 800px;
    margin: 0;
    overflow: hidden;
    background: #0a0a0a;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .gs7-exterior-banner {
        height: 988px;
        min-height: 988px;
    }
}

.gs7-exterior-banner__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.gs7-exterior-banner__bg picture {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
}

.gs7-exterior-banner__bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
}

.gs7-exterior-banner__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.35) 42%,
            rgba(0, 0, 0, 0.12) 100%);
}

@media (max-width: 767px) {
    .gs7-exterior-banner__overlay {
        background: linear-gradient(180deg,
                rgba(0, 0, 0, 0.15) 0%,
                rgba(0, 0, 0, 0.55) 45%,
                rgba(0, 0, 0, 0.82) 100%);
    }
}

.gs7-exterior-banner__inner {
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px;
    min-height: 0;
}

.gs7-exterior-banner__intro {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
    gap: 12px;
}

.gs7-exterior-banner__eyebrow {
    display: block;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.02em;
    color: #fafafa;
}

.gs7-exterior-banner__title {
    margin: 0;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #fafafa;
    text-wrap: balance;
}

@media (max-width: 767px) {
    .gs7-exterior-banner__inner {
        padding: 40px 16px;
    }

    .gs7-exterior-banner__eyebrow {
        font-size: 12px;
    }

    .gs7-exterior-banner__title {
        font-size: 28px;
    }
}

/* Galer¨ªa exterior: 3 columnas desktop, carrusel en mobile */

.gs7-exterior-gallery__viewport {
    position: relative;
    overflow: hidden;
    height: 640px;
    min-height: 640px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .gs7-exterior-gallery__viewport {
        overflow: visible;
    }
}

.gs7-exterior-gallery__track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 100%;
    transition: transform 0.45s ease;
    will-change: transform;
}

@media (min-width: 768px) {
    .gs7-exterior-gallery__track {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        height: 100%;
        transform: none !important;
        transition: none;
    }
}

.gs7-exterior-gallery__slide {
    position: relative;
    flex: 0 0 100%;
    min-width: 100%;
    height: 100%;
    min-height: 0;
    margin: 0;
    overflow: hidden;
    background: #111;
}

@media (min-width: 768px) {
    .gs7-exterior-gallery__slide {
        flex: none;
        min-width: 0;
        width: 100%;
        height: 100%;
    }
}

.gs7-exterior-gallery__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.gs7-exterior-gallery__media picture,
.gs7-exterior-gallery__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gs7-exterior-gallery__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    margin: 0;
    padding: 16px;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
    color: #fafafa;
    text-wrap: balance;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(0, 0, 0, 0.55) 40%,
            rgba(0, 0, 0, 0.82) 100%);
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .gs7-exterior-gallery__slide {
        flex: 0 0 90%;
        min-width: 90%;
        width: 90%;
        box-sizing: border-box;
    }

    .gs7-exterior-gallery__viewport {
        touch-action: pan-y pinch-zoom;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gs7-exterior-gallery__track {
        transition: none;
    }
}

/* Vitrina GS7 (secuencia por scroll + carrusel) */
.gs7-showcase.gs7-frame-scroll,
.gs7-showcase.gs7-sequence-scroll {
    --gs7-showcase-frame-h: 220vh;
    --gs7-showcase-carousel-h: 520vh;
    position: relative;
    height: calc(var(--gs7-showcase-frame-h) + var(--gs7-showcase-carousel-h));
    margin: 0;
    background: #000;
}

.gs7-showcase__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    background: #000;
}

.gs7-showcase__layer {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.gs7-showcase__layer--frames {
    z-index: 2;
    opacity: 1;
    visibility: visible;
    /* Opacidad la gobierna el scroll (--gs7-layer-frames-o) para fundir con el carrusel sin retraso */
    transition: visibility 0.35s ease;
}

.gs7-showcase__layer--carousel {
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: flex;
    align-items: center;
    background: #000;
    transition: visibility 0.35s ease;
}

.gs7-showcase--carousel-phase .gs7-showcase__layer--frames {
    z-index: 2;
    opacity: var(--gs7-layer-frames-o, 1);
    visibility: visible;
    pointer-events: none;
}

.gs7-showcase--carousel-phase .gs7-showcase__layer--carousel {
    z-index: 1;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Contenido de frames: llena la capa (el sticky lo hace la vitrina) */
.gs7-showcase__layer--frames .gs7-frame-scroll__sticky,
.gs7-showcase__layer--frames .gs7-sequence-scroll__sticky {
    position: relative;
    min-height: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.gs7-frame-scroll__stage {
    position: absolute;
    inset: 0;
    z-index: 0;
    box-sizing: border-box;
    padding: var(--gs7-frame-pad, 0px);
    background: #000;
}

.gs7-showcase__layer--frames .gs7-frame-scroll__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    will-change: transform;
}

.gs7-showcase--frame-fullbleed .gs7-frame-scroll__frame-wrap {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
}

.gs7-frame-scroll__frame-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-sizing: border-box;
    width: var(--gs7-frame-wrap-w, min(94vw, 1320px));
    height: var(--gs7-frame-wrap-h, min(82vh, 780px));
    max-width: min(94vw, 1320px);
    max-height: min(82vh, 780px);
}

.gs7-showcase.gs7-frame-scroll:not(.gs7-showcase--frame-fullbleed) .gs7-frame-scroll__frame-wrap {
    max-width: none;
    max-height: none;
}

.gs7-frame-scroll__canvas {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}

.gs7-showcase__layer--frames .gs7-frame-scroll__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.2) 0%,
            transparent 30%,
            transparent 70%,
            rgba(0, 0, 0, 0.35) 100%);
}

.gs7-showcase.gs7-frame-scroll.gs7-frame-scroll--loading .gs7-frame-scroll__overlay {
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(0, 0, 0, 0.2) 35%,
            rgba(0, 0, 0, 0.2) 65%,
            rgba(0, 0, 0, 0.55) 100%);
}

.gs7-showcase.gs7-frame-scroll.gs7-frame-scroll--reduced-motion .gs7-frame-scroll__overlay {
    opacity: 0.85;
}

.gs7-frame-scroll__copy {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: clamp(1.25rem, 4vw, 3rem);
    padding-right: clamp(1.25rem, 4vw, 3rem);
    box-sizing: border-box;
    pointer-events: none;
}

.gs7-frame-scroll__line {
    position: absolute;
    left: clamp(1.25rem, 9vw, 9rem);
    right: clamp(1.25rem, 4vw, 3rem);
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: left;
    font-size: 72px;
    font-weight: 650;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #fafafa;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.65);
    opacity: 0;
}

@media (max-width: 767px) {
    .gs7-frame-scroll__line {
        font-size: 60px;
    }
}

.gs7-showcase.gs7-frame-scroll[data-frame-copy="1"] .gs7-frame-scroll__line--1,
.gs7-frame-scroll[data-frame-copy="1"] .gs7-frame-scroll__line--1 {
    opacity: var(--gs7-frame-copy-o);
}

.gs7-showcase.gs7-frame-scroll[data-frame-copy="2"] .gs7-frame-scroll__line--2,
.gs7-frame-scroll[data-frame-copy="2"] .gs7-frame-scroll__line--2 {
    opacity: var(--gs7-frame-copy-o);
}

.gs7-showcase.gs7-frame-scroll[data-frame-copy="3"] .gs7-frame-scroll__line--3,
.gs7-frame-scroll[data-frame-copy="3"] .gs7-frame-scroll__line--3 {
    opacity: var(--gs7-frame-copy-o);
}

.gs7-showcase.gs7-frame-scroll.gs7-frame-scroll--reduced-motion .gs7-frame-scroll__copy,
.gs7-frame-scroll.gs7-frame-scroll--reduced-motion .gs7-frame-scroll__copy {
    --gs7-frame-copy-o: 1;
}

.gs7-showcase.gs7-frame-scroll.gs7-frame-scroll--reduced-motion[data-frame-copy="1"] .gs7-frame-scroll__line--1,
.gs7-frame-scroll.gs7-frame-scroll--reduced-motion[data-frame-copy="1"] .gs7-frame-scroll__line--1 {
    opacity: 1;
}

.gs7-showcase.gs7-frame-scroll.gs7-frame-scroll--reduced-motion .gs7-frame-scroll__line--2,
.gs7-showcase.gs7-frame-scroll.gs7-frame-scroll--reduced-motion .gs7-frame-scroll__line--3,
.gs7-frame-scroll.gs7-frame-scroll--reduced-motion .gs7-frame-scroll__line--2,
.gs7-frame-scroll.gs7-frame-scroll--reduced-motion .gs7-frame-scroll__line--3 {
    opacity: 0;
}

.gs7-frame-scroll.gs7-frame-scroll--loading .gs7-frame-scroll__overlay {
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(0, 0, 0, 0.2) 35%,
            rgba(0, 0, 0, 0.2) 65%,
            rgba(0, 0, 0, 0.55) 100%);
}

.gs7-frame-scroll.gs7-frame-scroll--reduced-motion .gs7-frame-scroll__overlay {
    opacity: 0.85;
}

.gs7-sequence-scroll__stage {
    position: absolute;
    inset: 0;
    z-index: 0;
    box-sizing: border-box;
    padding: var(--gs7-frame-pad, 0px);
    background: #000;
}

.gs7-sequence-scroll__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    will-change: transform;
}

/*
 * Full: mismo flujo flex (100% del media) para no saltar al pasar a zoom.
 * Zoom: JS interpola --gs7-frame-wrap-w/h hasta el tama?o de las cards del carrusel.
 */
.gs7-showcase--frame-fullbleed .gs7-sequence-scroll__frame-wrap {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
}

.gs7-sequence-scroll__frame-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-sizing: border-box;
    width: var(--gs7-frame-wrap-w, min(94vw, 1320px));
    height: var(--gs7-frame-wrap-h, min(82vh, 780px));
    max-width: min(94vw, 1320px);
    max-height: min(82vh, 780px);
}

/* En zoom, JS fija w/h hasta viewport; quitar tope para no recortar vs .media */
.gs7-showcase.gs7-sequence-scroll:not(.gs7-showcase--frame-fullbleed) .gs7-sequence-scroll__frame-wrap {
    max-width: none;
    max-height: none;
}

.gs7-sequence-scroll__canvas {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}

.gs7-sequence-scroll__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.2) 0%,
            transparent 30%,
            transparent 70%,
            rgba(0, 0, 0, 0.35) 100%);
}

.gs7-sequence-scroll.gs7-sequence-scroll--loading .gs7-sequence-scroll__overlay {
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(0, 0, 0, 0.2) 35%,
            rgba(0, 0, 0, 0.2) 65%,
            rgba(0, 0, 0, 0.55) 100%);
}

.gs7-sequence-scroll.gs7-sequence-scroll--reduced-motion .gs7-sequence-scroll__overlay {
    opacity: 0.85;
}

.gs7-carousel__viewport {
    /* Marco negro ligero alrededor de cada diapositiva (viewport ¡Ö pantalla) */
    --gs7-carousel-edge: clamp(10px, 2vw, 18px);
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #000;
    box-sizing: border-box;
}

.gs7-carousel__track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: calc(2 * var(--gs7-carousel-edge));
    padding: 0;
    padding-left: var(--gs7-carousel-pad-left, 0px);
    height: 100%;
    width: max-content;
    will-change: transform;
    backface-visibility: hidden;
    box-sizing: border-box;
}

.gs7-carousel__slide {
    --gs7-carousel-slide-pad-y: 120px;
    --gs7-carousel-slide-pad-x: 120px;
    --gs7-carousel-slide-w: calc(100vw - 2 * var(--gs7-carousel-edge));
    --gs7-carousel-slide-h: calc(100vh - 2 * var(--gs7-carousel-edge));
    flex: 0 0 var(--gs7-carousel-slide-w);
    width: var(--gs7-carousel-slide-w);
    min-width: var(--gs7-carousel-slide-w);
    max-width: var(--gs7-carousel-slide-w);
    height: var(--gs7-carousel-slide-h);
    min-height: var(--gs7-carousel-slide-h);
    max-height: var(--gs7-carousel-slide-h);
    box-sizing: border-box;
    padding: var(--gs7-carousel-slide-pad-y) var(--gs7-carousel-slide-pad-x);
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
}

@supports (height: 100dvh) {

    .gs7-carousel__slide {
        --gs7-carousel-slide-h: calc(100dvh - 2 * var(--gs7-carousel-edge));
    }
}

@media (max-width: 767px) {
    .gs7-carousel__slide {
        --gs7-carousel-slide-pad-y: 80px;
        --gs7-carousel-slide-pad-x: 10px;
    }
}

.gs7-carousel__slide-inner {
    position: relative;
    flex: 1;
    min-height: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

/* ?rea visual a pantalla (menos marco); t¨ªtulo sobre degradado inferior */
.gs7-carousel__slide-visual,
.gs7-carousel__slide-visual--frame {
    position: relative;
    width: 100%;
    flex: 1;
    min-height: 0;
    max-height: 100%;
    border-radius: 0.35rem;
    overflow: hidden;
    background: #141416;    
    flex-shrink: 0;
}

.gs7-carousel__slide > .gs7-carousel__slide-visual--frame {
    flex: 1;
    min-height: 0;
    height: 100%;
}

.gs7-carousel__slide-visual--frame {
    background: #0a0a0a;
}

.gs7-carousel__slide-img {
    display: block;
    object-fit: cover;
    object-position: center center;
}

.gs7-carousel__slide-video {
    display: block;
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
}

/* Medio a pantalla completa detr¨¢s del t¨ªtulo; evita franjas del fondo #141416 */
.gs7-carousel__slide-visual:not(.gs7-carousel__slide-visual--frame) > .gs7-carousel__slide-img,
.gs7-carousel__slide-visual:not(.gs7-carousel__slide-visual--frame) > .gs7-carousel__slide-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}

/*
 * MP4 en 16:9 con bandas negras cinem¨¢ticas dentro del frame: object-fit:cover no las recorta
 * (mismo aspecto que el contenedor). Zoom + origen para comer la banda inferior junto al t¨ªtulo.
 */
.gs7-carousel__slide-visual--letterbox-fill > .gs7-carousel__slide-video {
    transform: scale(1.32);
    transform-origin: 50% 44%;
}

/* Degradado inferior: integra t¨ªtulo con v¨ªdeo/imagen (masters con banda negra o pie claro) */
.gs7-carousel__slide-visual:not(.gs7-carousel__slide-visual--frame)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: min(52%, 22rem);
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.22) 38%,
        rgba(0, 0, 0, 0.72) 100%
    );
}

.gs7-carousel__slide-visual--frame .gs7-carousel__slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gs7-carousel__slide-visual--frame .gs7-carousel__slide-img--last-frame {
    opacity: var(--gs7-last-frame-dup-o, 0);
}

.gs7-carousel__caption {
    position: absolute;
    left: 0;
    bottom: 0;
    right: auto;
    z-index: 2;
    max-width: min(100%, 48rem);
    margin: 0;
    padding: clamp(0.75rem, 2.5vw, 1.25rem) clamp(0.85rem, 2.8vw, 1.35rem);
    box-sizing: border-box;
    text-align: left;
    pointer-events: none;
}

.gs7-carousel__title {
    margin: 0 0 0.35rem;
    font-size: 20px;
    font-weight: 650;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #fafafa;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 0.9);
}

.gs7-carousel__lead {
    margin: 0;
    font-size: 16px;
    color: #e4e4e7;
    line-height: 1.4;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.88), 0 1px 2px rgba(0, 0, 0, 0.9);
}

@media (min-width: 768px) {

    .gs7-carousel__title {
        font-size: 28px;
    }

    .gs7-carousel__lead {
        font-size: 20px;
    }
}

/* Texto sincronizado con el scroll (--gs7-frame-copy-o en la section) */
.gs7-sequence-scroll__copy {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: clamp(1.25rem, 4vw, 3rem);
    padding-right: clamp(1.25rem, 4vw, 3rem);
    box-sizing: border-box;
    pointer-events: none;
}

.gs7-sequence-scroll__line {
    position: absolute;
    left: clamp(1.25rem, 9vw, 9rem);
    right: clamp(1.25rem, 4vw, 3rem);
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: left;
    font-size: 72px;
    font-weight: 650;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #fafafa;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.65);
    opacity: 0;
}

@media (max-width: 767px) {
    .gs7-sequence-scroll__line {
        font-size: 60px;
    }
}

.gs7-sequence-scroll[data-frame-copy="1"] .gs7-sequence-scroll__line--1 {
    opacity: var(--gs7-frame-copy-o);
}

.gs7-sequence-scroll[data-frame-copy="2"] .gs7-sequence-scroll__line--2 {
    opacity: var(--gs7-frame-copy-o);
}

.gs7-sequence-scroll[data-frame-copy="3"] .gs7-sequence-scroll__line--3 {
    opacity: var(--gs7-frame-copy-o);
}

.gs7-sequence-scroll.gs7-sequence-scroll--reduced-motion .gs7-sequence-scroll__copy {
    --gs7-frame-copy-o: 1;
}

.gs7-sequence-scroll.gs7-sequence-scroll--reduced-motion[data-frame-copy="1"] .gs7-sequence-scroll__line--1 {
    opacity: 1;
}

.gs7-sequence-scroll.gs7-sequence-scroll--reduced-motion .gs7-sequence-scroll__line--2,
.gs7-sequence-scroll.gs7-sequence-scroll--reduced-motion .gs7-sequence-scroll__line--3 {
    opacity: 0;
}

/* Cintillo de especificaciones: 4 cols ¡Ý1300px, 2 cols <1300px (incl. m¨®vil) */
.gs7-spec-ribbon {
    background: #000;
    padding: 64px 32px;
}

.gs7-spec-ribbon__inner {        
    display: flex;    
    justify-content: space-around;
}

.gs7-spec-ribbon__item {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    text-align: left;
    padding: 0;
    box-sizing: border-box;
}

.gs7-spec-ribbon__block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    width: 100%;
    max-width: none;
}

.gs7-spec-ribbon__eyebrow {
    margin: 0;
    width: 100%;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.25;
    color: #fafafa;
    letter-spacing: 0.02em;
    text-align: left;
}

.gs7-spec-ribbon__stat-line {
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0 0.12em;
}

.gs7-spec-ribbon__note {
    margin: 0;
    width: 100%;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.35;
    color: #fafafa;
    letter-spacing: 0.01em;
    text-align: left;
}

@media (max-width: 1299px) {
    .gs7-spec-ribbon__inner {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));        
    }

    .gs7-spec-ribbon__eyebrow,
    .gs7-spec-ribbon__note {
        text-align: center;
    }

    .gs7-spec-ribbon__stat-line {
        justify-content: center;
    }
}

.gs7-spec-ribbon__num {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    color: #ffffff;
    font-variant-numeric: tabular-nums;
}

.gs7-spec-ribbon__unit {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-left: 0.06em;
}

@media (max-width: 767px) {
    .gs7-spec-ribbon__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: clamp(1.25rem, 4vw, 2rem);
        column-gap: clamp(0.75rem, 3vw, 1.25rem);
    }

    .gs7-spec-ribbon__item {
        min-width: 0;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .gs7-spec-ribbon__block {
        align-items: center;
        max-width: 100%;
    }

    .gs7-spec-ribbon__eyebrow,
    .gs7-spec-ribbon__note {
        text-align: center;
        font-size: 16px;
    }

    .gs7-spec-ribbon__stat-line {
        justify-content: center;
        max-width: 100%;
        flex-wrap: wrap;
    }

    .gs7-spec-ribbon__num,
    .gs7-spec-ribbon__unit {
        font-size: 28px;
        font-weight: 700;
        color: #ffffff;
    }
}

/* Cuatro columnas estrechas: evitar que n¨²mero+unidad desborden y se encimen con la celda vecina */
@media (min-width: 1300px) {
    .gs7-spec-ribbon__item {
        min-width: 0;
    }

    .gs7-spec-ribbon__block {
        min-width: 0;
        max-width: 100%;
    }

    .gs7-spec-ribbon__stat-line {
        max-width: 100%;
        flex-wrap: wrap;
    }
}

/* Feature slider (patr¨®n index / home__model-bar) ¡ª GS7 PHEV */
.feature-slider--sync-copy .fs-copy-panel {
    display: none;
}

.feature-slider--sync-copy .fs-copy-panel.is-active {
    display: block;
}

/* Texto a la izquierda centrado en altura frente al viewport + nav (evita margin-top global de model-bar) */
.gs7-feature-slider .container-fs-copy {
    margin-top: 0;
    max-height: none;
}

@media (min-width: 992px) {
    .gs7-feature-slider .fs-inner > .row {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .gs7-feature-slider .fs-inner > .row::before,
    .gs7-feature-slider .fs-inner > .row::after {
        display: none;
        content: none;
    }
}

/* Selector de color GS7 */
.gs7-color-picker {
    background: linear-gradient(180deg,
            #ffffff 0%,
            #f5f5f5 35%,
            #e8e8e8 68%,
            #c8c8c8 100%);
    margin: 0;
    padding: 60px 16px;
    box-sizing: border-box;    
    display: flex;
    flex-direction: column;
}

.gs7-color-picker__inner {
    max-width: min(1100px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    flex: 1;
    min-height: 0;
    width: 100%;
}

.gs7-color-picker__header {
    text-align: center;    
}

.gs7-color-picker__title {
    margin: 0 0 0.5rem;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #0a0a0a;
}

.gs7-color-picker__subtitle {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.45;
    color: #27272a;
}

.gs7-color-picker__stage {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(12rem, 38vw, 22rem);
}

.gs7-color-picker__car {
    display: block;
    width: min(100%, 920px);
    height: 512px;
    max-height: min(52vh, 480px);
    object-fit: contain;
    object-position: center bottom;
}

@media (min-width: 768px) {
    .gs7-color-picker__stage {
        flex: 1 1 auto;
        min-height: 0;
    }

    .gs7-color-picker__car {
        max-height: 100%;
    }
}

@media (max-width: 767px) {
    .gs7-color-picker {
        height: 800px;
        min-height: 800px;
    }

    .gs7-color-picker__inner {
        justify-content: center;
        gap: clamp(1rem, 3vw, 1.5rem);
    }

    .gs7-color-picker__stage {
        min-height: 0;
        flex: 0 1 auto;
    }

    .gs7-color-picker__car {
        max-height: min(38vh, 260px);
    }

    .gs7-color-picker__title {
        font-size: 28px;
    }

    .gs7-color-picker__subtitle {
        font-size: 18px;
    }
}

.gs7-color-picker__controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.gs7-color-picker__swatches {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: clamp(0.75rem, 3vw, 1.25rem);
}

.gs7-color-picker__swatch {
    box-sizing: border-box;
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    min-height: 3rem;
    padding: 0;
    border: 2px solid rgba(10, 10, 10, 0.12);
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
    transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.gs7-color-picker__swatch:hover {
    transform: scale(1.06);
}

.gs7-color-picker__swatch:focus {
    outline: none;
}

.gs7-color-picker__swatch:focus-visible {
    box-shadow: 0 0 0 3px #fafafa, 0 0 0 5px #0a0a0a;
}

.gs7-color-picker__swatch--magnolia {
    background: linear-gradient(180deg, #ffffff 0%, #dfdfdf 50%);
}

.gs7-color-picker__swatch--titanio {
    background: linear-gradient(180deg, #c7c7c7 0%, #aeaeae 50%);
}

.gs7-color-picker__swatch--obsidiana {
    background: linear-gradient(180deg, #a3a3a3 0%, #393939 50%);
}

.gs7-color-picker__swatch--imperial {
    background: linear-gradient(180deg, #afb5a7 0%, #798070 50%);
}

.gs7-color-picker__swatch--active {
    box-shadow: 0 0 0 2px #0a0a0a, 0 0 0 4px #fafafa;
    border-color: rgba(10, 10, 10, 0.35);
}

.gs7-color-picker__name {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    color: #0a0a0a;
    min-height: 1.3em;
}

@media (prefers-reduced-motion: reduce) {
    .gs7-color-picker__swatch {
        transition: none;
    }

    .gs7-color-picker__swatch:hover {
        transform: none;
    }
}

/* Banner preventa ¡ª alineado a secci¨®n tipo min-h-screen + capas imagen / overlay / flex justify-between */
.gs7-presale-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: 1080px;
    overflow: hidden;
}

.gs7-presale-hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.gs7-presale-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gs7-presale-hero__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.12) 42%,
            rgba(0, 0, 0, 0.12) 58%,
            rgba(0, 0, 0, 0.62) 100%);
}

.gs7-presale-hero__content {
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 7rem 2rem;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .gs7-presale-hero__content {
        padding: 8rem 4rem;
    }
}

@media (min-width: 1024px) {
    .gs7-presale-hero__content {
        padding: 8rem 6rem;
    }
}

.gs7-presale-hero__title-wrap {
    max-width: 600px;
    width: 100%;
}

.gs7-presale-hero__lead-wrap {
    max-width: 960px;
    width: 100%;
}

.gs7-presale-hero__title {
    margin: 0;
    font-size: 40px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.02em;
    color: #fafafa;
    text-align: left;
    text-shadow: 0 1px 24px rgba(0, 0, 0, 0.65);
}

.gs7-presale-hero__lead {
    margin: 0;
    font-size: 36px;
    font-weight: 500;
    line-height: normal;
    color: #fafafa;
    text-align: left;
    text-shadow: 0 1px 20px rgba(0, 0, 0, 0.7);
}

@media (max-width: 767px) {
    .gs7-presale-hero__lead {
        font-size: 28px;
    }
}

@media (min-width: 768px) {
    .gs7-presale-hero__title {
        font-size: 48px;
    }
}

@media (min-width: 1024px) {
    .gs7-presale-hero__title {
        font-size: 56px;
    }
}

.gs7-closing-banner {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    line-height: 0;
}

.gs7-closing-banner__picture {
    display: block;
    width: 100%;
}

.gs7-closing-banner__img {
    display: block;
    width: 100%;
    height: auto;
}

/* Precio esquina inferior izquierda (jerarqu¨ªa tipo hero banner GS7) */
.gs7-closing-banner__price {
    position: absolute;
    left: clamp(1.25rem, 5vw, 3.5rem);
    bottom: clamp(1.25rem, 6vw, 3rem);
    color: #DDAE8C;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    margin: 0;
    max-width: calc(100% - 2.5rem);
    box-sizing: border-box;
    font-family: "Montserrat", system-ui, sans-serif;
    pointer-events: none;
    text-align: left;
}

.gs7-closing-banner__price-eyebrow {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.16em;
    text-transform: uppercase;    
    text-shadow: 0 1px 20px rgba(0, 0, 0, 0.4);
    width: 100%;
    text-align: center;    
}

.gs7-closing-banner__price-main {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.55rem;
    margin: 0;
    line-height: 1;
}

.gs7-closing-banner__price-amount {
    font-size: 44px;
    font-weight: 700;    
    color: #fafafa;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}

.gs7-closing-banner__price-currency {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fafafa;
    text-shadow: 0 1px 18px rgba(0, 0, 0, 0.35);
}

@media (max-width: 767px) {

    /* Centrado horizontal sobre la imagen; sigue en la parte baja para legibilidad */
    .gs7-closing-banner__price {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        align-items: center;
        text-align: center;
    }

    .gs7-closing-banner__price-main {
        flex-wrap: nowrap;
        justify-content: center;
    }
}

/* Formulario #aparta / #cotiza: tema oscuro (anula cotizacion.css solo en estas secciones) */
#aparta.top-space-100,
#cotiza.top-space-100 {
    background-color: #0e0e0e;
    color: #fafafa;
    color-scheme: dark only;
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition:
        opacity 2.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 2.75s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

#aparta.top-space-100.gs7-aparta--in-view,
#cotiza.top-space-100.gs7-aparta--in-view {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
    #aparta.top-space-100,
    #cotiza.top-space-100 {
        opacity: 1;
        transform: none;
        transition: none;
        will-change: auto;
    }
}

#aparta.top-space-100 .cotizacion-page,
#cotiza.top-space-100 .cotizacion-page {
    min-height: 0;
    padding-bottom: 60px;
    color-scheme: dark only;
}

#aparta.top-space-100 .cotizacion-page > .container,
#cotiza.top-space-100 .cotizacion-page > .container {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    background-color: transparent;
    color: inherit;
}

#aparta.top-space-100 .cotizacion-form-wrapper,
#cotiza.top-space-100 .cotizacion-form-wrapper {
    max-width: 840px;
    margin: 0 auto;
    padding: 0 25px;
    color: #fafafa;
}

#aparta.top-space-100 .cotizacion-header,
#cotiza.top-space-100 .cotizacion-header {
    margin-bottom: 24px;
}

#aparta.top-space-100 .cotizacion-main-title,
#cotiza.top-space-100 .cotizacion-main-title {
    color: #fafafa;
}

#aparta.top-space-100 .cotizacion-subtitle,
#cotiza.top-space-100 .cotizacion-subtitle {
    color: #fafafa;
    opacity: 0.88;
}

#aparta.top-space-100 .cotizacion-section-title,
#cotiza.top-space-100 .cotizacion-section-title {
    color: #fafafa;
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

#aparta.top-space-100 .cotizacion-field > label:not(.checkbox-label),
#cotiza.top-space-100 .cotizacion-field > label:not(.checkbox-label) {
    color: #fafafa;
}

#aparta.top-space-100 .cotizacion-field > label .required,
#cotiza.top-space-100 .cotizacion-field > label .required {
    color: var(--accent);
}

#aparta.top-space-100 .cotizacion-field input[type="text"],
#aparta.top-space-100 .cotizacion-field input[type="email"],
#aparta.top-space-100 .cotizacion-field input[type="tel"],
#aparta.top-space-100 .cotizacion-field input[type="date"],
#aparta.top-space-100 .cotizacion-field textarea,
#cotiza.top-space-100 .cotizacion-field input[type="text"],
#cotiza.top-space-100 .cotizacion-field input[type="email"],
#cotiza.top-space-100 .cotizacion-field input[type="tel"],
#cotiza.top-space-100 .cotizacion-field input[type="date"],
#cotiza.top-space-100 .cotizacion-field textarea {
    color: #fafafa;
    background-color: transparent;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #ffffff;
    padding: 8px 0;
    min-height: 44px;
    height: auto;
    box-sizing: border-box;
}

#aparta.top-space-100 .cotizacion-field textarea,
#cotiza.top-space-100 .cotizacion-field textarea {
    min-height: 100px;
    resize: vertical;
    line-height: 1.45;
}

#aparta.top-space-100 .cotizacion-field input::placeholder,
#aparta.top-space-100 .cotizacion-field textarea::placeholder,
#cotiza.top-space-100 .cotizacion-field input::placeholder,
#cotiza.top-space-100 .cotizacion-field textarea::placeholder {
    color: #a1a1aa;
}

#aparta.top-space-100 .cotizacion-field select,
#cotiza.top-space-100 .cotizacion-field select {
    color: #fafafa;
    color-scheme: dark only;
    background-color: #0e0e0e;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #ffffff;
    padding: 8px 2rem 8px 0;
    min-height: 44px;
    height: auto;
    box-sizing: border-box;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
}

/* Lista nativa del select: fondo negro y texto blanco (Chrome/Edge en Windows respetan color-scheme). */
#aparta.top-space-100 .cotizacion-field select option,
#cotiza.top-space-100 .cotizacion-field select option {
    background-color: #0e0e0e !important;
    color: #fafafa !important;
}

#aparta.top-space-100 .cotizacion-field select option:hover,
#aparta.top-space-100 .cotizacion-field select option:focus,
#cotiza.top-space-100 .cotizacion-field select option:hover,
#cotiza.top-space-100 .cotizacion-field select option:focus {
    background-color: #3f3f46 !important;
    color: #ffffff !important;
}

#aparta.top-space-100 .cotizacion-field select option:checked,
#cotiza.top-space-100 .cotizacion-field select option:checked {
    background-color: #52525b !important;
    color: #ffffff !important;
}

#aparta.top-space-100 .cotizacion-field select option:disabled,
#cotiza.top-space-100 .cotizacion-field select option:disabled {
    color: #71717a !important;
    background-color: #0e0e0e !important;
}

#aparta.top-space-100 .cotizacion-field select:disabled,
#cotiza.top-space-100 .cotizacion-field select:disabled {
    color: #71717a;
    background-color: #0e0e0e;
    border-bottom-color: rgba(255, 255, 255, 0.35);
    opacity: 1;
    cursor: not-allowed;
}

#aparta.top-space-100 .cotizacion-field.has-error input,
#aparta.top-space-100 .cotizacion-field.has-error select,
#aparta.top-space-100 .cotizacion-field.has-error textarea,
#cotiza.top-space-100 .cotizacion-field.has-error input,
#cotiza.top-space-100 .cotizacion-field.has-error select,
#cotiza.top-space-100 .cotizacion-field.has-error textarea {
    border-bottom-color: #c62828;
}

#aparta.top-space-100 .field-error,
#cotiza.top-space-100 .field-error {
    color: #f87171;
}

#aparta.top-space-100 .checkbox-text,
#cotiza.top-space-100 .checkbox-text {
    color: #b0b0b0;
}

#aparta.top-space-100 .checkbox-text a,
#cotiza.top-space-100 .checkbox-text a {
    color: #e4e4e7;
    text-decoration: underline;
    text-underline-offset: 2px;
}

#aparta.top-space-100 .checkbox-custom,
#cotiza.top-space-100 .checkbox-custom {
    border-color: #404040;
    background: #1a1a1a;
}

#aparta.top-space-100 .checkbox-label input[type="checkbox"]:checked + .checkbox-custom,
#cotiza.top-space-100 .checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: #fafafa;
    border-color: #fafafa;
}

#aparta.top-space-100 .checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after,
#cotiza.top-space-100 .checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    border-color: #0e0e0e;
}

#aparta.top-space-100 .cotizacion-submit-btn,
#cotiza.top-space-100 .cotizacion-submit-btn {
    width: 100%;
    color: #0e0e0e;
    background: #fff;
    border: none;
    border-radius: 4px;
}

#aparta.top-space-100 .cotizacion-submit-btn:hover,
#cotiza.top-space-100 .cotizacion-submit-btn:hover {
    background: #f4f4f5;
    color: #0e0e0e;
}

#aparta.top-space-100 .cotizacion-general-error,
#cotiza.top-space-100 .cotizacion-general-error {
    color: #fca5a5;
    background: rgba(198, 40, 40, 0.15);
    border: 1px solid rgba(198, 40, 40, 0.4);
}

#aparta.top-space-100 #thankYouView,
#cotiza.top-space-100 #thankYouView {
    scroll-margin-top: 88px;
}

#aparta.top-space-100 #thankYouView .thank-you-actions .thank-you-btn.btn-primary,
#cotiza.top-space-100 #thankYouView .thank-you-actions .thank-you-btn.btn-primary {
    background-color: #fafafa;
    color: #0e0e0e;
}

#aparta.top-space-100 #thankYouView .thank-you-actions .thank-you-btn.btn-primary:hover,
#aparta.top-space-100 #thankYouView .thank-you-actions .thank-you-btn.btn-primary:focus,
#aparta.top-space-100 #thankYouView .thank-you-actions .thank-you-btn.btn-primary:active,
#cotiza.top-space-100 #thankYouView .thank-you-actions .thank-you-btn.btn-primary:hover,
#cotiza.top-space-100 #thankYouView .thank-you-actions .thank-you-btn.btn-primary:focus,
#cotiza.top-space-100 #thankYouView .thank-you-actions .thank-you-btn.btn-primary:active {
    background-color: #fff;
    color: #0e0e0e;
}

#aparta.top-space-100 #thankYouView .thank-you-actions .thank-you-btn.btn-secondaryWhite,
#cotiza.top-space-100 #thankYouView .thank-you-actions .thank-you-btn.btn-secondaryWhite {
    color: #fafafa;
    background-color: transparent;
    border-color: #fafafa;
}

#aparta.top-space-100 #thankYouView .thank-you-actions .thank-you-btn.btn-secondaryWhite:hover,
#aparta.top-space-100 #thankYouView .thank-you-actions .thank-you-btn.btn-secondaryWhite:focus,
#aparta.top-space-100 #thankYouView .thank-you-actions .thank-you-btn.btn-secondaryWhite:active,
#cotiza.top-space-100 #thankYouView .thank-you-actions .thank-you-btn.btn-secondaryWhite:hover,
#cotiza.top-space-100 #thankYouView .thank-you-actions .thank-you-btn.btn-secondaryWhite:focus,
#cotiza.top-space-100 #thankYouView .thank-you-actions .thank-you-btn.btn-secondaryWhite:active {
    background-color: #fafafa;
    color: #0e0e0e;
    border-color: #fafafa;
}

/* Versiones y precios (GS7 PHEV) */
#gs7-versiones-precios {
    scroll-margin-top: 88px;
}

.gs7-versions-pricing {
    box-sizing: border-box;
    padding: 60px 16px;
    background: #fafafa;
    color: #0a0a0a;
}

.gs7-versions-pricing__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.gs7-versions-pricing__header {
    text-align: center;
    margin-bottom: clamp(28px, 4vw, 40px);
}

.gs7-versions-pricing__title {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #0a0a0a;
}

.gs7-versions-pricing__subtitle {
    display: block;
    margin: 0 auto;
    max-width: 36em;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 500;
    line-height: 1.45;
    color: #3f3f46;
}

.gs7-versions-pricing__viewport {
    overflow: hidden;
}

.gs7-versions-pricing__track {
    display: grid;
    grid-template-columns: auto auto;
    align-items: start;
    justify-content: center;
    gap: 30px;
    transition: transform 0.45s ease;
    will-change: transform;
}

.gs7-versions-pricing__card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

.gs7-versions-pricing__media {
    margin: 0;
    padding: 0;
    background: transparent;
    line-height: 0;
    display: flex;
    justify-content: center;
}

.gs7-versions-pricing__media img {
    display: block;
    width: 320px;
    max-width: 100%;
    height: 214px;
    object-fit: cover;
    object-position: center center;
}

.gs7-versions-pricing__body {
    padding: clamp(16px, 2.5vw, 24px) 0 0;
    display: flex;
    flex-direction: column;
    flex: 0 1 auto;
    text-align: center;
}

.gs7-versions-pricing__name {
    margin: 0 0 8px;
    font-size: clamp(20px, 2.2vw, 24px);
    font-weight: 600;
    line-height: 1.2;
    color: #0a0a0a;
}

.gs7-versions-pricing__motor {
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.4;
    color: #52525b;
}

.gs7-versions-pricing__price {
    margin: 0 0 8px;
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #0a0a0a;
}

.gs7-versions-pricing__details {
    margin-top: 1rem;
}

.gs7-versions-pricing__summary {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    background: #f5f5f5;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    color: #0a0a0a;
    cursor: pointer;
    list-style: none;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.gs7-versions-pricing__summary-text--less {
    display: none;
}

.gs7-versions-pricing__details[open] .gs7-versions-pricing__summary-text--more {
    display: none;
}

.gs7-versions-pricing__details[open] .gs7-versions-pricing__summary-text--less {
    display: inline;
}

.gs7-versions-pricing__summary::-webkit-details-marker {
    display: none;
}

.gs7-versions-pricing__summary::marker {
    content: "";
}

.gs7-versions-pricing__details[open] .gs7-versions-pricing__summary {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.gs7-versions-pricing__summary:hover {
    background: #ebebeb;
    color: #0a0a0a;
}

.gs7-versions-pricing__summary:focus {
    outline: none;
}

.gs7-versions-pricing__summary:focus-visible {
    outline: 2px solid #0a0a0a;
    outline-offset: 2px;
}

.gs7-versions-pricing__list {
    margin: 0;
    padding: 16px 18px 18px 18px;
    border: none;
    border-radius: 0 0 6px 6px;
    background: #fff;
    list-style: disc;
    list-style-position: inside;
    text-align: left;
}

.gs7-versions-pricing__list li {
    margin: 0 0 10px;
    padding-left: 0;
    font-size: 14px;
    line-height: 1.45;
    color: #27272a;
    text-align: left;
}

.gs7-versions-pricing__list li:last-child {
    margin-bottom: 0;
}

.gs7-versions-pricing__nav {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.gs7-versions-pricing__ft-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin: clamp(20px, 3vw, 28px) 0 0;
    width: 100%;
}

.gs7-versions-pricing__ft-wrap {
    margin: 0;
    text-align: left;
    flex: 0 0 auto;
}

.gs7-versions-pricing__legal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-sizing: border-box;
    margin-left: 0;
    padding: 12px 18px;
    border: 1px solid #0a0a0a;
    border-radius: 6px;
    background: transparent;
    color: #0a0a0a;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.gs7-versions-pricing__legal-btn .fa {
    font-size: 18px;
    line-height: 1;
    opacity: 0.9;
}

.gs7-versions-pricing__legal-btn:focus-visible {
    outline: 2px solid #0a0a0a;
    outline-offset: 3px;
}

.gs7-versions-pricing__ft-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-width: min(100%, 280px);
    padding: 14px 24px;
    border: none;
    border-radius: 6px;
    background: #000;
    color: #fafafa;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.25;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.gs7-versions-pricing__ft-btn:hover {
    background: #18181b;
    color: #fff;
    text-decoration: none;
}

.gs7-versions-pricing__ft-btn:focus-visible {
    outline: 2px solid #0a0a0a;
    outline-offset: 3px;
}

.gs7-versions-pricing__arrow {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: #0a0a0a;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    opacity: 0.75;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.gs7-versions-pricing__arrow:hover {
    background: transparent;
    opacity: 1;
    transform: scale(1.06);
}

.gs7-versions-pricing__arrow:focus-visible {
    outline: 2px solid #0a0a0a;
    outline-offset: 2px;
}

.gs7-versions-pricing__dots {
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
    align-items: center;
    gap: 8px;
    min-height: 12px;
}

.gs7-versions-pricing__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(10, 10, 10, 0.25);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}

.gs7-versions-pricing__dot.is-active {
    width: 28px;
    background: #0a0a0a;
    opacity: 1;
}

@media (max-width: 767px) {
    .gs7-versions-pricing__track {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
    }

    .gs7-versions-pricing__card {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
    }

    .gs7-versions-pricing__nav {
        display: flex;
    }

    .gs7-versions-pricing__ft-row {
        flex-direction: column;
        align-items: stretch;
        margin-top: clamp(16px, 3vw, 24px);
        gap: 12px;
    }

    .gs7-versions-pricing__legal-btn {
        margin-left: 0;
        width: 100%;
        order: 2;
    }

    .gs7-versions-pricing__ft-wrap {
        order: 1;
        margin-top: 0;
        text-align: center;
        width: 100%;
        align-self: stretch;
    }

    .gs7-versions-pricing__ft-btn {
        width: 100%;
        min-width: 0;
        max-width: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gs7-versions-pricing__track {
        transition: none;
    }

    .gs7-versions-pricing__dot {
        transition: none;
    }
}

/* Modal t¨¦rminos legales (GS7 versiones) */
.gs7-legal-modal {
    position: fixed;
    inset: 0;
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    box-sizing: border-box;
}

.gs7-legal-modal[hidden] {
    display: none !important;
}

.gs7-legal-modal__scrim {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.gs7-legal-modal__dialog {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 900px;
    max-height: min(90vh, 640px);
    margin: 0;
    padding: clamp(20px, 4vw, 28px);
    padding-top: clamp(44px, 6vw, 52px);
    box-sizing: border-box;
    background: #fafafa;
    color: #0a0a0a;
    border-radius: 10px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.gs7-legal-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #0a0a0a;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.gs7-legal-modal__close:hover {
    background: rgba(0, 0, 0, 0.06);
}

.gs7-legal-modal__close:focus-visible {
    outline: 2px solid #0a0a0a;
    outline-offset: 2px;
}

.gs7-legal-modal__body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding-right: 4px;
}

.gs7-legal-modal__title {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
    color: #0a0a0a;
}

.gs7-legal-modal__list {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 15px;
    line-height: 1.55;
    color: #3f3f46;
}

.gs7-legal-modal__list li {
    margin: 0;
    padding: 0;
}

.gs7-legal-modal__list li + li {
    margin-top: 0.9em;
}

.gs7-legal-modal__footer {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    padding-top: clamp(20px, 3vw, 28px);
    margin-top: auto;
}

.gs7-legal-modal__accept {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 12px 32px;
    border: none;
    border-radius: 6px;
    background: #000;
    color: #fafafa;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.25;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.gs7-legal-modal__accept:hover {
    background: #18181b;
    color: #fff;
}

.gs7-legal-modal__accept:focus-visible {
    outline: 2px solid #0a0a0a;
    outline-offset: 3px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   Preventa GS7 (gs7.html): cintillo con grid, fade-in y conteo ¡ª no afecta MRP
   ========================================================================== */
body.gs7-page--preventa .gs7-spec-ribbon {
    padding: 150px 0;
}

body.gs7-page--preventa .gs7-spec-ribbon__inner {
    max-width: min(1200px, calc(100% - 2rem));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: clamp(1rem, 3vw, 2.5rem);
    row-gap: 0;
    align-items: stretch;
    padding: 0 clamp(1rem, 5vw, 100px);
    box-sizing: border-box;
    justify-content: unset;
}

body.gs7-page--preventa .gs7-spec-ribbon__block {
    opacity: 0;
    transform: translate3d(0, 0.75rem, 0);
    transition:
        opacity 1.55s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

body.gs7-page--preventa .gs7-spec-ribbon--revealed .gs7-spec-ribbon__item:nth-child(1) .gs7-spec-ribbon__block {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 0.05s;
}

body.gs7-page--preventa .gs7-spec-ribbon--revealed .gs7-spec-ribbon__item:nth-child(2) .gs7-spec-ribbon__block {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 0.12s;
}

body.gs7-page--preventa .gs7-spec-ribbon--revealed .gs7-spec-ribbon__item:nth-child(3) .gs7-spec-ribbon__block {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 0.19s;
}

body.gs7-page--preventa .gs7-spec-ribbon--revealed .gs7-spec-ribbon__item:nth-child(4) .gs7-spec-ribbon__block {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 0.26s;
}

@media (prefers-reduced-motion: reduce) {
    body.gs7-page--preventa .gs7-spec-ribbon__block {
        opacity: 1;
        transform: none;
        transition: none;
        will-change: auto;
    }
}

@media (max-width: 1299px) {
    body.gs7-page--preventa .gs7-spec-ribbon__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: clamp(1.5rem, 4vw, 2.5rem);
        column-gap: clamp(1rem, 4vw, 2rem);
    }

    body.gs7-page--preventa .gs7-spec-ribbon__item {
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    body.gs7-page--preventa .gs7-spec-ribbon__block {
        align-items: center;
    }

    body.gs7-page--preventa .gs7-spec-ribbon__eyebrow,
    body.gs7-page--preventa .gs7-spec-ribbon__note {
        font-size: 20px;
        text-align: center;
    }

    body.gs7-page--preventa .gs7-spec-ribbon__stat-line {
        justify-content: center;
    }

    body.gs7-page--preventa .gs7-spec-ribbon__num {
        font-size: clamp(2.25rem, 12vw, 72px);
        font-weight: 650;
        letter-spacing: 2px;
        color: #fafafa;
    }

    body.gs7-page--preventa .gs7-spec-ribbon__unit {
        font-size: clamp(1.25rem, 5vw, 64px);
        font-weight: 600;
        color: #a1a1aa;
    }
}

@media (max-width: 767px) {
    body.gs7-page--preventa .gs7-spec-ribbon__inner {
        grid-template-columns: 1fr;
        row-gap: clamp(1.75rem, 5vw, 2.5rem);
        column-gap: 0;
    }
}

@media (min-width: 1300px) {
    body.gs7-page--preventa .gs7-spec-ribbon__num {
        font-size: clamp(2rem, 3.2vw, 52px);
        letter-spacing: 0.02em;
    }

    body.gs7-page--preventa .gs7-spec-ribbon__unit {
        font-size: clamp(1rem, 1.9vw, 34px);
    }
}