/* =====================================================================
 * SSL Child Pro - ssl-home.css
 *
 * Estrategia de prioridad sobre el padre Orbital:
 *  - Todos los selectores van prefijados con `body.ssl-home` para subir
 *    la especificidad por encima de los selectores globales del padre.
 *  - Se usan clases con prefijo `ssl-` para no chocar con clases existentes.
 *  - Las propiedades estructurales clave llevan !important para blindar
 *    contra cualquier sobreescritura tardía de Orbital.
 *  - Se redefine `box-sizing` y se neutralizan estilos heredados del
 *    contenedor `.site-main` y similares dentro del scope del home.
 * ===================================================================== */


/* ── Tokens ───────────────────────────────────────── */
body.ssl-home {
    --ssl-bg:#f4f6f9;
    --ssl-surface:#fff;
    --ssl-surface2:#f0f4f8;
    --ssl-border:#e2e8f0;
    --ssl-text:#0f172a;
    --ssl-text2:#475569;
    --ssl-text3:#94a3b8;
    --ssl-blue:#2563eb;
    --ssl-blue-dark:#1d4ed8;
    --ssl-blue-light:#eff6ff;
    --ssl-green:#16a34a;
    --ssl-green-light:#f0fdf4;
    --ssl-orange:#ea580c;
    --ssl-orange-light:#fff7ed;
    --ssl-purple:#7c3aed;
    --ssl-purple-light:#faf5ff;
    --ssl-red:#dc2626;
    --ssl-navy:#0f172a;
    --ssl-radius:8px;
    --ssl-radius-lg:12px;
    --ssl-shadow-sm:0 1px 3px rgba(0,0,0,.08);
    --ssl-shadow:0 4px 16px rgba(0,0,0,.08);
    --ssl-shadow-lg:0 12px 40px rgba(0,0,0,.12);
    --ssl-font:'DM Sans',system-ui,-apple-system,sans-serif;
    --ssl-mono:'DM Mono',monospace;
    --ssl-w:1240px;
}

/* ── Reset puntual SOLO para el home ──────────────── */
body.ssl-home,
body.ssl-home *,
body.ssl-home *::before,
body.ssl-home *::after {
    box-sizing: border-box !important;
}

body.ssl-home {
    font-family: var(--ssl-font) !important;
    background: var(--ssl-bg) !important;
    color: var(--ssl-text) !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Anular cualquier estructura del padre que pudiera quedar */
body.ssl-home #content,
body.ssl-home .ssl-home-main {
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
    width: 100% !important;
    background: transparent !important;
}

/* CRÍTICO: anular wrappers de Orbital que limitan el ancho.
 * Orbital envuelve el contenido en .site-main, .container, #page, .site, etc.
 * En el home necesitamos que esos wrappers NO limiten para que las secciones
 * full-width (topbar, header, hero, footer) lleguen de borde a borde,
 * y luego nuestros .container internos hacen el max-width: 1240px.
 */
body.ssl-home #page,
body.ssl-home .site,
body.ssl-home .site-content,
body.ssl-home .site-main,
body.ssl-home main.site-main,
body.ssl-home #content-wrapper,
body.ssl-home .entry-content {
    max-width: none !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    display: block !important;
}

/* Nuestro contenedor interno SÍ limita a 1240px */
body.ssl-home .container {
    max-width: var(--ssl-w) !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
}

/* Prevenir scroll horizontal global */
body.ssl-home {
    overflow-x: hidden !important;
}

body.ssl-home a {
    color: var(--ssl-blue);
    text-decoration: none;
}
body.ssl-home a:hover {
    text-decoration: underline;
}
body.ssl-home img {
    max-width: 100%;
    height: auto;
    display: block;
}
body.ssl-home h1,
body.ssl-home h2,
body.ssl-home h3 {
    font-family: var(--ssl-font) !important;
    margin: 0 !important;
}

body.ssl-home .container {
    max-width: var(--ssl-w);
    margin: 0 auto;
    padding: 0 20px;
}


/* ── TOPBAR ───────────────────────────────────────── */
body.ssl-home .ssl-topbar {
    background: var(--ssl-navy);
    color: #64748b;
    font-size: 12px;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
body.ssl-home .ssl-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 36px;
    gap: 16px;
}
body.ssl-home .ssl-topbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
body.ssl-home .ssl-topbar-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(37,99,235,.2);
    color: #93c5fd;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .05em;
}
body.ssl-home .ssl-topbar-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    flex-shrink: 0;
}
body.ssl-home .ssl-topbar-date {
    color: #64748b;
}
body.ssl-home .ssl-topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
body.ssl-home .ssl-topbar-right a {
    color: #64748b !important;
    font-size: 12px;
    transition: color .15s;
}
body.ssl-home .ssl-topbar-right a:hover {
    color: #fff !important;
    text-decoration: none;
}
body.ssl-home .ssl-topbar-login {
    background: var(--ssl-blue) !important;
    color: #fff !important;
    padding: 4px 14px !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    font-size: 11px !important;
}
body.ssl-home .ssl-topbar-login:hover {
    background: var(--ssl-blue-dark) !important;
    color: #fff !important;
}


/* ── HEADER PRINCIPAL ─────────────────────────────── */
body.ssl-home .ssl-site-header {
    background: #fff !important;
    border-bottom: 1px solid var(--ssl-border);
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: var(--ssl-shadow-sm);
}
body.ssl-home .ssl-header-inner {
    display: flex !important;
    align-items: center;
    gap: 20px;
    height: 60px;
}
body.ssl-home .ssl-logo {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: var(--ssl-text) !important;
    letter-spacing: -.02em;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none !important;
}
body.ssl-home .ssl-logo span {
    color: var(--ssl-blue) !important;
}
body.ssl-home .ssl-header-search {
    flex: 1;
    max-width: 560px;
    position: relative;
    margin: 0 !important;
}
body.ssl-home .ssl-header-search input {
    width: 100% !important;
    padding: 9px 16px 9px 42px !important;
    border: 2px solid var(--ssl-border) !important;
    border-radius: 8px !important;
    font-size: .9rem !important;
    font-family: var(--ssl-font) !important;
    outline: none !important;
    background: var(--ssl-surface2) !important;
    transition: all .2s !important;
    color: var(--ssl-text) !important;
    box-shadow: none !important;
    height: auto !important;
}
body.ssl-home .ssl-header-search input:focus {
    border-color: var(--ssl-blue) !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(37,99,235,.1) !important;
}
body.ssl-home .ssl-header-search-icon {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ssl-text3);
    width: 18px;
    height: 18px;
    pointer-events: none;
}
body.ssl-home .ssl-header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
body.ssl-home .ssl-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 8px 18px !important;
    border-radius: 8px !important;
    font-size: .85rem !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: all .2s;
    border: none;
    font-family: var(--ssl-font) !important;
    text-decoration: none !important;
    line-height: 1 !important;
}
body.ssl-home .ssl-btn-primary {
    background: var(--ssl-blue) !important;
    color: #fff !important;
}
body.ssl-home .ssl-btn-primary:hover {
    background: var(--ssl-blue-dark) !important;
    text-decoration: none !important;
    color: #fff !important;
}
body.ssl-home .ssl-btn-ghost {
    background: transparent !important;
    color: var(--ssl-text2) !important;
    border: 1.5px solid var(--ssl-border) !important;
}
body.ssl-home .ssl-btn-ghost:hover {
    background: var(--ssl-surface2) !important;
    color: var(--ssl-text) !important;
    text-decoration: none !important;
}


