/* VP CTA Hero - estilos dedicados, sin reutilizar otras hojas */

.vp-cta {
    padding: 48px 0 16px;
    border-radius: 24px;
}

.vp-cta__image-wrap {
    border-radius: 24px;
    overflow: hidden;
    min-height: 420px;
}

.vp-cta__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vp-cta__card {
    position: relative;
    padding: 40px 36px;
    min-height: 420px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    isolation: isolate;
}


.vp-cta__title {
    color: #fff;
    font-weight: 800;
    line-height: 1.05;
    margin: 0 0 12px;
    font-size: clamp(2rem, 3.6vw, 48px);
}

.vp-cta__desc {
    color: #e5e7eb;
    line-height: 1.5;
    font-size: 1.0625rem;
    margin: 0 0 20px;
}

/* Modal zoom styles */
.vp-zoom-wrap {
    position: relative;
    width: 100%;
    height: min(78vh, 900px);
    overflow: hidden;
    background: #0b0f1a;
}

.vp-zoom-wrap img {
    position: absolute;
    left: 0;
    top: 0;
    max-width: none;
    transform-origin: 0 0;
    touch-action: none;
    user-select: none;
    -webkit-user-drag: none;
}

@media (max-width: 992px) {

    .vp-cta__card,
    .vp-cta__image-wrap {
        min-height: 360px;
    }
}