    /* =========================================
       1. VARIABLES DE DISEÑO (Identidad La Onda)
       ========================================= */
    :root {
        --bg-dark: #0a0b10;           /* Fondo principal */
        --card-bg: #161b22;           /* Fondo tarjetas */
        --primary: #00c853;           /* Verde neón */
        --accent-blue: #0070f3;       /* Azul acento */
        --text-white: #ffffff;        /* Texto principal */
        --text-gray: #a0a0a0;         /* Texto secundario */
        --border-color: #30363d;      /* Bordes estándar */
        --nav-bg: rgba(10, 11, 16, 0.95);
    }

    /* =========================================
       2. ESTILOS BASE Y RESET
       ========================================= */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        background-color: var(--bg-dark);
        color: var(--text-white);
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        line-height: 1.6;
        overflow-x: hidden;
    }

    /* =========================================
   4. HERO SECTION (CON PARALLAX Y OPACIDAD)
   ========================================= */
.hero {
    padding: 180px 0; /* Un poco más de aire para apreciar el efecto */
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-dark); 
}

/* El fondo con Parallax */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Reemplaza con tu imagen de fondo */
    background-image: url('https://laonda.agency/Fondo1_mini.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* EL SECRETO DEL PARALLAX: */
    background-attachment: fixed; 
    
    opacity: 0.8; /* Oscurecemos la imagen */
    z-index: 1;
}

/* Gradiente de transición para suavizar la unión con la siguiente sección */
.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(10, 11, 16, 0.4) 0%, 
        rgba(10, 11, 16, 0.8) 70%, 
        var(--bg-dark) 100%);
    z-index: 2;
}

/* Contenido siempre al frente */
.hero .container {
    position: relative;
    z-index: 10;
}

