.cv-home {
    --cv-blue: #4258cb;
    --cv-blue-deep: #243794;
    --cv-cyan: #2997bd;
    --cv-cyan-bright: #4258cb;
    --cv-ink: #12213f;
    --cv-muted: #65738c;
    --cv-mist: #f3f7fd;
    --cv-line: rgba(42, 73, 145, .14);
    color: var(--cv-ink);
    background: #fff;
    font-family: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
    overflow: hidden;
}

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

.cv-home a {
    color: inherit;
    text-decoration: none;
}

.cv-shell {
    width: min(1200px, calc(100% - 40px));
    margin-inline: auto;
}

.cv-section {
    position: relative;
    padding: 106px 0;
}

.cv-section--mist {
    background:
        radial-gradient(circle at 90% 8%, rgba(104, 217, 231, .12), transparent 24%),
        linear-gradient(180deg, #f7faff 0%, #eef4fb 100%);
}

.cv-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #a9f3fb;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.cv-eyebrow::before {
    width: 26px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    content: "";
    animation: cvEyebrow 3.2s ease-in-out infinite;
}

.cv-eyebrow--dark {
    color: var(--cv-blue);
}

.cv-button {
    position: relative;
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .02em;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.cv-button::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 25%, rgba(255, 255, 255, .5), transparent 70%);
    content: "";
    transform: translateX(-130%);
    transition: transform .7s ease;
}

.cv-button:hover,
.cv-button:focus-visible {
    box-shadow: 0 18px 38px rgba(9, 27, 64, .2);
    outline: none;
    transform: translateY(-3px);
}

.cv-button:hover::after,
.cv-button:focus-visible::after {
    transform: translateX(130%);
}

.cv-button i {
    transition: transform .22s ease;
}

.cv-button:hover i {
    transform: translateX(4px);
}

.cv-button--light {
    color: var(--cv-blue) !important;
    background: #fff;
    box-shadow: 0 14px 34px rgba(9, 27, 64, .18);
}

.cv-button--glass {
    border-color: rgba(255, 255, 255, .35);
    color: #fff !important;
    background: rgba(255, 255, 255, .1);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.cv-reveal {
    opacity: 1;
    transform: none;
}

.cv-home.cv-motion-ready .cv-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity .78s cubic-bezier(.22, 1, .36, 1),
        transform .78s cubic-bezier(.22, 1, .36, 1);
    transition-delay: var(--cv-delay, 0ms);
}

.cv-home.cv-motion-ready .cv-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.cv-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
    color: #fff;
    background: #0c1833;
}

.cv-hero__photo {
    position: absolute;
    z-index: -4;
    inset: -55px 0;
    background:
        linear-gradient(90deg, rgba(7, 18, 43, .8) 0%, rgba(14, 31, 70, .58) 45%, rgba(9, 22, 53, .26) 100%),
        url("../images/happy-customers-car-dealership.jpg") center / cover no-repeat;
    transform: translate3d(0, var(--cv-parallax, 0), 0) scale(1.06);
    will-change: transform;
}

.cv-hero__mesh {
    position: absolute;
    z-index: -3;
    inset: 0;
    opacity: .32;
    background-image:
        linear-gradient(rgba(104, 217, 231, .18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(104, 217, 231, .18) 1px, transparent 1px);
    background-size: 70px 70px;
    -webkit-mask-image: linear-gradient(90deg, #000, transparent 75%);
    mask-image: linear-gradient(90deg, #000, transparent 75%);
}

.cv-hero__glow {
    --cv-pointer-x: 40%;
    --cv-pointer-y: 45%;
    position: absolute;
    z-index: -2;
    inset: 0;
    background:
        radial-gradient(circle at var(--cv-pointer-x) var(--cv-pointer-y), rgba(73, 206, 230, .23), transparent 25%),
        linear-gradient(115deg, rgba(66, 88, 203, .4), transparent 50%);
    transition: background .12s linear;
}

.cv-hero__content {
    position: relative;
    z-index: 2;
    padding: 95px 0 122px;
}

.cv-hero h1 {
    max-width: 850px;
    margin: 18px 0 0;
    color: #fff;
    font-size: clamp(56px, 7vw, 96px);
    font-weight: 900;
    letter-spacing: -.072em;
    line-height: .92;
    text-shadow: 0 8px 34px rgba(5, 14, 34, .28);
}

.cv-hero h1 span {
    color: transparent;
    background: linear-gradient(90deg, #fff 0%, var(--cv-cyan-bright) 38%, var(--cv-blue) 72%, #fff 100%);
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: cvHeadline 7s ease-in-out infinite;
}

.cv-hero__content > p {
    max-width: 640px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .79);
    font-size: 18px;
    line-height: 1.7;
}

.cv-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.cv-hero__rail {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 22px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .67);
    background: rgba(7, 18, 43, .34);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.cv-hero__rail i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--cv-cyan-bright);
    box-shadow: 0 0 14px rgba(104, 217, 231, .8);
    animation: cvDot 2.4s ease-in-out infinite;
}

.cv-search-wrap {
    position: relative;
    z-index: 5;
    margin-top: -76px;
}

.cv-search {
    position: relative;
    padding: 27px;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 18px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 32px 70px rgba(24, 49, 103, .18);
    -webkit-backdrop-filter: blur(24px) saturate(155%);
    backdrop-filter: blur(24px) saturate(155%);
}

.cv-search::before {
    position: absolute;
    top: 0;
    right: 32px;
    left: 32px;
    height: 2px;
    border-radius: 0 0 99px 99px;
    background: linear-gradient(90deg, transparent, var(--cv-blue), var(--cv-cyan-bright), transparent);
    content: "";
    animation: cvSearchLine 4s ease-in-out infinite;
}

.cv-search__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 19px;
}

.cv-search__heading span {
    color: var(--cv-blue);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.cv-search__heading h2 {
    margin: 4px 0 0;
    color: var(--cv-ink);
    font-size: 27px;
    font-weight: 900;
    letter-spacing: -.035em;
}

.cv-search__heading > a {
    color: var(--cv-blue);
    font-size: 12px;
    font-weight: 850;
}

.cv-search__form {
    display: grid;
    grid-template-columns: 1.45fr .75fr .75fr auto;
    gap: 10px;
}

.cv-search__form label {
    position: relative;
    margin: 0;
}

.cv-search__form input,
.cv-search__form select {
    width: 100%;
    height: 56px;
    padding: 0 16px;
    border: 1px solid rgba(42, 73, 145, .15);
    border-radius: 8px;
    color: var(--cv-ink);
    background: #f7f9fd;
    font: inherit;
    font-size: 13px;
    outline: none;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.cv-search__form input:focus,
.cv-search__form select:focus {
    border-color: rgba(66, 88, 203, .6);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(66, 88, 203, .09);
}

.cv-search__keyword i {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 17px;
    color: var(--cv-blue);
    transform: translateY(-50%);
}

.cv-search__keyword input {
    padding-left: 45px;
}

.cv-search__form button {
    display: inline-flex;
    min-width: 126px;
    height: 56px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--cv-blue), var(--cv-cyan));
    box-shadow: 0 14px 28px rgba(66, 88, 203, .24);
    font-size: 13px;
    font-weight: 850;
    cursor: pointer;
    transition: transform .22s ease, box-shadow .22s ease;
}

.cv-search__form button:hover,
.cv-search__form button:focus-visible {
    box-shadow: 0 18px 34px rgba(66, 88, 203, .34);
    outline: none;
    transform: translateY(-2px);
}

.cv-paths {
    padding: 78px 0 22px;
}

.cv-paths__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.cv-path {
    position: relative;
    display: grid;
    min-height: 220px;
    grid-template-columns: 70px 1fr;
    gap: 24px;
    align-items: center;
    padding: 38px;
    overflow: hidden;
    border: 1px solid var(--cv-line);
    border-radius: 16px;
    box-shadow: 0 18px 46px rgba(24, 49, 103, .08);
    transition: transform .32s cubic-bezier(.22, 1, .36, 1), box-shadow .32s ease;
}

.cv-path--finance {
    background:
        radial-gradient(circle at 90% 0%, rgba(104, 217, 231, .2), transparent 35%),
        linear-gradient(135deg, #f7fbff, #eef5ff);
}

.cv-path--trade {
    color: #fff;
    background:
        radial-gradient(circle at 88% 10%, rgba(104, 217, 231, .28), transparent 34%),
        linear-gradient(135deg, #263b9f, #2997bd);
}

.cv-path:hover,
.cv-path:focus-visible {
    box-shadow: 0 28px 62px rgba(24, 49, 103, .16);
    outline: none;
    transform: translateY(-7px);
}

.cv-path__icon {
    position: relative;
    z-index: 2;
    display: grid;
    width: 70px;
    height: 70px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--cv-blue), var(--cv-cyan));
    box-shadow: 0 15px 30px rgba(66, 88, 203, .22);
    font-size: 25px;
}

