
    /* Efecto de entrada suave idéntico al de referencia */
    .zita-scoped-fade-in {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }
    .zita-scoped-fade-in.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    .zita-scoped-wrapper, .zita-scoped-wrapper * { box-sizing: border-box; }

    .zita-scoped-wrapper {
        font-family: Arial, sans-serif;
        width: 100%;
        min-height: 500px; /* Misma altura base que el modelo Imperial */
        margin: 0;
        background-image: url('//ueeshop.ly200-cdn.com/u_file/UPAW/UPAW568/2608/18/photo/ZITAFONDOPRINSIPAL-109e.webp');
        background-size: cover;
        background-position: center;
        position: relative;
        display: flex;
        overflow: hidden;
        gap: 10px;
    }

    /* Capa oscura de fondo igual a la de referencia */
    .zita-scoped-wrapper::before {
        content: "";
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0, 0, 0, 0.6);
        pointer-events: none;
    }

    .zita-scoped-container {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 1800px;
        margin: 0 auto;
        gap: 20px;
        position: relative;
        z-index: 1;
    }

    .zita-scoped-col {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 15px;
        color: white;
        text-align: center;
        min-width: 0;
    }

    .zita-scoped-info-box {
        background-color: rgba(0, 0, 0, 0.4);
        padding: 20px;
        border-radius: 12px;
    }

    .zita-scoped-logo-img {
        width: 100%;
        max-width: 380px; /* Proporción de tamaño idéntica a las imágenes del modelo */
        height: auto;
        object-fit: contain;
        display: block;
    }

    .zita-scoped-slogan {
        margin-bottom: 12px;
        font-weight: bold;
        font-size: 1.3rem;
        color: white;
    }

    .zita-scoped-features {
        display: flex;
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    .zita-scoped-feature-item {
        border: 1px solid #ffffff;
        padding: 8px 12px;
        width: 110px;
        font-size: 0.75rem;
        background: rgba(0,0,0,0.3);
        text-align: center;
        border-radius: 4px;
        color: white;
    }

    .zita-scoped-btn-buy {
        padding: 10px 30px;
        border: none;
        cursor: pointer;
        font-weight: bold;
        text-decoration: none;
        display: inline-block;
        border-radius: 50px;
        transition: all 0.3s ease;
        background-color: #e60000;
        color: #ffffff;
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        margin-top: auto;
    }

    .zita-scoped-btn-buy:hover {
        background-color: #ff0000;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(230,0,0,0.4);
    }
    
    @media (max-width: 768px) {
        .zita-scoped-wrapper {
            flex-direction: column;
            height: auto;
            min-height: auto;
            padding: 20px 0;
        }
        .zita-scoped-container {
            flex-direction: column;
            gap: 15px;
        }
        .zita-scoped-logo-img {
            max-width: 250px;
        }
        .zita-scoped-info-box {
            width: 90%;
        }
    }