/* Nota importante para móviles */
@media (max-width: 1024px) {
    .hero::before {
        /* El parallax fixed suele fallar en iOS/Android, 
           lo desactivamos en móviles para evitar saltos visuales */
        background-attachment: scroll;
    }
}

    .container {
        width: 90%;
        max-width: 1200px;
        margin: auto;
    }

    /* =========================================
       3. NAVBAR
       ========================================= */
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 5%;
        background: var(--nav-bg);
        backdrop-filter: blur(15px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .logo { font-weight: 800; font-size: 1.6rem; text-transform: uppercase; }
    .logo span { color: var(--accent-blue); }
    .nav-menu { display: flex; gap: 35px; }
    .nav-menu a { color: var(--text-gray); text-decoration: none; font-size: 0.9rem; transition: 0.3s; }
    .nav-menu a:hover { color: var(--primary); }

    .btn-cta-nav {
        border: 2px solid var(--primary);
        color: var(--primary);
        padding: 10px 24px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-size: 0.8rem;
        transition: 0.3s;
    }

    .btn-cta-nav:hover {
        background: var(--primary);
        color: #000;
        box-shadow: 0 0 20px rgba(0, 200, 83, 0.4);
    }

    /* =========================================
       4. HERO SECTION
       ========================================= */
    .hero {
        padding: 120px 0;
        text-align: center;
        background: radial-gradient(circle at top, #1a2332 0%, var(--bg-dark) 80%);
    }

    .badge {
        background: rgba(0, 112, 243, 0.2);
        color: #00000;
        border: 1px solid var(--accent-blue);
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 700;
    }

    h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); margin: 25px 0; font-weight: 900; line-height: 1.1; }

    .btn-primary {
        background: var(--primary);
        color: #000;
        padding: 20px 45px;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 800;
        display: inline-block;
        transition: 0.3s;
    }

    .btn-primary:hover { transform: scale(1.05); box-shadow: 0 15px 40px rgba(0, 200, 83, 0.4); }

    /* =========================================
       5. MÓDULOS (CARDS)
       ========================================= */
    .modules { padding: 80px 0; }
    .modules h2 { text-align: center; font-size: 2.5rem; margin-bottom: 50px; }
    .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; }

    .card {
        background: var(--card-bg);
        padding: 40px;
        border-radius: 16px;
        border: 1px solid var(--border-color);
        transition: 0.3s;
    }

    .card:hover { border-color: var(--primary); transform: translateY(-10px); }

    /* =========================================
       6. SECCIÓN SISTEMA (ZOOM & CÁPSULA)
       ========================================= */
    .system-section {
        padding: 100px 0;
        background: linear-gradient(180deg, var(--bg-dark) 0%, #0f1218 100%);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .system-grid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 60px;
        align-items: center;
    }

    .system-badge { color: var(--primary); font-weight: 700; letter-spacing: 2px; font-size: 0.8rem; display: block; margin-bottom: 15px; }
    .system-content h2 { font-size: clamp(2.2rem, 5vw, 2.8rem); line-height: 1.2; margin-bottom: 25px; }
    .system-content h2 span { color: var(--text-gray); display: block; font-size: clamp(1.8rem, 4vw, 2.2rem); }

    .system-content .highlight {
        border-left: 3px solid var(--primary);
        padding-left: 20px;
        margin-top: 30px;
        color: var(--text-white);
    }

    .btn-secondary-system {
        display: inline-block;
        padding: 14px 35px;
        border: 2px solid rgba(0, 200, 83, 0.3);
        color: var(--primary);
        text-decoration: none;
        border-radius: 50px;
        font-weight: 700;
        transition: 0.3s;
        margin-top: 25px;
    }

    .btn-secondary-system:hover {
        background: var(--primary);
        color: #000;
        box-shadow: 0 0 25px rgba(0, 200, 83, 0.5);
        transform: translateY(-3px);
    }

    .image-wrapper-system { border-radius: 20px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.05); }
    .image-wrapper-system img { width: 100%; display: block; transition: transform 0.6s ease; }
    .image-wrapper-system:hover img { transform: scale(1.1); }

    /* =========================================
       7. SECCIÓN PLATAFORMA (EFECTO BRILLO CORREGIDO)
       ========================================= */
    .platform-section {
        padding: 100px 0;
        background: var(--bg-dark);
        border-top: 1px solid var(--border-color);
    }

    .section-header-centered { text-align: center; margin-bottom: 70px; }

    .platform-grid {
        display: grid;
        grid-template-columns: 0.8fr 1.2fr;
        gap: 50px;
        align-items: center;
    }

    .platform-intro { font-size: 1.1rem; margin-bottom: 30px; color: var(--text-white); }
    .platform-features { list-style: none; margin-bottom: 30px; }

    .platform-features li {
        font-size: 0.95rem;
        color: var(--text-gray);
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        transition: 0.3s ease;
    }

    /* Punto neón basado en tu imagen */
    .platform-features li::before {
        content: '';
        width: 8px; height: 8px;
        background-color: var(--primary);
        border-radius: 50%;
        margin-right: 15px;
        box-shadow: 0 0 10px var(--primary);
    }

    .platform-features li:hover { color: var(--primary); transform: translateX(8px); }

    .platform-footer-text {
        font-size: 0.9rem;
        color: var(--text-gray);
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 20px;
    }

    /* Contenedor de la Imagen del Dashboard */
    .platform-image-container {
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid rgba(0, 200, 83, 0.2);
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
        transition: 0.5s ease;
    }

    .platform-image-container img {
        width: 100%;
        display: block;
        filter: brightness(1.1); /* Realce de colores neón */
        transition: transform 0.8s ease;
    }

    .platform-image-container:hover {
        border-color: var(--primary);
        box-shadow: 0 0 50px rgba(0, 200, 83, 0.25);
    }

    .platform-image-container:hover img { transform: scale(1.05); }

    /* =========================================
       8. SECCIÓN PROCESO (FLUJO)
       ========================================= */
    .process-section {
        padding: 100px 0;
        background: linear-gradient(180deg, #0f1218 0%, var(--bg-dark) 100%);
        border-top: 1px solid var(--border-color);
        text-align: center;
    }

    .process-image-wrapper {
        max-width: 1000px;
        margin: 40px auto 60px;
        border-radius: 24px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: 0.4s;
    }

    .process-image-wrapper:hover { box-shadow: 0 0 50px rgba(0, 200, 83, 0.15); transform: translateY(-5px); }
    .process-image-wrapper img { width: 80%; }

    .btn-demo {
        display: inline-block;
        padding: 16px 45px;
        border: 2px solid rgba(0, 200, 83, 0.3);
        color: var(--text-white);
        text-decoration: none;
        border-radius: 100px;
        font-weight: 700;
        transition: 0.3s;
        background: rgba(0, 200, 83, 0.05);
    }

    .btn-demo:hover {
        background: var(--primary);
        color: #000;
        box-shadow: 0 0 30px rgba(0, 200, 83, 0.4);
        transform: translateY(-3px);
    }

/* =========================================
   12. SECCIÓN RESULTADOS (image_b3a544.jpg)
   ========================================= */
.results-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 60px;
}