.cv-path--trade .cv-path__icon {
    color: var(--cv-blue);
    background: #fff;
}

.cv-path__icon::after {
    position: absolute;
    inset: -7px;
    border: 1px solid rgba(66, 88, 203, .2);
    border-radius: 50%;
    content: "";
    animation: cvIconRing 3.8s ease-in-out infinite;
}

.cv-path--trade .cv-path__icon::after {
    border-color: rgba(255, 255, 255, .34);
}

.cv-path__copy {
    position: relative;
    z-index: 2;
}

.cv-path__copy > small {
    display: block;
    margin-bottom: 8px;
    color: var(--cv-blue);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.cv-path--trade .cv-path__copy > small {
    color: #a9f3fb;
}

.cv-path__copy > strong {
    display: block;
    max-width: 470px;
    color: var(--cv-ink);
    font-size: clamp(22px, 2.5vw, 33px);
    font-weight: 900;
    letter-spacing: -.045em;
    line-height: 1.1;
}

.cv-path--trade .cv-path__copy > strong {
    color: #fff;
}

.cv-path__copy > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--cv-blue);
    font-size: 12px;
    font-weight: 850;
}

.cv-path--trade .cv-path__copy > span {
    color: #fff;
}

.cv-path__orbit {
    position: absolute;
    right: -80px;
    bottom: -110px;
    width: 240px;
    height: 240px;
    border: 1px solid rgba(66, 88, 203, .12);
    border-radius: 50%;
    transition: transform .5s ease;
}

.cv-path__orbit::before,
.cv-path__orbit::after {
    position: absolute;
    border: 1px solid currentColor;
    border-radius: 50%;
    content: "";
}

.cv-path__orbit::before {
    inset: 28px;
    opacity: .45;
}

.cv-path__orbit::after {
    inset: 57px;
    opacity: .25;
}

.cv-path:hover .cv-path__orbit {
    transform: scale(1.16) rotate(18deg);
}

.cv-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 42px;
}

.cv-section-head h2 {
    max-width: 760px;
    margin: 10px 0 0;
    color: var(--cv-ink);
    font-size: clamp(37px, 4.5vw, 61px);
    font-weight: 900;
    letter-spacing: -.06em;
    line-height: 1;
}

.cv-section-head > a {
    flex: 0 0 auto;
    color: var(--cv-blue);
    font-size: 12px;
    font-weight: 850;
}

.cv-section-head--center {
    justify-content: center;
    text-align: center;
}

.cv-section-head--center h2 {
    margin-inline: auto;
}