/* ── MEGA NAV ─────────────────────────────────────── */
body.ssl-home .ssl-mega-nav {
    background: var(--ssl-blue) !important;
    position: relative;
    z-index: 100;
}
body.ssl-home .ssl-mega-nav-inner {
    display: flex !important;
    align-items: stretch;
    overflow: hidden;
}
body.ssl-home .ssl-mega-nav-item {
    position: relative;
}
body.ssl-home .ssl-mega-nav-item > a {
    display: flex !important;
    align-items: center;
    gap: 7px;
    padding: 0 16px !important;
    height: 42px;
    color: rgba(255,255,255,.9) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    white-space: nowrap;
    transition: background .15s;
    letter-spacing: .01em;
    text-decoration: none !important;
}
body.ssl-home .ssl-mega-nav-item > a:hover {
    background: rgba(0,0,0,.15);
    color: #fff !important;
    text-decoration: none !important;
}
body.ssl-home .ssl-mega-nav-item.active > a {
    background: rgba(0,0,0,.2);
    color: #fff !important;
}
body.ssl-home .ssl-nav-icon {
    font-size: 14px;
    line-height: 1;
}
body.ssl-home .ssl-caret {
    font-size: 9px;
    opacity: .7;
    margin-left: 2px;
}
body.ssl-home .ssl-mega-nav-top10 {
    margin-left: auto;
}
body.ssl-home .ssl-mega-nav-top10 > a {
    background: rgba(255,255,255,.12) !important;
    border-radius: 0;
    font-weight: 700 !important;
}


/* ── HERO ─────────────────────────────────────────── */
body.ssl-home .ssl-hero {
    background: linear-gradient(160deg,#0f172a 0%,#1e3a8a 55%,#1d4ed8 100%) !important;
    padding: 60px 20px 52px !important;
    overflow: hidden;
    position: relative;
    margin: 0 !important;
}
body.ssl-home .ssl-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 50%,rgba(96,165,250,.1) 0%,transparent 70%);
    pointer-events: none;
}
body.ssl-home .ssl-hero-inner {
    max-width: var(--ssl-w);
    margin: 0 auto;
    display: grid !important;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: center;
    position: relative;
}
body.ssl-home .ssl-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37,99,235,.25);
    border: 1px solid rgba(37,99,235,.4);
    color: #93c5fd;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
    letter-spacing: .04em;
    text-transform: uppercase;
}
body.ssl-home .ssl-hero-eyebrow::before {
    content: '';
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 6px #4ade80;
    flex-shrink: 0;
}
body.ssl-home .ssl-hero-h1 {
    font-size: clamp(1.8rem,3.5vw,2.8rem) !important;
    font-weight: 700 !important;
    color: #fff !important;
    line-height: 1.15 !important;
    letter-spacing: -.025em !important;
    margin-bottom: 16px !important;
}
body.ssl-home .ssl-hero-h1 em {
    font-style: normal;
    color: #93c5fd;
}
body.ssl-home .ssl-hero-sub {
    color: rgba(255,255,255,.7) !important;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 28px;
}
body.ssl-home .ssl-hero-search {
    background: rgba(255,255,255,.07);
    border: 1.5px solid rgba(255,255,255,.15);
    border-radius: 10px;
    padding: 5px 5px 5px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 540px;
    backdrop-filter: blur(8px);
    transition: border-color .2s;
}
body.ssl-home .ssl-hero-search:focus-within {
    border-color: rgba(255,255,255,.4);
    background: rgba(255,255,255,.1);
}
body.ssl-home .ssl-hero-search input {
    flex: 1 !important;
    background: none !important;
    border: none !important;
    outline: none !important;
    color: #fff !important;
    font-size: .95rem !important;
    font-family: var(--ssl-font) !important;
    padding: 7px 0 !important;
    box-shadow: none !important;
    width: auto !important;
    height: auto !important;
}
body.ssl-home .ssl-hero-search input::placeholder {
    color: rgba(255,255,255,.45);
}
body.ssl-home .ssl-hero-search-btn {
    background: var(--ssl-blue) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 7px !important;
    padding: 10px 20px !important;
    font-size: .88rem !important;
    font-weight: 700 !important;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s;
    font-family: var(--ssl-font) !important;
}
body.ssl-home .ssl-hero-search-btn:hover {
    background: var(--ssl-blue-dark) !important;
}
body.ssl-home .ssl-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 16px;
    align-items: center;
}
body.ssl-home .ssl-hero-tags-label {
    color: rgba(255,255,255,.5);
    font-size: 12px;
    font-weight: 500;
}
body.ssl-home .ssl-hero-tag {
    color: rgba(255,255,255,.75) !important;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 12px;
    transition: all .2s;
    text-decoration: none !important;
}
body.ssl-home .ssl-hero-tag:hover {
    background: rgba(255,255,255,.16);
    color: #fff !important;
    text-decoration: none !important;
}

/* Hero side picks */
body.ssl-home .ssl-hero-picks {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 18px;
    backdrop-filter: blur(8px);
}
body.ssl-home .ssl-hero-picks-title {
    color: rgba(255,255,255,.5);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}
