/* ============================================================
       TOKENS
    ============================================================ */
    :root {
      --primary:    #1D6EFF;
      --primary-dk: #1451CC;
      --primary-lt: #EEF4FF;
      --accent:     #00BFFF;
      --success:    #00C48C;
      --warning:    #FF9F43;

      --white:      #FFFFFF;
      --bg:         #F4F7FF;
      --bg2:        #EDF1FB;
      --card:       #FFFFFF;

      --txt-head:   #08112B;
      --txt-body:   #374151;
      --txt-muted:  #6B7280;
      --border:     #E4E9F6;

      --nav-h:      72px;
      --radius-sm:  8px;
      --radius:     14px;
      --radius-lg:  22px;

      --shadow-sm:  0 2px 8px rgba(0,0,0,.06);
      --shadow-md:  0 8px 30px rgba(0,0,0,.09);
      --shadow-lg:  0 20px 60px rgba(0,0,0,.12);

      --t: .3s cubic-bezier(.4,0,.2,1);
    }

    /* ============================================================
       BASE
    ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: 'Manrope', sans-serif;
      background: var(--white);
      color: var(--txt-body);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      padding-bottom: 3.5rem;
    }

    h1,h2,h3,h4,h5,h6 {
      font-family: 'Space Grotesk', sans-serif;
      color: var(--txt-head);
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -.4px;
    }

    p { line-height: 1.78; }

    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

    /* ============================================================
       ── NAVIGATION
    ============================================================ */
    #mainNav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 1050;
      height: var(--nav-h);
      transition: background var(--t), box-shadow var(--t), height var(--t);
    }
    #mainNav.transparent { background: transparent; }
    #mainNav.solid {
      background: rgba(255,255,255,.97);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
      height: 64px;
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
      gap: 0;
    }

    /* Logo */
    .nav-logo {
      display: flex; align-items: center;
      flex: 0 0 auto;
      text-decoration: none;
    }
    .nav-logo img { height: 43px; width: auto; display: block; }

    /* Links — centered */
    .nav-links {
      display: flex; align-items: center;
      list-style: none;
      margin: 0; padding: 0;
      flex: 1;
      justify-content: center;
      gap: .25rem;
    }
    .nav-links a {
      font-family: 'Manrope', sans-serif;
      font-size: .9rem;
      font-weight: 600;
      color: var(--txt-body);
      text-decoration: none;
      padding: .45rem .9rem;
      border-radius: 8px;
      transition: var(--t);
      letter-spacing: .1px;
      display: flex; align-items: center; gap: .4rem;
    }
    .nav-links a:hover { color: var(--primary); background: var(--primary-lt); }
    .nav-links a.active {
      color: var(--primary);
      background: var(--primary-lt);
    }
    /* Pill underline on active */
    .nav-links a.active::after,
    #mainNav.transparent .nav-links a.active::after {
      content: '';
      display: block;
      width: 4px; height: 4px; border-radius: 50%;
      background: var(--primary);
      margin: 0 auto;
    }
    /* White links when transparent (over dark hero) */
    #mainNav.transparent .nav-links a { color: rgba(255,255,255,.85); }
    #mainNav.transparent .nav-links a:hover,
    #mainNav.transparent .nav-links a.active {
      color: #fff;
      background: rgba(255,255,255,.15);
    }

    /* Actions */
    .nav-actions {
      flex: 0 0 auto;
      display: flex; align-items: center; gap: .75rem;
    }
    .nav-link-ghost {
      font-family: 'Manrope', sans-serif;
      font-size: .88rem; font-weight: 600;
      color: var(--txt-body);
      text-decoration: none;
      padding: .42rem .9rem;
      border-radius: 8px;
      transition: var(--t);
    }
    #mainNav.transparent .nav-link-ghost { color: rgba(255,255,255,.8); }
    .nav-link-ghost:hover { color: var(--primary); background: var(--primary-lt); }
    #mainNav.transparent .nav-link-ghost:hover { background: rgba(255,255,255,.15); color: #fff; }

    .btn-nav-cta {
      font-family: 'Manrope', sans-serif;
      font-size: .88rem; font-weight: 700;
      color: #fff;
      background: var(--primary);
      border: none;
      border-radius: 50px;
      padding: .5rem 1.3rem;
      text-decoration: none;
      transition: var(--t);
      white-space: nowrap;
      box-shadow: 0 4px 16px rgba(29,110,255,.35);
    }
    .btn-nav-cta:hover {
      background: var(--primary-dk);
      color: #fff;
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(29,110,255,.45);
    }

    /* Hamburger */
    .nav-toggle {
      display: none;
      background: none; border: none;
      width: 40px; height: 40px;
      border-radius: 10px;
      flex-direction: column; justify-content: center;
      align-items: center; gap: 5px;
      cursor: pointer; padding: 0;
      transition: var(--t);
    }
    .nav-toggle:hover { background: var(--primary-lt); }
    .nav-toggle span {
      display: block;
      height: 2px; border-radius: 2px;
      background: var(--txt-head);
      transition: var(--t);
    }
    .nav-toggle span:nth-child(1) { width: 22px; }
    .nav-toggle span:nth-child(2) { width: 16px; }
    .nav-toggle span:nth-child(3) { width: 22px; }
    #mainNav.transparent .nav-toggle span { background: #fff; }
    .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); width: 22px; }
    .nav-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
    .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); width: 22px; }

    /* Mobile drawer */
    #mobileMenu {
      position: fixed; inset: 0; z-index: 1040;
      background: var(--white);
      display: flex; flex-direction: column;
      padding: calc(var(--nav-h) + 1rem) 1.5rem 2rem;
      transform: translateX(100%);
      transition: transform .4s cubic-bezier(.4,0,.2,1);
    }
    #mobileMenu.open { transform: translateX(0); }
    .mobile-links { list-style: none; margin: 0; padding: 0; flex: 1; }
    .mobile-links li { border-bottom: 1px solid var(--border); }
    .mobile-links a {
      display: flex; align-items: center; justify-content: space-between;
      padding: 1rem .25rem;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.15rem; font-weight: 700;
      color: var(--txt-head);
      text-decoration: none;
      transition: var(--t);
    }
    .mobile-links a:hover { color: var(--primary); }
    .mobile-cta { margin-top: 1.5rem; }
    .mobile-cta .btn-nav-cta { display: block; text-align: center; padding: .9rem; font-size: 1rem; }

    /* ============================================================
       ── HERO
    ============================================================ */
    #hero {
      min-height: 100vh;
      background: var(--txt-head);
      position: relative;
      display: flex; flex-direction: column;
      overflow: hidden;
    }

    /* Background layers */
    .hero-photo {
      position: absolute; inset: 0;
      background: url('../img/home_enrolit.jpg') center/cover no-repeat;
      opacity: .28;
    }
    .hero-gradient {
      position: absolute; inset: 0;
      background: linear-gradient(
        110deg,
        rgba(8,17,43,.95) 0%,
        rgba(21,81,204,.60) 50%,
        rgba(8,17,43,.85) 100%
      );
    }
    /* Grid texture */
    .hero-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    /* Glow blobs */
    .hero-blob {
      position: absolute; border-radius: 50%; pointer-events: none;
      filter: blur(80px);
    }
    .hero-blob-1 {
      width: 500px; height: 500px;
      background: rgba(29,110,255,.25);
      top: -100px; right: -80px;
    }
    .hero-blob-2 {
      width: 350px; height: 350px;
      background: rgba(0,191,255,.15);
      bottom: 50px; left: -50px;
    }

    .hero-content {
      position: relative; z-index: 2;
      flex: 1; display: flex; align-items: center;
      padding-top: var(--nav-h);
    }

    /* Label chip */
    .hero-chip {
      display: inline-flex; align-items: center; gap: .5rem;
      background: rgba(29,110,255,.2);
      border: 1px solid rgba(29,110,255,.4);
      border-radius: 50px;
      padding: .3rem 1rem;
      font-size: .78rem; font-weight: 700;
      letter-spacing: 1.5px; text-transform: uppercase;
      color: #7ab8ff;
      margin-bottom: 1.5rem;
    }
    .hero-chip .live-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--accent);
      animation: blink 1.4s ease infinite;
    }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }

    .hero-title-img {
      display: block;
      max-width: 100%;
      width: clamp(280px, 55vw, 620px);
      height: auto;
      margin-bottom: 1.5rem;
    }
    .hero-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(3rem, 6.5vw, 6rem);
      font-weight: 800;
      letter-spacing: -3px;
      line-height: 1.0;
      color: #fff;
      margin-bottom: 1.5rem;
    }
    .hero-title .word-blue {
      color: transparent;
      -webkit-text-stroke: 1.5px rgba(255,255,255,.5);
    }
    .hero-title .gradient-word {
      background: linear-gradient(90deg, #fff 0%, var(--accent) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-subtitle {
      font-size: 1.1rem;
      color: rgba(255,255,255,.65);
      max-width: 500px;
      line-height: 1.8;
      margin-bottom: 2.5rem;
      font-weight: 400;
    }

    /* CTA group */
    .hero-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

    .btn-hero-primary {
      font-family: 'Manrope', sans-serif;
      font-size: 1rem; font-weight: 700;
      color: #fff;
      background: var(--primary);
      border: none;
      border-radius: 50px;
      padding: .85rem 2.2rem;
      text-decoration: none;
      transition: var(--t);
      box-shadow: 0 8px 30px rgba(29,110,255,.45);
      display: inline-flex; align-items: center; gap: .5rem;
    }
    .btn-hero-primary:hover {
      background: var(--primary-dk); color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(29,110,255,.55);
    }
    .btn-hero-primary .arrow-icon {
      width: 28px; height: 28px; border-radius: 50%;
      background: rgba(255,255,255,.25);
      display: flex; align-items: center; justify-content: center;
      font-size: .8rem;
      transition: var(--t);
    }
    .btn-hero-primary:hover .arrow-icon { transform: translateX(3px); }

    .btn-hero-ghost {
      font-family: 'Manrope', sans-serif;
      font-size: .95rem; font-weight: 600;
      color: rgba(255,255,255,.8);
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 50px;
      padding: .85rem 2rem;
      text-decoration: none;
      transition: var(--t);
      display: inline-flex; align-items: center; gap: .5rem;
      backdrop-filter: blur(10px);
    }
    .btn-hero-ghost:hover {
      background: rgba(255,255,255,.14);
      border-color: rgba(255,255,255,.45);
      color: #fff;
    }

    /* Stats row */
    .hero-stats {
      margin-top: 3.5rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,.1);
      display: flex; flex-wrap: wrap; gap: 2.5rem;
    }
    .h-stat .val {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 2.2rem; font-weight: 800;
      color: #fff; line-height: 1;
      letter-spacing: -1px;
    }
    .h-stat .val sup { font-size: .9rem; }
    .h-stat .key {
      font-size: .76rem; font-weight: 600;
      letter-spacing: 1px; text-transform: uppercase;
      color: rgba(255,255,255,.45);
      margin-top: .3rem;
    }

    /* Hero right card */
    .hero-card {
      background: rgba(255,255,255,.07);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border: 1px solid rgba(255,255,255,.14);
      border-radius: var(--radius-lg);
      padding: 1.75rem;
      position: relative; z-index: 2;
      animation: floatY 6s ease-in-out infinite;
      max-width: 380px;
    }
    @keyframes floatY {
      0%,100%{ transform: translateY(0); }
      50%{ transform: translateY(-12px); }
    }
    .hc-header {
      display: flex; align-items: center; gap: .875rem;
      margin-bottom: 1.5rem;
    }
    .hc-icon {
      width: 48px; height: 48px; border-radius: 12px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; color: #fff;
      flex-shrink: 0;
    }
    .hc-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1rem; font-weight: 700; color: #fff;
    }
    .hc-sub { font-size: .76rem; color: rgba(255,255,255,.5); margin-top: .1rem; }

    .hc-prog { margin-bottom: .9rem; }
    .hc-prog-label {
      display: flex; justify-content: space-between;
      font-size: .75rem; font-weight: 600;
      color: rgba(255,255,255,.65);
      margin-bottom: .35rem;
    }
    .hc-track {
      height: 5px; border-radius: 50px;
      background: rgba(255,255,255,.1);
      overflow: hidden;
    }
    .hc-fill {
      height: 100%; border-radius: 50px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
    }
    .hc-fill.full { background: linear-gradient(90deg, var(--success), #00e5b4); }

    .reg-table { list-style: none; margin-top: 1rem; }
    .reg-row {
      display: flex; align-items: center; gap: .75rem;
      padding: .6rem 0;
      border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .reg-row:last-child { border-bottom: none; padding-bottom: 0; }
    .reg-av {
      width: 32px; height: 32px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: .68rem; font-weight: 700; color: #fff;
      flex-shrink: 0;
    }
    .reg-name {
      font-family: 'Manrope', sans-serif;
      font-size: .83rem; font-weight: 600; color: rgba(255,255,255,.85);
      flex: 1;
    }
    .tag-ok {
      font-size: .68rem; font-weight: 700;
      background: rgba(0,196,140,.2);
      color: #00C48C;
      padding: .15rem .55rem; border-radius: 50px;
    }

    /* Brands bar */
    .brands-bar {
      position: relative; z-index: 2;
      border-top: 1px solid rgba(255,255,255,.08);
      padding: 1.75rem 0;
    }
    .brands-label {
      font-size: .7rem; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      color: rgba(255,255,255,.3);
      text-align: center; margin-bottom: 1.25rem;
    }
    .brands-row {
      display: flex; align-items: center; justify-content: center;
      gap: 2.5rem; flex-wrap: wrap;
    }
    .brand-name {
      font-family: 'Space Grotesk', sans-serif;
      font-size: .9rem; font-weight: 700;
      letter-spacing: 1.5px;
      color: rgba(255,255,255,.22);
      transition: var(--t);
      text-transform: uppercase;
    }
    .brand-name:hover { color: rgba(255,255,255,.6); }

    .brands-slogan-img {
      display: block;
      max-width: 100%;
      width: clamp(220px, 50vw, 520px);
      height: auto;
      margin: 0 auto;
      opacity: .85;
    }
    .fbar-slogan-img {
      display: block;
      max-width: 100%;
      width: clamp(200px, 45vw, 480px);
      height: auto;
      margin: 0 auto;
      filter: brightness(0) invert(1);
      opacity: .95;
    }

    /* ============================================================
       ── SHARED SECTION STYLES
    ============================================================ */
    section { padding: 5.5rem 0; }
    section.bg-light-section { background: var(--bg); }
    section.bg-white-section { background: var(--white); }

    .sec-label {
      font-family: 'Manrope', sans-serif;
      font-size: .73rem; font-weight: 800;
      letter-spacing: 3px; text-transform: uppercase;
      color: var(--primary); margin-bottom: .75rem;
      display: flex; align-items: center; gap: .5rem;
    }
    .sec-label::before {
      content: '';
      display: inline-block;
      width: 20px; height: 2px;
      border-radius: 2px;
      background: var(--primary);
    }

    .sec-title {
      font-size: clamp(1.85rem, 3vw, 2.75rem);
      font-weight: 800;
      letter-spacing: -1.5px;
      line-height: 1.12;
      margin-bottom: .75rem;
    }
    .sec-desc {
      font-size: 1rem;
      color: var(--txt-muted);
      line-height: 1.8;
    }

    /* ============================================================
       ── FEATURE BAR (Fácil • Seguro • Rápido)
    ============================================================ */
    #fbar {
      background: var(--primary);
      padding: 1.1rem 0;
    }
    .fbar-list {
      display: flex; align-items: center; justify-content: center;
      gap: 2.5rem; flex-wrap: wrap;
    }
    .fbar-item {
      display: flex; align-items: center; gap: .6rem;
      font-family: 'Space Grotesk', sans-serif;
      font-size: .92rem; font-weight: 700;
      color: rgba(255,255,255,.9);
      letter-spacing: .3px;
    }
    .fbar-icon { font-size: 1.1rem; }

    /* ============================================================
       ── SERVICES
    ============================================================ */
    #services { background: var(--white); }

    .srv-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 2.25rem;
      height: 100%;
      transition: var(--t);
      position: relative;
      overflow: hidden;
    }
    .srv-card::after {
      content: '';
      position: absolute; inset: 0;
      border-radius: var(--radius-lg);
      border: 2px solid transparent;
      transition: var(--t);
      pointer-events: none;
    }
    .srv-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }
    .srv-card:hover::after {
      border-color: var(--primary);
    }

    .srv-num {
      font-family: 'Space Mono', monospace;
      font-size: .72rem; font-weight: 700;
      color: var(--primary);
      letter-spacing: 2px;
      margin-bottom: 1.5rem;
      opacity: .7;
    }
    .srv-icon {
      width: 60px; height: 60px; border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
    }
    .ic-blue   { background: var(--primary-lt); color: var(--primary); }
    .ic-purple { background: #F0EAFF; color: #7C3AED; }
    .ic-teal   { background: #E6FBF5; color: #0D9488; }

    .srv-card h4 {
      font-size: 1.15rem; font-weight: 700;
      margin-bottom: .75rem;
      letter-spacing: -.3px;
    }
    .srv-card p {
      font-size: .9rem; color: var(--txt-muted); line-height: 1.75; margin: 0;
    }
    .srv-link {
      display: inline-flex; align-items: center; gap: .4rem;
      font-family: 'Manrope', sans-serif;
      font-size: .85rem; font-weight: 700;
      color: var(--primary);
      text-decoration: none; margin-top: 1.5rem;
      transition: var(--t);
    }
    .srv-link i { transition: var(--t); }
    .srv-link:hover { color: var(--primary-dk); }
    .srv-link:hover i { transform: translateX(4px); }

    /* ============================================================
       ── PLATFORM / VALUE PROP
    ============================================================ */
    #platform { background: var(--bg); }

    /* Dashboard widget */
    .dash-shell {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }
    .dash-topbar {
      background: var(--bg2);
      border-bottom: 1px solid var(--border);
      padding: .75rem 1.25rem;
      display: flex; align-items: center; gap: .5rem;
    }
    .dash-dot { width: 10px; height: 10px; border-radius: 50%; }
    .d-r { background: #FF5F57; }
    .d-y { background: #FEBC2E; }
    .d-g { background: #28C840; }
    .dash-url {
      margin-left: .5rem;
      font-family: 'Space Mono', monospace;
      font-size: .72rem; color: var(--txt-muted);
      background: var(--border); border-radius: 6px;
      padding: .15rem .65rem;
    }

    .dash-body { padding: 1.5rem; }
    .dash-kpi-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; margin-bottom: 1rem; }
    .kpi {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1rem 1.1rem;
      transition: var(--t);
    }
    .kpi:hover { border-color: var(--primary); }
    .kpi-val {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.65rem; font-weight: 800;
      line-height: 1; margin-bottom: .2rem;
    }
    .kpi-key { font-size: .72rem; font-weight: 600; color: var(--txt-muted); letter-spacing: .3px; }
    .c-blue   { color: var(--primary); }
    .c-teal   { color: #0D9488; }
    .c-purple { color: #7C3AED; }
    .c-green  { color: var(--success); }

    /* Chart */
    .dash-chart-wrap {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.1rem 1.25rem;
    }
    .dch-header {
      display: flex; justify-content: space-between; align-items: center;
      margin-bottom: 1rem;
    }
    .dch-title { font-size: .82rem; font-weight: 700; color: var(--txt-body); }
    .dch-badge {
      font-size: .7rem; font-weight: 700;
      background: rgba(0,196,140,.12); color: var(--success);
      padding: .15rem .6rem; border-radius: 50px;
    }
    .chart-area { display: flex; align-items: flex-end; gap: .45rem; height: 80px; }
    .cb { flex: 1; border-radius: 5px 5px 0 0; cursor: pointer; transition: var(--t); }
    .cb:hover { filter: brightness(1.1); border-radius: 5px; }
    .cb1 { height: 35%; background: #D1E0FF; }
    .cb2 { height: 58%; background: #A8C4FF; }
    .cb3 { height: 75%; background: #6Ba3FF; }
    .cb4 { height: 50%; background: #A8C4FF; }
    .cb5 { height: 92%; background: var(--primary); }
    .cb6 { height: 68%; background: #6Ba3FF; }
    .cb7 { height: 42%; background: #A8C4FF; }
    .cb8 { height: 55%; background: #D1E0FF; }

    /* Feature list */
    .feat-list { list-style: none; }
    .feat-item {
      display: flex; align-items: flex-start; gap: 1rem;
      padding: 1.25rem 0;
      border-bottom: 1px solid var(--border);
    }
    .feat-item:last-child { border-bottom: none; }
    .fi-icon {
      width: 44px; height: 44px; border-radius: 12px;
      background: var(--primary-lt);
      border: 1px solid rgba(29,110,255,.15);
      display: flex; align-items: center; justify-content: center;
      color: var(--primary); font-size: 1.05rem;
      flex-shrink: 0;
    }
    .fi-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: .97rem; font-weight: 700;
      margin-bottom: .3rem; color: var(--txt-head);
    }
    .fi-desc { font-size: .85rem; color: var(--txt-muted); line-height: 1.65; margin: 0; }

    /* ============================================================
       ── APP SHOWCASE
    ============================================================ */
    #app-showcase { background: var(--txt-head); overflow: hidden; position: relative; }

    .app-glow {
      position: absolute; border-radius: 50%; pointer-events: none;
      filter: blur(100px); opacity: .25;
    }
    .app-glow-1 { width: 500px; height: 500px; background: var(--primary); top: -100px; left: -100px; }
    .app-glow-2 { width: 400px; height: 400px; background: var(--accent); bottom: -80px; right: -80px; }

    .phone-frame {
      width: 210px;
      background: #1A1D2E;
      border-radius: 34px;
      border: 2px solid rgba(255,255,255,.1);
      overflow: hidden;
      box-shadow: 0 40px 100px rgba(0,0,0,.5);
      margin: 0 auto;
    }
    .pf-notch {
      height: 28px;
      background: #121420;
      display: flex; align-items: center; justify-content: center;
    }
    .pf-notch-bar {
      width: 80px; height: 5px; border-radius: 3px;
      background: rgba(255,255,255,.12);
    }
    .pf-screen { padding: .9rem; }
    .pf-topbar {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: .85rem;
    }
    .pf-logo-txt {
      font-family: 'Space Grotesk', sans-serif;
      font-size: .75rem; font-weight: 800; color: #fff;
      letter-spacing: -.3px;
    }
    .pf-live {
      display: flex; align-items: center; gap: .3rem;
      font-size: .6rem; font-weight: 700; color: #00C48C;
    }
    .pf-live-dot {
      width: 5px; height: 5px; border-radius: 50%; background: #00C48C;
      animation: blink 1.4s ease infinite;
    }
    .pf-event {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 10px; padding: .7rem .8rem;
      margin-bottom: .5rem;
    }
    .pf-ev-name { font-family: 'Space Grotesk', sans-serif; font-size: .72rem; font-weight: 700; color: #fff; margin-bottom: .15rem; }
    .pf-ev-date { font-size: .6rem; color: rgba(255,255,255,.45); }
    .pf-ev-tag {
      display: inline-block; margin-top: .3rem;
      background: rgba(29,110,255,.2); color: #7ab8ff;
      font-size: .58rem; font-weight: 700;
      padding: .1rem .45rem; border-radius: 4px;
    }
    .pf-btn {
      width: 100%; border: none; border-radius: 8px;
      background: var(--primary); color: #fff;
      font-family: 'Manrope', sans-serif;
      font-size: .72rem; font-weight: 700;
      padding: .5rem; margin-top: .5rem;
      cursor: pointer;
    }

    /* Feature chip list */
    .fchip-list { display: flex; flex-wrap: wrap; gap: .6rem; }
    .fchip {
      display: inline-flex; align-items: center; gap: .4rem;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 50px;
      padding: .4rem 1rem;
      font-size: .82rem; font-weight: 600;
      color: rgba(255,255,255,.8);
      transition: var(--t);
    }
    .fchip:hover { background: rgba(29,110,255,.3); border-color: rgba(29,110,255,.5); color: #fff; }

    /* Progress bars (light bg) */
    .prog-sect { margin-top: 2.5rem; }
    .prog-row { margin-bottom: 1.25rem; }
    .prog-row:last-child { margin-bottom: 0; }
    .prog-meta {
      display: flex; justify-content: space-between; align-items: baseline;
      margin-bottom: .45rem;
    }
    .prog-name { font-size: .88rem; font-weight: 700; color: rgba(255,255,255,.85); }
    .prog-pct {
      font-family: 'Space Mono', monospace;
      font-size: .78rem; color: var(--accent); font-weight: 700;
    }
    .prog-track { height: 6px; background: rgba(255,255,255,.1); border-radius: 50px; overflow: hidden; }
    .prog-fill {
      height: 100%; border-radius: 50px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      width: 0;
      transition: width 1.5s cubic-bezier(.4,0,.2,1);
    }

    /* ============================================================
       ── METRICS
    ============================================================ */
    #metrics { background: var(--white); }

    .metric-tile {
      display: flex; align-items: center; gap: 1.25rem;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.65rem;
      transition: var(--t);
    }
    .metric-tile:hover {
      border-color: var(--primary);
      box-shadow: 0 4px 20px rgba(29,110,255,.12);
      transform: translateY(-3px);
    }
    .mt-icon {
      width: 54px; height: 54px; border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; flex-shrink: 0;
    }
    .mt-val {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.8rem; font-weight: 800;
      line-height: 1; margin-bottom: .15rem;
    }
    .mt-key { font-size: .8rem; font-weight: 600; color: var(--txt-muted); }

    /* Attribute bars (Uso Fácil / Flexible / Modular) */
    .attr-bar { margin-top: 2.5rem; }
    .ab-item { margin-bottom: 1.25rem; }
    .ab-item:last-child { margin-bottom: 0; }
    .ab-meta { display: flex; justify-content: space-between; margin-bottom: .45rem; }
    .ab-name { font-size: .9rem; font-weight: 700; color: var(--txt-head); }
    .ab-pct {
      font-family: 'Space Mono', monospace;
      font-size: .8rem; color: var(--primary); font-weight: 700;
    }
    .ab-track { height: 7px; background: var(--bg2); border-radius: 50px; overflow: hidden; }
    .ab-fill {
      height: 100%; border-radius: 50px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      width: 0;
      transition: width 1.5s cubic-bezier(.4,0,.2,1);
    }

    /* ============================================================
       ── CTA SECTION
    ============================================================ */
    #cta-section {
      background: linear-gradient(135deg, #0B1129 0%, #1451CC 50%, #0B1129 100%);
      position: relative; overflow: hidden;
    }
    #cta-section::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle at 25% 50%, rgba(29,110,255,.25) 0%, transparent 50%),
                        radial-gradient(circle at 75% 50%, rgba(0,191,255,.15) 0%, transparent 50%);
    }
    .cta-inner { position: relative; z-index: 1; }

    .cta-title {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800; letter-spacing: -1.5px;
      color: #fff; line-height: 1.1;
    }
    .cta-desc { font-size: 1rem; color: rgba(255,255,255,.65); line-height: 1.8; }

    .btn-cta-solid {
      font-family: 'Manrope', sans-serif;
      font-size: .95rem; font-weight: 700;
      background: #fff; color: var(--primary);
      border: none; border-radius: 50px;
      padding: .9rem 2.2rem;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: .5rem;
      transition: var(--t);
      box-shadow: 0 8px 30px rgba(0,0,0,.2);
    }
    .btn-cta-solid:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(0,0,0,.3);
      color: var(--primary-dk);
    }
    .btn-cta-outline {
      font-family: 'Manrope', sans-serif;
      font-size: .95rem; font-weight: 600;
      background: transparent; color: rgba(255,255,255,.85);
      border: 1.5px solid rgba(255,255,255,.3);
      border-radius: 50px;
      padding: .9rem 2.2rem;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: .5rem;
      transition: var(--t);
    }
    .btn-cta-outline:hover {
      border-color: rgba(255,255,255,.7); color: #fff;
      background: rgba(255,255,255,.08);
    }

    /* ============================================================
       ── FOOTER
    ============================================================ */
    footer {
      background: #ffffff;
      border-top: 1px solid rgba(0,0,0,.08);
      padding: 1.75rem 0 1.25rem;
    }
    .footer-logo img { height: 64px; width: auto; margin-bottom: 1rem; }
    .footer-tagline {
      font-size: .88rem; color: rgba(0,0,0,.5);
      line-height: 1.75; max-width: 380px;
    }
    .f-socials { display: flex; gap: .6rem; margin-top: 1.25rem; }
    .f-social {
      width: 36px; height: 36px; border-radius: 9px;
      background: rgba(0,0,0,.05);
      border: 1px solid rgba(0,0,0,.1);
      display: flex; align-items: center; justify-content: center;
      color: rgba(0,0,0,.5); font-size: .95rem;
      text-decoration: none; transition: var(--t);
    }
    .f-social:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

    .f-col-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: .78rem; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      color: rgba(0,0,0,.45);
      margin-bottom: 1.25rem;
    }
    .f-links { list-style: none; }
    .f-links li { margin-bottom: .6rem; }
    .f-links a {
      font-size: .88rem; color: rgba(0,0,0,.55);
      text-decoration: none; transition: var(--t);
    }
    .f-links a:hover { color: #000; padding-left: 3px; }

    .footer-hr {
      border: none; border-top: 1px solid rgba(0,0,0,.08);
      margin: 3rem 0 1.5rem;
    }
    .footer-bottom {
      display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
      font-size: .8rem; color: rgba(0,0,0,.4);
    }
    .footer-bottom a { color: rgba(0,0,0,.4); text-decoration: none; }
    .footer-bottom a:hover { color: rgba(0,0,0,.8); }
    .footer-darkbar {
      background: #2b2b2b;
      padding: 1rem 0;
      margin-top: 0;
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      z-index: 900;
    }
    .footer-darkbar .container {
      display: flex; justify-content: space-between; flex-wrap: wrap; gap: .75rem;
      font-size: .8rem; color: rgba(255,255,255,.55);
    }
    .footer-darkbar .container i { color: var(--primary); }

    /* ============================================================
       ── BACK TO TOP
    ============================================================ */
    #backTop {
      position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 9999;
      width: 44px; height: 44px; border-radius: 12px;
      background: var(--primary);
      color: #fff; border: none;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
      box-shadow: 0 6px 24px rgba(29,110,255,.45);
      opacity: 0; pointer-events: none;
      transition: var(--t); cursor: pointer;
    }
    #backTop.vis { opacity: 1; pointer-events: auto; }
    #backTop:hover { transform: translateY(-3px); }

    /* ============================================================
       ── INTERSECTION REVEAL
    ============================================================ */
    .rv {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .65s ease, transform .65s ease;
    }
    .rv.in { opacity: 1; transform: translateY(0); }
    .rv-d1 { transition-delay: .1s; }
    .rv-d2 { transition-delay: .2s; }
    .rv-d3 { transition-delay: .3s; }
    .rv-d4 { transition-delay: .4s; }


    /* ============================================================
       ── EVENTS SHOWCASE CAROUSEL
    ============================================================ */
    #events-showcase { background: var(--bg); }

    .evc-wrap {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      min-height: 520px;
      background: #0E1120;
    }

    .evc-slides {
      position: relative;
      width: 100%;
      min-height: 520px;
    }

    .evc-slide {
      position: absolute; inset: 0;
      opacity: 0;
      pointer-events: none;
      transition: opacity .65s ease;
    }
    .evc-slide.active {
      opacity: 1;
      pointer-events: auto;
    }

    .evc-bg {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .evc-bg-icon {
      font-size: 10rem;
      color: rgba(255,255,255,.06);
    }

    .evc-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(
        0deg,
        rgba(0,0,0,.90) 0%,
        rgba(0,0,0,.40) 55%,
        rgba(0,0,0,.12) 100%
      );
    }

    .evc-body {
      position: absolute; inset: 0;
      display: flex; flex-direction: column;
      justify-content: flex-end;
      padding: 2rem 1.75rem 2.25rem;
    }

    .evc-tag {
      display: inline-flex; align-items: center; gap: .35rem;
      background: rgba(255,255,255,.14);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,.22);
      border-radius: 50px;
      padding: .22rem .85rem;
      font-size: .68rem; font-weight: 700;
      color: #fff; letter-spacing: .6px; text-transform: uppercase;
      margin-bottom: .75rem; width: fit-content;
    }
    .evc-tag i { font-size: .55rem; }

    .evc-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(1.35rem, 2.5vw, 1.85rem);
      font-weight: 800; color: #fff;
      line-height: 1.15; letter-spacing: -.5px;
      margin-bottom: .35rem;
    }

    .evc-event-sub {
      font-size: .78rem; color: rgba(255,255,255,.52);
      margin-bottom: .85rem;
    }

    .evc-meta-row {
      display: flex; align-items: center; flex-wrap: wrap; gap: .45rem;
      font-size: .78rem; color: rgba(255,255,255,.65);
      margin-bottom: 1rem;
    }
    .evc-meta-row i { color: rgba(255,255,255,.4); }

    .evc-brand-row {
      display: flex; align-items: center; gap: .85rem;
      padding: .7rem 0;
      border-top: 1px solid rgba(255,255,255,.1);
      margin-bottom: 1.25rem;
    }
    .evc-logo-txt {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1rem; font-weight: 800; color: #fff;
      letter-spacing: -.3px;
    }
    .evc-brand-label {
      font-size: .58rem; font-weight: 700;
      letter-spacing: 1.4px; text-transform: uppercase;
      color: rgba(255,255,255,.35);
    }

    .evc-join-btn {
      display: inline-flex; align-items: center; gap: .4rem;
      background: var(--warning);
      color: #fff;
      font-family: 'Manrope', sans-serif;
      font-size: .9rem; font-weight: 700;
      padding: .65rem 1.65rem;
      border-radius: 50px; border: none;
      text-decoration: none; cursor: pointer;
      transition: var(--t); width: fit-content;
      box-shadow: 0 6px 24px rgba(255,159,67,.4);
    }
    .evc-join-btn:hover {
      background: #e8870d; color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 10px 32px rgba(255,159,67,.55);
    }

    /* Prev / Next arrows */
    .evc-arrow {
      position: absolute; top: 50%; transform: translateY(-50%);
      z-index: 10;
      width: 40px; height: 40px; border-radius: 50%;
      background: rgba(255,255,255,.18);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,.25);
      color: #fff; font-size: 1rem;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: var(--t); padding: 0;
    }
    .evc-arrow:hover { background: var(--primary); border-color: var(--primary); }
    .evc-prev { left: 1rem; }
    .evc-next { right: 1rem; }

    /* Dot indicators */
    .evc-dots {
      position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
      display: flex; gap: .4rem; z-index: 10;
    }
    .evc-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: rgba(255,255,255,.35);
      border: none; cursor: pointer; transition: var(--t); padding: 0;
    }
    .evc-dot.active { background: #fff; width: 20px; border-radius: 4px; }

    /* ── Mini event cards */
    .evm-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 10px;
      overflow: hidden;
      transition: var(--t);
    }
    .evm-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(29,62,193,.13);
      border-color: var(--primary);
    }
    .evm-card-sm {
      display: flex;
      align-items: center;
      gap: 0;
      min-height: 62px;
      padding: 0;
      position: relative;
    }

    .evm-card-sm .evm-info {
      flex: 1;
      padding: .6rem .75rem .6rem .9rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-width: 0;
    }
    .evm-card-sm .evm-name {
      font-size: .8rem;
      font-weight: 700;
      color: var(--txt-head);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      line-height: 1.3;
    }
    .evm-card-sm .evm-meta {
      font-size: .68rem;
      color: var(--txt-muted);
      margin-top: .2rem;
      display: flex;
      align-items: center;
      gap: .3rem;
    }
    /* Realizado badge */
    .evm-badge {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      gap: .25rem;
      font-size: .6rem;
      font-weight: 700;
      color: #16a34a;
      background: #dcfce7;
      border-radius: 6px;
      padding: .2rem .45rem;
      margin-right: .6rem;
      white-space: nowrap;
      letter-spacing: .2px;
    }
    .evm-img {
      height: 110px;
      display: flex; align-items: center; justify-content: center;
      font-size: 2.4rem; color: rgba(255,255,255,.55);
    }
    .evm-info { padding: .85rem 1rem 1rem; }
    .evm-tag {
      display: inline-flex; align-items: center; gap: .3rem;
      background: var(--primary-lt);
      color: var(--primary);
      font-size: .64rem; font-weight: 700;
      padding: .12rem .55rem; border-radius: 4px;
      margin-bottom: .5rem; letter-spacing: .3px; text-transform: uppercase;
    }
    .evm-tag i { font-size: .55rem; }
    .evm-tag-trail { background: #E6FBF5; color: #0D9488; }
    .evm-tag-cicl  { background: #F0EAFF; color: #7C3AED; }
    .evm-tag-tri   { background: #FFF4E6; color: #D97706; }

    .evm-name {
      font-family: 'Space Grotesk', sans-serif;
      font-size: .88rem; font-weight: 700;
      color: var(--txt-head);
      margin-bottom: .4rem; line-height: 1.3;
    }
    .evm-meta {
      font-size: .72rem; color: var(--txt-muted);
      display: flex; align-items: center; gap: .25rem;
    }
    .evm-meta i { color: var(--primary); font-size: .7rem; }

    /* Check-all link */
    .evc-check-all {
      font-family: 'Manrope', sans-serif;
      font-size: .9rem; font-weight: 700;
      color: var(--primary); text-decoration: none;
      display: inline-flex; align-items: center; gap: .4rem;
      transition: var(--t);
    }
    .evc-check-all:hover { color: var(--primary-dk); }
    .evc-check-all i { transition: var(--t); }
    .evc-check-all:hover i { transform: translateX(4px); }

    /* ============================================================
       ── RESPONSIVE
    ============================================================ */
    @media (max-width: 991px) {
      .nav-links, .nav-link-ghost { display: none; }
      .nav-toggle { display: flex; }
      .nav-actions .btn-nav-cta { display: none; }
      section { padding: 4rem 0; }
      .hero-card { max-width: 100%; }
    }
    @media (max-width: 575px) {
      .hero-stats { gap: 1.5rem; }
      .fbar-list { gap: 1.2rem; }
    }

    /* ============================================================
       ── MODAL CONTACTO
    ============================================================ */
    .contact-modal-content {
      border: none;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,.18);
    }
    .contact-modal-header {
      background: var(--primary);
      padding: 1.5rem 2rem;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      border-bottom: none;
    }
    .contact-modal-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: .2rem;
    }
    .contact-modal-subtitle {
      font-size: .85rem;
      color: rgba(255,255,255,.75);
      margin: 0;
    }
    .contact-modal-close {
      background: rgba(255,255,255,.15);
      border: none;
      color: #fff;
      width: 34px; height: 34px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: .95rem;
      cursor: pointer;
      transition: background .2s;
      flex-shrink: 0;
    }
    .contact-modal-close:hover { background: rgba(255,255,255,.3); }
    .contact-modal-body {
      padding: 2rem;
      background: #fff;
    }
    .contact-label {
      display: block;
      font-size: .8rem;
      font-weight: 600;
      color: #444;
      margin-bottom: .4rem;
      letter-spacing: .3px;
    }
    .contact-input {
      width: 100%;
      padding: .65rem 1rem;
      border: 1.5px solid #e0e3ea;
      border-radius: 10px;
      font-size: .9rem;
      font-family: 'Manrope', sans-serif;
      color: #222;
      background: #f8f9fb;
      transition: border-color .2s, box-shadow .2s;
      outline: none;
      appearance: none;
    }
    .contact-input:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(29,110,255,.12);
      background: #fff;
    }
    .contact-textarea { resize: vertical; min-height: 100px; }
    .contact-captcha { display: flex; justify-content: flex-start; }
    .contact-alert {
      margin-top: 1rem;
      padding: .75rem 1rem;
      border-radius: 10px;
      font-size: .88rem;
      font-weight: 500;
    }
    .contact-alert.success { background: #e6f4ea; color: #1e7e34; border: 1px solid #b2dfbf; }
    .contact-alert.error   { background: #fdecea; color: #c0392b; border: 1px solid #f5c6c2; }
    .btn-modal-cancel {
      padding: .6rem 1.4rem;
      border: 1.5px solid #ddd;
      border-radius: 10px;
      background: transparent;
      color: #666;
      font-size: .88rem;
      font-weight: 600;
      cursor: pointer;
      transition: var(--t);
    }
    .btn-modal-cancel:hover { border-color: #bbb; color: #333; }
    .btn-modal-submit {
      padding: .65rem 1.6rem;
      border: none;
      border-radius: 10px;
      background: var(--primary);
      color: #fff;
      font-size: .9rem;
      font-weight: 700;
      cursor: pointer;
      transition: var(--t);
      display: flex; align-items: center; gap: .4rem;
    }
    .btn-modal-submit:hover { background: var(--primary-dark, #1558d6); }
    .btn-modal-submit:disabled { opacity: .6; cursor: not-allowed; }