.cv-style-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.cv-style-card {
    position: relative;
    min-height: 218px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    overflow: hidden;
    border: 1px solid var(--cv-line);
    border-radius: 14px;
    background:
        radial-gradient(circle at 50% 20%, rgba(104, 217, 231, .13), transparent 40%),
        #fff;
    box-shadow: 0 12px 34px rgba(24, 49, 103, .055);
    text-align: center;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.cv-style-card::before {
    position: absolute;
    top: -55px;
    left: 50%;
    width: 160px;
    height: 160px;
    border: 1px solid rgba(66, 88, 203, .1);
    border-radius: 50%;
    content: "";
    transform: translateX(-50%);
    transition: transform .5s ease;
}

.cv-style-card:hover,
.cv-style-card:focus-visible {
    border-color: rgba(66, 88, 203, .32);
    box-shadow: 0 22px 48px rgba(24, 49, 103, .13);
    outline: none;
    transform: translateY(-8px);
}

.cv-style-card:hover::before {
    transform: translateX(-50%) scale(1.28);
}

.cv-style-card__image {
    position: absolute;
    top: 25px;
    right: 8px;
    left: 8px;
    height: 128px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cv-style-card__image img {
    width: 90%;
    max-height: 118px;
    object-fit: contain;
    filter: drop-shadow(0 18px 15px rgba(25, 43, 83, .14));
    transition: transform .45s cubic-bezier(.22, 1, .36, 1);
}

.cv-style-card:hover img {
    transform: translateX(6px) scale(1.06);
}

.cv-style-card strong {
    position: relative;
    z-index: 2;
    color: var(--cv-ink);
    font-size: 16px;
    font-weight: 850;
}

.cv-style-card small {
    position: relative;
    z-index: 2;
    margin-top: 3px;
    color: var(--cv-muted);
    font-size: 10px;
}

.cv-carousel-controls {
    display: flex;
    gap: 8px;
}

.cv-carousel-controls button {
    display: grid;
    width: 45px;
    height: 45px;
    place-items: center;
    border: 1px solid var(--cv-line);
    border-radius: 50%;
    color: var(--cv-blue);
    background: #fff;
    cursor: pointer;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.cv-carousel-controls button:hover,
.cv-carousel-controls button:focus-visible {
    color: #fff;
    background: linear-gradient(135deg, var(--cv-blue), var(--cv-cyan));
    outline: none;
    transform: translateY(-2px);
}

.cv-car-track {
    display: grid;
    grid-auto-columns: minmax(280px, calc((100% - 60px) / 4));
    grid-auto-flow: column;
    gap: 20px;
    padding: 6px 4px 28px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(66, 88, 203, .35) transparent;
}

/* Tarjeta anterior del home, retirada al reutilizar el componente real de /autos.
.cv-car-card {
    scroll-snap-align: start;
    overflow: hidden;
    border: 1px solid var(--cv-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(24, 49, 103, .075);
    transition: transform .3s ease, box-shadow .3s ease;
}

.cv-car-card:hover,
.cv-car-card:focus-visible {
    box-shadow: 0 25px 55px rgba(24, 49, 103, .16);
    outline: none;
    transform: translateY(-7px);
}

.cv-car-card__media {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #e8eef6;
}

.cv-car-card__media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 20, 48, .38), transparent 50%);
    content: "";
}

.cv-car-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .65s cubic-bezier(.22, 1, .36, 1);
}

.cv-car-card:hover .cv-car-card__media img {
    transform: scale(1.055);
}

.cv-car-card__status {
    position: absolute;
    z-index: 2;
    top: 14px;
    left: 14px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 6px;
    color: #fff;
    background: rgba(14, 29, 63, .55);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.cv-car-card__view {
    position: absolute;
    z-index: 2;
    right: 14px;
    bottom: 14px;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .52);
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, .12);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: color .25s ease, background .25s ease, transform .25s ease;
}

.cv-car-card:hover .cv-car-card__view {
    color: var(--cv-blue);
    background: #fff;
    transform: rotate(8deg);
}

.cv-car-card__body {
    padding: 20px;
}

.cv-car-card__eyebrow {
    color: var(--cv-cyan);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.cv-car-card h3 {
    margin: 7px 0 0;
    color: var(--cv-ink);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -.035em;
    line-height: 1.15;
}

.cv-car-card__body > p {
    min-height: 34px;
    margin: 6px 0 0;
    color: var(--cv-muted);
    font-size: 11px;
    line-height: 1.45;
}

.cv-car-card__price {
    display: flex;
    min-height: 58px;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    margin-top: 17px;
    padding-top: 16px;
    border-top: 1px solid var(--cv-line);
}

.cv-car-card__price > span {
    color: var(--cv-blue);
    font-size: 20px;
    font-weight: 900;
}

.cv-car-card__price > span small {
    display: block;
    margin-bottom: 2px;
    color: var(--cv-muted);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.cv-car-card__price > small {
    max-width: 100px;
    color: var(--cv-muted);
    font-size: 9px;
    line-height: 1.4;
    text-align: right;
}
*/

.cv-empty {
    padding: 60px;
    border: 1px dashed var(--cv-line);
    border-radius: 14px;
    color: var(--cv-muted);
    text-align: center;
}

.cv-explore-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.cv-explore-card {
    position: relative;
    min-height: 290px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
    padding: 34px;
    overflow: hidden;
    border-radius: 16px;
    color: var(--cv-ink);
    box-shadow: 0 18px 44px rgba(24, 49, 103, .09);
    transition: transform .32s ease, box-shadow .32s ease;
}

.cv-explore-card::after {
    position: absolute;
    top: -90px;
    right: -75px;
    width: 260px;
    height: 260px;
    border: 42px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    content: "";
    transition: transform .5s ease;
}

.cv-explore-card:hover,
.cv-explore-card:focus-visible {
    box-shadow: 0 28px 60px rgba(24, 49, 103, .16);
    outline: none;
    transform: translateY(-7px);
}

.cv-explore-card:hover::after {
    transform: scale(1.14) rotate(15deg);
}

.cv-explore-card--budget {
    background: linear-gradient(135deg, #edf4ff, #dff6fb);
}

.cv-explore-card--deals {
    color: #fff;
    background: linear-gradient(135deg, #263b9f, #4258cb);
}

.cv-explore-card--warranty {
    color: #fff;
    background: linear-gradient(135deg, #176f91, #2997bd);
}

.cv-explore-card--location {
    background: linear-gradient(135deg, #f5f7fb, #e6ecf8);
}

.cv-explore-card__icon {
    position: absolute;
    z-index: 2;
    top: 30px;
    left: 32px;
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--cv-blue), var(--cv-cyan));
    box-shadow: 0 14px 28px rgba(24, 49, 103, .16);
    font-size: 22px;
    animation: cvIconFloat 3.7s ease-in-out infinite;
}

.cv-explore-card--deals .cv-explore-card__icon,
.cv-explore-card--warranty .cv-explore-card__icon {
    color: var(--cv-blue);
    background: #fff;
}

.cv-explore-card strong,
.cv-explore-card p,
.cv-text-link {
    position: relative;
    z-index: 2;
}

.cv-explore-card strong {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    letter-spacing: -.045em;
}

.cv-explore-card p {
    max-width: 430px;
    margin: 10px 0 0;
    color: var(--cv-muted);
    font-size: 13px;
    line-height: 1.6;
}

.cv-explore-card--deals p,
.cv-explore-card--warranty p {
    color: rgba(255, 255, 255, .7);
}

.cv-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    color: var(--cv-blue);
    font-size: 11px;
    font-weight: 850;
}

.cv-explore-card--deals .cv-text-link,
.cv-explore-card--warranty .cv-text-link {
    color: #fff;
}

.cv-price-drop {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 78% 35%, rgba(104, 217, 231, .22), transparent 30%),
        linear-gradient(135deg, #111f45 0%, #263b9f 58%, #247d9e 100%);
}

.cv-price-drop__grid {
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: .18;
    background-image:
        linear-gradient(rgba(255, 255, 255, .18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .18) 1px, transparent 1px);
    background-size: 64px 64px;
    animation: cvGrid 18s linear infinite;
}

.cv-price-drop__inner {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 60px;
    align-items: center;
    padding-block: 80px;
}

.cv-price-drop h2 {
    margin: 15px 0 0;
    color: #fff;
    font-size: clamp(43px, 5.5vw, 72px);
    font-weight: 900;
    letter-spacing: -.065em;
    line-height: .96;
}

.cv-price-drop__copy > p {
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    line-height: 1.65;
}

.cv-price-drop__price {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin: 23px 0 27px;
}

.cv-price-drop__price small {
    color: rgba(255, 255, 255, .45);
    font-size: 16px;
    text-decoration: line-through;
}

.cv-price-drop__price strong {
    color: #a9f3fb;
    font-size: clamp(34px, 4vw, 49px);
    font-weight: 900;
    letter-spacing: -.04em;
}

.cv-price-drop__visual {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cv-price-drop__visual img {
    position: relative;
    z-index: 2;
    width: min(100%, 720px);
    max-height: 450px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 36px 70px rgba(4, 13, 34, .36);
    transition: transform .55s cubic-bezier(.22, 1, .36, 1);
}

.cv-price-drop__visual:hover img {
    transform: translateY(-8px) scale(1.02);
}

.cv-price-drop__halo {
    position: absolute;
    z-index: 1;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    box-shadow:
        0 0 0 55px rgba(255, 255, 255, .035),
        0 0 0 110px rgba(255, 255, 255, .02);
    animation: cvHalo 6s ease-in-out infinite;
}

.cv-how {
    background: #fff;
}

.cv-how__line {
    position: relative;
    width: min(76%, 800px);
    height: 1px;
    margin: 0 auto -1px;
    overflow: hidden;
    background: var(--cv-line);
}

.cv-how__line span {
    position: absolute;
    top: 0;
    left: -30%;
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--cv-cyan), transparent);
    animation: cvLineTravel 5s ease-in-out infinite;
}

.cv-how__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

.cv-how__step {
    position: relative;
    padding: 46px 26px 10px;
    text-align: center;
}

.cv-how__number {
    position: absolute;
    top: 23px;
    right: 20px;
    color: rgba(66, 88, 203, .08);
    font-size: 54px;
    font-weight: 900;
}

.cv-how__step > i {
    display: grid;
    width: 70px;
    height: 70px;
    margin: 0 auto;
    place-items: center;
    border: 1px solid rgba(66, 88, 203, .16);
    border-radius: 50%;
    color: var(--cv-blue);
    background: #fff;
    box-shadow: 0 16px 34px rgba(24, 49, 103, .1);
    font-size: 23px;
    animation: cvIconFloat 3.8s ease-in-out infinite;
}

.cv-how__step h3 {
    margin: 23px 0 0;
    color: var(--cv-ink);
    font-size: 21px;
    font-weight: 900;
    letter-spacing: -.035em;
}

.cv-how__step p {
    max-width: 330px;
    margin: 12px auto 0;
    color: var(--cv-muted);
    font-size: 13px;
    line-height: 1.7;
}

.cv-brand-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.cv-brand {
    display: flex;
    min-height: 116px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 9px;
    padding: 17px;
    border: 1px solid var(--cv-line);
    border-radius: 12px;
    background: rgba(255, 255, 255, .82);
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.cv-brand:hover,
.cv-brand:focus-visible {
    background: #fff;
    box-shadow: 0 18px 38px rgba(24, 49, 103, .11);
    outline: none;
    transform: translateY(-6px);
}

.cv-brand img {
    width: 68px;
    height: 48px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .68;
    transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}

.cv-brand:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.07);
}

.cv-brand span {
    color: var(--cv-muted);
    font-size: 9px;
    font-weight: 800;
}

.cv-final {
    padding: 72px 0 92px;
    color: #fff;
    background: #0d1936;
}

.cv-final__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    padding: 64px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    background:
        radial-gradient(circle at 90% 5%, rgba(104, 217, 231, .3), transparent 28%),
        linear-gradient(135deg, #263b9f, #2997bd);
    box-shadow: 0 32px 70px rgba(3, 12, 32, .28);
}

.cv-final__inner::before {
    position: absolute;
    top: -160px;
    right: 10%;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    box-shadow: 0 0 0 52px rgba(255, 255, 255, .035);
    content: "";
    animation: cvSpin 25s linear infinite;
}

.cv-final h2 {
    position: relative;
    z-index: 2;
    margin: 11px 0 0;
    color: #fff;
    font-size: clamp(44px, 5vw, 68px);
    font-weight: 900;
    letter-spacing: -.065em;
    line-height: .95;
}

.cv-final p {
    position: relative;
    z-index: 2;
    margin: 15px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
}

.cv-final__actions {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

@keyframes cvEyebrow {
    0%, 100% { opacity: .55; transform: scaleX(.7); transform-origin: left; }
    50% { opacity: 1; transform: scaleX(1); }
}

@keyframes cvHeadline {
    0%, 100% { background-position: 0 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes cvDot {
    0%, 100% { box-shadow: 0 0 4px rgba(104, 217, 231, .2); transform: scale(.8); }
    50% { box-shadow: 0 0 18px rgba(104, 217, 231, .9); transform: scale(1.15); }
}

@keyframes cvSearchLine {
    0%, 100% { opacity: .45; transform: scaleX(.55); }
    50% { opacity: 1; transform: scaleX(1); }
}

@keyframes cvIconRing {
    0%, 100% { opacity: .4; transform: scale(.9); }
    50% { opacity: 1; transform: scale(1.07); }
}

@keyframes cvIconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes cvGrid {
    to { background-position: 64px 64px; }
}

@keyframes cvHalo {
    0%, 100% { opacity: .65; transform: scale(.94); }
    50% { opacity: 1; transform: scale(1.04); }
}

@keyframes cvLineTravel {
    0% { left: -30%; }
    60%, 100% { left: 100%; }
}

@keyframes cvSpin {
    to { transform: rotate(360deg); }
}

@media screen and (max-width: 1199px) {
    .cv-style-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .cv-car-track {
        grid-auto-columns: minmax(280px, calc((100% - 40px) / 3));
    }

    .cv-brand-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 991px) {
    .cv-section {
        padding: 86px 0;
    }

    .cv-hero {
        min-height: 610px;
    }

    .cv-hero__photo {
        background-position: 58% center;
    }

    .cv-search__form {
        grid-template-columns: repeat(2, 1fr);
    }

    .cv-search__form button {
        grid-column: 1 / -1;
    }

    .cv-paths__grid,
    .cv-price-drop__inner {
        grid-template-columns: 1fr;
    }

    .cv-price-drop__copy {
        max-width: 700px;
    }

    .cv-price-drop__visual {
        min-height: 350px;
    }

    .cv-price-drop__visual img {
        max-height: 390px;
    }

    .cv-final__inner {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 767px) {
    .cv-shell {
        width: min(100% - 28px, 1200px);
    }

    .cv-section {
        padding: 70px 0;
    }

    .cv-hero {
        min-height: 630px;
    }

    .cv-hero__photo {
        background:
            linear-gradient(90deg, rgba(7, 18, 43, .88), rgba(14, 31, 70, .66)),
            url("../images/happy-customers-car-dealership.jpg") 55% center / cover no-repeat;
    }

    .cv-hero__content {
        padding: 75px 0 122px;
    }

    .cv-hero h1 {
        font-size: clamp(48px, 15vw, 69px);
    }

    .cv-hero__content > p {
        font-size: 16px;
    }

    .cv-hero__actions,
    .cv-final__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .cv-hero__rail {
        gap: 10px;
        padding: 0 12px;
        font-size: 7px;
        letter-spacing: .09em;
    }

    .cv-search-wrap {
        margin-top: -54px;
    }

    .cv-search {
        padding: 20px;
        border-radius: 14px;
    }

    .cv-search__heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .cv-search__form {
        grid-template-columns: 1fr;
    }

    .cv-search__form button {
        grid-column: auto;
    }

    .cv-paths {
        padding-top: 58px;
    }

    .cv-paths__grid,
    .cv-style-grid,
    .cv-explore-grid,
    .cv-how__grid {
        grid-template-columns: 1fr;
    }

    .cv-path {
        min-height: 260px;
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 28px;
    }

    .cv-path__icon {
        width: 58px;
        height: 58px;
    }

    .cv-section-head {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 32px;
    }

    .cv-section-head h2 {
        font-size: clamp(35px, 12vw, 51px);
    }

    .cv-section-head--center {
        align-items: center;
    }

    .cv-style-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cv-style-card {
        min-height: 190px;
        padding: 15px;
    }

    .cv-style-card__image {
        top: 17px;
        height: 112px;
    }

    .cv-car-track {
        width: calc(100vw - 14px);
        grid-auto-columns: minmax(272px, 84vw);
    }

    .cv-explore-card {
        min-height: 270px;
        padding: 28px;
    }

    .cv-price-drop {
        min-height: auto;
    }

    .cv-price-drop__inner {
        gap: 20px;
        padding-block: 70px;
    }

    .cv-price-drop h2 {
        font-size: clamp(42px, 13vw, 61px);
    }

    .cv-price-drop__visual {
        min-height: 270px;
    }

    .cv-price-drop__halo {
        width: 260px;
        height: 260px;
    }

    .cv-how__line {
        display: none;
    }

    .cv-how__grid {
        gap: 8px;
    }

    .cv-brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cv-final {
        padding: 58px 0 72px;
    }

    .cv-final__inner {
        padding: 38px 25px;
    }
}

.cv-hero {
    min-height: 620px;
    color: var(--cv-ink);
    background:
        radial-gradient(circle at 8% 18%, rgba(104, 217, 231, .13), transparent 23%),
        linear-gradient(135deg, #fbfdff 0%, #f1f6fc 100%);
}

.cv-hero__photo {
    z-index: -2;
    top: 40px;
    right: 0;
    bottom: 68px;
    left: auto;
    width: 57%;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 26px 0 0 26px;
    background:
        linear-gradient(90deg, #f5f9fd 0%, rgba(245, 249, 253, .94) 10%, rgba(245, 249, 253, .2) 40%, transparent 65%),
        url("../images/happy-customers-car-dealership.jpg") center / cover no-repeat;
    box-shadow: -28px 28px 75px rgba(24, 49, 103, .12);
    transform: translate3d(0, var(--cv-parallax, 0), 0) scale(1.025);
}

.cv-hero__mesh {
    z-index: -3;
    opacity: .24;
    background-image:
        linear-gradient(rgba(66, 88, 203, .11) 1px, transparent 1px),
        linear-gradient(90deg, rgba(66, 88, 203, .11) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .45) 42%, transparent 70%);
    mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .45) 42%, transparent 70%);
}

.cv-hero__glow {
    z-index: -1;
    background:
        radial-gradient(circle at var(--cv-pointer-x) var(--cv-pointer-y), rgba(104, 217, 231, .12), transparent 22%),
        radial-gradient(circle at 35% 88%, rgba(66, 88, 203, .1), transparent 26%);
}

.cv-hero__content {
    padding: 84px 0 122px;
}

.cv-hero .cv-eyebrow {
    color: var(--cv-blue);
}

.cv-hero h1 {
    max-width: 660px;
    color: var(--cv-ink);
    font-size: clamp(54px, 6.6vw, 88px);
    text-shadow: none;
}

.cv-hero h1 span {
    background: linear-gradient(90deg, var(--cv-blue-deep), var(--cv-blue) 45%, var(--cv-cyan) 82%, var(--cv-blue));
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
}

.cv-hero__content > p {
    max-width: 560px;
    color: #596780;
}

.cv-hero .cv-button--light {
    color: #fff !important;
    background: linear-gradient(135deg, var(--cv-blue), var(--cv-cyan));
    box-shadow: 0 15px 32px rgba(66, 88, 203, .22);
}

.cv-hero .cv-button--glass {
    border-color: rgba(66, 88, 203, .18);
    color: var(--cv-blue) !important;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 10px 28px rgba(24, 49, 103, .07);
}

.cv-hero__rail {
    border-top-color: rgba(42, 73, 145, .1);
    color: #748097;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 -10px 30px rgba(24, 49, 103, .04);
}

.cv-explore {
    isolation: isolate;
    background:
        radial-gradient(circle at 92% 4%, rgba(104, 217, 231, .09), transparent 22%),
        #f8fafc;
}

.cv-explore::before {
    position: absolute;
    z-index: -1;
    top: 120px;
    right: -120px;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(66, 88, 203, .08);
    border-radius: 50%;
    box-shadow: 0 0 0 54px rgba(66, 88, 203, .018);
    content: "";
}

.cv-explore-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.cv-explore-card,
.cv-explore-card--budget,
.cv-explore-card--deals,
.cv-explore-card--warranty,
.cv-explore-card--location {
    min-height: 310px;
    border: 1px solid var(--cv-line);
    color: var(--cv-ink);
    background:
        linear-gradient(180deg, rgba(246, 250, 255, .75), rgba(255, 255, 255, .98) 44%),
        #fff;
    box-shadow: 0 14px 38px rgba(24, 49, 103, .065);
}

.cv-explore-card::before {
    position: absolute;
    top: 0;
    right: 24px;
    left: 24px;
    height: 3px;
    border-radius: 0 0 99px 99px;
    background: linear-gradient(90deg, transparent, var(--cv-blue), var(--cv-cyan), transparent);
    content: "";
    opacity: .62;
    transition: opacity .3s ease, transform .3s ease;
}

.cv-explore-card::after {
    top: -78px;
    right: -86px;
    border-width: 1px;
    border-color: rgba(66, 88, 203, .1);
    box-shadow: 0 0 0 32px rgba(66, 88, 203, .018);
}

.cv-explore-card:hover::before {
    opacity: 1;
    transform: scaleX(1.08);
}

.cv-explore-card__icon,
.cv-explore-card--deals .cv-explore-card__icon,
.cv-explore-card--warranty .cv-explore-card__icon {
    width: 56px;
    height: 56px;
    color: #fff;
    background: linear-gradient(135deg, var(--cv-blue), var(--cv-cyan));
    box-shadow: 0 12px 25px rgba(66, 88, 203, .17);
}

.cv-explore-card strong {
    font-size: clamp(22px, 2.1vw, 29px);
}

.cv-explore-card p,
.cv-explore-card--deals p,
.cv-explore-card--warranty p {
    color: var(--cv-muted);
}

.cv-text-link,
.cv-explore-card--deals .cv-text-link,
.cv-explore-card--warranty .cv-text-link {
    color: var(--cv-blue);
}

.cv-price-drop {
    min-height: auto;
    padding: 94px 0;
    color: var(--cv-ink);
    background:
        radial-gradient(circle at 88% 20%, rgba(104, 217, 231, .09), transparent 22%),
        #f4f7fb;
}

.cv-price-drop__grid {
    opacity: .06;
    background-image:
        linear-gradient(rgba(66, 88, 203, .18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(66, 88, 203, .18) 1px, transparent 1px);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 35%, #000 70%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 35%, #000 70%, transparent);
}

.cv-price-drop__inner {
    gap: 44px;
    padding: 34px 34px 34px 52px;
    overflow: hidden;
    border: 1px solid rgba(42, 73, 145, .12);
    border-radius: 20px;
    background:
        radial-gradient(circle at 90% 10%, rgba(104, 217, 231, .09), transparent 25%),
        #fff;
    box-shadow: 0 24px 60px rgba(24, 49, 103, .1);
}

.cv-price-drop .cv-eyebrow {
    color: var(--cv-blue);
}

.cv-price-drop h2 {
    max-width: 560px;
    color: var(--cv-ink);
    font-size: clamp(42px, 5vw, 64px);
}

.cv-price-drop__copy > p {
    color: var(--cv-muted);
}

.cv-price-drop__price small {
    color: #9aa4b6;
}

.cv-price-drop__price strong {
    color: var(--cv-blue);
}

.cv-price-drop .cv-button--light {
    color: #fff !important;
    background: linear-gradient(135deg, var(--cv-blue), var(--cv-cyan));
    box-shadow: 0 14px 30px rgba(66, 88, 203, .2);
}

.cv-price-drop__visual {
    min-height: 390px;
}

.cv-price-drop__visual img {
    max-height: 390px;
    box-shadow: 0 24px 52px rgba(24, 49, 103, .15);
}

.cv-price-drop__halo {
    width: 350px;
    height: 350px;
    border-color: rgba(66, 88, 203, .14);
    box-shadow:
        0 0 0 42px rgba(66, 88, 203, .022),
        0 0 0 84px rgba(41, 151, 189, .014);
}

.cv-final {
    padding: 72px 0 92px;
    color: var(--cv-ink);
    background: #fff;
}

.cv-final__inner {
    padding: 58px 62px;
    border-color: rgba(42, 73, 145, .12);
    color: var(--cv-ink);
    background:
        radial-gradient(circle at 90% 0%, rgba(104, 217, 231, .13), transparent 27%),
        linear-gradient(135deg, #fff 0%, #f8fbff 62%, #eef7fb 100%);
    box-shadow: 0 22px 56px rgba(24, 49, 103, .09);
}

.cv-final__inner::before {
    border-color: rgba(66, 88, 203, .1);
    box-shadow: 0 0 0 52px rgba(66, 88, 203, .018);
}

.cv-final__inner::after {
    position: absolute;
    top: 24px;
    right: 0;
    bottom: 24px;
    width: 4px;
    border-radius: 99px 0 0 99px;
    background: linear-gradient(180deg, var(--cv-blue), var(--cv-cyan-bright));
    content: "";
}

.cv-final .cv-eyebrow {
    color: var(--cv-blue);
}

.cv-final h2 {
    color: var(--cv-ink);
}

.cv-final p {
    color: var(--cv-muted);
}

.cv-final .cv-button--light {
    color: #fff !important;
    background: linear-gradient(135deg, var(--cv-blue), var(--cv-cyan));
    box-shadow: 0 14px 30px rgba(66, 88, 203, .2);
}

.cv-final .cv-button--glass {
    border-color: rgba(66, 88, 203, .17);
    color: var(--cv-blue) !important;
    background: #fff;
    box-shadow: 0 10px 26px rgba(24, 49, 103, .07);
}

@media screen and (max-width: 1199px) {
    .cv-explore-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 991px) {
    .cv-hero__photo {
        width: 62%;
        opacity: .72;
    }

    .cv-hero__content {
        padding-top: 72px;
    }

    .cv-price-drop__inner {
        padding: 40px;
    }
}

@media screen and (max-width: 767px) {
    .cv-hero {
        min-height: 790px;
        align-items: flex-start;
    }

    .cv-hero__photo {
        top: auto;
        right: 14px;
        bottom: 58px;
        left: 14px;
        width: auto;
        height: 270px;
        border-radius: 18px;
        opacity: 1;
        background:
            linear-gradient(0deg, rgba(13, 25, 54, .18), transparent 55%),
            url("../images/happy-customers-car-dealership.jpg") 55% center / cover no-repeat;
        box-shadow: 0 24px 52px rgba(24, 49, 103, .14);
    }

    .cv-hero__mesh {
        -webkit-mask-image: linear-gradient(to bottom, #000, transparent 58%);
        mask-image: linear-gradient(to bottom, #000, transparent 58%);
    }

    .cv-hero__content {
        padding: 60px 0 360px;
    }

    .cv-hero h1 {
        font-size: clamp(46px, 14vw, 64px);
    }

    .cv-hero__actions {
        align-items: flex-start;
        flex-direction: row;
    }

    .cv-hero__actions .cv-button {
        width: auto;
    }

    .cv-search-wrap {
        margin-top: -36px;
    }

    .cv-explore-grid {
        grid-template-columns: 1fr;
    }

    .cv-explore-card,
    .cv-explore-card--budget,
    .cv-explore-card--deals,
    .cv-explore-card--warranty,
    .cv-explore-card--location {
        min-height: 270px;
    }

    .cv-price-drop {
        padding: 62px 0;
    }

    .cv-price-drop__inner {
        gap: 18px;
        padding: 28px 20px 20px;
    }

    .cv-price-drop h2 {
        font-size: clamp(39px, 12vw, 54px);
    }

    .cv-price-drop__visual {
        min-height: 250px;
    }

    .cv-price-drop__halo {
        width: 230px;
        height: 230px;
    }

    .cv-final {
        padding-top: 44px;
        background: #fff;
    }

    .cv-final__inner {
        padding: 38px 25px;
    }
}

/* Aproximación anterior de las tarjetas del inventario, retirada:
.cv-inventory-card.cv-car-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(18, 33, 63, .1);
    border-radius: 22px;
    background: #fff;
    box-shadow:
        0 14px 34px rgba(24, 49, 103, .08),
        inset 0 1px 0 rgba(255, 255, 255, .96);
    transition:
        border-color .32s ease,
        box-shadow .32s ease,
        transform .38s cubic-bezier(.22, 1, .36, 1);
}

.cv-inventory-card.cv-car-card:hover,
.cv-inventory-card.cv-car-card:focus-within {
    border-color: rgba(66, 88, 203, .34);
    box-shadow:
        0 26px 58px rgba(24, 49, 103, .15),
        0 0 0 1px rgba(41, 151, 189, .08),
        inset 0 1px 0 rgba(255, 255, 255, .98);
    outline: none;
    transform: translateY(-7px);
}

.cv-inventory-card__link {
    display: block;
}

.cv-inventory-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 21px 21px 0 0;
    background: #e9edf3;
}

.cv-inventory-card__media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 18, 43, .04), transparent 55%, rgba(7, 18, 43, .16));
    pointer-events: none;
    content: "";
}

.cv-inventory-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter .3s ease, transform .6s cubic-bezier(.22, 1, .36, 1);
}

.cv-inventory-card:hover .cv-inventory-card__media img,
.cv-inventory-card:focus-within .cv-inventory-card__media img {
    filter: saturate(1.04) contrast(1.02);
    transform: scale(1.035);
}

.cv-inventory-card__favorite {
    position: absolute;
    z-index: 5;
    top: 14px;
    right: 14px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .86);
    border-radius: 50%;
    color: #12213f !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, .88), rgba(255, 255, 255, .58));
    box-shadow:
        0 12px 28px rgba(17, 19, 24, .18),
        inset 0 1px 0 rgba(255, 255, 255, .96);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    backdrop-filter: blur(14px) saturate(150%);
    transition: color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.cv-inventory-card__favorite:hover,
.cv-inventory-card__favorite:focus-visible,
.cv-inventory-card__favorite.is-active {
    color: var(--cv-blue) !important;
    box-shadow:
        0 14px 30px rgba(17, 19, 24, .2),
        0 0 0 3px rgba(66, 88, 203, .12),
        inset 0 1px 0 rgba(255, 255, 255, .98);
    outline: none;
    transform: translateY(-2px);
}

.cv-inventory-card__status,
.cv-inventory-card__offer {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 11px;
    color: #fff;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.cv-inventory-card__status {
    top: 14px;
    left: 0;
    border-radius: 0 99px 99px 0;
    background: linear-gradient(135deg, #17213f, #4258cb);
}

.cv-inventory-card__offer {
    right: 0;
    bottom: 10px;
    border-radius: 99px 0 0 99px;
    background: linear-gradient(135deg, #4258cb, #2997bd);
}

.cv-inventory-card__content {
    padding: 15px 15px 17px;
    background: linear-gradient(180deg, #fff 0%, #fafcff 100%);
}

.cv-inventory-card__heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.cv-inventory-card__heading > div {
    min-width: 0;
    flex: 1;
}

.cv-inventory-card h3 {
    margin: 0 0 8px;
    overflow: hidden;
    color: var(--cv-ink);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .025em;
    line-height: 17px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cv-inventory-card__heading ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 8px;
    margin: 0;
    padding: 0;
    color: var(--cv-muted);
    list-style: none;
}

.cv-inventory-card__heading li {
    position: relative;
    font-size: 10px;
    font-weight: 650;
    white-space: nowrap;
}

.cv-inventory-card__heading li + li::before {
    margin-right: 7px;
    color: var(--cv-cyan);
    content: "•";
}

.cv-inventory-card__brand {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    padding: 3px;
    object-fit: contain;
}

.cv-inventory-card__price {
    position: relative;
    margin: 13px -15px 0;
    padding: 13px 15px 0;
    border-top: 1px solid rgba(18, 33, 63, .09);
}

.cv-inventory-card__price > span {
    display: block;
    margin-bottom: 2px;
    color: var(--cv-muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cv-inventory-card__price > strong {
    display: block;
    color: var(--cv-ink);
    font-size: 22px;
    font-weight: 850;
    letter-spacing: -.025em;
}

.cv-inventory-card__price > small {
    position: absolute;
    right: 15px;
    bottom: 4px;
    color: #8a94a6;
    font-size: 9px;
    text-decoration: line-through;
}

.cv-inventory-card__location {
    padding: 0 15px 16px;
    background: #fafcff;
}

.cv-inventory-card__location > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 10px;
    border-top: 1px solid rgba(18, 33, 63, .09);
    color: var(--cv-muted);
    font-size: 10px;
}

.cv-inventory-card__location img {
    width: 13px;
    height: 13px;
}

.cv-inventory-card__location span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cv-inventory-card__location i {
    margin-left: auto;
    transition: color .2s ease, transform .2s ease;
}

.cv-inventory-card__location > a:hover,
.cv-inventory-card__location > a:focus-visible {
    color: var(--cv-blue);
    outline: none;
}

.cv-inventory-card__location > a:hover i,
.cv-inventory-card__location > a:focus-visible i {
    transform: translate(2px, -2px);
}
*/

/* Oportunidades: carrusel expansivo inspirado en Premium, con paleta GIMSA. */
.cv-offer-showcase {
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 8%, rgba(104, 217, 231, .1), transparent 24%),
        linear-gradient(180deg, #fff 0%, #f1f5fb 100%);
}

.cv-offer-stage {
    display: flex;
    height: 540px;
    gap: 14px;
    overflow: visible;
}

.cv-offer-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 540px;
    flex: 1 1 0;
    flex-grow: 1;
    align-items: flex-end;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 28px;
    color: #fff !important;
    background: #0c1833 var(--cv-offer-cover, none) center / cover no-repeat;
    box-shadow:
        0 22px 54px rgba(24, 49, 103, .16),
        inset 0 1px 0 rgba(255, 255, 255, .22);
    transition:
        flex-grow .58s cubic-bezier(.22, 1, .36, 1),
        border-color .3s ease,
        box-shadow .3s ease,
        transform .3s ease;
}

.cv-offer-stage > .cv-offer-card:first-child {
    flex-grow: 4.2;
    border-color: rgba(169, 243, 251, .68);
    box-shadow:
        0 34px 78px rgba(24, 49, 103, .24),
        0 0 0 1px rgba(66, 88, 203, .2),
        0 0 38px rgba(41, 151, 189, .18),
        inset 0 1px 0 rgba(255, 255, 255, .3);
}

.cv-offer-stage.is-auto-playing > .cv-offer-card:first-child,
.cv-offer-stage:hover > .cv-offer-card:first-child,
.cv-offer-stage:focus-within > .cv-offer-card:first-child:not(:focus-visible) {
    flex-grow: 1;
    border-color: rgba(255, 255, 255, .22);
    box-shadow:
        0 22px 54px rgba(24, 49, 103, .16),
        inset 0 1px 0 rgba(255, 255, 255, .22);
    transform: none;
}

.cv-offer-stage:hover > .cv-offer-card:first-child:hover,
.cv-offer-card:hover,
.cv-offer-card:focus-visible,
.cv-offer-card.is-auto-active {
    flex-grow: 4.2;
    border-color: rgba(169, 243, 251, .72);
    box-shadow:
        0 34px 78px rgba(24, 49, 103, .26),
        0 0 0 1px rgba(66, 88, 203, .24),
        0 0 42px rgba(41, 151, 189, .22),
        inset 0 1px 0 rgba(255, 255, 255, .3);
    outline: none;
    transform: translateY(-4px);
}

.cv-offer-card::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(5, 14, 34, .06), rgba(5, 14, 34, .05) 48%, rgba(5, 14, 34, .78) 100%);
    content: "";
}

.cv-offer-card::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    border: 0 solid rgba(169, 243, 251, .68);
    border-radius: inherit;
    content: "";
    transition: border-width .25s ease;
}

.cv-offer-stage > .cv-offer-card:first-child::after,
.cv-offer-card:hover::after,
.cv-offer-card:focus-visible::after,
.cv-offer-card.is-auto-active::after {
    border-width: 2px;
}

.cv-offer-stage.is-auto-playing > .cv-offer-card:first-child:not(.is-auto-active)::after,
.cv-offer-stage:hover > .cv-offer-card:first-child:not(:hover)::after,
.cv-offer-stage:focus-within > .cv-offer-card:first-child:not(:focus-visible)::after {
    border-width: 0;
}

.cv-offer-card__index {
    position: absolute;
    top: 20px;
    left: 20px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 50%;
    color: var(--cv-ink);
    background: rgba(255, 255, 255, .76);
    box-shadow: 0 9px 22px rgba(17, 19, 24, .15);
    -webkit-backdrop-filter: blur(18px) saturate(170%);
    backdrop-filter: blur(18px) saturate(170%);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
}

.cv-offer-card__brand {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    width: 84px;
    height: 46px;
    align-items: center;
    justify-content: center;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, .78);
    border-radius: 12px;
    background: rgba(255, 255, 255, .76);
    box-shadow: 0 9px 22px rgba(17, 19, 24, .15);
    -webkit-backdrop-filter: blur(18px) saturate(170%);
    backdrop-filter: blur(18px) saturate(170%);
    transition: background .25s ease, transform .3s ease;
}

.cv-offer-card__brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cv-offer-card:hover .cv-offer-card__brand,
.cv-offer-card:focus-visible .cv-offer-card__brand {
    background: rgba(255, 255, 255, .96);
    transform: translateY(-2px);
}

.cv-offer-card__copy {
    position: relative;
    z-index: 2;
    width: 100%;
    min-width: 260px;
    padding: 28px;
    background: linear-gradient(180deg, transparent 0%, rgba(4, 10, 24, .55) 42%, rgba(4, 10, 24, .84) 100%);
    text-shadow: 0 3px 16px rgba(0, 0, 0, .58);
}

.cv-offer-card h3 {
    margin: 0 0 9px;
    overflow: hidden;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -.025em;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: font-size .4s cubic-bezier(.22, 1, .36, 1);
}

.cv-offer-card__reveal {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .28s ease .05s, transform .38s cubic-bezier(.22, 1, .36, 1) .05s;
}

.cv-offer-stage > .cv-offer-card:first-child .cv-offer-card__reveal,
.cv-offer-card:hover .cv-offer-card__reveal,
.cv-offer-card:focus-visible .cv-offer-card__reveal,
.cv-offer-card.is-auto-active .cv-offer-card__reveal {
    opacity: 1;
    transform: translateY(0);
}

.cv-offer-stage.is-auto-playing > .cv-offer-card:first-child:not(.is-auto-active) .cv-offer-card__reveal,
.cv-offer-stage:hover > .cv-offer-card:first-child:not(:hover) .cv-offer-card__reveal,
.cv-offer-stage:focus-within > .cv-offer-card:first-child:not(:focus-visible) .cv-offer-card__reveal {
    opacity: 0;
    transform: translateY(10px);
}

.cv-offer-stage > .cv-offer-card:first-child h3,
.cv-offer-card:hover h3,
.cv-offer-card:focus-visible h3,
.cv-offer-card.is-auto-active h3 {
    font-size: 29px;
}

.cv-offer-stage.is-auto-playing > .cv-offer-card:first-child:not(.is-auto-active) h3,
.cv-offer-stage:hover > .cv-offer-card:first-child:not(:hover) h3,
.cv-offer-stage:focus-within > .cv-offer-card:first-child:not(:focus-visible) h3 {
    font-size: 18px;
}

.cv-offer-card__reveal p {
    margin: 0;
    color: rgba(255, 255, 255, .74);
    font-size: 12px;
}

.cv-offer-card__price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 13px;
}

.cv-offer-card__price small {
    color: rgba(255, 255, 255, .58);
    font-size: 11px;
    text-decoration: line-through;
}

.cv-offer-card__price strong {
    color: #fff;
    font-size: 23px;
    font-weight: 900;
}

.cv-offer-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 18px;
    margin-top: 28px;
}

.cv-offer-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.cv-offer-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 1px solid rgba(42, 73, 145, .25);
    border-radius: 99px;
    background: rgba(42, 73, 145, .17);
    cursor: pointer;
    transition: width .32s ease, background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.cv-offer-dot:hover,
.cv-offer-dot:focus-visible {
    background: rgba(66, 88, 203, .3);
    outline: none;
    transform: scale(1.2);
}

.cv-offer-dot.is-active {
    width: 36px;
    border-color: rgba(66, 88, 203, .48);
    background: linear-gradient(90deg, var(--cv-blue), var(--cv-cyan), var(--cv-cyan-bright));
    box-shadow: 0 6px 18px rgba(41, 151, 189, .28);
    transform: none;
}

.cv-offer-controls .cv-button--light {
    color: #fff !important;
    background: linear-gradient(135deg, var(--cv-blue), var(--cv-cyan));
    box-shadow: 0 14px 30px rgba(66, 88, 203, .2);
}

@media screen and (max-width: 1100px) {
    .cv-offer-stage,
    .cv-offer-card {
        min-height: 490px;
        height: 490px;
    }
}

@media screen and (max-width: 767px) {
    .cv-offer-stage {
        height: auto;
        margin-right: -14px;
        padding: 4px 14px 18px 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .cv-offer-stage::-webkit-scrollbar {
        display: none;
    }

    .cv-offer-stage > .cv-offer-card,
    .cv-offer-stage > .cv-offer-card:first-child,
    .cv-offer-stage:hover > .cv-offer-card:first-child,
    .cv-offer-card:hover,
    .cv-offer-card:focus-visible,
    .cv-offer-card.is-auto-active {
        min-height: 430px;
        height: 430px;
        flex: 0 0 86%;
        scroll-snap-align: start;
        transform: none;
    }

    .cv-offer-card__reveal,
    .cv-offer-stage > .cv-offer-card:first-child .cv-offer-card__reveal,
    .cv-offer-stage.is-auto-playing > .cv-offer-card:first-child:not(.is-auto-active) .cv-offer-card__reveal,
    .cv-offer-stage:hover > .cv-offer-card:first-child:not(:hover) .cv-offer-card__reveal {
        opacity: 1;
        transform: none;
    }

    .cv-offer-card h3,
    .cv-offer-stage > .cv-offer-card:first-child h3,
    .cv-offer-stage.is-auto-playing > .cv-offer-card:first-child:not(.is-auto-active) h3,
    .cv-offer-stage:hover > .cv-offer-card:first-child:not(:hover) h3 {
        font-size: 24px;
    }
}

@media (hover: none) and (min-width: 768px) {
    .cv-offer-card__reveal {
        opacity: 1;
        transform: none;
    }
}

/* En el home la top bar queda fuera del hero y solo el menú flota sobre la imagen. */
#header.defualt {
    position: relative;
    z-index: 999;
    width: 100%;
    background: #f8fafc;
}

#header.defualt .topbar {
    position: relative;
    z-index: 3;
    border-bottom: 1px solid rgba(42, 73, 145, .11);
    color: #536179 !important;
    background: #f8fafc;
}

#header.defualt .topbar .topbar-left,
#header.defualt .topbar .topbar-right,
#header.defualt .topbar .topbar-profile,
#header.defualt .topbar li,
#header.defualt .topbar li a,
#header.defualt .topbar .profile-actions .btn-secondary {
    color: #536179 !important;
    text-shadow: none;
}

