/* NexoOptimizer Landing Page — estilos propios */
/* Generado a partir del bloque <style> interno + clases para estilos en línea */

/* ── Reset mínimo ─────────────────────────────────────────── */
        *, *::before, *::after { box-sizing: border-box; }

        html, body {
            width: 100%;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--fondo-body);
            color: var(--texto-negro);
            font-family: 'Montserrat', sans-serif;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            margin: 0;
            padding: 0;
        }

        main { flex: 1; }

        /* ── Variables de página ──────────────────────────────────── */
        :root {
            --azul: #006DB3;
            --azul-hover: #004a7a;
            --azul-glow: rgba(0, 109, 179, 0.18);
            --azul-soft: rgba(0, 109, 179, 0.1);
        }

        /* ═══════════════════════════════════════════════════════════
           SECCIÓN 1: HERO
        ═══════════════════════════════════════════════════════════ */
        .hero {
            width: 100%;
            background: var(--iso-fondo-oscuro, #121212);
            background-image: radial-gradient(ellipse 90% 55% at 50% 0%, rgba(0,109,179,0.22), transparent 65%);
            padding: 5.5rem 20px 4.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--azul), transparent);
        }

        .hero-badge {
            display: inline-block;
            background: var(--azul);
            color: #fff;
            padding: 5px 20px;
            border-radius: 50px;
            font-size: 0.72rem;
            font-weight: 900;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            margin-bottom: 1.6rem;
        }

        .hero-title {
            font-weight: 900;
            font-size: clamp(2.4rem, 7vw, 4rem);
            color: #ffffff;
            line-height: 1.05;
            letter-spacing: -2px;
            text-transform: uppercase;
            margin: 0 auto 1.2rem auto;
            max-width: 800px;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .hero-title span { color: var(--azul); }

        .hero-sub {
            font-size: clamp(0.95rem, 2.5vw, 1.12rem);
            color: #a1a1aa;
            max-width: 620px;
            margin: 0 auto 2.6rem auto;
            line-height: 1.75;
        }

        .hero-sub strong { color: #e4e4e7; }

        .hero-btns {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 3.5rem;
        }

        .btn-primary {
            display: inline-block;
            background: var(--azul);
            color: #fff;
            padding: 15px 38px;
            font-weight: 900;
            font-size: 0.95rem;
            text-transform: uppercase;
            text-decoration: none;
            letter-spacing: 1px;
            border: 2px solid var(--azul);
            border-radius: 50px;
            box-shadow: 4px 4px 0px rgba(0,109,179,0.4);
            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        }

        .btn-primary:hover {
            background: var(--azul-hover);
            border-color: var(--azul-hover);
            transform: translate(-3px, -3px);
            box-shadow: 8px 8px 0px rgba(0,109,179,0.5);
        }

        .btn-outline {
            display: inline-block;
            background: transparent;
            color: #ffffff;
            padding: 15px 38px;
            font-weight: 900;
            font-size: 0.95rem;
            text-transform: uppercase;
            text-decoration: none;
            letter-spacing: 1px;
            border: 2px solid rgba(255,255,255,0.55);
            border-radius: 50px;
            transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
        }

        .btn-outline:hover {
            background: rgba(255,255,255,0.09);
            border-color: #fff;
            transform: translate(-3px, -3px);
        }

        .hero-screen {
            width: 100%;
            max-width: 820px;
            aspect-ratio: 16 / 9;
            background: linear-gradient(145deg, #1a1a1e, #242428);
            border: 1px solid #2e2e32;
            border-radius: 16px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .hero-screen::before {
            content: "";
            position: absolute;
            inset: -1px;
            border-radius: 17px;
            background: linear-gradient(135deg, rgba(0,109,179,0.3), transparent 50%);
            pointer-events: none;
        }

        .hero-screen span {
            color: #3a3a3e;
            font-size: 0.85rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        /* ═══════════════════════════════════════════════════════════
           SECTION WRAPPER
        ═══════════════════════════════════════════════════════════ */
        .sec {
            width: 100%;
            padding: 5rem 20px;
        }

        .sec-alt {
            background: var(--fondo-tarjeta);
        }

        .sec-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .sec-label {
            display: inline-block;
            background: var(--azul-soft);
            color: var(--azul);
            border: 1px solid rgba(0,109,179,0.25);
            padding: 4px 16px;
            border-radius: 50px;
            font-size: 0.7rem;
            font-weight: 900;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1.1rem;
        }

        .sec-title {
            font-weight: 900;
            font-size: clamp(1.4rem, 3.5vw, 2rem);
            text-transform: uppercase;
            letter-spacing: -0.5px;
            color: var(--texto-negro);
            margin: 0 0 0.6rem 0;
            line-height: 1.15;
        }

        .sec-subtitle {
            font-size: 1rem;
            color: var(--texto-gris);
            margin: 0 auto 2.8rem auto;
            line-height: 1.6;
            max-width: 600px;
        }

        .sec-subtitle strong { color: var(--texto-negro); }

        /* ═══════════════════════════════════════════════════════════
           SECCIÓN 2: TABLA COMPARATIVA
        ═══════════════════════════════════════════════════════════ */
        .compare-callout {
            background: var(--azul-soft);
            border: 1.5px solid rgba(0,109,179,0.3);
            border-radius: 14px;
            padding: 1.2rem 1.75rem;
            margin-bottom: 2.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .compare-callout-icon {
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .compare-callout p {
            margin: 0;
            font-size: 0.95rem;
            color: var(--texto-negro);
            line-height: 1.55;
        }

        .compare-callout strong { color: var(--azul); }

        .compare-table-wrap {
            width: 100%;
            overflow-x: auto;
            border-radius: 16px;
            border: 2px solid var(--gris-borde-divisor);
            box-shadow: var(--sombra-industrial);
        }

        table.compare {
            width: 100%;
            border-collapse: collapse;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.88rem;
            min-width: 520px;
        }

        table.compare thead tr {
            background: var(--iso-fondo-oscuro, #121212);
        }

        table.compare thead th {
            padding: 1rem 1.25rem;
            text-align: left;
            font-weight: 900;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #a1a1aa;
            border-bottom: 2px solid #2a2a2e;
        }

        table.compare thead th.col-app {
            color: #ffffff;
            background: var(--azul);
        }

        table.compare thead th.col-feature {
            color: #71717a;
        }

        table.compare tbody tr {
            border-bottom: 1px solid var(--gris-borde-divisor);
            transition: background 0.15s;
        }

        table.compare tbody tr:last-child {
            border-bottom: none;
        }

        table.compare tbody tr:hover {
            background: var(--azul-soft);
        }

        table.compare td {
            padding: 0.9rem 1.25rem;
            color: var(--texto-negro);
            vertical-align: middle;
        }

        table.compare td.col-feature {
            font-weight: 700;
            color: var(--texto-negro);
        }

        table.compare td.col-free {
            color: var(--texto-gris);
        }

        table.compare td.col-app {
            font-weight: 700;
            color: var(--azul);
        }

        .tbl-yes  { color: #16a34a; font-weight: 900; }
        .tbl-no   { color: var(--texto-gris); font-weight: 500; opacity: 0.6; }
        .tbl-half { color: #ca8a04; font-weight: 700; }

        tbody tr:nth-child(even) {
            background: var(--fondo-body);
        }

        body.dark-mode tbody tr:nth-child(even) {
            background: rgba(255,255,255,0.02);
        }

        body.dark-mode table.compare td {
            color: var(--texto-negro);
        }

        body.dark-mode table.compare td.col-feature {
            color: var(--texto-negro);
        }

        body.dark-mode .compare-table-wrap {
            border-color: #333;
        }

        /* ═══════════════════════════════════════════════════════════
           SECCIÓN 3-5: LAYOUT ZIG-ZAG
        ═══════════════════════════════════════════════════════════ */
        .feature-row {
            display: grid;
            grid-template-columns: 1fr 1.6fr;
            gap: 4rem;
            align-items: center;
        }

        .feature-row.reverse {
            grid-template-columns: 1.6fr 1fr;
        }
        .feature-row.reverse .feature-text { order: 2; }
        .feature-row.reverse .feature-visual { order: 1; }

        .feature-text {}

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 1rem 0 1.2rem 0;
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
        }

        .feature-list li {
            font-size: 0.92rem;
            color: var(--texto-gris);
            padding-left: 1.5rem;
            position: relative;
            line-height: 1.55;
        }

        .feature-list li::before {
            content: "▸";
            position: absolute;
            left: 0;
            color: var(--azul);
            font-size: 0.8rem;
            top: 2px;
        }

        .feature-list li strong { color: var(--texto-negro); }

        .feature-detail {
            background: var(--fondo-tarjeta);
            border-left: 3px solid var(--azul);
            border-radius: 0 10px 10px 0;
            padding: 12px 16px;
            font-size: 0.82rem;
            color: var(--texto-gris);
            line-height: 1.65;
            margin-top: 0.5rem;
        }

        body.dark-mode .feature-detail {
            background: rgba(255,255,255,0.04);
        }

        .feature-visual {
            width: 100%;
            aspect-ratio: 4 / 3;
            background: linear-gradient(145deg, var(--fondo-tarjeta), var(--fondo-body));
            border: 2px solid var(--gris-borde-divisor);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            box-shadow: var(--sombra-industrial);
        }

        .feature-visual::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--azul-soft), transparent 60%);
            border-radius: 14px;
        }

        .feature-visual span {
            color: var(--gris-borde-divisor);
            font-size: 0.78rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            position: relative;
            z-index: 1;
        }

        /* ═══════════════════════════════════════════════════════════
           SECCIÓN 6: LICENCIAS + FAQ
        ═══════════════════════════════════════════════════════════ */
        .license-hero {
            background: var(--iso-fondo-oscuro, #121212);
            background-image: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,109,179,0.2), transparent 65%);
            border-radius: 24px;
            padding: 3.5rem 2.5rem;
            text-align: center;
            border: 2px solid var(--azul);
            box-shadow: 8px 8px 0px var(--azul);
            margin-bottom: 3.5rem;
        }

        .license-hero h2 {
            font-weight: 900;
            font-size: clamp(1.3rem, 3.5vw, 1.8rem);
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: -0.5px;
            margin: 0 0 0.7rem 0;
        }

        .license-hero p {
            font-size: 0.92rem;
            color: #a1a1aa;
            max-width: 560px;
            margin: 0 auto 2.5rem auto;
            line-height: 1.7;
        }

        .license-hero p strong { color: #e4e4e7; }

        .license-steps {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .lic-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            flex: 0 0 auto;
        }

        .lic-num {
            width: 44px;
            height: 44px;
            background: var(--azul);
            color: #fff;
            border-radius: 50%;
            font-weight: 900;
            font-size: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .lic-label {
            font-size: 0.72rem;
            font-weight: 700;
            color: #d4d4d8;
            text-align: center;
            max-width: 88px;
            line-height: 1.4;
        }

        .lic-arrow {
            color: var(--azul);
            font-size: 1.3rem;
            padding-top: 0.7rem;
        }

        .hwid-note {
            background: rgba(0,109,179,0.1);
            border: 1px solid rgba(0,109,179,0.3);
            border-radius: 14px;
            padding: 1.25rem 1.6rem;
            max-width: 600px;
            margin: 0 auto 2rem auto;
        }

        .hwid-note p {
            margin: 0;
            font-size: 0.87rem;
            color: #a1a1aa;
            line-height: 1.7;
        }

        .hwid-note strong { color: #69a9d1; }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .faq-item {
            background: var(--fondo-card);
            border: 2px solid var(--borde-card);
            border-radius: 14px;
            padding: 1.5rem 1.75rem;
            transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
        }

        .faq-item:hover {
            border-color: var(--azul);
            box-shadow: 4px 4px 0px rgba(0,109,179,0.2);
            transform: translate(-2px, -2px);
        }

        .faq-q {
            font-weight: 900;
            font-size: 0.98rem;
            color: var(--texto-negro);
            margin: 0 0 0.65rem 0;
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
        }

        .faq-q::before {
            content: "?";
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 22px;
            height: 22px;
            min-width: 22px;
            background: var(--azul);
            color: #fff;
            border-radius: 50%;
            font-size: 0.75rem;
            font-weight: 900;
            margin-top: 1px;
        }

        .faq-a {
            font-size: 0.9rem;
            color: var(--texto-gris);
            line-height: 1.7;
            margin: 0;
            padding-left: 1.65rem;
        }

        .faq-a strong { color: var(--texto-negro); }

        /* ── Footer ───────────────────────────────────────────────── */
        footer {
            width: 100%;
            background: var(--fondo-tarjeta);
            padding: 2rem 1rem;
            text-align: center;
            border-top: 3px solid var(--gris-borde-divisor);
            margin-top: auto;
        }

        .footer-copyright {
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--texto-negro);
            font-size: 0.9rem;
        }

        .legal-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .legal-links a {
            color: var(--texto-gris);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
            transition: color 0.2s;
        }

        .legal-links a:hover { color: var(--azul); }

        .separator { color: var(--gris-borde-divisor); user-select: none; }

        /* ── Light mode overrides ────────────────────────────────── */
        body:not(.dark-mode) .hero {
            background: var(--fondo-body);
            background-image: radial-gradient(ellipse 90% 55% at 50% 0%, rgba(0,109,179,0.12), transparent 65%);
        }

        body:not(.dark-mode) .hero-title {
            color: var(--texto-negro);
        }

        body:not(.dark-mode) .hero-sub {
            color: var(--texto-gris);
        }

        body:not(.dark-mode) .hero-sub strong {
            color: var(--texto-negro);
        }

        body:not(.dark-mode) .hero .btn-outline {
            color: var(--texto-negro);
            border-color: rgba(0,0,0,0.55);
        }

        body:not(.dark-mode) .hero .btn-outline:hover {
            background: rgba(0,0,0,0.05);
            border-color: var(--texto-negro);
        }

        body:not(.dark-mode) table.compare thead tr {
            background: var(--azul);
        }

        body:not(.dark-mode) table.compare thead th {
            color: rgba(255,255,255,0.75);
            border-bottom: 2px solid rgba(255,255,255,0.15);
        }

        body:not(.dark-mode) table.compare thead th.col-feature {
            color: rgba(255,255,255,0.6);
        }

        body:not(.dark-mode) .license-hero {
            background: var(--fondo-tarjeta);
            background-image: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,109,179,0.12), transparent 65%);
        }

        body:not(.dark-mode) .license-hero h2 {
            color: var(--texto-negro);
        }

        body:not(.dark-mode) .license-hero p {
            color: var(--texto-gris);
        }

        body:not(.dark-mode) .license-hero p strong {
            color: var(--texto-negro);
        }

        body:not(.dark-mode) .lic-label {
            color: var(--texto-gris);
        }

        body:not(.dark-mode) .hwid-note p {
            color: var(--texto-gris);
        }

        body:not(.dark-mode) .hwid-note strong {
            color: var(--azul);
        }

        /* ── Dark mode overrides ──────────────────────────────────── */
        body.dark-mode .sec-alt {
            background: #1e1e21;
        }

        body.dark-mode .faq-item {
            background: #27272a;
            border-color: #3f3f46;
        }

        body.dark-mode .sec-title,
        body.dark-mode .sec-subtitle,
        body.dark-mode .faq-q,
        body.dark-mode .faq-a,
        body.dark-mode .feature-list li {
            color: inherit;
        }

        body.dark-mode .compare-callout {
            background: rgba(0,109,179,0.12);
            border-color: rgba(0,109,179,0.3);
        }

        body.dark-mode footer {
            background-color: #1a1a1d;
            border-top-color: #333;
        }

        body.dark-mode .feature-visual {
            border-color: #3f3f46;
        }

        /* ── Responsive ───────────────────────────────────────────── */
        @media (max-width: 768px) {
            .hero { padding: 4rem 20px 3.5rem; }

            .hero-title { letter-spacing: -1px; }

            .hero-btns { flex-direction: column; align-items: center; }

            .btn-primary, .btn-outline {
                width: 100%;
                max-width: 320px;
                text-align: center;
                padding: 14px 28px;
            }

            .hero-screen { aspect-ratio: 16/9; }

            .sec { padding: 3.5rem 16px; }

            .feature-row,
            .feature-row.reverse {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .feature-row.reverse .feature-text { order: 1; }
            .feature-row.reverse .feature-visual,
            .feature-row.reverse .nexo-slider { order: 2; }

            .feature-visual { aspect-ratio: 16/9; }

            .license-hero { padding: 2.5rem 1.25rem; }

            .license-steps { gap: 0.3rem; }

            .lic-arrow { padding-top: 0.6rem; font-size: 1rem; }

            table.compare thead th,
            table.compare td { padding: 0.7rem 0.9rem; }
        }

        @media (max-width: 480px) {
            .hero-title { font-size: 2rem; letter-spacing: -0.5px; }
            .hero-badge { font-size: 0.65rem; letter-spacing: 2px; }
            .sec-title { font-size: 1.3rem; }
            table.compare { font-size: 0.8rem; }
        }

        /* ═══════════════════════════════════════════════════════════
           CARRUSEL / SLIDER
        ═══════════════════════════════════════════════════════════ */
        .nexo-slider {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 9;
            border-radius: 16px;
            border: 2px solid var(--gris-borde-divisor);
            box-shadow: var(--sombra-industrial);
            overflow: hidden;
            background: linear-gradient(145deg, var(--fondo-tarjeta), var(--fondo-body));
            user-select: none;
        }

        .nexo-slider::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--azul-soft), transparent 55%);
            pointer-events: none;
            z-index: 1;
        }

        .slider-slides {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slider-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 0.65s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-slide.is-active { opacity: 1; }

        .slider-slide img,
        .slider-img {
            width: 1280px;
            height: 720px;
            max-width: 100%;
            max-height: 100%;
            object-fit: cover;
            object-position: top center;
            display: block;
            border-radius: 14px;
        }

        /* Etiqueta de placeholder cuando la imagen aún no está cargada */
        .slider-slide[data-label]::after {
            content: attr(data-label);
            position: absolute;
            bottom: 42px;
            left: 50%;
            transform: translateX(-50%);
            color: #3a3a42;
            font-size: 0.7rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            white-space: nowrap;
            pointer-events: none;
            z-index: 3;
        }

        /* Indicadores (dots) */
        .slider-dots {
            position: absolute;
            bottom: 14px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 7px;
            z-index: 10;
        }

        .hero-img {
            width: 1440px !important;
            height: 810px !important;
            max-width: 100%;
            max-height: 100%;
            object-fit: cover;
            object-position: top center;
            display: block;
            border-radius: 14px;
        }

        .slider-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--gris-borde-divisor);
            border: none;
            cursor: pointer;
            padding: 0;
            transition: background 0.25s ease, transform 0.25s ease;
        }

        .slider-dot.is-active {
            background: var(--azul);
            transform: scale(1.4);
        }

        /* Barra de progreso */
        .slider-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 3px;
            width: 0%;
            background: var(--azul);
            z-index: 10;
            border-radius: 0 2px 0 0;
        }

        @keyframes slider-fill {
            from { width: 0%; }
            to   { width: 100%; }
        }

        .slider-bar.running {
            animation: slider-fill 3s linear forwards;
        }

        body.dark-mode .nexo-slider {
            border-color: #3f3f46;
        }

        body.dark-mode .slider-dot {
            background: #3f3f46;
        }

        /* ── Flechas prev / next ────────────────────────────────── */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.5);
            border: 1.5px solid rgba(255, 255, 255, 0.22);
            color: #ffffff;
            font-size: 1.5rem;
            line-height: 1;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            padding: 0;
            backdrop-filter: blur(6px);
            transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
            /* Se ocultan en reposo y aparecen al hacer hover sobre el slider */
            opacity: 0;
            pointer-events: none;
        }

        .nexo-slider:hover .slider-arrow,
        .nexo-slider:focus-within .slider-arrow {
            opacity: 1;
            pointer-events: auto;
        }

        .slider-arrow:hover {
            background: var(--azul);
            border-color: var(--azul);
            transform: translateY(-50%) scale(1.12);
        }

        .slider-prev { left: 12px; }
        .slider-next { right: 12px; }

        /* En móvil siempre visibles (no hay hover) */
        @media (hover: none), (max-width: 768px) {
            .slider-arrow {
                opacity: 1;
                pointer-events: auto;
                width: 32px;
                height: 32px;
                font-size: 1.2rem;
            }
        }

        /* ── Badge de dimensiones (solo en placeholder) ─────────── */
        .slider-slide::before {
            content: "1280 × 720 px";
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(0, 0, 0, 0.45);
            color: rgba(255, 255, 255, 0.6);
            padding: 3px 12px;
            border-radius: 50px;
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 1.2px;
            z-index: 4;
            pointer-events: none;
            backdrop-filter: blur(4px);
        }

        /* Ocultar badge cuando la imagen real ya está cargada */
        .slider-slide[data-loaded]::before,
        .slider-slide[data-loaded]::after {
            display: none;
        }

/* ── Clases para estilos que antes eran inline ─────────── */

/* Imagen principal del hero */
.nexo-hero-img {
    border-radius: 32px;
    max-width: 100%;
    height: auto;
    max-height: 505px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Sub-etiquetas de la cabecera de la tabla comparativa */
.th-sub {
    font-weight: 500;
    font-size: 0.75em;
    opacity: 0.75;
}

/* Título de sección con margen inferior reducido */
.sec-title--tight {
    margin-bottom: 0.5rem !important;
}
