
:root {
    --mk-accent-neon: #bc0000;
    --mk-accent-neon-hover: #960000;
    --mk-text-main: #0f172a;
    --mk-text-on-accent: #ffffff;
    --mk-text-muted: #334155;
    --mk-font-inter: 'Inter', system-ui, -apple-system, sans-serif;
}

.mk-selection { 
    padding: clamp(3rem, 7vh, 5.5rem) 0; 
    overflow: hidden; 
    background-color: #ffffff;
    font-family: var(--mk-font-inter);
}

/* Overtitle Centrado Desktop */
.mk-selection__overtitle {
    text-align: center;
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    color: var(--mk-text-main);
    letter-spacing: -0.01em;
}

/* Grid Proporcional */
.mk-selection__grid {
    display: grid;
    align-items: center;
    gap: 3rem;
}

.mk-selection__grid--split { 
    grid-template-columns: 1fr 1.25fr; 
}

.mk-selection__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 2;
}

/* Tipografía */
.mk-selection__title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.08;
    margin: 0 0 1.25rem 0;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    color: var(--mk-text-main);
}

.mk-selection__desc {
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--mk-text-muted);
    line-height: 1.6;
    margin: 0 0 2rem 0;
    max-width: 38ch;
}

/* Botón Compacto con Ícono */
.mk-btn-neon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.9rem 2.2rem;
    background: var(--mk-accent-neon);
    color: var(--mk-text-on-accent) !important;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none !important;
    border-radius: 6px;
    box-shadow: 0 4px 14px rgba(188, 0, 0, 0.28);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.mk-btn-neon svg {
    transition: transform 0.25s ease;
}

.mk-btn-neon:hover {
    transform: translateY(-2px);
    background: var(--mk-accent-neon-hover);
    box-shadow: 0 8px 22px rgba(188, 0, 0, 0.38);
    color: #ffffff !important;
}

.mk-btn-neon:hover svg {
    transform: translateX(4px);
}

/* Visual */
.mk-selection__visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.mk-selection__img-container {
    width: 100%;
    max-width: 600px;
}

.mk-selection__img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.18), 0 0 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Notebooks (1024px - 1366px) */
@media screen and (min-width: 1024px) and (max-width: 1366px) {
    .mk-selection__grid {
        gap: 2rem;
    }
    
    .mk-selection__title {
        font-size: 2.4rem;
    }
}

/* MOBILE & TABLET (< 992px) */
@media (max-width: 991px) {
    .mk-selection {
        padding: 30px 0;
    }

    /* TÍTULO SUPERIOR COMPACTO EN MÓVILES */
    .mk-selection__overtitle {
        font-size: 1.05rem !important;
        margin-bottom: 1.5rem !important;
        letter-spacing: 0.02em;
    }

    .mk-selection__grid--split { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 1.5rem;
    }

    .mk-selection__visual { 
        order: 1; 
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .mk-selection__content { 
        order: 2; 
        align-items: center;
    }

    .mk-selection__img-container {
        max-width: 360px;
    }

    .mk-selection__title {
        font-size: 1.85rem !important;
        margin-bottom: 0.85rem;
    }

    .mk-selection__desc { 
        font-size: 0.92rem;
        margin: 0 auto 1.5rem auto; 
    }

    .mk-btn-neon {
        padding: 0.8rem 1.8rem;
        font-size: 0.8rem;
    }
}