#header.defualt .topbar li i:not(.online-success):not(.online-danger),
#header.defualt .topbar .profile-actions .btn-secondary i {
    color: #4258cb !important;
}

#header.defualt .topbar .topbar-right li a:hover,
#header.defualt .topbar .topbar-right li a:focus-visible,
#header.defualt .topbar .topbar-profile li a:hover,
#header.defualt .topbar .topbar-profile li a:focus-visible,
#header.defualt .topbar .profile-actions .btn-secondary:hover,
#header.defualt .topbar .profile-actions .btn-secondary:focus-visible,
#header.defualt .topbar .profile-actions .btn-secondary[aria-expanded="true"] {
    color: #4258cb !important;
}

#header.defualt .topbar .topbar-profile ul,
#header.defualt .topbar .profile-actions .btn-secondary {
    border-color: rgba(66, 88, 203, .14);
    color: #536179 !important;
    background: rgba(66, 88, 203, .045);
}

#header.defualt .topbar .dropdown-menu {
    border: 1px solid rgba(66, 88, 203, .12);
    color: #536179 !important;
    background: #fff;
    box-shadow: 0 18px 42px rgba(38, 48, 75, .16);
}

#header.defualt .topbar .dropdown-menu .dropdown-item,
#header.defualt .topbar .dropdown-menu .dropdown-item i {
    color: #536179 !important;
}

