.luark-vvs-wrap {
    position: relative;
    height: 300vh;
}

.luark-vvs {
    --vvs-y: 0px;
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    overflow: hidden;
    background: #fff;
}

/* =========================
   IZQUIERDA FIJA
========================= */

.luark-vvs-left {
    position: relative;
    flex: 0 0 36%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 7vh 5vw;
    box-sizing: border-box;
    z-index: 3;
}

.luark-vvs-left-inner {
    max-width: 600px;
}

.luark-vvs-left-inner h1,
.luark-vvs-left-inner h2,
.luark-vvs-left-inner h3 {
    font-size: clamp(50px, 7vw, 120px);
    line-height: 0.95;
    font-weight: 800;
    margin: 0 0 24px;
}

.luark-vvs-left-inner p {
    font-size: 18px;
    line-height: 1.5;
    margin: 0 0 16px;
}

/* =========================
   PROGRESO
========================= */

.luark-vvs-progress {
    position: absolute;
    left: 5vw;
    right: 5vw;
    bottom: 7vh;
    height: 2px;
    background: rgba(0,0,0,0.15);
    overflow: hidden;
}

.luark-vvs-progress-fill {
    display: block;
    width: 0%;
    height: 100%;
    background: #e40520;
    transition: width 0.75s cubic-bezier(0.19,1,0.22,1);
}

/* =========================
   DERECHA
========================= */

.luark-vvs-right {
    position: relative;
    flex: 0 0 64%;
    height: 100%;
    overflow: hidden;
}

/* =========================
   TRACK VERTICAL
========================= */

.luark-vvs-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 42%;

    display: flex;
    flex-direction: column;
    gap: 50px;

    transform: translateY(var(--vvs-y));

    transition:
        transform 5s cubic-bezier(0.19, 1, 0.22, 1);

    z-index: 3;
}

/* =========================
   CARD
========================= */

.luark-vvs-card {
    width: 100%;
    height: 70vh;
    min-height: 450px;

    background: var(--vvs-card-bg, #fff);

    border-radius: 24px;
    padding: 54px 32px 32px 32px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;

    opacity: 0.38;
    transform: scale(0.9);

    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);

    cursor: pointer;
    overflow: hidden;
}

.luark-vvs-card.is-active {
    opacity: 1;
    transform: scale(1);
}

/* =========================
   TÍTULO ARRIBA
========================= */

.luark-vvs-card-title,
.luark-vvs-card-content h3 {
    font-size: 24px;
    line-height: 1.1;
    margin: 0 0 18px;
    color: inherit;
}

/* =========================
   IMAGEN CARD
========================= */

.luark-vvs-card-image {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.luark-vvs-card-image img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: contain;
}

.luark-vvs-card-image-placeholder {
    width: 100%;
    height: 260px;
    background: rgba(227,6,19,0.08);
    border-radius: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #e30613;
    font-weight: 800;
}

/* =========================
   TEXTO
========================= */

.luark-vvs-card-text {
    font-size: 16px;
    line-height: 1.45;
}

.luark-vvs-card-text p {
    margin: 0 0 12px;
}

/* =========================
   BOTÓN
========================= */

.luark-vvs-card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 18px;
    padding: 12px 20px;

    border-radius: 999px;
    background: #e30613;
    color: #fff;

    text-decoration: none;
    font-weight: 700;
}

/* =========================
   REVEAL DERECHO
========================= */

.luark-vvs-reveal {
    position: absolute;

    top: 50%;
    right: 0;

    width: 54%;
    height: 70vh;
    min-height: 450px;

    transform: translateY(-50%);
    opacity: 0;

    pointer-events: none;

    transition:
        opacity 0.7s ease;

    z-index: 2;
}

.luark-vvs.is-revealed .luark-vvs-reveal {
    opacity: 1;
    pointer-events: auto;
}

.luark-vvs-reveal-inner {
    width: 100%;
    height: 100%;

    border-radius: 24px;
    overflow: hidden;

    background: var(--vvs-card-bg, #fff);

    box-shadow: none;
}

.luark-vvs-reveal-inner img {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center center;
}

.luark-vvs-reveal-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(227,6,19,0.08);

    color: #e30613;
    font-size: 22px;
    font-weight: 800;
}

/* =========================
   REVEAL LINKS CARD
========================= */

.luark-vvs-reveal-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 18px;
}

.luark-vvs-reveal-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;

    width: auto;
    max-width: 100%;

    padding: 0;
    margin: 0;

    border: none;
    border-radius: 0;

    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;

    color: #e40520;

    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.1;
    font-weight: 400;

    text-align: left;
    cursor: pointer;

    transition: color 0.25s ease;
}

.luark-vvs-reveal-link:hover,
.luark-vvs-reveal-link:focus,
.luark-vvs-reveal-link:active {
    color: #004878;
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
}

.luark-vvs-reveal-link.is-active {
    color: #004878 !important;
    opacity: 1;
}

.luark-vvs-reveal-link:not(.is-active) {
    opacity: 0.85;
}

.luark-vvs-reveal-link span {
    display: inline-block;
}

.luark-vvs-reveal-link img {
    display: inline-block;
    width: auto;
    height: 1.9em;
    margin-left: 2px;
    flex: 0 0 auto;
}

.luark-vvs-reveal-link:hover img,
.luark-vvs-reveal-link:focus img,
.luark-vvs-reveal-link:active img,
.luark-vvs-reveal-link.is-active img {
    content: url('/wp-content/uploads/2026/05/flecha-slide-vertical-hover.png');
}
/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .luark-vvs-wrap {
        height: auto !important;
    }

    .luark-vvs {
        position: relative;
        display: block;

        height: auto !important;
        min-height: auto;

        padding: 40px 20px;

        overflow: visible;
    }

    .luark-vvs-left {
        display: block;
        height: auto;

        padding: 0;
        margin-bottom: 30px;
    }

    .luark-vvs-left-inner {
        max-width: none;
    }

    .luark-vvs-left-inner h1,
    .luark-vvs-left-inner h2,
    .luark-vvs-left-inner h3 {
        font-size: clamp(42px, 14vw, 72px);
    }

    .luark-vvs-progress {
        position: relative;

        left: auto;
        right: auto;
        bottom: auto;

        margin-top: 24px;
        width: 100%;
    }

    .luark-vvs-right {
        height: auto;
        overflow: visible;
    }

    .luark-vvs-track {
        position: relative;

        top: auto;
        left: auto;

        width: 100%;
        gap: 24px;

        transform: none !important;
    }

    .luark-vvs-card {
        height: auto !important;
        min-height: auto;

        opacity: 1;
        transform: none;

        padding: 28px;
    }

    .luark-vvs-reveal {
        position: relative;

        top: auto;
        right: auto;

        width: 100%;
        height: auto;

        min-height: 260px;

        margin-top: 24px;

        transform: none !important;

        opacity: 1;
        pointer-events: auto;
    }

    .luark-vvs:not(.is-revealed) .luark-vvs-reveal {
        display: none;
    }
	.luark-vvs-reveal-links {
    margin-top: 18px;
}

.luark-vvs-reveal-link {
    font-size: 15px;
}

.luark-vvs-reveal-link img {
    width: 20px;
}
}