body.ssl-home .ssl-hero-picks-title::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--ssl-orange);
    border-radius: 50%;
    flex-shrink: 0;
}
body.ssl-home .ssl-hero-pick {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 9px 10px;
    border-radius: 8px;
    transition: background .15s;
    cursor: pointer;
    text-decoration: none !important;
}
body.ssl-home .ssl-hero-pick:hover {
    background: rgba(255,255,255,.08);
    text-decoration: none !important;
}
body.ssl-home .ssl-hero-pick-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
body.ssl-home .ssl-hero-pick-info {
    flex: 1;
    min-width: 0;
}
body.ssl-home .ssl-hero-pick-name {
    color: #e2e8f0;
    font-size: .83rem;
    font-weight: 600;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
body.ssl-home .ssl-hero-pick-cat {
    color: rgba(255,255,255,.4);
    font-size: 11px;
}
body.ssl-home .ssl-hero-pick-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    flex-shrink: 0;
}
body.ssl-home .ssl-pick-free {
    background: #dcfce7;
    color: #16a34a;
}
body.ssl-home .ssl-pick-open {
    background: #f5f3ff;
    color: #7c3aed;
}


/* ── TRUST BAR ────────────────────────────────────── */
body.ssl-home .ssl-trust-bar {
    background: #fff !important;
    border-bottom: 1px solid var(--ssl-border);
}
body.ssl-home .ssl-trust-bar-inner {
    max-width: var(--ssl-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    height: 52px;
    overflow-x: auto;
}
body.ssl-home .ssl-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 28px;
    border-right: 1px solid var(--ssl-border);
    white-space: nowrap;
    flex-shrink: 0;
}
body.ssl-home .ssl-trust-item:last-child {
    border-right: none;
}
body.ssl-home .ssl-trust-item-icon {
    font-size: 1.1rem;
}
body.ssl-home .ssl-trust-item-text {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ssl-text2);
}
body.ssl-home .ssl-trust-item-num {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--ssl-blue);
}


/* ── PAGE BODY (grid principal) ───────────────────── */
body.ssl-home .page-body,
html body.ssl-home main .page-body,
html body.ssl-home #content .page-body {
    max-width: var(--ssl-w) !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 28px !important;
    margin-bottom: 28px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr 300px !important;
    gap: 28px !important;
    align-items: start !important;
    box-sizing: border-box !important;
    float: none !important;
    position: relative !important;
}
body.ssl-home .main-col {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box !important;
}


/* ── SECTION HEADER ───────────────────────────────── */
body.ssl-home .ssl-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
body.ssl-home .ssl-section-title {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: var(--ssl-text) !important;
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}
body.ssl-home .ssl-section-title-icon {
    font-size: 1.05rem;
}
body.ssl-home .ssl-section-more {
    font-size: 12.5px !important;
    font-weight: 600 !important;
    color: var(--ssl-blue) !important;
    display: flex;
    align-items: center;
    gap: 3px;
    text-decoration: none !important;
}
body.ssl-home .ssl-section-more:hover {
    text-decoration: underline !important;
}
body.ssl-home .ssl-mt-28 {
    margin-top: 28px !important;
}