#header.defualt .topbar .dropdown-menu .dropdown-item:hover,
#header.defualt .topbar .dropdown-menu .dropdown-item:focus {
    color: #4258cb !important;
    background: linear-gradient(90deg, rgba(66, 88, 203, .08), rgba(41, 151, 189, .08));
}

#header.defualt .topbar .topbar-comparator-count,
#header.defualt .topbar .topbar-favorites-count {
    display: inline-grid;
    min-width: 18px;
    height: 18px;
    place-items: center;
    margin-left: 4px;
    padding: 0 5px;
    border-radius: 99px;
    color: #fff !important;
    background: linear-gradient(135deg, #4258cb, #2997bd);
    font-size: 9px;
    line-height: 1;
}

#header.defualt > .menu {
    position: absolute;
    z-index: 1000;
    top: 100%;
    right: 0;
    left: 0;
    width: 100%;
}

#header.defualt .mega-menu {
    min-height: 98px;
}

#header.defualt .mega-menu > section.menu-list-items {
    margin-top: 18px;
    padding: 0 6px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

#header.defualt .mega-menu .menu-logo {
    padding: 14px 0;
}

#header.defualt .mega-menu .menu-logo img {
    height: 68px;
    filter: drop-shadow(0 7px 16px rgba(3, 12, 31, .22));
}

