@charset "utf-8";
/* CSS Document */

    :root {
      --azul:       #004F9F;
      --azul-dark:  #003a77;
      --azul-light: #1a6bbf;
      --amarillo:   #FFD500;
      --cyan:       #009FE3;
      --cyan-light: #e6f6fd;
      --gris-bg:    #F4F6F9;
      --gris-1:     #5B6770;
      --gris-2:     #898D8D;
      --gris-3:	    #555555;
      --white:      #FFFFFF;
      --dark-panel: #0b1929;
      --dark-card:  #152035;
      --dark-card2: #1c2e47;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html, body { height: 100%; font-family: 'Encode Sans', Calibri, sans-serif; overflow: hidden; }

    /* ══════════════════════════════════════════════════
       LAYOUT: LEFT (text) + RIGHT (visual)
    ══════════════════════════════════════════════════ */
    .layout {
      display: grid;
      grid-template-columns: 48% 52%;
      height: 100vh;
    }

    /* ── LEFT PANEL ─────────────────────────────────── */
    .left-panel {
      background: var(--white);
      display: flex; flex-direction: column;
      padding: 0;
      position: relative;
      overflow: hidden;
    }

    /* Sutil textura geométrica de fondo */
    .left-panel::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; bottom: 0;
      background-image:
        radial-gradient(circle at 80% 10%, rgba(0,159,227,.06) 0%, transparent 50%),
        radial-gradient(circle at 10% 90%, rgba(0,79,159,.04) 0%, transparent 50%);
      pointer-events: none; z-index: 0;
    }

    /* Barra de acento lateral izquierdo */
    .left-panel::after {
      content: '';
      position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
      background: linear-gradient(180deg, var(--azul) 0%, var(--cyan) 50%, var(--amarillo) 100%);
    }

    .left-inner {
      position: relative; z-index: 1;
      display: flex; flex-direction: column;
      height: 100%;
      padding: 36px 52px 28px 52px;
    }

    /* TOPBAR WITHIN LEFT */
    .left-top {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 44px;
    }
    .brand {
      display: flex; align-items: center; gap: 11px;
    }
    .brand-mark {
      /*width: 40px; height: 40px; border-radius: 10px;
      background: var(--azul);
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 12px rgba(0,79,159,.3);*/
    }
    .brand-name { font-size: 16px; font-weight: 800; color: var(--azul); }
    .brand-name span { color: var(--cyan); font-weight: 400; }
    .left-top-right { font-size: 11px; color: var(--gris-3); }

    /* MAIN TEXT */
    .left-content { flex: 1; display: flex; flex-direction: column; justify-content: center; }

    .eyebrow {
      display: inline-flex; align-items: center; gap: 7px;
      font-size: 11px; font-weight: 700; text-transform: uppercase;
      letter-spacing: 2px; color: var(--cyan);
      margin-bottom: 22px;
    }
    .eyebrow-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--cyan); flex-shrink: 0;
    }

    .headline {
      font-size: 38px; font-weight: 800;
      color: var(--azul); line-height: 1.13;
      letter-spacing: -0.8px;
      margin-bottom: 18px;
    }
    .headline em {
      font-style: normal;
      background: linear-gradient(90deg, var(--azul-light), var(--cyan));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .subheadline {
      font-size: 15px; font-weight: 400; color: var(--gris-1);
      line-height: 1.7; margin-bottom: 10px; max-width: 600px;
    }
    .promise {
      font-size: 12.5px; font-style: italic; color: var(--gris-2);
      font-weight: 500; margin-bottom: 40px;
      display: flex; align-items: center; gap: 8px;
    }
    .promise::before {
      content: '';
      width: 24px; height: 1.5px; background: var(--amarillo); flex-shrink: 0;
    }

    /* ── RUTAS DE ACCESO ────────────────────────────── */
    .divider-label {
      font-size: 10px; font-weight: 700; text-transform: uppercase;
      letter-spacing: 1.5px; color: var(--gris-3);
      display: flex; align-items: center; gap: 12px;
      margin-bottom: 18px;
    }
    .divider-label::after { content: ''; flex: 1; height: 1px; background: #e8edf5; }

    .rutas { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }

    .ruta-item {
      display: flex; align-items: center;
      background: var(--gris-bg);
      border-radius: 14px; padding: 16px 20px;
      border: 1.5px solid transparent;
      cursor: pointer; transition: all .25s;
      text-decoration: none; color: inherit;
      gap: 16px; position: relative; overflow: hidden;
    }
    .ruta-item::before {
      content: '';
      position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
      border-radius: 14px 0 0 14px;
    }
    .ri-elearning::before   { background: linear-gradient(180deg, var(--azul), var(--cyan)); }
    .ri-embajadores::before { background: linear-gradient(180deg, var(--amarillo), #e6a800); }

    .ruta-item:hover {
      transform: translateX(4px);
      box-shadow: 0 4px 20px rgba(0,79,159,.10);
    }
    .ri-elearning:hover   { border-color: #ccdff5; background: #f0f5ff; }
    .ri-embajadores:hover { border-color: #ffeea0; background: #fffdf0; }

    .ruta-icon {
      width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center; font-size: 20px;
    }
    .ri-elearning   .ruta-icon { background: linear-gradient(135deg, #e8f0fb, var(--cyan-light)); }
    .ri-embajadores .ruta-icon { background: linear-gradient(135deg, #fffde7, #fff3cd); }

    .ruta-text { flex: 1; }
    .ruta-name { font-size: 14px; font-weight: 800; color: var(--azul); margin-bottom: 2px; }
    .ruta-desc { font-size: 11.5px; color: var(--gris-2); line-height: 1.4; }

    .ruta-arrow {
      width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 15px; transition: all .25s;
    }
    .ri-elearning   .ruta-arrow { background: rgba(0,79,159,.08); color: var(--azul); }
    .ri-embajadores .ruta-arrow { background: rgba(255,213,0,.25); color: #a07800; }
    .ruta-item:hover .ruta-arrow { transform: translateX(3px); }

    /* BOTTOM LEFT */
    .left-bottom {
      border-top: 1px solid #f0f3f8;
      padding-top: 16px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .lb-trust { font-size: 11px; color: var(--gris-3); display: flex; align-items: center; gap: 6px; }
    .trust-dot { width: 6px; height: 6px; border-radius: 50%; background: #4caf50; }
    .lb-help   { font-size: 11px; color: var(--cyan); font-weight: 600; cursor: pointer; }
    .lb-help:hover { text-decoration: underline; }

    /* ══════════════════════════════════════════════════
       RIGHT PANEL — DARK VISUAL ECOSYSTEM
    ══════════════════════════════════════════════════ */
    .right-panel {
      background: var(--dark-panel);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      padding: 32px 40px;
      position: relative; overflow: hidden;
    }

    /* Fondo: radial glow orbs */
    .right-panel::before {
      content: '';
      position: absolute; top: -100px; right: -100px;
      width: 500px; height: 500px; border-radius: 50%;
      background: radial-gradient(circle, rgba(0,159,227,.12) 0%, transparent 65%);
      pointer-events: none;
    }
    .right-panel::after {
      content: '';
      position: absolute; bottom: -80px; left: -60px;
      width: 400px; height: 400px; border-radius: 50%;
      background: radial-gradient(circle, rgba(255,213,0,.07) 0%, transparent 65%);
      pointer-events: none;
    }

    /* Tag superior */
    .right-tag {
      position: absolute; top: 28px; left: 36px;
      display: flex; align-items: center; gap: 8px;
      font-size: 10px; font-weight: 700; text-transform: uppercase;
      letter-spacing: 1.5px; color: rgba(255,255,255,.35);
    }
    .right-tag::before {
      content: ''; width: 5px; height: 5px; border-radius: 50%;
      background: #4caf50; box-shadow: 0 0 6px #4caf50;
    }

    /* Caption bottom */
    .right-caption {
      position: absolute; bottom: 24px;
      font-size: 11px; color: rgba(255,255,255,.2);
      text-align: center; letter-spacing: .5px;
    }

    /* ── ECOSISTEMA SVG WRAPPER ──────────────────────── */
    .ecosystem-wrap {
      position: relative; z-index: 1;
      width: 100%; max-width: 580px;
      animation: floatPanel 5s ease-in-out infinite;
    }
    @keyframes floatPanel {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-8px); }
    }

    /* ── ANIMATIONS ─────────────────────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes progressAnim {
      from { stroke-dashoffset: 175; }
      to   { stroke-dashoffset: var(--target-offset); }
    }
    @keyframes barGrow {
      from { height: 0; }
    }
    @keyframes pulse {
      0%, 100% { opacity: .5; transform: scale(1); }
      50%       { opacity: 1; transform: scale(1.08); }
    }

    .fu1 { animation: fadeUp .5s .05s both; }
    .fu2 { animation: fadeUp .5s .15s both; }
    .fu3 { animation: fadeUp .5s .25s both; }
    .fu4 { animation: fadeUp .5s .35s both; }
    .fu5 { animation: fadeUp .5s .45s both; }
    .fu6 { animation: fadeUp .5s .55s both; }

    /* ══════════════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════════════ */
    @media (max-width: 1100px) {
      .headline { font-size: 32px; }
      .left-inner { padding: 32px 40px 24px; }
    }

    @media (max-width: 900px) {
      html, body { height: auto; overflow-y: auto; }
      .layout { grid-template-columns: 1fr; height: auto; min-height: 100vh; }
      .right-panel { min-height: 360px; padding: 28px 24px; order: -1; }
      .left-inner { padding: 28px 28px 24px; height: auto; }
      .headline { font-size: 28px; }
      .subheadline { font-size: 14px; max-width: 100%; }
      .ecosystem-wrap { max-width: 420px; }
    }

    @media (max-width: 560px) {
      .left-inner { padding: 24px 20px; }
      .left-top { margin-bottom: 28px; flex-wrap: wrap; gap: 8px; }
      .headline { font-size: 23px; letter-spacing: -.4px; }
      .subheadline { font-size: 13px; line-height: 1.6; }
      .eyebrow { font-size: 10px; letter-spacing: 1.5px; }
      .right-panel { min-height: 280px; padding: 20px 16px; }
      .right-tag { left: 20px; font-size: 9px; }
      .right-caption { font-size: 10px; padding: 0 16px; text-align: center; }
      .ruta-item { padding: 12px 14px; gap: 12px; }
      .ruta-icon { width: 38px; height: 38px; font-size: 17px; }
      .ruta-name { font-size: 13px; }
      .ruta-desc { font-size: 11px; }
      .left-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
    }
