/* ==========================================================================
   ESTILOS COMPONENTE: mk-hero-vender
   ========================================================================== */
.mk-hero-vender {
    --mk-hv-dark: #07090e;
    --mk-hv-font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --mk-hv-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);

    position: relative;
    width: 100%;
    padding: 0 1rem 1.5rem 1rem; 
    box-sizing: border-box;
    background-color: transparent; 
}

@media (max-width: 768px) {
    .mk-hero-vender {
        padding: 0 0 1rem 0; 
    }
}

/* BANNER CENTRAL */
.mk-hero-vender__banner {
    position: relative;
    width: 100%;
    max-width: 1360px; 
    margin: 0 auto;    
    min-height: clamp(240px, 28vw, 320px); 
    display: flex;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    background-color: var(--mk-hv-dark);
}

@media (max-width: 768px) {
    .mk-hero-vender__banner {
        max-width: 100%;
        border-radius: 0;
        box-shadow: none;
        min-height: 280px;
    }
}

/* FOTO DE FONDO */
.mk-hero-vender__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.mk-hero-vender__img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: 75% center; 
}

@media (max-width: 768px) {
    .mk-hero-vender__img {
        object-position: 65% center; 
    }
}

/* DEGRADADO LATERAL */
.mk-hero-vender__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg, 
        rgba(7, 9, 14, 0.90) 0%, 
        rgba(7, 9, 14, 0.70) 50%, 
        rgba(7, 9, 14, 0.25) 80%,
        rgba(7, 9, 14, 0.02) 100%
    );
    z-index: 2;
}

@media (max-width: 768px) {
    .mk-hero-vender__overlay {
        background: linear-gradient(
            90deg, 
            rgba(7, 9, 14, 0.92) 0%, 
            rgba(7, 9, 14, 0.78) 65%, 
            rgba(7, 9, 14, 0.20) 90%,
            rgba(7, 9, 14, 0.05) 100%
        );
    }
}

/* CONTENEDOR INTERNO */
.mk-hero-vender__container {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 2rem 3.5rem;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .mk-hero-vender__container {
        padding: 1.5rem 1.25rem;
    }
}

/* CONTENIDO */
.mk-hero-vender__content {
    max-width: 520px; 
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

@media (max-width: 768px) {
    .mk-hero-vender__content {
        max-width: 100%;
        align-items: flex-start;
    }
}

/* TÍTULO MÁS CHICO Y EN DOS RENGLONES */
.mk-hero-vender__title {
    font-size: clamp(1.1rem, 2vw, 1.6rem); /* Reducido notablemente de tamaño */
    font-weight: 500;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0 0 8px 0;
    width: 100%; 
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .mk-hero-vender__title {
        font-size: 1.1rem; /* Tamaño compacto y controlado en mobile */
    }
}

/* BAJADA */
.mk-hero-vender__desc {
    font-size: clamp(0.85rem, 1.1vw, 0.98rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.45;
    margin: 0 0 18px 0;
}

@media (max-width: 768px) {
    .mk-hero-vender__desc {
        font-size: 0.82rem;
        margin-bottom: 14px;
        max-width: 280px; 
    }
}

/* BOTÓN */
.mk-hero-vender__actions {
    display: flex;
    align-items: center;
}

.mk-hero-vender__btn-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 22px;
    background: transparent;
    color: #ffffff !important;
    border: 1px solid #ffffff; 
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em; 
    text-decoration: none;
    border-radius: 0; 
    transition: var(--mk-hv-transition);
}

@media (max-width: 768px) {
    .mk-hero-vender__btn-box {
        height: 36px;
        padding: 0 18px; 
    }
}

.mk-hero-vender__btn-box:hover {
    background: #ffffff;
    color: #07090e !important;
}