#header.defualt .mega-menu .menu-logo li > img.lazy {
    display: none !important;
}

#header.defualt .mega-menu .menu-links {
    margin-top: 0;
}

#header.defualt .mega-menu .menu-links > li {
    line-height: 96px;
}

#header.defualt .mega-menu .menu-links > li > a,
#header.defualt .mega-menu .menu-links > li > a i {
    color: rgba(255, 255, 255, .94);
    text-shadow: 0 2px 14px rgba(3, 12, 31, .48);
}

#header.defualt .mega-menu .menu-links > li > a:hover,
#header.defualt .mega-menu .menu-links > li > a:focus-visible,
#header.defualt .mega-menu .menu-links > li.active > a,
#header.defualt .mega-menu .menu-links > li.active > a i {
    color: #4258cb !important;
}

/* Hero fotográfico editorial. */
.cv-hero {
    min-height: 780px;
    align-items: center;
    color: #fff;
    background: #0c1833;
}

.cv-hero__photo {
    z-index: -4;
    inset: -26px 0;
    width: 100%;
    border-radius: 0;
    background:
        linear-gradient(90deg, rgba(7, 17, 39, .95) 0%, rgba(8, 20, 45, .84) 38%, rgba(8, 20, 45, .26) 69%, rgba(8, 20, 45, .12) 100%),
        linear-gradient(180deg, rgba(5, 14, 34, .7) 0%, rgba(7, 18, 42, .28) 22%, transparent 43%, rgba(7, 18, 42, .3) 100%),
        url("../images/seminuevos-hero-dealership-v2.jpg") 50% center / cover no-repeat;
    box-shadow: none;
    clip-path: none;
    transform: translate3d(0, var(--cv-parallax, 0), 0) scale(1.045);
}

