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

    /* Visually hidden — accesibilidad y SEO */
    .sr-only {
      position: absolute; width: 1px; height: 1px;
      padding: 0; margin: -1px; overflow: hidden;
      clip: rect(0,0,0,0); white-space: nowrap; border: 0;
    }
    /* Skip link */
    .skip-link {
      position: absolute; top: -100%; left: 0;
      background: var(--orange, #FF4520); color: #fff;
      padding: 0.5rem 1rem; font-size: 0.85rem;
      z-index: 9999; border-radius: 0 0 4px 0;
      text-decoration: none;
    }
    .skip-link:focus { top: 0; }

    :root {
      --bg:       #06050b;
      --surface:  #0c0a14;
      --card:     #110e1c;
      --card2:    #160f1e;
      --white:    #ffffff;
      --dim:      rgba(255,255,255,0.62);
      --faint:    rgba(255,255,255,0.07);
      --orange:   #FF4520;
      --pink:     #FF1078;
      --grad:     linear-gradient(135deg, #FF4520 0%, #FF1078 100%);
      --grad-r:   linear-gradient(135deg, #FF1078 0%, #FF4520 100%);
      --border:   rgba(255,255,255,0.07);
      --border-a: rgba(255,69,32,0.28);
      --ff-h:     'Playfair Display', Georgia, serif;
      --ff-ui:    'Plus Jakarta Sans', system-ui, sans-serif;
      --ff-b:     'Plus Jakarta Sans', system-ui, sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--white);
      font-family: var(--ff-b);
      font-size: 16px;
      line-height: 1.65;
      overflow-x: hidden;
    }

    /* Grain */
    body::after {
      content: '';
      position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.032'/%3E%3C/svg%3E");
      pointer-events: none; z-index: 9999; opacity: 0.45;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed; top: 0; width: 100%; z-index: 200;
      padding: 1.15rem 6%;
      display: flex; justify-content: space-between; align-items: center;
      backdrop-filter: blur(24px);
      background: rgba(6,5,11,0.82);
      border-bottom: 1px solid var(--border);
      transition: border-color 0.3s;
    }
    .nav-logo-img {
      height: 36px;
      width: auto;
      display: block;
    }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a {
      color: var(--dim);
      text-decoration: none;
      font-size: 0.84rem;
      letter-spacing: 0.03em;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--white); }
    .nav-cta {
      background: var(--grad);
      color: #fff;
      padding: 0.55rem 1.35rem;
      border-radius: 3px;
      font-family: var(--ff-ui);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      text-decoration: none;
      transition: opacity 0.2s, transform 0.2s;
    }
    .nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

    /* ─── HERO ─── */
    .hero {
      min-height: auto;
      display: flex; flex-direction: column;
      justify-content: center; align-items: center;
      text-align: center;
      padding: 10rem 6% 4rem;
      position: relative; overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0; pointer-events: none;
      background:
        radial-gradient(ellipse 65% 85% at 15% 65%, rgba(255,69,32,0.32) 0%, transparent 60%),
        radial-gradient(ellipse 55% 70% at 80% 30%, rgba(255,16,120,0.28) 0%, transparent 60%);
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 0.55rem;
      border-radius: 100px;
      padding: 0.38rem 1rem;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--dim);
      margin-bottom: 2rem;
      animation: heroBadgeFade 0.7s cubic-bezier(0.22,1,0.36,1) 0.05s both;
    }
    .hero-badge span {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--grad);
      display: inline-block;
      box-shadow: 0 0 8px rgba(255,69,32,0.8);
      animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse {
      0%,100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.6; transform: scale(0.85); }
    }
    @keyframes heroBadgeFade {
      from { opacity: 0; transform: translateY(-14px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes heroTitleFade {
      from { opacity: 0; transform: translateY(36px) scale(0.97); }
      to   { opacity: 1; transform: translateY(0) scale(1); }
    }
    @keyframes heroSubFade {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero h1 {
      font-family: var(--ff-h);
      font-size: clamp(2.8rem, 6.5vw, 5.5rem);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -0.02em;
      max-width: 820px;
      margin-bottom: 1.4rem;
      animation: heroTitleFade 1s cubic-bezier(0.22,1,0.36,1) 0.22s both;
    }
    .hero h1 .grad-text {
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero > p {
      font-size: clamp(0.95rem, 1.55vw, 1.12rem);
      color: var(--dim);
      max-width: 540px;
      line-height: 1.75;
      margin-bottom: 2.75rem;
      animation: heroSubFade 0.9s cubic-bezier(0.22,1,0.36,1) 0.48s both;
    }

    /* Ajustes específicos para Móvil - HERO */
    @media (max-width: 600px) {
      .hero h1 {
        font-size: 3.8rem !important;
        line-height: 1.05 !important;
        margin-bottom: 1.2rem !important;
      }
      .hero > p {
        font-size: 0.85rem !important;
        opacity: 0.75;
        max-width: 300px !important;
        margin: 0 auto 2.5rem !important;
      }
    }

    /* ─── EMAIL FORM ─── */
    .form-wrapper {
      width: 100%;
      max-width: 520px;
      position: relative;
    }
    .lead-form {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 10px;
      padding: 2rem;
      backdrop-filter: blur(10px);
      text-align: left;
    }
    .lead-form h3 {
      font-family: var(--ff-b);
      font-size: 1rem;
      font-weight: 500;
      letter-spacing: 0.01em;
      margin-bottom: 1.25rem;
      text-align: center;
    }
    .form-row { display: flex; flex-direction: column; gap: 0.75rem; }
    .form-row input,
    .form-row select,
    .form-row textarea {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 6px;
      color: var(--white);
      font-family: var(--ff-b);
      font-size: 0.9rem;
      padding: 0.8rem 1rem;
      width: 100%;
      outline: none;
      transition: border-color 0.2s;
      -webkit-appearance: none;
    }
    .form-row input::placeholder { color: rgba(255,255,255,0.32); }
    .form-row select { color: rgba(255,255,255,0.7); cursor: pointer; }
    .form-row select option { background: #1a1025; color: #fff; }
    .form-row input:focus,
    .form-row select:focus,
    .form-row textarea:focus { border-color: rgba(255,69,32,0.55); }
    .form-row textarea {
      resize: vertical;
      min-height: 100px;
    }
    .form-submit {
      margin-top: 1rem;
      width: 100%;
      background: var(--grad);
      color: #fff;
      border: none;
      border-radius: 6px;
      font-family: var(--ff-ui);
      font-size: 0.92rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      padding: 0.95rem;
      cursor: pointer;
      transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .form-submit:hover {
      opacity: 0.9;
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(255,69,32,0.35);
    }
    .form-privacy {
      text-align: center;
      font-size: 0.72rem;
      color: rgba(255,255,255,0.28);
      margin-top: 0.75rem;
    }
    .form-success {
      text-align: center;
      padding: 2rem 1rem;
    }
    .form-success .success-icon {
      width: 56px; height: 56px;
      background: var(--grad);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem;
      margin: 0 auto 1.25rem;
    }
    .form-success h3 {
      font-family: var(--ff-h);
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }
    .form-success p { font-size: 0.88rem; color: var(--dim); line-height: 1.6; }

    /* ─── STATS ─── */
    .stats-bar {
      background: transparent;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 2.25rem 6%;
    }
    .stats-inner {
      max-width: 1180px; margin: 0 auto;
      display: flex; justify-content: center;
      gap: 4rem; flex-wrap: wrap;
    }
    .stat { text-align: center; }
    .stat-n {
      font-family: var(--ff-ui);
      font-size: 2.4rem;
      font-weight: 800;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
      display: block;
    }
    .stat-l {
      font-size: 0.72rem;
      color: var(--dim);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-top: 0.35rem;
      display: block;
    }

    /* ─── SHARED ─── */
    .divider {
      width: 100%;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--border), transparent);
    }

    /* ── CARRUSEL LOGOS ── */
    .logos-strip {
      overflow: hidden;
      padding: 2.5rem 0;
      background: transparent;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .logos-track {
      display: flex;
      gap: 6rem;
      width: max-content;
      animation: scrollLogos 28s linear infinite;
    }
    .logos-strip:hover .logos-track { animation-play-state: paused; }
    .logos-track img {
      height: 36px;
      width: auto;
      opacity: 0.8;
      transition: opacity 0.3s;
      flex-shrink: 0;
    }
    .logos-track img.logo-skool { height: 62px; }
    .logos-track img:hover { opacity: 1; }
    @keyframes scrollLogos {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-33.333%); }
    }
    section { padding: 6rem 6%; }
    .container { max-width: 1180px; margin: 0 auto; }
    .s-label {
      font-family: var(--ff-ui);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: block;
      margin-bottom: 0.8rem;
    }
    .s-title {
      font-family: var(--ff-h);
      font-size: clamp(2.2rem, 4vw, 3.4rem);
      font-weight: 700;
      line-height: 1.12;
      margin-bottom: 1.1rem;
    }
    .s-sub { color: var(--dim); font-size: 1.05rem; max-width: 540px; line-height: 1.8; font-weight: 400; }

    /* ─── PARA QUIÉN ─── */
    .audience { background: transparent; }
    .audience-cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
      margin-top: 3.5rem;
    }
    .audience-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 2rem 1.5rem;
      aspect-ratio: 1;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      position: relative;
      overflow: hidden;
      transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    }
    .audience-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: var(--grad);
    }
    .audience-card:hover {
      border-color: var(--border-a);
      transform: translateY(-5px);
      box-shadow: 0 18px 48px rgba(0,0,0,0.45);
    }
    .audience-card-icon {
      width: 42px; height: 42px;
      border-radius: 10px;
      background: var(--faint);
      border: 1px solid var(--border-a);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.1rem;
      flex-shrink: 0;
    }
    .audience-card h4 {
      font-family: var(--ff-h);
      font-size: 1.3rem; font-weight: 700;
      line-height: 1.2; margin-bottom: 0.8rem;
      color: var(--white);
    }
    .audience-card p { font-size: 0.86rem; color: var(--dim); line-height: 1.65; font-weight: 400; }

    /* ─── PROGRAMA ─── */
    .programa-grid {
      display: flex;
      flex-direction: column;
      gap: 3rem;
      margin: 4rem auto 0;
      max-width: 900px;
      position: relative;
    }
    .session-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 0;
      position: relative;
      overflow: hidden;
      transition: border-color 0.4s ease, box-shadow 0.4s ease;
      display: grid;
      grid-template-columns: 80px 1fr;
      z-index: 1;
    }
    .session-card:hover {
      border-color: rgba(255,69,32,0.35);
      box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    }
    .session-header {
      padding: 2.5rem 2.5rem 2.5rem 0;
      cursor: default;
    }
    .session-header div {
      display: flex;
      flex-direction: column;
    }
    .session-toggle-icon {
      width: 32px;
      height: 32px;
      display: flex; /* Ahora visible */
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,0.05); /* Fondo de botón */
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 50%;
      color: var(--white);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
    }
    .session-toggle-icon svg { width: 14px; height: 14px; transition: transform 0.3s ease; }
    .session-card:hover .session-toggle-icon { 
      background: var(--grad); 
      border-color: transparent; 
      transform: scale(1.1);
    }
    .session-card.open .session-toggle-icon {
      transform: rotate(180deg);
      background: var(--white);
      color: var(--card);
    }
    .session-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: var(--grad);
    }
    .session-bg-n {
      position: relative;
      top: 0; right: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--ff-ui);
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--white);
      background: var(--grad);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      margin: 2.5rem 0 0 1.5rem;
      z-index: 2;
      box-shadow: 0 0 20px rgba(255,69,32,0.3);
    }
    .session-tag {
      font-family: var(--ff-ui);
      font-size: 0.67rem; font-weight: 700;
      letter-spacing: 0.16em; text-transform: uppercase;
      background: var(--grad);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      margin-bottom: 0.7rem; display: block;
    }
    .session-card h3 {
      font-family: var(--ff-ui);
      font-size: 1.2rem; font-weight: 700;
      line-height: 1.3; margin-bottom: 1.2rem;
    }
    .session-card { cursor: pointer; }
    .session-items { 
      list-style: none; 
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem 2.5rem;
      padding: 0 2.5rem 2.5rem 0;
      max-height: none;
      opacity: 1;
      margin-top: 1.5rem;
    }
    .session-toggle-icon { display: none; } /* Oculto en PC */
    .session-items li {
      font-size: 0.92rem; color: var(--dim);
      display: flex; align-items: flex-start;
      gap: 0.6rem; line-height: 1.5; font-weight: 400;
    }
    .session-items li::before {
      content: '';
      width: 5px; height: 5px; border-radius: 50%;
      background: var(--grad);
      margin-top: 7px; flex-shrink: 0;
      display: block;
    }

    /* ─── RECURSOS ─── */
    .recursos { background: transparent; }
    .recursos-grid {
      display: grid; grid-template-columns: repeat(2, 1fr);
      gap: 1.25rem; margin-top: 3.5rem;
    }
    .recurso-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 1.75rem;
      transition: border-color 0.3s;
    }
    .recurso-card:hover { border-color: var(--border-a); }
    .recurso-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.85rem; }
    .recurso-icon {
      width: 40px; height: 40px;
      background: var(--faint); border: 1px solid var(--border-a);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
    }
    .recurso-card h4 { font-family: var(--ff-ui); font-size: 1.1rem; font-weight: 700; }
    .recurso-card p { font-size: 0.93rem; color: var(--dim); line-height: 1.65; font-weight: 400; }

    /* GPTs — Flip Cards */
    .gpts-grid {
      display: grid; grid-template-columns: repeat(4,1fr);
      gap: 1.25rem; margin-top: 1.5rem;
    }
    .gpt-flip-card {
      perspective: 1000px;
      cursor: pointer;
      min-height: 200px;
      user-select: none;
    }
    .gpt-flip-card:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 12px; }
    .gpt-flip-inner {
      position: relative;
      width: 100%; height: 100%; min-height: 200px;
      transform-style: preserve-3d;
      transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    }
    /* Desktop flip: faster animation */
    @media (hover: hover) {
      .gpt-flip-card:hover .gpt-flip-inner { 
        transform: rotateY(180deg);
        transition-duration: 0.6s;
      }
    }
    /* Touch: flip on click (class added by JS) */
    .gpt-flip-card.flipped .gpt-flip-inner { transform: rotateY(180deg); }
    .gpt-flip-front, .gpt-flip-back {
      position: absolute; inset: 0;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      background: var(--card2);
      border: 1px solid var(--border);
      border-radius: 12px;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center;
      padding: 2rem 1.5rem;
      transition: border-color 0.3s;
    }
    .gpt-flip-card:hover .gpt-flip-front,
    .gpt-flip-card:hover .gpt-flip-back { border-color: var(--border-a); }
    .gpt-flip-back {
      transform: rotateY(180deg);
      background: linear-gradient(145deg, rgba(255,69,32,0.08), var(--card2));
      border-color: rgba(255,69,32,0.2);
      justify-content: flex-start;
      text-align: left;
      overflow-y: auto;
    }
    .gpt-name {
      font-family: var(--ff-ui);
      font-size: 2.2rem; font-weight: 800;
      background: var(--grad);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      letter-spacing: 0.02em;
      margin-bottom: 0.5rem;
    }
    .gpt-hint {
      font-size: 0.68rem; color: rgba(255,255,255,0.3);
      letter-spacing: 0.1em; text-transform: uppercase;
      margin-top: 0.25rem;
    }
    .gpt-flip-back-title {
      font-family: var(--ff-ui);
      font-size: 1.15rem; font-weight: 800;
      background: var(--grad);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      margin-bottom: 0.75rem;
    }
    .gpt-flip-back p { font-size: 0.9rem; color: rgba(255,255,255,0.82); line-height: 1.7; font-weight: 400; }

    /* Notion */
    /* ─── BENTO GRID (NOTION REDESIGN 2.0) ─── */
    .bento-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
      perspective: 2000px;
    }
    .bento-item { 
      position: relative;
      height: 100%;
    }
    .item-large { grid-column: span 2; }
    .item-medium { grid-column: span 2; }
    .item-small { grid-column: span 1; }

    .bento-inner {
      background: rgba(255,255,255,0.02);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 24px;
      padding: 2.5rem;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
      transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
      transform-style: preserve-3d;
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .bento-item:hover .bento-inner {
      transform: rotateX(2deg) rotateY(-2deg) translateZ(10px);
      border-color: rgba(255,69,32,0.4);
      background: rgba(255,255,255,0.05);
      box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    }

    .bento-visual {
      position: relative;
      margin-bottom: 2rem;
      color: var(--white);
      z-index: 1;
    }

    /* Glow Sphere (Aurora effect) */
    .glow-sphere {
      position: absolute;
      width: 150px; height: 150px;
      background: var(--grad);
      filter: blur(60px);
      opacity: 0.15;
      top: -50px; left: -50px;
      z-index: -1;
      pointer-events: none;
      transition: opacity 0.6s ease;
    }
    .bento-item:hover .glow-sphere { opacity: 0.4; }
    .pulse { animation: bentoPulse 8s infinite alternate; }

    @keyframes bentoPulse {
      0% { transform: scale(1) translate(0,0); }
      100% { transform: scale(1.5) translate(20%, 20%); }
    }

    .bento-content h4 {
      font-family: var(--ff-ui);
      font-size: 1.5rem; font-weight: 800;
      color: var(--white); margin-bottom: 0.5rem;
      letter-spacing: -0.02em;
    }
    .bento-content p {
      font-size: 0.95rem; color: var(--dim);
      line-height: 1.6; max-width: 300px;
    }
    .item-small .bento-content h4 { font-size: 1.25rem; }

    .notion-tag {
      font-family: var(--ff-ui);
      font-size: 0.65rem; font-weight: 800;
      letter-spacing: 0.25em; text-transform: uppercase;
      background: var(--grad);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      display: inline-block; margin-bottom: 1rem;
    }

    .sub-section { margin-top: 6rem; }

    /* ─── PRECIOS ─── */
    .precio-tabs {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 3rem;
      border-bottom: 1px solid var(--border);
    }
    .tab-btn {
      background: none; border: none;
      color: var(--dim);
      font-family: var(--ff-b); font-size: 0.88rem;
      padding: 0.8rem 1.6rem;
      cursor: pointer; position: relative;
      transition: color 0.2s; letter-spacing: 0.03em;
    }
    .tab-btn.active { color: var(--white); }
    .tab-btn.active::after {
      content: '';
      position: absolute; bottom: -1px; left: 0; right: 0; height: 2px;
      background: var(--grad);
    }
    .tab-btn:hover:not(.active) { color: rgba(255,255,255,0.8); }
    .tab-content { display: none; padding-top: 2rem; }
    .tab-content.active { display: block; }

    /* ── PRÓXIMAS FORMACIONES ── */
    .proximas-section { padding: 5rem 0; }
    .proximas-inner { display: flex; flex-direction: column; align-items: center; gap: 3rem; }
    .proximas-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,16,120,0.12); border: 1px solid rgba(255,16,120,0.3); color: var(--pink); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.4rem 1rem; border-radius: 20px; }
    .proximas-badge::before { content: ''; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--pink); animation: pulse-dot 1.5s infinite; }
    @keyframes pulse-dot { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(1.4); } }
    .proximas-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
    .proximas-meta-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--dim); }
    .proximas-meta-item svg { flex-shrink: 0; }
    .calendar-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
    .cal-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; width: 140px; padding: 1.2rem 1rem; text-align: center; position: relative; overflow: hidden; transition: transform 0.2s, border-color 0.2s; }
    .cal-card:hover { transform: translateY(-4px); border-color: rgba(255,69,32,0.4); }
    .cal-card::after { content: ''; position: absolute; inset: 0; background: var(--grad); opacity: 0; transition: opacity 0.2s; border-radius: 14px; z-index: 0; }
    .cal-card:hover::after { opacity: 0.06; }
    .cal-month { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.4rem; position: relative; z-index: 1; }
    .cal-day { font-family: var(--ff-h, Georgia, serif); font-size: 3rem; font-weight: 800; line-height: 1; color: var(--white); position: relative; z-index: 1; }
    .cal-weekday { font-size: 0.78rem; color: var(--dim); margin-top: 0.35rem; font-weight: 500; position: relative; z-index: 1; }
    .cal-duration { font-size: 0.7rem; color: var(--orange); margin-top: 0.5rem; font-weight: 600; position: relative; z-index: 1; }
    .proximas-cta-block { text-align: center; }
    .proximas-question { font-family: var(--ff-h, Georgia, serif); font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; margin-bottom: 0.75rem; }
    .proximas-spots { font-size: 0.85rem; color: var(--dim); margin-bottom: 1.75rem; }
    .proximas-spots strong { color: var(--white); }
    .btn-apuntarme { display: inline-block; background: var(--grad); color: #fff; padding: 1rem 2.8rem; border-radius: 8px; text-decoration: none; font-weight: 800; font-size: 1rem; letter-spacing: 0.04em; transition: opacity 0.2s, transform 0.2s; }
    .btn-apuntarme:hover { opacity: 0.88; transform: translateY(-2px); }

    .online-grid {
      display: grid; grid-template-columns: repeat(3,1fr);
      gap: 1.5rem;
    }
    .precio-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 2rem;
      position: relative;
      display: flex; flex-direction: column;
    }
    .precio-card.featured {
      border: 2px solid rgba(255,69,32,0.65);
      background: linear-gradient(145deg, rgba(255,69,32,0.09), var(--card));
      box-shadow: 0 0 0 4px rgba(255,69,32,0.07), 0 20px 60px rgba(255,69,32,0.18);
      transform: translateY(-4px);
    }
    .precio-card.featured::before {
      content: 'RECOMENDADO';
      position: absolute; top: -1px; right: 1.5rem;
      background: var(--grad);
      color: #fff;
      font-family: var(--ff-ui);
      font-size: 0.6rem; font-weight: 700;
      letter-spacing: 0.18em;
      padding: 0.28rem 0.7rem;
      border-radius: 0 0 5px 5px;
    }
    .p-label {
      font-family: var(--ff-ui);
      font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.16em; text-transform: uppercase;
      background: var(--grad);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      margin-bottom: 0.6rem;
    }
    .precio-card h3 { font-family: var(--ff-ui); font-size: 1.25rem; font-weight: 700; margin-bottom: 0.3rem; }
    .precio-amount {
      font-family: var(--ff-ui);
      font-size: 2.7rem; font-weight: 800;
      line-height: 1; margin: 1rem 0 0.6rem;
    }
    .precio-amount sub {
      font-size: 1rem; color: var(--dim);
      font-weight: 400; vertical-align: baseline;
    }
    .precio-note { font-size: 0.79rem; color: var(--dim); line-height: 1.55; margin-bottom: 1.25rem; }
    .precio-features {
      list-style: none; display: flex; flex-direction: column;
      gap: 0.5rem; margin-bottom: 1.5rem; flex: 1;
    }
    .precio-features li {
      font-size: 0.91rem; color: var(--dim);
      display: flex; gap: 0.6rem; align-items: flex-start; line-height: 1.5; font-weight: 400;
    }
    .precio-features li::before {
      content: '✓';
      background: var(--grad);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      font-size: 0.8rem; flex-shrink: 0; margin-top: 2px; font-weight: 700;
    }
    .p-cta {
      display: block; text-align: center;
      background: var(--grad);
      color: #fff;
      padding: 0.85rem;
      border-radius: 6px;
      font-family: var(--ff-ui);
      font-weight: 700; font-size: 0.88rem;
      letter-spacing: 0.04em; text-decoration: none;
      transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
      margin-top: auto;
    }
    .p-cta:hover { opacity: 0.88; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,69,32,0.3); }
    .p-cta.outline {
      background: transparent;
      border: 1px solid rgba(255,255,255,0.12);
      color: rgba(255,255,255,0.7);
    }
    .p-cta.outline:hover { border-color: rgba(255,69,32,0.4); color: var(--white); box-shadow: none; }

    /* Presencial */
    .presencial-wrap { 
      background: transparent; 
      border: 1px solid transparent;
      background: linear-gradient(var(--card), var(--card)) padding-box, var(--grad) border-box;
      border-radius: 16px; 
      overflow: hidden; 
      width: 100%;
      max-width: 900px;
      margin: 3.5rem auto 2.5rem;
      box-shadow: 0 20px 50px rgba(0,0,0,0.2);
      padding: 2.5rem;
    }
    .presencial-table { 
      width: 100%; 
      border-collapse: collapse; 
    }
    .presencial-table th {
      text-align: center;
      font-family: var(--ff-ui);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--dim);
      padding: 0 1.5rem 1.5rem;
      opacity: 0.8;
    }
    .presencial-table td {
      padding: 1.8rem 1.5rem;
      border-bottom: 1px solid var(--border);
      vertical-align: middle;
      color: var(--dim);
      text-align: center;
    }
    .presencial-table tr:last-child td { border-bottom: none; }
    .presencial-premium-mobile { display: none; }
    .presencial-table td:first-child { color: var(--white); font-weight: 500; }
    .presencial-table td.price { font-family: var(--ff-ui); font-size: 1.1rem; font-weight: 700; color: var(--white); }
    .presencial-table td.consult { font-size: 0.78rem; color: rgba(255,69,32,0.7); letter-spacing: 0.05em; }
    .presencial-table tr:hover td { background: rgba(255,255,255,0.02); }
    .table-action {
      display: inline-block;
      background: var(--grad);
      color: #fff;
      padding: 0.42rem 1rem;
      border-radius: 4px;
      font-family: var(--ff-ui);
      font-size: 0.75rem; font-weight: 700;
      text-decoration: none;
      transition: opacity 0.2s;
    }
    .table-action:hover { opacity: 0.85; }
    .presencial-note { font-size: 0.77rem; color: var(--dim); margin-top: 1rem; line-height: 1.5; }

    /* ─── CTA SECTION (email capture) ─── */
    .cta-section {
      background: transparent;
      text-align: center;
      border-top: 1px solid var(--border);
    }
    .cta-section .s-title { margin-bottom: 0.9rem; }
    .cta-section > .container > p {
      color: var(--dim); font-size: 1rem;
      max-width: 460px; margin: 0 auto 2.5rem;
      line-height: 1.75;
    }
    .cta-form-wrap {
      max-width: 480px;
      margin: 0 auto;
    }
    .cta-form {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
    }
    .cta-form input {
      flex: 1; min-width: 200px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 6px;
      color: var(--white);
      font-family: var(--ff-b);
      font-size: 0.9rem;
      padding: 0.85rem 1rem;
      outline: none;
      transition: border-color 0.2s;
    }
    .cta-form input::placeholder { color: rgba(255,255,255,0.3); }
    .cta-form input:focus { border-color: rgba(255,69,32,0.5); }
    .cta-form button {
      background: var(--grad);
      color: #fff; border: none;
      border-radius: 6px;
      font-family: var(--ff-ui);
      font-size: 0.88rem; font-weight: 700;
      letter-spacing: 0.04em;
      padding: 0.85rem 1.5rem;
      cursor: pointer;
      white-space: nowrap;
      transition: opacity 0.2s, transform 0.2s;
    }
    .cta-form button:hover { opacity: 0.88; transform: translateY(-1px); }

    /* ─── FOOTER ─── */
    footer {
      padding: 1.75rem 6%;
      border-top: 1px solid var(--border);
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 0.75rem;
      position: relative; z-index: 1;
    }
    .footer-logo-img { height: 28px; width: auto; opacity: 0.9; }
    footer span { font-size: 0.77rem; color: var(--dim); }
    .footer-social { display: flex; gap: 0.6rem; align-items: center; }
    .footer-social-link { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); transition: background 0.2s, border-color 0.2s; text-decoration: none; flex-shrink: 0; }
    .footer-social-link:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.18); }
    .footer-social-link svg { width: 16px; height: 16px; display: block; }

    /* ─── REVEAL ─── */
    .reveal {
      opacity: 0; transform: translateY(22px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* Escritura secuencial */
    .fill-text .fill-line {
      display: inline; /* Por defecto en escritorio para permitir 2 líneas */
      background: linear-gradient(to right, #ffffff 50%, rgba(255,255,255,0.08) 50.1%);
      background-size: 200% 100%;
      background-position: 100% 0;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      transition: none !important;
      will-change: background-position;
    }

    @media (max-width: 768px) {
      .fill-text .fill-line { display: block; } /* En móvil 3 líneas */
      .hide-mobile { display: none; }
    }

    /* Estilo del bloque "Y más." heredando del título */
    .y-mas {
      margin-top: 0.5rem;
      color: var(--accent);
      opacity: 0;
      will-change: transform, opacity;
      
      /* Desktop */
      font-family: var(--ff-h);
      font-size: clamp(2.5rem, 8vw, 4rem);
      font-weight: 400;
      line-height: 1.1;
      letter-spacing: -0.01em;
    }

    @media (max-width: 768px) {
      .y-mas { font-size: 1.9rem; margin-top: 0.2rem; }
    }

    .d1 { transition-delay: 0.1s; }
    .d2 { transition-delay: 0.2s; }
    .d3 { transition-delay: 0.3s; }
    .d4 { transition-delay: 0.4s; }

    /* ─── BLOG ─── */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }
    .blog-loading {
      grid-column: 1/-1;
      text-align: center;
      color: var(--dim);
      font-size: 0.9rem;
      padding: 2rem;
    }
    .blog-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 1.75rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      text-decoration: none;
      color: var(--white);
      transition: border-color 0.3s, transform 0.25s, box-shadow 0.25s;
      position: relative;
      overflow: hidden;
    }
    .blog-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: var(--grad);
    }
    .blog-card:hover {
      border-color: rgba(255,69,32,0.3);
      transform: translateY(-4px);
      box-shadow: 0 14px 40px rgba(0,0,0,0.4);
    }
    .blog-card-date {
      font-family: var(--ff-ui);
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .blog-card h3 {
      font-family: var(--ff-ui);
      font-size: 1.05rem;
      font-weight: 700;
      line-height: 1.35;
      color: var(--white);
    }
    .blog-card p {
      font-size: 0.86rem;
      color: var(--dim);
      line-height: 1.6;
      font-weight: 400;
      flex: 1;
    }
    .blog-card-link {
      font-family: var(--ff-ui);
      font-size: 0.8rem;
      font-weight: 700;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: 0.04em;
      margin-top: 0.25rem;
    }
    .blog-footer {
      text-align: center;
      margin-top: 2.5rem;
    }
    .btn-ghost {
      border: 1px solid rgba(255,255,255,0.12);
      color: var(--dim);
      padding: 0.85rem 2rem;
      border-radius: 6px;
      font-family: var(--ff-ui);
      font-size: 0.88rem;
      font-weight: 600;
      text-decoration: none;
      display: inline-block;
      transition: border-color 0.2s, color 0.2s;
    }
    .btn-ghost:hover { border-color: rgba(255,69,32,0.4); color: var(--white); }

    /* ─── HAMBURGUESA ─── */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 0.4rem;
      z-index: 201;
    }
    .nav-hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .nav-mobile-menu {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(6,5,11,0.97);
      backdrop-filter: blur(16px);
      z-index: 200;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
    }
    .nav-mobile-menu.open { display: flex; }
    .nav-mobile-menu a {
      color: var(--white);
      text-decoration: none;
      font-size: 1.5rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      transition: color 0.2s;
    }
    .nav-mobile-menu a:hover { color: var(--orange); }
    .nav-mobile-menu .mobile-cta {
      background: var(--grad);
      padding: 0.85rem 2.5rem;
      border-radius: 8px;
      font-size: 1rem;
      margin-top: 1rem;
    }

    /* ─── RESPONSIVE TABLET ─── */
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .audience-cards { grid-template-columns: repeat(2, 1fr); }
      .audience-card { aspect-ratio: auto; min-height: 200px; }
      
      .programa-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
      .programa-grid::before { display: none; }
      
      .session-card { 
        grid-template-columns: 1fr; 
        padding: 2rem; 
        cursor: pointer;
        border-radius: 12px;
      }
      .session-card:hover { transform: translateY(-5px); }
      
      .session-header { padding: 0; display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
      .session-bg-n { 
        position: absolute; top: 0.5rem; right: 1rem; width: auto; height: auto; 
        background: none; font-size: 5rem; color: rgba(255,255,255,0.04); 
        margin: 0; box-shadow: none; font-family: var(--ff-h);
      }
      
      .session-toggle-icon { 
        display: flex; 
        width: 32px; height: 32px; 
        align-items: center; justify-content: center; 
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,110,0,0.25);
        border-radius: 50%;
        flex-shrink: 0;
        transition: all 0.3s ease;
      }
      .session-card.open .session-toggle-icon {
        transform: rotate(180deg);
        background: var(--orange);
        border-color: var(--orange);
      }
      .session-items { 
        display: block;
        padding: 0; 
        max-height: 0; 
        overflow: hidden; 
        opacity: 0;
        transition: max-height 0.4s ease, opacity 0.3s ease;
        margin-top: 0;
      }
      .session-card.open .session-items { 
        max-height: 500px;
        opacity: 1; 
        margin-top: 1.2rem;
      }
      .session-items li {
        font-size: 0.9rem;
        color: var(--dim);
        display: block;
        padding-left: 1rem;
        position: relative;
        margin-bottom: 0.6rem;
        line-height: 1.5;
      }
      /* Anula el punto circular del desktop y usa solo texto */
      .session-items li::before {
        content: '•';
        position: absolute;
        left: 0;
        top: 0;
        width: auto; height: auto;
        border-radius: 0;
        background: none;
        margin: 0;
        color: var(--orange);
        font-size: 1rem;
        display: block;
      }

      .recursos-grid { grid-template-columns: 1fr; }
      .gpts-grid { grid-template-columns: repeat(2,1fr); }
      .notion-grid { grid-template-columns: repeat(2,1fr); }
      .online-grid { grid-template-columns: 1fr; }
      .stats-inner { gap: 2rem; }
      .container { padding: 0 0.6rem; } /* Máximo espacio para la tabla */
      .presencial-wrap { 
        margin: 1.5rem 0; 
        width: 100%; 
        border-radius: 8px; 
        overflow: visible;
      }
      .presencial-table { 
        table-layout: fixed; 
        width: 100%; 
      }
      /* Ocultamos la 3ª columna en móviles para ganar espacio */
      .presencial-table th:nth-child(3),
      .presencial-table td:nth-child(3) { 
        display: none; 
      }
      .presencial-table th, 
      .presencial-table td { 
        padding: 1.2rem 0.5rem; 
        font-size: 0.95rem; 
        white-space: nowrap;
        text-align: center !important;
      }
      .presencial-table td:first-child,
      .presencial-table td.price { 
        text-align: center !important; 
      }
      /* Mostramos el bloque premium debajo */
      .presencial-premium-mobile {
        display: block;
        padding: 2rem 1.5rem;
        text-align: center;
        border-top: 1px solid rgba(255,255,255,0.06);
        background: rgba(255,255,255,0.02);
      }
      .presencial-premium-mobile p {
        font-size: 0.9rem;
        color: var(--dim);
        margin-bottom: 1.25rem;
      }
      .presencial-premium-mobile .p-cta {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
      }
      .blog-grid { grid-template-columns: 1fr; }
    }

    /* ─── RESPONSIVE MÓVIL ─── */
    @media (max-width: 640px) {
      /* Nav */
      nav { padding: 0.85rem 5%; }
      .nav-logo-img { height: 26px; }
      .nav-cta { padding: 0.45rem 1rem; font-size: 0.75rem; }

      /* Hero */
      section { padding: 3.5rem 5%; }
      .hero { padding: 7rem 5% 4rem; min-height: auto; }
      .hero h1 { font-size: 2.2rem; letter-spacing: -0.01em; }
      .hero > p { font-size: 0.97rem; margin-bottom: 2rem; }
      .hero-badge { font-size: 0.65rem; padding: 0.32rem 0.85rem; }
      .form-wrapper { max-width: 100%; }
      .lead-form { padding: 1.5rem; }
      .lead-form h3 { font-size: 0.92rem; }

      /* Stats */
      .stats-bar { padding: 1.75rem 5%; }
      .stats-inner { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem 1rem; }
      .stat-n { font-size: 1.8rem; }
      .stat-l { font-size: 0.65rem; }

      /* Sections */
      .s-title { font-size: 1.9rem; }
      .s-sub { font-size: 0.97rem; }
      .audience-cards { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; margin-top: 2.5rem; }
      .audience-card { aspect-ratio: auto; min-height: auto; padding: 1.5rem 1.25rem; }
      .audience-card h4 { font-size: 0.92rem; }
      .audience-card p { font-size: 0.82rem; }

      /* Programa */
      .programa-grid { gap: 1rem; margin-top: 2.5rem; }
      .session-card { padding: 1.5rem; }
      .session-card h3 { font-size: 1.1rem; }
      .session-items li { font-size: 0.88rem; }

      /* Recursos */
      .recursos-grid { gap: 1rem; margin-top: 2.5rem; }
      .recurso-card { padding: 1.35rem; }
      .recurso-card h4 { font-size: 1rem; }
      .recurso-card p { font-size: 0.88rem; }
      .gpts-grid { grid-template-columns: repeat(2,1fr); gap: 0.75rem; margin-top: 1.25rem; }
      .gpt-flip-card { min-height: 260px; }
      .gpt-flip-inner { min-height: 260px; }
      .gpt-flip-back { padding: 1.4rem 1.1rem; }
      .gpt-flip-back p { font-size: 0.83rem; line-height: 1.6; }
      .gpt-name { font-size: 1.8rem; }
      .bento-grid { grid-template-columns: 1fr; gap: 1rem; }
      .bento-item { grid-column: span 1 !important; }
      .bento-inner { padding: 1.75rem; border-radius: 20px; }
      .bento-content h4 { font-size: 1.25rem; }
      .glow-sphere { width: 100px; height: 100px; filter: blur(40px); }
      /* Pricing featured reset on mobile */
      .precio-card.featured { transform: none; }

      /* Precios */
      .precio-tabs { margin-top: 2rem; }
      .tab-btn { padding: 0.7rem 1.1rem; font-size: 0.85rem; }
      .online-grid { gap: 1rem; }
      .precio-card { padding: 1.5rem; }
      .precio-card h3 { font-size: 1.1rem; }
      .precio-amount { font-size: 2.2rem; }
      .presencial-table th,
      .presencial-table td { padding: 0.8rem 1rem; font-size: 0.82rem; }
      .presencial-table td.price { font-size: 1rem; }

      /* CTA final */
      .cta-form { flex-direction: column; }
      .cta-form input,
      .cta-form button { width: 100%; }
      .cta-section > .container > p { font-size: 0.95rem; }

      /* Footer */
      footer { flex-direction: column; align-items: flex-start; gap: 0.5rem; padding: 1.5rem 5%; }

      /* Carrusel */
      .logos-track { gap: 2.5rem; animation-duration: 10s; }
      .logos-track img { height: 28px; }
      .logos-track img.logo-skool { height: 40px; }
    }

    /* ─── MÓVIL MUY PEQUEÑO ─── */
    @media (max-width: 380px) {
      .hero h1 { font-size: 1.9rem; }
      .stats-inner { grid-template-columns: repeat(2,1fr); }
      .gpts-grid { grid-template-columns: 1fr 1fr; }
      .notion-grid { grid-template-columns: 1fr 1fr; }
      .logos-track { gap: 2rem; }
      .logos-track img { height: 22px; }
      .logos-track img.logo-skool { height: 32px; }
    }

    /* ─── FONDO ANIMADO GLOBAL ─── */
    #global-blobs {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }
    .g-blob {
      position: absolute;
      border-radius: 50%;
      will-change: transform;
      filter: blur(80px);
    }
    .g-blob-1 {
      width: 800px; height: 800px;
      background: radial-gradient(circle, rgba(255,69,32,0.32) 0%, transparent 70%);
      top: -200px; left: -200px;
      animation: gb1 40s linear infinite;
    }
    .g-blob-2 {
      width: 650px; height: 650px;
      background: radial-gradient(circle, rgba(255,16,120,0.28) 0%, transparent 70%);
      top: 15vh; right: -150px;
      animation: gb2 50s linear infinite;
    }
    .g-blob-3 {
      width: 550px; height: 550px;
      background: radial-gradient(circle, rgba(255,69,32,0.22) 0%, transparent 70%);
      top: 50vh; left: 10%;
      animation: gb3 45s linear infinite;
    }
    .g-blob-4 {
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(255,16,120,0.25) 0%, transparent 70%);
      bottom: 10vh; right: 5%;
      animation: gb4 55s linear infinite;
    }
    .g-blob-5 {
      width: 480px; height: 480px;
      background: radial-gradient(circle, rgba(255,69,32,0.20) 0%, transparent 70%);
      bottom: -150px; left: 30%;
      animation: gb5 48s linear infinite;
    }

    @keyframes gb1 {
      0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
      33%  { transform: translate(250px, 150px) rotate(120deg) scale(1.1); }
      66%  { transform: translate(100px, 350px) rotate(240deg) scale(0.9); }
      100% { transform: translate(0, 0) rotate(360deg) scale(1); }
    }
    @keyframes gb2 {
      0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
      50%  { transform: translate(-300px, 200px) rotate(-180deg) scale(1.15); }
      100% { transform: translate(0, 0) rotate(-360deg) scale(1); }
    }
    @keyframes gb3 {
      0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
      25%  { transform: translate(150px, -100px) rotate(90deg) scale(1.1); }
      75%  { transform: translate(-100px, 150px) rotate(270deg) scale(0.85); }
      100% { transform: translate(0, 0) rotate(360deg) scale(1); }
    }
    @keyframes gb4 {
      0%   { transform: translate(0, 0) scale(1); }
      50%  { transform: translate(-200px, -250px) scale(1.2); }
      100% { transform: translate(0, 0) scale(1); }
    }
    @keyframes gb5 {
      0%   { transform: translate(0, 0) rotate(0deg); }
      50%  { transform: translate(200px, -150px) rotate(180deg); }
      100% { transform: translate(0, 0) rotate(360deg); }
    }

    /* Mobile Blobs Optimization */
    @media (max-width: 640px) {
      .g-blob-1 { width: 400px; height: 400px; top: -100px; left: -100px; }
      .g-blob-2 { width: 350px; height: 350px; right: -80px; }
      .g-blob-3 { width: 300px; height: 300px; left: 5%; }
      .g-blob-4 { width: 280px; height: 280px; bottom: 5vh; }
      .g-blob-5 { width: 250px; height: 250px; bottom: -80px; }
      .g-blob { filter: blur(40px); } /* Less blur for better performance on mobile */
    }

    /* Make sure page content sits above blobs */
    #main-content { position: relative; z-index: 1; }
    .stats-bar, .logos-strip, footer { position: relative; z-index: 1; }
    /* Remove static hero blobs since global blobs cover the hero too */
    .hero-bg { display: none; }

    /* ─── CONTACT MODAL ─── */
    .contact-modal {
      position: fixed;
      inset: 0;
      z-index: 2000;
      background: rgba(6,5,11,0.85);
      backdrop-filter: blur(12px);
      display: flex;
      align-items: center; justify-content: center;
      padding: 1.5rem;
      opacity: 0; pointer-events: none;
      transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .contact-modal.active { opacity: 1; pointer-events: all; }

    .modal-content {
      width: 100%; max-width: 520px;
      transform: translateY(20px) scale(0.98);
      transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .contact-modal.active .modal-content { transform: translateY(0) scale(1); }

    .modal-close {
      position: absolute; top: -1.25rem; right: -1.25rem;
      width: 36px; height: 36px;
      background: var(--surface);
      border: 1px solid var(--border);
      color: var(--white);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: all 0.2s;
      z-index: 10;
    }
    .modal-close:hover { background: var(--card); transform: scale(1.1) rotate(90deg); border-color: var(--orange); }

    .no-scroll { overflow: hidden !important; }

    @media (max-width: 600px) {
      .modal-close { top: 0.75rem; right: 0.75rem; width: 32px; height: 32px; background: rgba(0,0,0,0.5); border-color: rgba(255,255,255,0.1); }
      .contact-modal { padding: 0; }
      .modal-content { height: 100%; border-radius: 0; display: flex; align-items: center; }
      .lead-form { border-radius: 0; border: none; height: auto; max-height: 100%; overflow-y: auto; }
    }

    /* ─── EL FORMADOR (DYNAMIC REDESIGN) ─── */
    .formador { padding: 10rem 0; position: relative; overflow: hidden; }
    .formador-canvas {
      position: relative;
      background: rgba(255,255,255,0.01);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 40px;
      padding: 4rem;
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
    }
    .canvas-glow {
      position: absolute;
      top: -10%; right: -10%;
      width: 50%; height: 50%;
      background: radial-gradient(circle, rgba(255,69,32,0.1) 0%, transparent 70%);
      pointer-events: none;
    }
    .formador-grid {
      display: grid;
      grid-template-columns: 0.8fr 1.2fr;
      gap: 5rem;
      align-items: center;
    }

    /* Floating Tags & Frame */
    .formador-visual-extra { position: relative; }
    .floating-tags { position: absolute; inset: -20px; z-index: 5; pointer-events: none; }
    .f-tag {
      position: absolute;
      padding: 0.6rem 1.2rem;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      backdrop-filter: blur(10px);
      border-radius: 100px;
      font-size: 0.7rem; font-weight: 700; color: var(--white);
      letter-spacing: 0.05em;
      animation: floatTag 6s ease-in-out infinite;
    }
    .tag-1 { top: 10%; right: -5%; animation-delay: 0s; }
    .tag-2 { bottom: 20%; left: -10%; animation-delay: 1.5s; }
    .tag-3 { top: -5%; left: 20%; animation-delay: 3s; }
    .tag-4 { bottom: 0%; right: 10%; animation-delay: 4.5s; }

    @keyframes floatTag {
      0%, 100% { transform: translateY(0) rotate(0); }
      50% { transform: translateY(-15px) rotate(2deg); }
    }

    .photo-frame {
      position: relative;
      background: #000;
      aspect-ratio: 1/1.2;
      border-radius: 30px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.1);
      box-shadow: 0 50px 100px rgba(0,0,0,0.8);
    }
    .experience-chip {
      position: absolute;
      bottom: 2rem; left: 2rem;
      background: var(--white);
      color: #000;
      padding: 0.5rem 1rem;
      border-radius: 100px;
      font-size: 0.65rem; font-weight: 800;
      text-transform: uppercase;
    }

    /* Content Styling */
    .formador-name {
      font-size: 4rem; font-weight: 900;
      letter-spacing: -0.04em; margin-bottom: 2rem;
      line-height: 0.9;
    }
    .formador-main-card {
      background: rgba(255,255,255,0.03);
      padding: 2.5rem;
      border-radius: 24px;
      border: 1px solid rgba(255,255,255,0.06);
      margin-bottom: 3rem;
      position: relative;
      z-index: 2;
    }
    .formador-bio {
      font-size: 1.25rem; color: var(--white);
      line-height: 1.6; opacity: 0.9;
    }
    
    .formador-journey {
      display: flex; gap: 2rem; margin-bottom: 3rem;
    }
    .journey-item {
      display: flex; gap: 1rem; align-items: start;
    }
    .j-icon { font-size: 1.5rem; }
    .j-text h6 { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 0.2rem; }
    .j-text p { font-size: 0.75rem; color: var(--dim); }

    .formador-vision {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .vision-quote { display: flex; gap: 1rem; max-width: 70%; }
    .quote-icon { font-size: 3rem; color: var(--orange); font-family: serif; line-height: 1; opacity: 0.5; }
    .vision-quote p { font-size: 1rem; color: var(--dim); font-style: italic; line-height: 1.6; }
    .formador-signature {
      font-family: 'Playfair Display', serif;
    }

    /* ─── NUESTRA MISIÓN ─── */
    .mision-vision { padding: 6rem 0; }
    .mision-card {
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 40px;
      padding: 5rem;
      backdrop-filter: blur(10px);
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 4rem;
      align-items: center;
    }
    .mision-content .p-lead {
      font-size: 1.4rem;
      color: var(--white);
      line-height: 1.6;
      margin-bottom: 2rem;
      font-weight: 500;
    }
    .mision-content p {
      font-size: 1.05rem;
      color: var(--dim);
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }
    .mision-footer {
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .mision-signature {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      color: var(--white);
      font-style: italic;
    }
    .footer-note {
      font-size: 0.75rem;
      color: var(--orange);
      text-transform: uppercase;
      letter-spacing: 0.2em;
      margin-top: 0.4rem;
      font-weight: 800;
    }

    @media (max-width: 1024px) {
      .mision-card { grid-template-columns: 1fr; padding: 3rem 2rem; gap: 2rem; }
      .mision-content .p-lead { font-size: 1.25rem; }
    }

    /* ─── FOTO FORMADOR ─── */
    .formador-photo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 10%; 
      display: block;
    }
    .photo-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* ─── MISIÓN PILARES (REDISEÑO) ─── */
    .formador { padding: 6rem 0 3rem; } /* Compactado */
    .mision-vision { padding: 3rem 0 6rem; } /* Compactado */
    
    .mision-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3rem;
      margin-top: 2rem;
    }
    .m-pillar {
      position: relative;
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .p-num {
      font-family: var(--ff-ui);
      font-size: 2.8rem;
      font-weight: 900;
      background: linear-gradient(to bottom, var(--orange), var(--pink));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      opacity: 0.7;
      margin-bottom: 1rem;
      line-height: 1;
    }
    .m-pillar h4 {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 1rem;
    }
    .m-pillar p {
      font-size: 0.9rem;
      color: var(--dim);
      line-height: 1.6;
    }

    @media (max-width: 900px) {
      .mision-grid { grid-template-columns: 1fr; gap: 4rem; }
      .p-num { font-size: 2rem; }
    }

    /* ─── PERFECCIÓN MÓVIL (FORMADOR & MISIÓN) ─── */
    @media (max-width: 600px) {
      .formador { padding: 3rem 0; }
      .formador-canvas { padding: 1.5rem; border-radius: 24px; }
      
      .formador-grid { 
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
      }

      /* Foto y Etiquetas */
      .formador-visual-extra {
        order: -1; 
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 2rem;
        min-height: 300px; /* Asegura espacio para la foto y tags */
      }
      .photo-frame {
        width: 260px;
        height: 260px;
        margin: 0 auto;
        border-radius: 20px;
      }
      .photo-frame .formador-photo {
        object-position: center 30%;
      }
      /* Etiquetas orbitando la foto */
      .floating-tags { 
        position: absolute; 
        width: 300px; 
        height: 300px; 
        top: 50%; left: 50%; 
        transform: translate(-50%, -50%); 
        z-index: 5; 
      }
      .f-tag { padding: 0.4rem 0.8rem; font-size: 0.65rem; background: rgba(0,0,0,0.6); border-color: rgba(255,255,255,0.2); backdrop-filter: blur(5px); }
      .tag-1 { top: 5%; right: 0%; }    /* IA / Derecho */
      .tag-2 { bottom: 10%; left: -2%; }  /* Finanzas */
      .tag-3 { top: 0%; left: 0%; }     /* IA */
      .tag-4 { bottom: 0%; right: -2%; }  /* Marketing */
      .experience-chip { 
        font-size: 0.55rem; 
        top: 1rem; 
        bottom: auto; 
        left: 50%; 
        transform: translateX(-50%); 
        width: max-content; 
        padding: 0.4rem 0.8rem;
      }

      .formador-header { text-align: center; margin-bottom: 0.5rem; }
      .formador-name { font-size: 2.8rem; margin-bottom: 1rem; }
      
      .formador-main-card { padding: 1.8rem 1.2rem; margin-bottom: 2rem; border-radius: 20px; }
      .formador-bio { font-size: 1.05rem; text-align: center; line-height: 1.6; }
      
      .formador-journey { flex-direction: column; align-items: center; gap: 1.5rem; width: 100%; margin-bottom: 2rem; }
      .journey-item { flex-direction: column; text-align: center; }

      .mision-vision { padding: 1rem 0 4rem; }
      .mision-card { padding: 2.5rem 1.5rem; border-radius: 28px; text-align: center; }
      .mision-grid { gap: 3rem; margin-top: 2rem; }
      .m-pillar { padding-top: 1.5rem; }
      .p-num { font-size: 2.5rem; margin-bottom: 0.5rem; }
      .m-pillar h4 { font-size: 1.15rem; margin-bottom: 0.5rem; }
    }

    /* ─── FORMULARIO INLINE ─── */
    .contacto-inline { padding: 6rem 0; }
    .contacto-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    .contacto-desc {
      font-size: 1.1rem;
      color: var(--dim);
      line-height: 1.7;
      margin-top: 1.5rem;
      margin-bottom: 2.5rem;
    }
    .contacto-details { display: flex; flex-direction: column; gap: 1.5rem; }
    .contacto-detail {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }
    .cd-icon { font-size: 1.4rem; flex-shrink: 0; }
    .contacto-detail strong {
      font-size: 0.95rem;
      color: var(--white);
      display: block;
      margin-bottom: 0.2rem;
    }
    .contacto-detail p {
      font-size: 0.8rem;
      color: var(--dim);
      line-height: 1.4;
    }
    .contacto-form-wrap {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 24px;
      padding: 3rem;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }
    .inline-form { display: flex; flex-direction: column; gap: 1.5rem; }
    .form-group label {
      display: block;
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--white);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 0.5rem;
    }
    .form-group input,
    .form-group textarea {
      width: 100%;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 12px;
      padding: 1rem 1.2rem;
      color: var(--white);
      font-size: 0.95rem;
      font-family: var(--ff-ui);
      transition: border-color 0.3s ease;
      outline: none;
    }
    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--orange);
    }
    .form-group textarea { resize: vertical; min-height: 100px; }
    .inline-submit {
      width: 100%;
      padding: 1.1rem;
      background: var(--grad);
      color: var(--white);
      border: none;
      border-radius: 12px;
      font-size: 1rem;
      font-weight: 700;
      font-family: var(--ff-ui);
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .inline-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(255,69,32,0.3);
    }
    .inline-submit:disabled {
      opacity: 0.6;
      cursor: not-allowed;
      transform: none;
    }

    @media (max-width: 900px) {
      .contacto-inline { padding: 4rem 6%; }
      .contacto-grid { grid-template-columns: 1fr; gap: 3rem; }
      .contacto-form-wrap { padding: 2rem 1.5rem; }
    }