.result-card {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s ease;
}

.result-card img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.9);
    transition: 0.5s ease;
}

/* Efecto de luz neón consistente con el resto de la web */
.result-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 112, 243, 0.15);
    transform: translateY(-5px);
}

.result-card:hover img {
    filter: brightness(1.1);
}

/* --- BLOQUE DE AUDIENCIA --- */
.audience-box {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 60px 40px;
    position: relative;
}

.audience-box h3 {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.audience-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    margin-bottom: 40px;
}

.audience-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.audience-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.95rem;
    color: var(--text-gray);
    transition: 0.3s;
}

.audience-item i {
    font-style: normal;
    font-size: 1.2rem;
    /* Si decides usar iconos de imagen o font-awesome, aquí va el color */
    filter: grayscale(1) brightness(1.5);
}

.audience-item:hover {
    color: var(--text-white);
    transform: translateX(5px);
}

/* Responsivo */
@media (max-width: 992px) {
    .audience-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
    .audience-list {
        grid-template-columns: 1fr;
    }
    .audience-box {
        padding: 40px 20px;
    }
}

/* =========================================
   15. SECCIÓN ALCANCE (image_c10ffc.jpg)
   ========================================= */
.scope-section {
    padding: 100px 0;
    background: var(--bg-dark);
    /* Usamos tipografía Inter que ya tienes cargada */
}

.scope-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.scope-card {
    border-radius: 28px;
    padding: 60px 50px;
    position: relative;
    transition: 0.4s ease;
}

/* --- TEMA NEGATIVO (Izquierda - Magenta) --- */
.negative-scope {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 0, 128, 0.08); /* Borde rosa sutil */
}

.negative-scope h2 span {
    color: #ff0080; /* Magenta neón */
    font-weight: 700;
}

.negative-scope .scope-item {
    margin-bottom: 35px;
    display: flex;
    align-items: start;
    gap: 20px;
}

.negative-scope .icon-negative {
    font-style: normal;
    color: #ff0080;
    font-size: 1.8rem;
    margin-top: 3px;
    /* Efecto de luz rosa */
    filter: drop-shadow(0 0 8px rgba(255, 0, 128, 0.5));
}

.negative-scope .scope-text h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    text-transform: none; /* Mantener minúsculas como en la imagen */
    margin-bottom: 2px;
}

.negative-scope .scope-text p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.4;
}

.negative-scope .scope-footer-text {
    margin-top: 60px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
}

/* --- TEMA POSITIVO (Derecha - Cian) --- */
.positive-scope {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(0, 255, 255, 0.08); /* Borde cian sutil */
    text-align: center;
}

.positive-scope h2 {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 50px;
}

.scope-inclusion-box {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    text-align: left;
}

.inclusion-title {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    text-align: center;
}

.inclusion-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
}

.inclusion-item i {
    font-style: normal;
    color: #00ffff; /* Cian neón */
    font-size: 1.3rem;
    /* Efecto de luz cian */
    filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.5));
}

/* --- BOTÓN CTA DIAGNÓSTICO (Único) --- */
.scope-cta-container {
    margin-top: 40px;
    text-align: center;
}

.btn-scope-diag {
    display: inline-block;
    padding: 18px 30px;
    background: rgba(0, 255, 255, 0.03);
    border: 2px solid #00ffff;
    color: var(--text-white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
    transition: 0.3s ease;
    /* Brillo inicial cian */
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

.btn-scope-diag:hover {
    background: #00ffff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.4);
}

/* --- RESPONSIVO --- */
@media (max-width: 992px) {
    .scope-grid {
        grid-template-columns: 1fr; /* Apilar en móviles/tablets */
    }
    .scope-card {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .scope-header h2 {
        font-size: 1.5rem;
    }
    .scope-inclusion-box {
        padding: 25px;
    }
}

/* =========================================
   16. SECCIÓN FAQ Y CIERRE (image_b40ab8.png)
   ========================================= */
.faq-final-section {
    padding: 80px 0 120px;
    background: var(--bg-dark);
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
}

.faq-header h2 span {
    color: #ff00ff; /* Magenta/Fucsia neón */
    filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.5));
}

/* Grid de Preguntas */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 80px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 255, 255, 0.2);
    transform: translateY(-3px);
}