.cv-hero__photo::before {
    display: none;
}

.cv-hero__photo-caption {
    display: none;
}

.cv-hero__mesh {
    z-index: -3;
    inset: 0;
    opacity: .12;
    background-image:
        linear-gradient(rgba(169, 243, 251, .2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(169, 243, 251, .2) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: linear-gradient(90deg, #000, transparent 52%);
    mask-image: linear-gradient(90deg, #000, transparent 52%);
}

.cv-hero__glow {
    display: block;
    z-index: -2;
    opacity: .48;
    background: radial-gradient(circle at var(--cv-pointer-x) var(--cv-pointer-y), rgba(66, 88, 203, .16), transparent 27%);
}

.cv-hero__content {
    display: block;
    padding: 190px 0 142px;
}

.cv-hero__copy {
    position: relative;
    z-index: 2;
    width: min(58%, 660px);
    padding-left: 28px;
    border-left: 1px solid rgba(66, 88, 203, .34);
}

.cv-hero__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.cv-hero__sequence {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .62);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.cv-hero__sequence::before {
    width: 26px;
    height: 1px;
    background: rgba(255, 255, 255, .3);
    content: "";
}

.cv-hero h1 {
    max-width: 650px;
    margin: 0;
    color: #fff;
    font-size: clamp(56px, 5.8vw, 78px);
    font-weight: 850;
    letter-spacing: -.065em;
    line-height: .96;
    text-shadow: 0 9px 32px rgba(4, 13, 31, .24);
}

.cv-hero h1::after {
    display: none;
}

.cv-hero h1 span {
    color: var(--cv-cyan-bright);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    animation: none;
}

.cv-hero__copy > p {
    max-width: 560px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .76);
    font-size: 16.5px;
    line-height: 1.7;
}

.cv-hero__actions {
    gap: 22px;
    margin-top: 30px;
}

.cv-hero .cv-button--light {
    color: #233a75 !important;
    background: #fff;
    box-shadow: 0 14px 32px rgba(4, 13, 31, .22);
}

.cv-hero .cv-button--glass {
    min-height: 52px;
    padding: 0 5px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .38);
    border-radius: 0;
    color: #fff !important;
    background: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.cv-hero .cv-button--glass:hover,
.cv-hero .cv-button--glass:focus-visible {
    color: var(--cv-cyan-bright) !important;
    box-shadow: none;
}

.cv-hero__proof {
    display: flex;
    max-width: 590px;
    align-items: center;
    gap: 20px;
    margin-top: 38px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .68);
}

.cv-hero__proof > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 10px;
    font-weight: 780;
    letter-spacing: .02em;
    white-space: nowrap;
}

.cv-hero__proof > span + span {
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, .18);
}