/* ── SOFTWARE CARDS GRID (4 cols) ─────────────────── */
body.ssl-home .ssl-sw-grid {
    display: grid !important;
    grid-template-columns: repeat(4,1fr) !important;
    gap: 14px !important;
    margin-bottom: 32px !important;
}
body.ssl-home .ssl-sw-card {
    background: var(--ssl-surface) !important;
    border: 1px solid var(--ssl-border) !important;
    border-radius: var(--ssl-radius-lg) !important;
    padding: 16px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    transition: box-shadow .2s, transform .2s;
    cursor: pointer;
    list-style: none !important;
    /* FIX overflow: el item del grid no debe forzar su anchura por contenido */
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: hidden !important;
}
body.ssl-home .ssl-sw-card:hover {
    box-shadow: var(--ssl-shadow);
    transform: translateY(-2px);
}
body.ssl-home .ssl-sw-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
}
body.ssl-home .ssl-sw-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
body.ssl-home .ssl-sw-card-meta {
    flex: 1;
    min-width: 0;
}
body.ssl-home .ssl-sw-card-name {
    font-size: .88rem;
    font-weight: 700;
    color: var(--ssl-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
body.ssl-home .ssl-sw-card-cat {
    font-size: 11px;
    color: var(--ssl-text3);
    margin-top: 1px;
}
body.ssl-home .ssl-sw-badges {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
body.ssl-home .ssl-badge {
    display: inline-block;
    padding: 2px 9px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
}
body.ssl-home .ssl-badge-free {
    background: var(--ssl-green-light);
    color: var(--ssl-green);
}
body.ssl-home .ssl-badge-open {
    background: var(--ssl-purple-light);
    color: var(--ssl-purple);
}
body.ssl-home .ssl-badge-win {
    background: #f1f5f9;
    color: #475569;
}
body.ssl-home .ssl-badge-hot {
    background: #fef2f2;
    color: var(--ssl-red);
}
body.ssl-home .ssl-sw-card-desc {
    font-size: .8rem;
    color: var(--ssl-text2);
    line-height: 1.5;
    flex: 1;
}
body.ssl-home .ssl-sw-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
    border-top: 1px solid var(--ssl-border);
}
body.ssl-home .ssl-sw-version {
    font-family: var(--ssl-mono);
    font-size: 11px;
    color: var(--ssl-text3);
}
body.ssl-home .ssl-sw-dl-btn {
    background: var(--ssl-blue) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 5px 14px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    cursor: pointer;
    font-family: var(--ssl-font) !important;
    transition: background .15s;
    text-decoration: none !important;
    display: inline-block;
    line-height: 1.4 !important;
}
body.ssl-home .ssl-sw-dl-btn:hover {
    background: var(--ssl-blue-dark) !important;
    color: #fff !important;
    text-decoration: none !important;
}


/* ── SOFTWARE LIST (horizontal rows) ──────────────── */
body.ssl-home .ssl-sw-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 1px !important;
    background: var(--ssl-border);
    border-radius: var(--ssl-radius-lg);
    overflow: hidden;
    margin-bottom: 32px;
}
body.ssl-home .ssl-sw-row {
    display: flex !important;
    align-items: center;
    gap: 14px;
    padding: 13px 16px !important;
    background: var(--ssl-surface) !important;
    transition: background .15s;
    cursor: pointer;
}
body.ssl-home .ssl-sw-row:hover {
    background: #f8fafc !important;
}
body.ssl-home .ssl-sw-row-icon {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    overflow: hidden;
}
body.ssl-home .ssl-sw-row-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
body.ssl-home .ssl-sw-row-info {
    flex: 1;
    min-width: 0;
}
body.ssl-home .ssl-sw-row-name {
    font-size: .88rem;
    font-weight: 700;
    color: var(--ssl-text);
}
body.ssl-home .ssl-sw-row-desc {
    font-size: 12px;
    color: var(--ssl-text3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 1px;
}
body.ssl-home .ssl-sw-row-badges {
    display: flex;
    gap: 5px;
    flex-shrink: 0;
}
body.ssl-home .ssl-sw-row-action {
    flex-shrink: 0;
}
body.ssl-home .ssl-sw-row-dl {
    background: var(--ssl-surface2) !important;
    color: var(--ssl-blue) !important;
    border: 1px solid var(--ssl-border) !important;
    border-radius: 6px !important;
    padding: 5px 14px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    cursor: pointer;
    font-family: var(--ssl-font) !important;
    transition: all .15s;
    text-decoration: none !important;
    display: inline-block;
}
body.ssl-home .ssl-sw-row-dl:hover {
    background: var(--ssl-blue) !important;
    color: #fff !important;
    border-color: var(--ssl-blue) !important;
    text-decoration: none !important;
}


/* ── CATEGORY CARDS ───────────────────────────────── */
body.ssl-home .ssl-cat-grid {
    display: grid !important;
    grid-template-columns: repeat(4,1fr) !important;
    gap: 12px !important;
    margin-bottom: 32px !important;
}
body.ssl-home .ssl-cat-card {
    background: var(--ssl-surface) !important;
    border: 1px solid var(--ssl-border) !important;
    border-radius: var(--ssl-radius-lg) !important;
    padding: 18px 14px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
    text-align: center !important;
    transition: all .2s !important;
    cursor: pointer;
    text-decoration: none !important;
    color: inherit !important;
}
body.ssl-home .ssl-cat-card:hover {
    border-color: var(--ssl-blue) !important;
    box-shadow: 0 0 0 3px rgba(37,99,235,.08) !important;
    transform: translateY(-2px);
    text-decoration: none !important;
}
body.ssl-home .ssl-cat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}
body.ssl-home .ssl-cat-name {
    font-size: .83rem;
    font-weight: 700;
    color: var(--ssl-text);
}
body.ssl-home .ssl-cat-count {
    font-size: 11px;
    color: var(--ssl-text3);
    font-weight: 500;
}


/* ── SILO SECTION ─────────────────────────────────── */
body.ssl-home .ssl-silo-section {
    margin-bottom: 32px;
}
body.ssl-home .ssl-silo-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px !important;
    border-radius: var(--ssl-radius-lg) var(--ssl-radius-lg) 0 0 !important;
    border: 1px solid transparent;
}
body.ssl-home .ssl-silo-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
body.ssl-home .ssl-silo-header-icon {
    font-size: 1.2rem;
}
body.ssl-home .ssl-silo-header-name {
    font-size: .9rem;
    font-weight: 800;
    color: #fff !important;
    letter-spacing: .01em;
}
body.ssl-home .ssl-silo-header-desc {
    font-size: 12px;
    color: rgba(255,255,255,.65);
    margin-top: 1px;
}
body.ssl-home .ssl-silo-header-more {
    color: rgba(255,255,255,.75) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    white-space: nowrap;
    text-decoration: none !important;
}
body.ssl-home .ssl-silo-header-more:hover {
    color: #fff !important;
    text-decoration: none !important;
}
body.ssl-home .ssl-silo-body {
    border: 1px solid var(--ssl-border) !important;
    border-top: none !important;
    border-radius: 0 0 var(--ssl-radius-lg) var(--ssl-radius-lg) !important;
    background: var(--ssl-border) !important;
    display: grid !important;
    grid-template-columns: repeat(3,1fr) !important;
    gap: 1px !important;
    overflow: hidden;
}
body.ssl-home .ssl-silo-item {
    background: var(--ssl-surface) !important;
    padding: 12px 14px !important;
    display: flex !important;
    align-items: center;
    gap: 10px;
    transition: background .15s;
    cursor: pointer;
}
body.ssl-home .ssl-silo-item:hover {
    background: #f8fafc !important;
}
body.ssl-home .ssl-silo-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
body.ssl-home .ssl-silo-item-info {
    flex: 1;
    min-width: 0;
}
body.ssl-home .ssl-silo-item-name {
    font-size: .82rem;
    font-weight: 700;
    color: var(--ssl-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
body.ssl-home .ssl-silo-item-meta {
    font-size: 11px;
    color: var(--ssl-text3);
    margin-top: 1px;
}


/* ── SIDEBAR ──────────────────────────────────────── */
body.ssl-home .sidebar {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    position: sticky !important;
    top: 72px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    width: auto !important;
    max-width: none !important;
}
body.ssl-home .ssl-widget {
    background: var(--ssl-surface) !important;
    border: 1px solid var(--ssl-border) !important;
    border-radius: var(--ssl-radius-lg) !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
}
body.ssl-home .ssl-widget-head {
    padding: 12px 16px !important;
    border-bottom: 1px solid var(--ssl-border);
    display: flex;
    align-items: center;
    gap: 8px;
}
body.ssl-home .ssl-widget-head-icon {
    font-size: 1rem;
}
body.ssl-home .ssl-widget-head-title {
    font-size: .82rem !important;
    font-weight: 800 !important;
    color: var(--ssl-text) !important;
    text-transform: uppercase;
    letter-spacing: .06em;
}
body.ssl-home .ssl-widget-body {
    padding: 14px 16px !important;
}

/* Ad widget */
body.ssl-home .ssl-ad-widget {
    background: var(--ssl-surface2) !important;
    border: 2px dashed var(--ssl-border) !important;
    border-radius: var(--ssl-radius-lg) !important;
    min-height: 250px;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px;
}
body.ssl-home .ssl-ad-label {
    font-size: 10px;
    color: var(--ssl-text3);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
}
body.ssl-home .ssl-ad-size {
    font-size: 11px;
    color: var(--ssl-text3);
}

/* Rank list */
body.ssl-home .ssl-rank-item {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 8px 0 !important;
    border-bottom: 1px solid var(--ssl-border);
}
body.ssl-home .ssl-rank-item:last-child {
    border-bottom: none;
}
body.ssl-home .ssl-rank-num {
    font-size: 12px;
    font-weight: 800;
    color: var(--ssl-text3);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
    font-family: var(--ssl-mono);
}
body.ssl-home .ssl-rank-icon {
    width: 32px;
    height: 32px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
body.ssl-home .ssl-rank-info {
    flex: 1;
    min-width: 0;
}
body.ssl-home .ssl-rank-name {
    font-size: .8rem;
    font-weight: 700;
    color: var(--ssl-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
body.ssl-home .ssl-rank-meta {
    font-size: 11px;
    color: var(--ssl-text3);
    margin-top: 1px;
}
body.ssl-home .ssl-rank-dl {
    font-size: 10px;
    font-weight: 700;
    color: var(--ssl-blue);
    flex-shrink: 0;
    background: var(--ssl-blue-light);
    padding: 2px 9px;
    border-radius: 20px;
}

/* CTA newsletter */
body.ssl-home .ssl-cta-widget {
    background: linear-gradient(135deg,#0f172a,#1e40af) !important;
    border-radius: var(--ssl-radius-lg) !important;
    padding: 22px 18px !important;
    color: #fff !important;
    text-align: center !important;
}
body.ssl-home .ssl-cta-widget-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}
body.ssl-home .ssl-cta-widget-title {
    font-size: .95rem !important;
    font-weight: 700 !important;
    margin-bottom: 6px !important;
    color: #fff !important;
}
body.ssl-home .ssl-cta-widget-sub {
    font-size: .8rem;
    color: rgba(255,255,255,.7);
    line-height: 1.5;
    margin-bottom: 16px;
}
body.ssl-home .ssl-cta-widget-btn {
    display: block !important;
    background: #fff !important;
    color: var(--ssl-blue) !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 11px !important;
    font-size: .85rem !important;
    font-weight: 800 !important;
    cursor: pointer;
    font-family: var(--ssl-font) !important;
    transition: all .2s;
    width: 100%;
    text-decoration: none !important;
    text-align: center;
}
body.ssl-home .ssl-cta-widget-btn:hover {
    background: #eff6ff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
    text-decoration: none !important;
    color: var(--ssl-blue) !important;
}

/* Tags cloud */
body.ssl-home .ssl-tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
body.ssl-home .ssl-tag-item {
    background: var(--ssl-surface2) !important;
    color: var(--ssl-text2) !important;
    border: 1px solid var(--ssl-border);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    transition: all .15s;
    cursor: pointer;
    text-decoration: none !important;
}
body.ssl-home .ssl-tag-item:hover {
    background: var(--ssl-blue-light) !important;
    color: var(--ssl-blue) !important;
    border-color: rgba(37,99,235,.3);
    text-decoration: none !important;
}


/* ── SEO BLOCK ────────────────────────────────────── */
body.ssl-home .ssl-seo-block {
    background: var(--ssl-surface) !important;
    border: 1px solid var(--ssl-border) !important;
    border-radius: var(--ssl-radius-lg) !important;
    padding: 22px 24px !important;
    margin-bottom: 28px !important;
    display: grid !important;
    grid-template-columns: repeat(3,1fr) !important;
    gap: 24px !important;
}
body.ssl-home .ssl-seo-col h3 {
    font-size: .8rem !important;
    font-weight: 800 !important;
    color: var(--ssl-text) !important;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 12px !important;
    padding-bottom: 8px !important;
    border-bottom: 2px solid var(--ssl-blue) !important;
    margin-top: 0 !important;
}
body.ssl-home .ssl-seo-col ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
body.ssl-home .ssl-seo-col li {
    padding: 5px 0 !important;
    border-bottom: 1px solid var(--ssl-border) !important;
    list-style: none !important;
    margin: 0 !important;
}
body.ssl-home .ssl-seo-col li:last-child {
    border-bottom: none !important;
}
body.ssl-home .ssl-seo-col li::before {
    content: none !important;
}
body.ssl-home .ssl-seo-col li a {
    font-size: .8rem !important;
    color: var(--ssl-text2) !important;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    text-decoration: none !important;
}
body.ssl-home .ssl-seo-col li a::after {
    content: '→';
    opacity: .35;
    font-size: .75rem;
}
body.ssl-home .ssl-seo-col li a:hover {
    color: var(--ssl-blue) !important;
    text-decoration: none !important;
}
body.ssl-home .ssl-seo-col li a:hover::after {
    opacity: 1;
}


/* ── FOOTER ───────────────────────────────────────── */
body.ssl-home .ssl-site-footer {
    background: var(--ssl-navy) !important;
    color: #64748b !important;
    margin-top: 40px !important;
    padding: 0 !important;
    border: none !important;
}
body.ssl-home .ssl-footer-main {
    padding: 48px 0 32px !important;
}
body.ssl-home .ssl-footer-grid {
    display: grid !important;
    grid-template-columns: 1.6fr 1fr 1fr 1fr !important;
    gap: 36px !important;
}
body.ssl-home .ssl-footer-logo {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin-bottom: 10px !important;
}
body.ssl-home .ssl-footer-logo span {
    color: var(--ssl-blue) !important;
}
body.ssl-home .ssl-footer-desc {
    font-size: .8rem !important;
    color: #475569 !important;
    line-height: 1.7 !important;
    margin-bottom: 16px !important;
}
body.ssl-home .ssl-footer-trust {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
body.ssl-home .ssl-footer-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #475569;
}
body.ssl-home .ssl-footer-trust-item::before {
    content: '✓';
    color: #4ade80;
    font-weight: 700;
    font-size: 11px;
}
body.ssl-home .ssl-footer-col-title {
    color: #fff !important;
    font-size: .78rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: .08em !important;
    margin-bottom: 14px !important;
    padding-bottom: 8px !important;
    border-bottom: 1px solid rgba(255,255,255,.08) !important;
}
body.ssl-home .ssl-footer-link {
    display: block !important;
    font-size: .8rem !important;
    color: #475569 !important;
    padding: 4px 0 !important;
    transition: color .15s;
    text-decoration: none !important;
}
body.ssl-home .ssl-footer-link:hover {
    color: #94a3b8 !important;
    text-decoration: none !important;
}
body.ssl-home .ssl-footer-post {
    display: flex !important;
    gap: 10px !important;
    align-items: flex-start !important;
    margin-bottom: 10px !important;
    text-decoration: none !important;
}
body.ssl-home .ssl-footer-post-thumb {
    width: 48px;
    height: 36px;
    background: rgba(255,255,255,.06);
    border-radius: 5px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
}
body.ssl-home .ssl-footer-post-name {
    font-size: .78rem !important;
    font-weight: 600 !important;
    color: #cbd5e1 !important;
    line-height: 1.3 !important;
}
body.ssl-home .ssl-footer-post-date {
    font-size: 10px;
    color: #334155;
    margin-top: 2px;
}
body.ssl-home .ssl-footer-bottom {
    background: rgba(0,0,0,.25) !important;
    border-top: 1px solid rgba(255,255,255,.05) !important;
    padding: 14px 0 !important;
}
body.ssl-home .ssl-footer-bottom-inner {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}
body.ssl-home .ssl-footer-copy {
    font-size: 12px;
    color: #334155;
}
body.ssl-home .ssl-footer-legal {
    display: flex;
    gap: 20px;
}
body.ssl-home .ssl-footer-legal a {
    font-size: 12px !important;
    color: #334155 !important;
    transition: color .15s;
    text-decoration: none !important;
}
body.ssl-home .ssl-footer-legal a:hover {
    color: #64748b !important;
    text-decoration: none !important;
}


/* =====================================================================
 * FIX OVERFLOW - prevenir que items de grid/flex empujen el contenedor
 * =====================================================================
 * Causa: en `display:grid; grid-template-columns: repeat(N, 1fr)`, los
 * items tienen min-width:auto por defecto. Si un hijo lleva nowrap o un
 * ancho intrínseco grande, fuerza la columna a ensancharse y el grid
 * desborda hacia la derecha. La cura es siempre min-width:0 en cadena.
 * Ver: https://css-tricks.com/preventing-a-grid-blowout/
 */

/* Contenedores grid: blindar para que NUNCA se desborden.
 * IMPORTANTE: NO ponemos overflow:hidden en .page-body ni .main-col porque
 * romperíamos el sidebar sticky (position:sticky no funciona dentro de un
 * ancestro con overflow:hidden). El min-width:0 ya basta para prevenir
 * el blowout en los grids hijos. */
body.ssl-home .ssl-sw-grid,
body.ssl-home .ssl-cat-grid,
body.ssl-home .ssl-silo-body,
body.ssl-home .ssl-seo-block {
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: hidden;
}
body.ssl-home .page-body,
body.ssl-home .main-col {
    min-width: 0 !important;
    max-width: 100% !important;
    /* sin overflow:hidden -> permite sticky en .sidebar */
}

/* Tarjetas software (grid de 4) */
body.ssl-home .ssl-sw-card,
body.ssl-home .ssl-sw-card * {
    min-width: 0 !important;
}

/* Filas software (Últimas incorporaciones) */
body.ssl-home .ssl-sw-row {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}
body.ssl-home .ssl-sw-row-info {
    min-width: 0 !important;
    flex: 1 1 0 !important;
    overflow: hidden;
}
body.ssl-home .ssl-sw-row-name,
body.ssl-home .ssl-sw-row-desc {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Tarjetas categoría */
body.ssl-home .ssl-cat-card {
    min-width: 0 !important;
    max-width: 100% !important;
}

/* Silos */
body.ssl-home .ssl-silo-item {
    min-width: 0 !important;
}
body.ssl-home .ssl-silo-item-info {
    min-width: 0 !important;
    flex: 1 1 0 !important;
}

/* Hero picks */
body.ssl-home .ssl-hero-pick-info {
    min-width: 0 !important;
    flex: 1 1 0 !important;
}

/* Sidebar widgets */
body.ssl-home .sidebar > * {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Rank items del sidebar */
body.ssl-home .ssl-rank-item {
    min-width: 0 !important;
}
body.ssl-home .ssl-rank-info {
    min-width: 0 !important;
    flex: 1 1 0 !important;
}


/* =====================================================================
 * RESPONSIVE HOME — Mobile First
 * Breakpoints: 1080 / 768 / 480
 * ===================================================================== */

/* ── ≤1080px Tablet ancho ─────────────────────────── */
@media (max-width: 1080px) {

    /* Hero: una columna, ocultar picks laterales */
    body.ssl-home .ssl-hero-inner {
        grid-template-columns: 1fr !important;
    }
    body.ssl-home .ssl-hero-picks {
        display: none !important;
    }

    /* Layout: 1 columna, main SIEMPRE primero */
    body.ssl-home .page-body {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    body.ssl-home .main-col {
        order: 1 !important;   /* contenido arriba */
    }
    body.ssl-home .sidebar {
        order: 2 !important;   /* sidebar abajo */
        position: static !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 16px !important;
        width: 100% !important;
    }

    /* Grids internos */
    body.ssl-home .ssl-sw-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    body.ssl-home .ssl-cat-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
    body.ssl-home .ssl-silo-body {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    body.ssl-home .ssl-seo-block {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
}

/* ── ≤768px Tablet ────────────────────────────────── */
@media (max-width: 768px) {

    /* Hero */
    body.ssl-home .ssl-hero {
        padding: 32px 16px 24px !important;
    }
    body.ssl-home .ssl-hero-h1 {
        font-size: 1.7rem !important;
        line-height: 1.2 !important;
    }

    /* Trust bar: scroll horizontal */
    body.ssl-home .ssl-trust-bar {
        overflow-x: auto !important;
    }
    body.ssl-home .ssl-trust-bar-inner {
        justify-content: flex-start !important;
        width: max-content !important;
        min-width: 100% !important;
    }

    /* Categorías 2 cols */
    body.ssl-home .ssl-cat-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    /* Tarjetas 1 col */
    body.ssl-home .ssl-sw-grid {
        grid-template-columns: 1fr !important;
    }

    /* Silos 1 col */
    body.ssl-home .ssl-silo-body {
        grid-template-columns: 1fr !important;
    }

    /* Sidebar 1 col */
    body.ssl-home .sidebar {
        grid-template-columns: 1fr !important;
    }

    /* Filas recientes */
    body.ssl-home .ssl-sw-row {
        flex-wrap: wrap !important;
        gap: 8px !important;
    }
    body.ssl-home .ssl-sw-row-info {
        width: 100% !important;
        flex: none !important;
    }
    body.ssl-home .ssl-sw-row-badges {
        flex: none !important;
    }
    body.ssl-home .ssl-sw-row-action {
        width: 100% !important;
    }
    body.ssl-home .ssl-sw-row-dl {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
    }
    body.ssl-home .ssl-sw-row-desc {
        white-space: normal !important;
    }
}

/* ── ≤480px Móvil (iPhone) ───────────────────────── */
@media (max-width: 480px) {

    /* ─ Prevenir overflow global en el home ─ */
    body.ssl-home,
    body.ssl-home .ssl-home-main {
        overflow-x: hidden !important;
        width: 100% !important;
    }

    /* ─ HERO ─ */
    body.ssl-home .ssl-hero {
        padding: 24px 14px 20px !important;
    }
    body.ssl-home .ssl-hero-eyebrow {
        font-size: 10px !important;
        padding: 3px 10px !important;
        margin-bottom: 12px !important;
    }
    body.ssl-home .ssl-hero-h1 {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 10px !important;
    }
    body.ssl-home .ssl-hero-sub {
        font-size: .85rem !important;
        line-height: 1.5 !important;
        margin-bottom: 16px !important;
    }
    /* Buscador del hero: columna */
    body.ssl-home .ssl-hero-search {
        flex-direction: column !important;
        padding: 10px !important;
        gap: 8px !important;
        background: rgba(255,255,255,.1) !important;
        border-radius: 10px !important;
        border: 1px solid rgba(255,255,255,.2) !important;
    }
    body.ssl-home .ssl-hero-search input {
        width: 100% !important;
        padding: 10px 14px !important;
        font-size: .9rem !important;
        border-radius: 7px !important;
    }
    body.ssl-home .ssl-hero-search-btn {
        width: 100% !important;
        padding: 12px !important;
        font-size: .9rem !important;
        border-radius: 7px !important;
        text-align: center !important;
        display: block !important;
    }
    /* Tags hero: scroll horizontal en vez de wrap */
    body.ssl-home .ssl-hero-tags {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 6px !important;
        margin-top: 12px !important;
        padding-bottom: 4px !important;
        scrollbar-width: none !important;
    }
    body.ssl-home .ssl-hero-tags::-webkit-scrollbar {
        display: none !important;
    }
    body.ssl-home .ssl-hero-tags-label {
        flex-shrink: 0 !important;
    }
    body.ssl-home .ssl-hero-tag {
        flex-shrink: 0 !important;
        font-size: 11px !important;
        padding: 4px 10px !important;
    }

    /* ─ TRUST BAR: ocultar en móvil, no aporta espacio ─ */
    body.ssl-home .ssl-trust-bar {
        display: none !important;
    }

    /* ─ PAGE BODY ─ */
    body.ssl-home .page-body,
    html body.ssl-home main .page-body,
    html body.ssl-home #content .page-body {
        padding-left: 12px !important;
        padding-right: 12px !important;
        margin-top: 14px !important;
        margin-bottom: 14px !important;
        gap: 16px !important;
    }

    /* ─ SECTION HEADER ─ */
    body.ssl-home .ssl-section-header {
        flex-wrap: wrap !important;
        gap: 6px !important;
        margin-bottom: 12px !important;
    }
    body.ssl-home .ssl-section-title {
        font-size: .9rem !important;
    }

    /* ─ CATEGORÍAS: 4 cols mini ─ */
    body.ssl-home .ssl-cat-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 8px !important;
        margin-bottom: 20px !important;
    }
    body.ssl-home .ssl-cat-card {
        padding: 10px 4px !important;
        gap: 5px !important;
    }
    body.ssl-home .ssl-cat-icon {
        width: 36px !important;
        height: 36px !important;
        font-size: 1.1rem !important;
        border-radius: 10px !important;
    }
    body.ssl-home .ssl-cat-name {
        font-size: .65rem !important;
        line-height: 1.2 !important;
    }
    body.ssl-home .ssl-cat-count {
        display: none !important;
    }

    /* ─ TARJETAS SOFTWARE: 1 col compacta ─ */
    body.ssl-home .ssl-sw-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        margin-bottom: 20px !important;
    }
    body.ssl-home .ssl-sw-card {
        padding: 14px !important;
        gap: 8px !important;
    }
    body.ssl-home .ssl-sw-icon {
        width: 42px !important;
        height: 42px !important;
        font-size: 1.3rem !important;
    }
    body.ssl-home .ssl-sw-card-name {
        font-size: .85rem !important;
    }
    body.ssl-home .ssl-sw-card-desc {
        font-size: .78rem !important;
    }
    body.ssl-home .ssl-sw-dl-btn {
        padding: 6px 14px !important;
        font-size: 11px !important;
    }

    /* ─ SILOS ─ */
    body.ssl-home .ssl-silo-section {
        margin-bottom: 20px !important;
    }
    body.ssl-home .ssl-silo-header {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 4px !important;
        padding: 10px 12px !important;
        align-items: flex-start !important;
    }
    body.ssl-home .ssl-silo-header-left {
        flex: 1 1 auto !important;
        min-width: 0 !important;
    }
    body.ssl-home .ssl-silo-header-more {
        flex-shrink: 0 !important;
        font-size: 11px !important;
        align-self: center !important;
    }
    body.ssl-home .ssl-silo-body {
        grid-template-columns: 1fr !important;
    }
    body.ssl-home .ssl-silo-item {
        padding: 10px 12px !important;
    }

    /* ─ FILAS RECIENTES ─ */
    body.ssl-home .ssl-sw-list {
        margin-bottom: 20px !important;
    }
    body.ssl-home .ssl-sw-row {
        padding: 10px 12px !important;
        flex-wrap: wrap !important;
        gap: 6px !important;
    }
    body.ssl-home .ssl-sw-row-icon {
        width: 36px !important;
        height: 36px !important;
        font-size: 1.1rem !important;
        flex-shrink: 0 !important;
    }
    body.ssl-home .ssl-sw-row-info {
        flex: 1 1 0 !important;
        min-width: 0 !important;
    }
    body.ssl-home .ssl-sw-row-name {
        font-size: .82rem !important;
    }
    body.ssl-home .ssl-sw-row-desc {
        white-space: normal !important;
        font-size: 11px !important;
    }
    body.ssl-home .ssl-sw-row-badges {
        flex: none !important;
        margin-left: 42px !important;  /* alinea con el texto (36px icono + 6px gap) */
    }
    body.ssl-home .ssl-sw-row-action {
        width: 100% !important;
        margin-left: 42px !important;
    }
    body.ssl-home .ssl-sw-row-dl {
        display: block !important;
        text-align: center !important;
        padding: 8px !important;
    }

    /* ─ SEO BLOCK ─ */
    body.ssl-home .ssl-seo-block {
        padding: 14px !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        margin-bottom: 20px !important;
    }
    body.ssl-home .ssl-seo-col h3 {
        font-size: .75rem !important;
        margin-bottom: 8px !important;
    }
    body.ssl-home .ssl-seo-col li a {
        font-size: .75rem !important;
    }

    /* ─ SIDEBAR: 1 col ─ */
    body.ssl-home .sidebar {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }
    body.ssl-home .ssl-widget {
        border-radius: 10px !important;
    }
    body.ssl-home .ssl-widget-head {
        padding: 10px 14px !important;
    }
    body.ssl-home .ssl-widget-body {
        padding: 10px 14px !important;
    }
    body.ssl-home .ssl-rank-item {
        padding: 7px 0 !important;
    }
    body.ssl-home .ssl-rank-name {
        font-size: .78rem !important;
    }
    body.ssl-home .ssl-ad-widget {
        min-height: 120px !important;
    }
    body.ssl-home .ssl-cta-widget {
        padding: 16px 14px !important;
    }
    body.ssl-home .ssl-cta-widget-title {
        font-size: .88rem !important;
    }
    body.ssl-home .ssl-tags-cloud {
        gap: 5px !important;
    }
    body.ssl-home .ssl-tag-item {
        font-size: 10px !important;
        padding: 3px 9px !important;
    }
}

/* ── Imagen real en picks del hero ── */
body.ssl-home .ssl-hero-pick-icon {
    overflow: hidden !important;
}
body.ssl-home .ssl-hero-pick-icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: inherit !important;
}

/* ── Silo header y items como enlaces ── */
body.ssl-home a.ssl-silo-header {
    text-decoration: none !important;
    cursor: pointer !important;
    transition: filter .15s !important;
}
body.ssl-home a.ssl-silo-header:hover {
    filter: brightness(1.08) !important;
    text-decoration: none !important;
}
body.ssl-home .ssl-silo-header-more {
    background: rgba(255,255,255,.15) !important;
    padding: 5px 12px !important;
    border-radius: 20px !important;
    transition: background .15s !important;
    font-weight: 700 !important;
}
body.ssl-home a.ssl-silo-header:hover .ssl-silo-header-more {
    background: rgba(255,255,255,.28) !important;
}
body.ssl-home a.ssl-silo-item {
    text-decoration: none !important;
}
body.ssl-home a.ssl-silo-item:hover {
    background: #f1f5f9 !important;
    text-decoration: none !important;
}
body.ssl-home a.ssl-silo-item:hover .ssl-silo-item-name {
    color: var(--ssl-blue) !important;
}
body.ssl-home .ssl-silo-item-icon {
    overflow: hidden !important;
}
body.ssl-home .ssl-silo-item-icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 6px !important;
    display: block !important;
}
body.ssl-home .ssl-silo-subcat-link {
    color: var(--ssl-blue) !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    font-size: 11px !important;
}
body.ssl-home .ssl-silo-subcat-link:hover {
    text-decoration: underline !important;
}
body.ssl-home .ssl-silo-meta-sep {
    margin: 0 2px !important;
    color: var(--ssl-text3) !important;
}

/* ══════════════════════════════════════════════════
 * RESPONSIVE MÓVIL — fix definitivo iPhone/Android
 * ══════════════════════════════════════════════════ */
@media screen and (max-width: 768px) {

    /* Layout forzado a columna única */
    body.ssl-home .page-body,
    html body.ssl-home main .page-body,
    html body.ssl-home #content .page-body {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        padding: 0 12px !important;
        box-sizing: border-box !important;
        gap: 0 !important;
    }

    /* Main primero, sidebar debajo */
    body.ssl-home .main-col {
        order: 1 !important;
        width: 100% !important;
        min-width: 0 !important;
    }
    body.ssl-home .sidebar {
        order: 2 !important;
        width: 100% !important;
        min-width: 0 !important;
        position: static !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        margin-top: 24px !important;
        padding-bottom: 32px !important;
    }

    /* Hero apilado */
    body.ssl-home .ssl-hero { padding: 0 !important; }
    body.ssl-home .ssl-hero-inner {
        display: flex !important;
        flex-direction: column !important;
        padding: 24px 16px !important;
        gap: 20px !important;
    }
    body.ssl-home .ssl-hero-left,
    body.ssl-home .ssl-hero-picks {
        width: 100% !important;
        max-width: 100% !important;
    }
    body.ssl-home .ssl-hero-h1 { font-size: 1.65rem !important; line-height: 1.2 !important; }
    body.ssl-home .ssl-hero-search {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        background: transparent !important;
        padding: 0 !important;
        border-radius: 0 !important;
        border: none !important;
        box-shadow: none !important;
    }
    body.ssl-home .ssl-hero-search input {
        width: 100% !important;
        border-radius: 8px !important;
        box-sizing: border-box !important;
        border: 1px solid rgba(255,255,255,.3) !important;
        background: rgba(255,255,255,.12) !important;
        color: #fff !important;
        padding: 12px 16px !important;
    }
    body.ssl-home .ssl-hero-search-btn {
        width: 100% !important;
        border-radius: 8px !important;
        padding: 13px !important;
        font-size: 15px !important;
    }
    body.ssl-home .ssl-hero-tags {
        flex-wrap: wrap !important;
        gap: 6px !important;
    }

    /* Categorías: 2 columnas */
    body.ssl-home .ssl-cat-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    /* Silos: 1 columna items */
    body.ssl-home .ssl-silo-body {
        grid-template-columns: 1fr !important;
        gap: 1px !important;
    }
    body.ssl-home .ssl-silo-header {
        flex-direction: row !important;
        align-items: center !important;
        padding: 10px 14px !important;
    }
    body.ssl-home .ssl-silo-header-more {
        font-size: 11px !important;
        padding: 4px 10px !important;
        white-space: nowrap !important;
    }

    /* Top descargas: 1 columna */
    body.ssl-home .ssl-top-dl-grid {
        grid-template-columns: 1fr !important;
    }

    /* Recientes: botón full width */
    body.ssl-home .ssl-sw-row {
        flex-wrap: wrap !important;
        gap: 8px 10px !important;
    }
    body.ssl-home .ssl-sw-row-info { width: calc(100% - 60px) !important; }
    body.ssl-home .ssl-sw-row-badges { margin-left: 52px !important; }
    body.ssl-home .ssl-sw-row-action {
        width: 100% !important;
        margin-left: 52px !important;
    }
    body.ssl-home .ssl-sw-row-dl {
        display: block !important;
        width: calc(100% - 52px) !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }

    /* Footer */
    .ssl-footer-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .ssl-footer-bottom-inner {
        flex-direction: column !important;
        gap: 12px !important;
        text-align: center !important;
    }
    .ssl-footer-legal {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 8px 12px !important;
    }

    /* Ocultar ads en móvil */
    .ssl-ad-widget { display: none !important; }
    .ssl-topbar-date { display: none !important; }
}

@media screen and (max-width: 480px) {
    body.ssl-home .ssl-hero-h1 { font-size: 1.4rem !important; }
    body.ssl-home .ssl-cat-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }
    body.ssl-home .ssl-cat-icon { width: 44px !important; height: 44px !important; font-size: 20px !important; }
    body.ssl-home .ssl-cat-name { font-size: 11px !important; }
}