.faq-icon-box {
    min-width: 60px;
    max-width: 60px;
}

.faq-icon-box img {
    width: 100%;
    filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.4)); /* Brillo cian en iconos */
}

.faq-text h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-white);
}

.faq-text p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.4;
}

/* Divisor Neón Rosa */
.faq-cta-divider {
    width: 100%;
    height: 1px;
    background: #ff00ff;
    box-shadow: 0 0 15px #ff00ff;
    margin-bottom: 80px;
    opacity: 0.6;
}

/* Bloque de Cierre */
.final-cta-box {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.final-cta-box h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
}

.final-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.final-subtitle span {
    color: var(--text-white);
    font-weight: 700;
}

/* Botón Final Cian */
.btn-final-diagnostico {
    display: inline-block;
    padding: 18px 45px;
    background: transparent;
    border: 2px solid #00ffff;
    color: var(--text-white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.btn-final-diagnostico:hover {
    background: #00ffff;
    color: #000;
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.5);
    transform: scale(1.05);
}

/* Responsivo */
@media (max-width: 850px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .faq-item {
        padding: 20px;
    }
}

/* =========================================
   17. FOOTER & REDES SOCIALES
   ========================================= */
.social-footer {
    padding: 60px 0;
    background: #050608; /* Un tono más oscuro que el fondo para cerrar */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.social-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.social-logo {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--text-white);
}

.social-logo span {
    color: #798E9F;
}

.social-links {
    display: flex;
    gap: 40px;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.4s ease;
    padding: 10px 20px;
    border-radius: 12px;
    border: 1px solid transparent;
}

/* Efecto Hover: Brillo Azul */
.social-icon:hover {
    color: var(--accent-blue);
    background: rgba(0, 112, 243, 0.05);
    border-color: rgba(0, 112, 243, 0.2);
    box-shadow: 0 0 20px rgba(0, 112, 243, 0.1);
    transform: translateY(-3px);
}

.social-icon svg {
    transition: 0.4s ease;
}

.social-icon:hover svg {
    filter: drop-shadow(0 0 5px var(--accent-blue));
}

.footer-copy {
    font-size: 0.75rem;
    color: #444;
    margin-top: 20px;
    letter-spacing: 1px;
}

/* Ajuste móvil */
@media (max-width: 480px) {
    .social-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* =========================================
   REESTRUCTURACIÓN LOGO NAVBAR
   ========================================= */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px; /* Separación entre imagen y texto */
    text-decoration: none;
    transition: 0.3s ease;
}

.nav-logo-img {
    height: 40px; /* Ajusta esta altura según el diseño de tu logo */
    width: auto;
    display: block;
    object-fit: contain;
    /* Filtro opcional por si tu logo es oscuro y quieres que brille un poco */
    filter: drop-shadow(0 0 8px rgba(0, 112, 243, 0.2));
}

.logo-text {
    font-weight: 800;
    font-size: 1.4rem;
    text-transform: uppercase;
    color: var(--text-white);
    letter-spacing: 1px;
}

.logo-text span {
    color: #798E9F;
}

.logo-container:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

/* Si quieres que el texto desaparezca en móviles muy pequeños para dar prioridad al logo */
@media (max-width: 480px) {
    .logo-text {
        display: none;
    }
    .nav-logo-img {
        height: 35px;
    }
}

    /* =========================================
       9. RESPONSIVO GLOBAL
       ========================================= */
    @media (max-width: 992px) {
        .system-grid, .platform-grid { grid-template-columns: 1fr; text-align: center; }
        .system-content h2, .platform-features li { justify-content: center; }
        .system-image, .platform-visual { order: -1; }
        /*.nav-menu { display: none; } */
        .nav-actions { display: none; }
    }