:root {
      --bg: #152236;
      --bg-card: #1b2d45;
      --border: #253d58;
      --fg: #f5f0e8;
      --fg-muted: #b8a080;
      --gold: #b8943e;
      --gold-light: #c9a84c;
      --gold-green: #b8943e;
      --gold-green-light: #c9a84c;
      --red: #d94a3a;
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 20px;
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; font-size: 17px; }

    body {
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
      background: var(--bg);
      color: var(--fg);
      min-height: 100vh;
      position: relative;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      line-height: 1.72;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background:
        repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(184,148,62,0.015) 40px, rgba(184,148,62,0.015) 42px),
        repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(184,148,62,0.01) 40px, rgba(184,148,62,0.01) 42px),
        radial-gradient(ellipse at 20% 10%, rgba(184,148,62,0.05) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 70%, rgba(184,148,62,0.04) 0%, transparent 50%);
      pointer-events: none;
      z-index: 0;
    }

    /* ═══════════ NAV ═══════════ */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(21,34,54,0.94);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(184,148,62,0.15);
      padding: 0.65rem 0;
    }
    .nav-inner {
      max-width: 1100px; margin: 0 auto;
      padding: 0 1.5rem;
      display: flex; align-items: center; justify-content: space-between;
    }
    .nav-logo {
      color: var(--gold); text-decoration: none;
      font-size: 1.15rem; font-weight: 800;
      letter-spacing: -0.01em;
    }
    .nav-back {
      color: var(--fg-muted); text-decoration: none;
      font-size: 0.88rem; font-weight: 500;
      transition: color 0.2s;
    }
    .nav-back:hover { color: var(--fg); }
    .nav-cta {
      background: var(--gold); color: #152238 !important;
      padding: 0.45rem 1.2rem; border-radius: 20px;
      font-weight: 700 !important; font-size: 0.85rem !important;
      text-decoration: none; min-height: 44px;
      transition: all 0.2s;
    }
    .nav-cta:hover {
      background: var(--gold-light, #c9a84c); color: #152238 !important;
      transform: translateY(-1px);
      box-shadow: 0 2px 12px rgba(184,148,62,0.25);
    }

    /* ═══════════ HERO ═══════════ */
    .hero {
      position: relative; z-index: 1;
      text-align: center;
      padding: 6rem 1.5rem 3rem;
      border-bottom: 1px solid var(--border);
      background: linear-gradient(170deg, #1b2d50 0%, #152236 50%, #0f1c32 100%);
    }
    .hero-icon {
      width: 80px; height: 80px;
      margin: 0 auto 1.5rem;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(184,148,62,0.18), rgba(184,148,62,0.14));
      display: flex; align-items: center; justify-content: center;
      font-size: 2.4rem;
      border: 2px solid rgba(184,148,62,0.3);
      box-shadow: 0 0 30px rgba(184,148,62,0.08);
    }
    .hero h1 {
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 850;
      margin-bottom: 0.4rem;
      letter-spacing: -0.02em;
    }
    .hero h1 .gold { color: var(--gold); }
    .hero .subtitle {
      color: var(--gold-light);
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 1rem;
    }
    .hero .desc {
      color: var(--fg-muted);
      font-size: 0.95rem;
      max-width: 620px;
      margin: 0 auto;
      line-height: 1.65;
    }

    /* ═══════════ CONTAINER ═══════════ */
    .container {
      position: relative; z-index: 1;
      max-width: 1100px; margin: 0 auto;
      padding: 0 1.5rem;
    }

    /* ═══════════ SECTIONS ═══════════ */
    .section { padding: 4.5rem 0; }
    .section-alt {
      background: linear-gradient(180deg, rgba(27,45,69,0.6) 0%, rgba(15,28,50,0.5) 100%);
      border-top: 1px solid rgba(184,148,62,0.08);
      border-bottom: 1px solid rgba(184,148,62,0.08);
    }

    .section-header {
      text-align: center; margin-bottom: 3rem;
    }
    .section-header .icon-ring {
      display: inline-flex; align-items: center; justify-content: center;
      width: 52px; height: 52px; border-radius: 50%;
      background: rgba(184,148,62,0.12);
      margin-bottom: 0.8rem; font-size: 1.5rem;
    }
    .section-header h2 {
      font-size: clamp(1.6rem, 3.5vw, 2.2rem);
      font-weight: 800;
      margin-bottom: 0.5rem;
      letter-spacing: -0.01em;
    }
    .section-header h2 .gold { color: var(--gold); }
    .section-header .subtitle {
      color: var(--fg-muted);
      font-size: 0.95rem;
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.6;
    }

    /* ═══════════ EJES GRID ═══════════ */
    .ejes-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
      gap: 1.5rem;
    }
    .eje-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 2rem 1.8rem;
      transition: all 0.3s;
      backdrop-filter: blur(8px);
      position: relative;
      overflow: hidden;
    }
    .eje-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg, var(--gold), rgba(184,148,62,0.2));
    }
    .eje-card:hover {
      transform: translateY(-4px);
      border-color: rgba(184,148,62,0.35);
      box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    }
    .eje-card .eje-icon {
      font-size: 2.6rem;
      margin-bottom: 0.8rem;
      display: block;
    }
    .eje-card h3 {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--gold-light);
      margin-bottom: 0.3rem;
    }
    .eje-card .eje-desc {
      color: var(--fg-muted);
      font-size: 0.82rem;
      margin-bottom: 1.2rem;
      line-height: 1.5;
    }
    .eje-card ul {
      list-style: none;
      padding: 0;
    }
    .eje-card ul li {
      padding: 0.55rem 0;
      color: #bcc8d6;
      font-size: 0.9rem;
      line-height: 1.5;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
    }
    .eje-card ul li:last-child { border-bottom: none; }
    .eje-card ul li::before {
      content: '▸';
      color: var(--gold);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 0.15rem;
    }

    /* ═══════════ WHY VERO ═══════════ */
    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
      align-items: center;
    }
    .why-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
    .why-stat {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 1.5rem 1.2rem;
      text-align: center;
      transition: all 0.3s;
    }
    .why-stat:hover {
      transform: translateY(-3px);
      border-color: rgba(184,148,62,0.3);
    }
    .why-stat .num {
      font-size: 2.2rem;
      font-weight: 850;
      background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.1;
      margin-bottom: 0.3rem;
    }
    .why-stat .label {
      font-size: 0.82rem;
      color: var(--fg-muted);
      line-height: 1.35;
    }
    .why-text p {
      color: #bcc8d6;
      font-size: 0.95rem;
      line-height: 1.7;
      margin-bottom: 1rem;
    }
    .why-text p strong { color: var(--fg); }
    .why-link {
      color: var(--gold);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.92rem;
      transition: color 0.2s;
    }
    .why-link:hover { color: var(--gold-light); }

    /* ═══════════ 100 DÍAS TIMELINE ═══════════ */
    .plan-timeline {
      max-width: 680px;
      margin: 0 auto;
      position: relative;
      padding-left: 2.8rem;
    }
    .plan-timeline::before {
      content: '';
      position: absolute;
      left: 1.25rem;
      top: 0.5rem;
      bottom: 0.5rem;
      width: 3px;
      background: linear-gradient(to bottom, var(--gold) 0%, rgba(184,148,62,0.3) 70%, transparent 100%);
      border-radius: 3px;
    }
    .plan-item {
      display: flex;
      gap: 1.5rem;
      margin-bottom: 1.8rem;
      position: relative;
    }
    .plan-dot {
      width: 18px; height: 18px;
      border-radius: 50%;
      background: var(--gold);
      border: 3px solid var(--bg);
      box-shadow: 0 0 0 4px rgba(184,148,62,0.15);
      position: absolute;
      left: -0.65rem;
      top: 0.55rem;
      z-index: 2;
      flex-shrink: 0;
    }
    .plan-day {
      min-width: 90px;
      text-align: right;
      font-size: 0.85rem;
      color: var(--gold);
      font-weight: 700;
      padding-top: 0.35rem;
      flex-shrink: 0;
    }
    .plan-content {
      background: var(--bg-card);
      border-radius: var(--radius-md);
      padding: 1.2rem 1.5rem;
      flex: 1;
      border: 1px solid var(--border);
      transition: all 0.3s;
    }
    .plan-content:hover {
      border-color: rgba(184,148,62,0.3);
      transform: translateX(3px);
    }
    .plan-content h3 {
      color: var(--fg);
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 0.3rem;
    }
    .plan-content p {
      color: var(--fg-muted);
      font-size: 0.88rem;
      line-height: 1.55;
    }

    /* ═══════════ CTA ═══════════ */
    .cta-section {
      text-align: center;
      padding: 4rem 2rem;
      background: linear-gradient(135deg, rgba(27,45,69,0.9), rgba(21,34,54,0.95));
      border: 1px solid rgba(184,148,62,0.18);
      border-radius: var(--radius-lg);
      box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    }
    .cta-section h2 {
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 800;
      margin-bottom: 0.8rem;
      color: var(--fg);
    }
    .cta-section .cta-desc {
      color: var(--fg-muted);
      font-size: 0.95rem;
      max-width: 480px;
      margin: 0 auto 2rem;
      line-height: 1.6;
    }
    .cta-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }
    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      padding: 0.85rem 2rem; border-radius: 30px;
      text-decoration: none; font-weight: 700; font-size: 0.95rem;
      letter-spacing: 0.02em; transition: all 0.25s;
      cursor: pointer; border: none;
    }
    .btn-primary {
      background: var(--gold);
      color: #0d1b2a;
      box-shadow: 0 2px 14px rgba(184,148,62,0.3);
    }
    .btn-primary:hover {
      background: #c9a54e;
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(184,148,62,0.35);
    }
    .btn-green {
      background: var(--gold);
      color: #fff;
      box-shadow: 0 2px 14px rgba(184,148,62,0.3);
    }
    .btn-green:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(184,148,62,0.35);
    }
    .btn-outline {
      border: 2px solid var(--gold);
      color: var(--gold-light);
      background: transparent;
    }
    .btn-outline:hover {
      background: rgba(184,148,62,0.12);
      transform: translateY(-2px);
    }
    .cta-links {
      margin-top: 1.5rem;
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
    }
    .cta-links a {
      color: var(--fg-muted);
      text-decoration: none;
      font-size: 0.86rem;
      transition: color 0.2s;
    }
    .cta-links a:hover { color: var(--gold); }

    /* ═══════════ HIGHLIGHT BOX ═══════════ */
    .highlight {
      background: rgba(184,148,62,0.06);
      border-left: 3px solid var(--gold);
      padding: 1.2rem 1.5rem;
      margin: 1.5rem 0;
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      font-size: 0.92rem;
      line-height: 1.6;
      color: #bcc8d6;
    }
    .highlight strong { color: var(--gold); }

    /* ═══════════ INTRO TEXT ═══════════ */
    .intro-text {
      max-width: 760px;
      margin: 0 auto 3rem;
      text-align: center;
    }
    .intro-text p {
      color: #bcc8d6;
      font-size: 1.02rem;
      line-height: 1.75;
      margin-bottom: 1rem;
    }
    .intro-text p strong { color: var(--fg); }

    /* ═══════════ FOOTER ═══════════ */
    footer {
      position: relative; z-index: 1;
      text-align: center; padding: 3rem 1.5rem 2rem;
      border-top: 1px solid var(--border);
      color: #5a6880; font-size: 0.82rem;
    }
    footer a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
    footer a:hover { color: var(--gold-light); }
    .footer-social {
      display: flex; gap: 0.8rem; justify-content: center;
      flex-wrap: wrap; margin-bottom: 1.8rem;
      font-size: 0.9rem;
    }
    .footer-dot { color: #2a4060; }
    .footer-legal {
      font-size: 0.9rem; color: #8a9cb0;
      font-weight: 600; margin-bottom: 0.3rem;
    }
    .footer-legal2 {
      font-size: 0.84rem; color: #5d7085;
    }
    .footer-links {
      margin-top: 1.2rem;
      display: flex; gap: 0.8rem; flex-wrap: wrap;
      justify-content: center; font-size: 0.85rem;
    }

    /* ═══════════ RESPONSIVE ═══════════ */
    @media (max-width: 768px) {
      html { font-size: 16px; }
      .hero { padding: 5rem 1.2rem 2.5rem; }
      .ejes-grid {
        grid-template-columns: 1fr;
      }
      .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      .plan-timeline { padding-left: 2.2rem; }
      .plan-day { min-width: 65px; font-size: 0.78rem; }
      .section { padding: 3.5rem 0; }
      .cta-section { padding: 2.5rem 1.5rem; }
      .cta-buttons { flex-direction: column; align-items: center; }
      .btn { width: 100%; max-width: 320px; }
      .plan-dot { left: -0.65rem; }
    }

    @media (max-width: 480px) {
      .container { padding: 0 1rem; }
      .hero h1 { font-size: 1.8rem; }
      .why-stats { grid-template-columns: 1fr; }
      .cta-section { padding: 2rem 1.2rem; }
    }

    /* ── Viewport + Touch ── */
    html {
      overflow-x: hidden;
      -webkit-text-size-adjust: 100%;
    }
    img, video, canvas, svg, iframe, table {
      max-width: 100%;
      height: auto;
    }
    @media screen and (max-width: 768px) {
      input, textarea, select {
        font-size: 16px !important;
      }
    }
    /* touch-action */
    img, .bio-image-wrap, .hero-photo-wrapper {
      touch-action: pinch-zoom;
    }
    button, a, input, select, .card, nav {
      touch-action: manipulation;
    }
    .inline-icon { vertical-align: middle; margin-right: 0.15rem; margin-top: -2px; }
    .icon-ring img { display: block; margin: auto; }
    .stat-icon img { display: block; margin: auto; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); }
    .cred-icon img, .re-icon img, .icon img, .role-icon img, .hero-icon img, .vol-icon img, .eje-icon img, .num img { vertical-align: middle; }

    .skip-link{position:absolute;top:-40px;left:0;background:var(--gold, #b8943e);color:var(--bg, #152238);padding:8px 16px;z-index:1000;transition:top .2s}.skip-link:focus{top:0}
n    .breadcrumb{padding:.5rem 0;font-size:.875rem}.breadcrumb ol{list-style:none;display:flex;gap:.5rem;flex-wrap:wrap}.breadcrumb a{color:var(--fg-muted);text-decoration:none}.breadcrumb a:hover{color:var(--gold)}.breadcrumb li::after{content:"›";margin-left:.5rem;color:var(--fg-muted)}.breadcrumb li:last-child::after{content:""}

    .breadcrumb{padding:.5rem 0;font-size:.875rem}
    .breadcrumb ol{list-style:none;display:flex;gap:.5rem;flex-wrap:wrap}
    .breadcrumb a{color:var(--fg-muted);text-decoration:none}
    .breadcrumb a:hover{color:var(--gold)}
    .breadcrumb li::after{content:"›";margin-left:.5rem;color:var(--fg-muted)}
    .breadcrumb li:last-child::after{content:""}