.cv-hero__proof i {
    color: var(--cv-cyan-bright);
    font-size: 13px;
}

.cv-hero__proof .cv-hero__proof-stat {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 7px;
    align-items: center;
}

.cv-hero__proof-stat strong {
    grid-row: 1 / 3;
    color: #fff;
    font-size: 27px;
    font-weight: 850;
    letter-spacing: -.055em;
    line-height: 1;
}

.cv-hero__proof-stat small {
    max-width: 64px;
    color: rgba(255, 255, 255, .6);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1.25;
    text-transform: uppercase;
    white-space: normal;
}

@media screen and (max-width: 1199px) {
    .cv-hero__photo {
        width: 100%;
    }

    .cv-hero__copy {
        width: min(62%, 620px);
    }

    .cv-hero h1 {
        font-size: clamp(50px, 5.9vw, 66px);
    }

    .cv-hero__proof {
        gap: 15px;
    }

    .cv-hero__proof > span + span {
        padding-left: 15px;
    }
}

@media screen and (max-width: 991px) {
    #header.defualt {
        background: #f8fafc;
        background-image: none;
    }

    #header.defualt .mega-menu {
        min-height: 72px;
    }

    #header.defualt .mega-menu > section.menu-list-items {
        margin-top: 12px;
        padding: 0 6px;
        border-radius: 0;
    }

    #header.defualt .mega-menu .menu-logo {
        padding: 8px 0;
    }

    #header.defualt .mega-menu .menu-logo img {
        height: 54px;
    }

    #header.defualt .mega-menu .menu-mobile-collapse-trigger::before,
    #header.defualt .mega-menu .menu-mobile-collapse-trigger::after,
    #header.defualt .mega-menu .menu-mobile-collapse-trigger span {
        background: #fff;
        box-shadow: 0 2px 8px rgba(3, 12, 31, .42);
    }

    .cv-hero {
        min-height: 720px;
        background: #0c1833;
    }

    .cv-hero__photo {
        inset: -24px 0;
        width: 100%;
        height: auto;
        opacity: 1;
        box-shadow: none;
    }

    .cv-hero__mesh {
        inset: 0;
    }

    .cv-hero__content {
        padding: 158px 0 122px;
    }

    .cv-hero__copy {
        width: min(72%, 590px);
    }

    .cv-hero__meta {
        align-items: center;
        flex-direction: row;
        gap: 14px;
    }

    .cv-hero__sequence::before {
        display: block;
    }

    .cv-hero h1 {
        font-size: clamp(46px, 6.6vw, 58px);
    }

    .cv-hero__proof {
        flex-wrap: wrap;
        gap: 12px 0;
        margin-top: 30px;
    }

    .cv-hero__proof > span:nth-child(3) {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    #header.defualt {
        min-height: 0;
        background: transparent;
    }

    #header.defualt .mega-menu > section.menu-list-items {
        margin: 10px 4px 0;
        padding: 0 4px;
    }

    #header.defualt .mega-menu .menu-logo {
        padding: 7px 0;
    }

    #header.defualt .mega-menu .menu-logo img {
        height: 50px;
    }

    .cv-hero {
        min-height: 760px;
    }

    .cv-hero__photo {
        inset: -22px 0;
        width: 100%;
        height: auto;
        border-radius: 0;
        background:
            linear-gradient(90deg, rgba(7, 17, 39, .94) 0%, rgba(8, 20, 45, .82) 54%, rgba(8, 20, 45, .38) 100%),
            linear-gradient(180deg, rgba(7, 18, 42, .35) 0%, transparent 38%, rgba(7, 18, 42, .42) 100%),
            url("../images/seminuevos-hero-dealership-v2.jpg") 61% center / cover no-repeat;
        box-shadow: none;
    }

    .cv-hero__content {
        padding: 132px 0 112px;
    }

    .cv-hero__copy {
        width: 100%;
        max-width: 600px;
        padding-left: 20px;
    }

    .cv-hero__meta {
        margin-bottom: 16px;
    }

    .cv-hero__sequence {
        font-size: 8px;
    }

    .cv-hero h1 {
        max-width: 580px;
        font-size: clamp(45px, 12.5vw, 60px);
        line-height: .98;
    }

    .cv-hero__copy > p {
        max-width: 560px;
        margin-top: 19px;
        font-size: 15px;
        line-height: 1.6;
    }

    .cv-hero__actions {
        margin-top: 24px;
    }

    .cv-hero__proof {
        max-width: 440px;
        margin-top: 28px;
        padding-top: 17px;
    }
}

@media screen and (max-width: 480px) {
    .cv-hero {
        min-height: 840px;
    }

    .cv-hero__sequence {
        display: none;
    }

    .cv-hero__actions {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
    }

    .cv-hero__actions .cv-button {
        width: 100%;
    }

    .cv-hero .cv-button--glass {
        border: 1px solid rgba(255, 255, 255, .24);
    }

    .cv-hero__proof > span:nth-child(2) {
        padding-left: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cv-home *,
    .cv-home *::before,
    .cv-home *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .cv-reveal {
        opacity: 1;
        transform: none;
    }
}
