:root {
      --topbar-bg: #004d40;
      --header-bg: #002b49;
      --primary-teal: #008080;
      --primary-blue: #09375e;
      --primary-green: #10ac84;
      --primary-orange: #ff6b4a;
      --text-dark: #1e293b;
      --text-muted: #475569;
      --bg-light: #ffffff;
      --border-color: #e2e8f0;
      --whatsapp-green: #25d366;
      --whatsapp-hover: #1da851;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; }
    html { scroll-behavior: smooth; }
    body { background-color: var(--bg-light); color: var(--text-dark); line-height: 1.5; }
    body.modal-open { overflow: hidden; }
    [hidden] { display: none !important; }
    section[id], #contacto { scroll-margin-top: 100px; }

    .skip-link {
      position: fixed;
      top: 8px;
      left: 8px;
      z-index: 100000;
      padding: 10px 14px;
      border-radius: 8px;
      background: #ffffff;
      color: var(--primary-blue);
      font-weight: 800;
      transform: translateY(-150%);
    }
    .skip-link:focus { transform: translateY(0); }

    /* 1. TOP BAR DE CONTACTO */
    .top-bar {
      background-color: var(--topbar-bg);
      color: #ffffff;
      padding: 8px 5%;
      font-size: 0.82rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
    }
    .top-bar a { color: #ffffff; text-decoration: none; }

    /* 2. HEADER OFICIAL CON LOGO Y NAVEGACIÓN COMPLETA */
    header {
      background-color: var(--header-bg);
      padding: 12px 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    }

    /* LOGO OFICIAL */
    .logo-official {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }
    .logo-official img {
      display: block;
      width: 230px;
      max-width: 42vw;
      height: auto;
    }

    .nav-toggle {
      display: none;
      border: 1px solid rgba(255,255,255,0.55);
      border-radius: 8px;
      background: transparent;
      color: #ffffff;
      padding: 7px 11px;
      font-size: 1.3rem;
      cursor: pointer;
    }

    /* MENÚ NAVEGABLE */
    nav ul { display: flex; list-style: none; gap: 22px; align-items: center; }
    nav a, .dropdown-toggle {
      color: #ffffff;
      text-decoration: none;
      font-size: 0.88rem;
      font-weight: 600;
      transition: color 0.2s;
    }
    nav a:hover, .dropdown-toggle:hover { color: var(--primary-orange); }
    .dropdown-toggle { background: none; border: 0; cursor: pointer; }

    /* DROPDOWN PARA OTROS SERVICIOS */
    .dropdown { position: relative; }
    .dropdown-menu {
      position: absolute;
      top: 100%; right: 0;
      background: #ffffff;
      border-radius: 8px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
      display: none;
      flex-direction: column;
      min-width: 200px;
      overflow: hidden;
      padding: 6px 0;
      z-index: 1001;
    }
    .dropdown:hover .dropdown-menu,
    .dropdown:focus-within .dropdown-menu,
    .dropdown.is-open .dropdown-menu { display: flex; }
    .dropdown-menu a {
      color: var(--text-dark);
      padding: 10px 16px;
      font-size: 0.85rem;
      transition: background 0.2s;
    }
    .dropdown-menu a:hover { background: #f1f5f9; color: var(--primary-teal); }

    /* 3. HERO SECTION (2 COLUMNAS) */
    .hero-container {
      max-width: 1200px;
      margin: 30px auto 20px;
      padding: 0 20px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 36px;
      align-items: start;
    }

    .hero-text .kicker {
      color: var(--primary-teal);
      font-size: 0.95rem;
      font-weight: 700;
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .hero-text h1 {
      font-size: 2.2rem;
      color: #0f172a;
      line-height: 1.22;
      font-weight: 800;
      margin-bottom: 14px;
    }

    .hero-text p.lead-intro {
      font-size: 1rem;
      color: var(--text-muted);
      margin-bottom: 20px;
      line-height: 1.5;
    }

    /* CARD DEL FORMULARIO */
    .form-card {
      background: #ffffff;
      border: 2px solid var(--border-color);
      border-radius: 14px;
      padding: 24px;
      box-shadow: 0 12px 30px rgba(0,0,0,0.06);
      max-width: 480px;
    }

    .form-card h3 {
      font-size: 1.1rem;
      text-align: center;
      margin-bottom: 4px;
      color: #0f172a;
      font-weight: 800;
      line-height: 1.3;
    }

    .form-card p.form-subtitle {
      font-size: 0.85rem;
      text-align: center;
      color: var(--text-muted);
      margin-bottom: 16px;
    }

    .form-group { margin-bottom: 12px; }
    .form-group label {
      display: block;
      font-size: 0.82rem;
      font-weight: 700;
      margin-bottom: 4px;
      color: var(--text-dark);
    }
    .form-group input, .form-group select, .form-group textarea {
      width: 100%;
      padding: 10px 12px;
      border: 1px solid #cbd5e1;
      border-radius: 8px;
      font-size: 0.88rem;
      outline: none;
      background-color: #fafafa;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      border-color: var(--primary-green);
      background-color: #ffffff;
    }

    .hp-field { display: none !important; }

    .btn-submit {
      width: 100%;
      padding: 14px;
      background-color: var(--primary-green);
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      font-weight: 800;
      cursor: pointer;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-top: 6px;
      transition: background-color 0.2s;
    }
    .btn-submit:hover { background-color: #0e9f78; }
    .btn-submit:disabled { cursor: wait; opacity: 0.72; }

    /* MULTIMEDIA / VIDEO DERECHA */
    .hero-media {
      position: relative;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      align-self: center;
    }
    .hero-video {
      width: min(100%, 380px);
      aspect-ratio: 9 / 16;
      overflow: hidden;
      border-radius: 14px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
      background: var(--navy);
    }
    .hero-video iframe {
      width: 100%;
      height: 100%;
      display: block;
      border: 0;
    }

    .quote-box {
      width: 100%;
      max-width: 480px;
      box-sizing: border-box;
      background: #f0fdf4;
      border-left: 4px solid var(--primary-green);
      padding: 14px 18px;
      border-radius: 0 12px 12px 0;
      margin-top: 16px;
      font-style: italic;
      color: #064e3b;
      font-size: 0.92rem;
      font-weight: 600;
    }

    /* 4. SECCIÓN CÓMO ES EL PROGRAMA (LECTURA RÁPIDA) */
    .program-details-top {
      max-width: 1200px;
      margin: 20px auto 40px;
      padding: 28px 24px;
      background-color: #f8fafc;
      border-radius: 16px;
      border: 1px solid var(--border-color);
    }

    .program-details-top h2 {
      font-size: 1.35rem;
      color: var(--primary-blue);
      font-weight: 800;
      margin-bottom: 8px;
      text-align: center;
    }

    .program-details-top p.intro-desc {
      text-align: center;
      color: var(--text-muted);
      font-size: 0.95rem;
      max-width: 850px;
      margin: 0 auto 20px;
    }

    .program-grid-fast {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .fast-card {
      background: #ffffff;
      padding: 16px 18px;
      border-radius: 10px;
      border-top: 4px solid var(--primary-green);
      box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    }

    .fast-card h3 {
      color: #0f172a;
      font-size: 0.98rem;
      font-weight: 800;
      margin-bottom: 6px;
    }

    .fast-card p {
      color: var(--text-muted);
      font-size: 0.88rem;
      line-height: 1.4;
    }

    /* 5. BENEFICIOS (3 CAJAS) */
    .features-section {
      max-width: 1200px;
      margin: 20px auto 40px;
      padding: 0 20px;
    }
    .features-section h2 {
      font-size: 1.25rem;
      margin-bottom: 20px;
      font-weight: 800;
      color: #0f172a;
    }

    .grid-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .card {
      padding: 24px 20px;
      color: #ffffff;
      border-radius: 8px;
    }
    .card-blue { background-color: var(--primary-blue); }
    .card-green { background-color: var(--primary-green); }
    .card-orange { background-color: var(--primary-orange); }

    .card h3 {
      font-size: 1.1rem;
      font-weight: 800;
      margin-bottom: 8px;
      line-height: 1.3;
    }
    .card p {
      font-size: 0.9rem;
      line-height: 1.45;
      opacity: 0.95;
    }

    /* FOOTER */
    footer {
      text-align: center;
      padding: 40px 20px;
      border-top: 1px solid var(--border-color);
      margin-top: 40px;
      background: #fafafa;
    }
    footer h2 { color: #008080; font-size: 1.8rem; font-weight: 800; }
    footer p.slogan { color: #ff7f50; font-weight: 700; letter-spacing: 2px; font-size: 0.85rem; margin-bottom: 12px; }
    footer p.seo-foot { font-size: 0.82rem; color: var(--text-muted); max-width: 800px; margin: 0 auto; }

    /* ERRORES INLINE */
    .status-message {
      padding: 12px;
      border-radius: 8px;
      font-size: 0.88rem;
      font-weight: 600;
      margin-top: 15px;
      display: none;
      text-align: center;
    }
    .status-message.error { background-color: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
    .status-message.success { background-color: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }

    /* OVERLAY MODAL DE CONFIRMACIÓN */
    .overlay-modal {
      position: fixed;
      top: 0; left: 0;
      width: 100vw; height: 100vh;
      background: rgba(15, 23, 42, 0.75);
      backdrop-filter: blur(5px);
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease-in-out;
      z-index: 99999;
      padding: 20px;
    }

    .overlay-modal.active { opacity: 1; visibility: visible; }

    .overlay-content {
      background: #ffffff;
      width: 100%;
      max-width: 500px;
      padding: 32px 24px;
      border-radius: 18px;
      text-align: center;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
      position: relative;
      transform: scale(0.9);
      transition: transform 0.3s ease-in-out;
    }

    .overlay-modal.active .overlay-content { transform: scale(1); }

    .overlay-icon { font-size: 3rem; margin-bottom: 10px; display: inline-block; }
    .overlay-content h3 { font-size: 1.4rem; color: var(--primary-blue); font-weight: 800; margin-bottom: 6px; }
    .overlay-content p.download-status { font-size: 0.95rem; color: var(--primary-green); font-weight: 700; margin-bottom: 12px; }
    .overlay-content p.desc-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.45; margin-bottom: 20px; }

    .btn-whatsapp-action {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      width: 100%; padding: 15px; background-color: var(--whatsapp-green);
      color: #ffffff; font-size: 1rem; font-weight: 800; border-radius: 10px;
      text-decoration: none; box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35); transition: all 0.2s;
    }
    .btn-whatsapp-action:hover { background-color: var(--whatsapp-hover); transform: translateY(-2px); }

    .fallback-link {
      display: inline-block; margin-top: 16px; font-size: 0.82rem;
      color: var(--primary-blue); text-decoration: underline; font-weight: 600; cursor: pointer;
    }

    .close-overlay-btn {
      position: absolute; top: 12px; right: 16px;
      background: none; border: none; font-size: 1.5rem; color: var(--text-muted); cursor: pointer;
    }

    .close-overlay-btn:focus-visible,
    .btn-submit:focus-visible,
    .btn-whatsapp-action:focus-visible,
    .fallback-link:focus-visible,
    nav a:focus-visible,
    .dropdown-toggle:focus-visible,
    .nav-toggle:focus-visible {
      outline: 3px solid #fbbf24;
      outline-offset: 3px;
    }

    @media (max-width: 900px) {
      .program-grid-fast { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .site-header { flex-wrap: wrap; }
      .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
      nav { display: none; width: 100%; padding-top: 12px; }
      nav.is-open { display: block; }
      nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
      nav li, nav a, .dropdown-toggle { width: 100%; text-align: left; }
      nav a, .dropdown-toggle { display: block; padding: 10px 12px; }
      .dropdown-menu { position: static; min-width: 0; box-shadow: none; margin: 0 10px 8px; }
      .hero-container { grid-template-columns: 1fr; }
      .hero-text h1 { font-size: clamp(2rem, 10vw, 2.7rem); }
      .grid-cards { grid-template-columns: 1fr; }
      .program-grid-fast { grid-template-columns: 1fr; }
      .top-bar { flex-direction: column; gap: 4px; text-align: center; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
    }

    /* LANDING TUTORÍAS */
    .landing-tutorias {
      --tutorias-cyan: #0891b2;
      --tutorias-cyan-dark: #0e7490;
      --tutorias-cyan-soft: #ecfeff;
      background:
        radial-gradient(circle at 92% 14%, rgba(34, 211, 238, 0.10), transparent 22rem),
        var(--bg-light);
    }
    .landing-tutorias .top-bar { background: #0f6879; }
    .landing-tutorias .hero-heading .kicker { color: var(--tutorias-cyan-dark); }
    .landing-tutorias .hero-container {
      grid-template-columns: minmax(0, 480px) minmax(0, 380px);
      justify-content: center;
      column-gap: 28px;
      row-gap: 24px;
    }
    .landing-tutorias .hero-heading {
      grid-column: 1 / -1;
      width: 100%;
      max-width: 900px;
      justify-self: center;
      text-align: center;
    }
    .landing-tutorias .hero-heading .kicker {
      margin-bottom: 8px;
      font-size: 0.95rem;
      font-weight: 800;
      letter-spacing: 0.04em;
    }
    .landing-tutorias .hero-heading h1 {
      margin: 0 auto 12px;
      color: #0f172a;
      font-size: clamp(2.25rem, 4.2vw, 3.35rem);
      line-height: 1.12;
      font-weight: 850;
      text-wrap: balance;
    }
    .landing-tutorias .hero-heading .lead-intro {
      max-width: 780px;
      margin: 0 auto;
      color: var(--text-muted);
      font-size: 1.04rem;
      line-height: 1.55;
      text-wrap: balance;
    }
    .landing-tutorias .form-card {
      width: 100%;
      border-color: #a5e4ee;
      box-shadow: 0 16px 38px rgba(14, 116, 144, 0.12);
    }
    .landing-tutorias .btn-submit {
      background: linear-gradient(135deg, var(--tutorias-cyan), #0284c7);
      box-shadow: 0 10px 22px rgba(8, 145, 178, 0.22);
    }
    .landing-tutorias .btn-submit:hover { background: linear-gradient(135deg, #0e7490, #0369a1); }
    .landing-tutorias .dropdown-menu a[aria-current="page"] {
      color: var(--tutorias-cyan-dark);
      background: var(--tutorias-cyan-soft);
      font-weight: 800;
    }
    .subject-selector {
      min-width: 0;
      margin: 18px 0 20px;
      padding: 16px;
      border: 1px solid #bae6fd;
      border-radius: 14px;
      background: linear-gradient(145deg, #f0fdff, #eff6ff);
    }
    .subject-selector legend {
      padding: 0 6px;
      color: var(--primary-blue);
      font-size: 0.92rem;
      font-weight: 800;
    }
    .subject-selector > p {
      margin: 0 0 12px;
      color: var(--text-muted);
      font-size: 0.82rem;
    }
    .subject-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .subject-chip {
      min-height: 38px;
      padding: 8px 12px;
      border: 1px solid #67cfe0;
      border-radius: 999px;
      background: #ffffff;
      color: #164e63;
      font: inherit;
      font-size: 0.82rem;
      font-weight: 750;
      line-height: 1.2;
      cursor: pointer;
      transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
    }
    .subject-chip:hover {
      transform: translateY(-1px);
      background: var(--tutorias-cyan-soft);
      box-shadow: 0 5px 12px rgba(8, 145, 178, 0.14);
    }
    .subject-chip[aria-pressed="true"] {
      border-color: var(--tutorias-cyan-dark);
      background: var(--tutorias-cyan-dark);
      color: #ffffff;
      box-shadow: 0 6px 16px rgba(14, 116, 144, 0.24);
    }
    .subject-chip:focus-visible {
      outline: 3px solid #fbbf24;
      outline-offset: 3px;
    }
    .tutorias-hero-visual {
      width: 100%;
      max-width: 520px;
      justify-self: center;
      align-self: start;
    }
    .tutorias-plan-video {
      width: min(100%, 380px);
      aspect-ratio: 9 / 16;
      border-color: #a5e4ee;
      box-shadow: 0 20px 45px rgba(14, 116, 144, 0.18);
    }
    .tutorias-quote {
      max-width: 380px;
      border-left-color: var(--tutorias-cyan);
      background: #ecfeff;
      color: #155e75;
    }
    .landing-tutorias .fast-card { border-top: 4px solid #67cfe0; }

    @media (min-width: 769px) and (max-width: 980px) {
      .landing-tutorias .hero-container {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
        column-gap: 20px;
      }
    }

    @media (max-width: 768px) {
      .landing-tutorias .hero-container {
        grid-template-columns: minmax(0, 1fr);
        justify-items: center;
      }
      .landing-tutorias .hero-heading {
        grid-column: 1;
        max-width: 520px;
        text-align: left;
      }
      .landing-tutorias .hero-heading h1 {
        font-size: clamp(2rem, 10vw, 2.7rem);
      }
      .landing-tutorias .hero-heading .lead-intro {
        margin-inline: 0;
      }
      .landing-tutorias .hero-text {
        width: 100%;
        max-width: 520px;
      }
      .subject-chip { flex: 1 1 calc(50% - 8px); }
      .tutorias-hero-visual { margin-top: 4px; }
    }
    @media (max-width: 420px) {
      .subject-chip { flex-basis: 100%; }
    }

    /* LANDING APOYO TERAPÉUTICO */
    .landing-terapeutico {
      --therapy-mint: #10ac84;
      --therapy-mint-bright: #2ed573;
      --therapy-mint-dark: #087f63;
      --therapy-mint-soft: #effcf7;
      background:
        radial-gradient(circle at 91% 13%, rgba(46, 213, 115, 0.12), transparent 24rem),
        radial-gradient(circle at 7% 45%, rgba(16, 172, 132, 0.07), transparent 20rem),
        var(--bg-light);
    }
    .landing-terapeutico .top-bar { background: #087f63; }
    .landing-terapeutico .hero-container {
      grid-template-columns: minmax(0, 500px) minmax(300px, 390px);
      justify-content: center;
      column-gap: 34px;
      row-gap: 26px;
    }
    .landing-terapeutico .hero-heading {
      grid-column: 1 / -1;
      width: 100%;
      max-width: 930px;
      justify-self: center;
      text-align: center;
    }
    .landing-terapeutico .hero-heading .kicker {
      margin-bottom: 8px;
      color: var(--therapy-mint-dark);
      font-size: 0.92rem;
      font-weight: 850;
      letter-spacing: 0.045em;
    }
    .landing-terapeutico .hero-heading h1 {
      max-width: 850px;
      margin: 0 auto 12px;
      color: #0f2e2a;
      font-size: clamp(2.25rem, 4.2vw, 3.35rem);
      line-height: 1.12;
      text-wrap: balance;
    }
    .landing-terapeutico .hero-heading .lead-intro {
      max-width: 800px;
      margin: 0 auto;
      color: var(--text-muted);
      font-size: 1.04rem;
      line-height: 1.58;
      text-wrap: balance;
    }
    .landing-terapeutico .form-card {
      width: 100%;
      border-color: #a7ead2;
      box-shadow: 0 18px 42px rgba(8, 127, 99, 0.13);
    }
    .landing-terapeutico .form-card > h2 {
      margin: 0 0 6px;
      color: var(--primary-blue);
      font-size: 1.2rem;
      line-height: 1.35;
    }
    .landing-terapeutico .btn-submit {
      background: linear-gradient(135deg, var(--therapy-mint), var(--therapy-mint-bright));
      box-shadow: 0 10px 24px rgba(16, 172, 132, 0.25);
    }
    .landing-terapeutico .btn-submit:hover { background: linear-gradient(135deg, #087f63, #18b965); }
    .landing-terapeutico .dropdown-menu a[aria-current="page"] {
      color: var(--therapy-mint-dark);
      background: var(--therapy-mint-soft);
      font-weight: 800;
    }
    .need-selector {
      min-width: 0;
      margin: 18px 0 20px;
      padding: 16px;
      border: 1px solid #a7ead2;
      border-radius: 14px;
      background: linear-gradient(145deg, #f1fdf8, #f5fffb);
    }
    .need-selector legend {
      padding: 0 6px;
      color: #075f4c;
      font-size: 0.92rem;
      font-weight: 800;
    }
    .need-selector > p { margin: 0 0 12px; color: var(--text-muted); font-size: 0.82rem; }
    .need-chips { display: flex; flex-wrap: wrap; gap: 8px; }
    .need-chip {
      min-height: 40px;
      padding: 8px 12px;
      border: 1px solid #73d8b6;
      border-radius: 999px;
      background: #ffffff;
      color: #075f4c;
      font: inherit;
      font-size: 0.8rem;
      font-weight: 750;
      line-height: 1.2;
      cursor: pointer;
      transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
    }
    .need-chip:hover {
      transform: translateY(-1px);
      background: var(--therapy-mint-soft);
      box-shadow: 0 5px 14px rgba(16, 172, 132, 0.14);
    }
    .need-chip[aria-pressed="true"] {
      border-color: var(--therapy-mint-dark);
      background: var(--therapy-mint-dark);
      color: #ffffff;
      box-shadow: 0 6px 16px rgba(8, 127, 99, 0.24);
    }
    .need-chip:focus-visible { outline: 3px solid #fbbf24; outline-offset: 3px; }
    .therapeutic-hero-visual { width: 100%; max-width: 390px; justify-self: center; align-self: start; }
    .therapeutic-video {
      width: min(100%, 390px);
      aspect-ratio: 9 / 16;
      border-color: #a7ead2;
      border-radius: 24px;
      box-shadow: 0 20px 45px rgba(8, 127, 99, 0.18);
    }
    .therapeutic-quote { border-left-color: var(--therapy-mint); background: #effcf7; color: #075f4c; }
    .trust-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 6px;
      margin: 14px 0 0;
      padding: 0;
      list-style: none;
      color: #075f4c;
      font-size: 0.76rem;
      font-weight: 750;
      text-align: center;
    }
    .trust-list li { padding: 8px 4px; border-radius: 9px; background: #e5faf1; }
    .landing-terapeutico .fast-card { border-top: 4px solid #73d8b6; }

    @media (max-width: 768px) {
      .landing-terapeutico .hero-container { grid-template-columns: minmax(0, 1fr); justify-items: center; }
      .landing-terapeutico .hero-heading { grid-column: 1; max-width: 540px; text-align: left; }
      .landing-terapeutico .hero-heading h1 { font-size: clamp(2rem, 10vw, 2.7rem); }
      .landing-terapeutico .hero-heading .lead-intro { margin-inline: 0; }
      .landing-terapeutico .hero-text { width: 100%; max-width: 540px; }
      .need-chip { flex: 1 1 calc(50% - 8px); }
      .therapeutic-hero-visual { margin-top: 4px; }
    }
    @media (max-width: 420px) {
      .need-chip { flex-basis: 100%; }
      .trust-list { grid-template-columns: 1fr; }
    }

    /* LANDING MODO GENIO */
    .landing-modo-genio {
      --genius-blue: #2563eb;
      --genius-blue-light: #3b82f6;
      --genius-blue-dark: #1d4ed8;
      --genius-gold: #f59e0b;
      --genius-gold-soft: #fffbeb;
      --genius-ink: #102448;
      --genius-soft: #eff6ff;
      background:
        radial-gradient(circle at 90% 10%, rgba(59, 130, 246, 0.13), transparent 26rem),
        #ffffff;
      color: #1e293b;
    }
    .landing-modo-genio .top-bar { background: #1d4ed8; }
    .genius-header { gap: 18px; }
    .genius-pillar {
      margin-right: auto;
      padding: 7px 12px;
      border: 1px solid rgba(245, 158, 11, 0.5);
      border-radius: 999px;
      background: rgba(245, 158, 11, 0.12);
      color: #fcd34d;
      font-size: 0.78rem;
      font-weight: 850;
      white-space: nowrap;
    }
    .landing-modo-genio .dropdown-menu a[aria-current="page"] {
      color: var(--genius-blue-dark);
      background: var(--genius-soft);
      font-weight: 800;
    }
    .genius-nav-cta {
      padding: 9px 15px !important;
      border-radius: 999px;
      background: var(--genius-gold);
      color: #172554 !important;
      font-weight: 850 !important;
    }
    .genius-hero {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
      gap: clamp(34px, 5vw, 72px);
      align-items: center;
      max-width: 1180px;
      margin: 0 auto;
      padding: clamp(52px, 7vw, 94px) 24px 72px;
    }
    .genius-eyebrow,
    .genius-section-heading > span,
    .resource-kicker {
      display: inline-block;
      color: var(--genius-blue-dark);
      font-size: 0.78rem;
      font-weight: 900;
      letter-spacing: 0.09em;
    }
    .genius-hero-copy h1 {
      max-width: 720px;
      margin: 13px 0 20px;
      color: var(--genius-ink);
      font-size: clamp(2.5rem, 5vw, 4.45rem);
      line-height: 1.03;
      letter-spacing: -0.04em;
      text-wrap: balance;
    }
    .genius-hero-copy > p {
      max-width: 680px;
      color: #475569;
      font-size: clamp(1rem, 1.6vw, 1.16rem);
      line-height: 1.7;
    }
    .genius-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 22px; }
    .genius-primary-cta,
    .genius-secondary-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 12px 20px;
      border-radius: 11px;
      font-weight: 850;
      text-decoration: none;
      transition: transform 0.18s ease, box-shadow 0.18s ease;
    }
    .genius-primary-cta {
      background: linear-gradient(135deg, var(--genius-blue), var(--genius-blue-light));
      color: #ffffff;
      box-shadow: 0 12px 24px rgba(37, 99, 235, 0.25);
    }
    .genius-secondary-cta { border: 1px solid #bfdbfe; background: #ffffff; color: var(--genius-blue-dark); }
    .genius-primary-cta:hover,
    .genius-secondary-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 25px rgba(37, 99, 235, 0.17); }
    .genius-trust { display: flex; flex-wrap: wrap; gap: 15px; padding: 0; list-style: none; color: #334155; font-size: 0.84rem; font-weight: 750; }
    .genius-trust li::first-letter { color: var(--genius-gold); }
    .genius-vsl-wrap {
      position: relative;
      padding: 14px;
      border: 1px solid #bfdbfe;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.9);
      box-shadow: 0 24px 58px rgba(30, 64, 175, 0.17);
    }
    .genius-video-label {
      position: absolute;
      top: -14px;
      left: 24px;
      z-index: 2;
      padding: 7px 12px;
      border-radius: 999px;
      background: var(--genius-gold);
      color: #172554;
      font-size: 0.75rem;
      font-weight: 900;
    }
    .genius-vsl { position: relative; overflow: hidden; aspect-ratio: 16 / 9; border-radius: 14px; background: #0f172a; }
    .genius-vsl iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
    .genius-vsl-wrap > p { margin: 12px 8px 2px; color: #475569; font-size: 0.85rem; text-align: center; }
    .genius-transformation,
    .genius-method,
    .genius-faq { padding: 80px 24px; }
    .genius-transformation { background: #f8fafc; }
    .genius-section-heading { max-width: 760px; margin: 0 auto 38px; text-align: center; }
    .genius-section-heading h2 {
      margin: 9px 0 12px;
      color: var(--genius-ink);
      font-size: clamp(2rem, 3.5vw, 3rem);
      line-height: 1.12;
      letter-spacing: -0.025em;
      text-wrap: balance;
    }
    .genius-section-heading p { color: #64748b; line-height: 1.65; }
    .before-after-grid {
      display: grid;
      grid-template-columns: 1fr 62px 1fr;
      align-items: center;
      max-width: 1050px;
      margin: 0 auto;
    }
    .state-card { height: 100%; padding: clamp(25px, 3vw, 38px); border-radius: 22px; background: #ffffff; box-shadow: 0 15px 35px rgba(15, 23, 42, 0.07); }
    .state-before { border: 1px solid #fed7aa; }
    .state-after { border: 2px solid #93c5fd; box-shadow: 0 18px 40px rgba(37, 99, 235, 0.12); }
    .state-tag { display: inline-block; padding: 5px 9px; border-radius: 7px; font-size: 0.7rem; font-weight: 900; letter-spacing: 0.08em; }
    .state-before .state-tag { background: #fff7ed; color: #c2410c; }
    .state-after .state-tag { background: var(--genius-soft); color: var(--genius-blue-dark); }
    .state-card h3 { margin: 15px 0 20px; color: var(--genius-ink); font-size: 1.35rem; }
    .state-card ul { display: grid; gap: 15px; padding: 0; list-style: none; }
    .state-card li { display: grid; grid-template-columns: 24px 1fr; gap: 8px; color: #475569; line-height: 1.5; }
    .state-before li span { color: #ea580c; font-weight: 900; }
    .state-after li span { color: var(--genius-blue); font-weight: 900; }
    .transformation-arrow {
      position: relative;
      z-index: 2;
      display: grid;
      place-items: center;
      width: 52px;
      height: 52px;
      margin: auto;
      border: 5px solid #f8fafc;
      border-radius: 50%;
      background: var(--genius-gold);
      color: #172554;
      font-size: 1.5rem;
      font-weight: 900;
    }
    .genius-method { max-width: 1180px; margin: 0 auto; }
    .genius-benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
    .genius-benefit-card {
      padding: 25px;
      border: 1px solid #dbeafe;
      border-radius: 18px;
      background: linear-gradient(155deg, #ffffff, #f8fbff);
      box-shadow: 0 12px 27px rgba(30, 64, 175, 0.07);
    }
    .benefit-icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 16px; border-radius: 13px; background: var(--genius-soft); font-size: 1.45rem; }
    .genius-benefit-card h3 { margin-bottom: 9px; color: var(--genius-ink); font-size: 1.08rem; }
    .genius-benefit-card p { color: #64748b; font-size: 0.9rem; line-height: 1.6; }
    .genius-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 48px 0 0; padding: 0; list-style: none; }
    .genius-steps li { display: flex; gap: 14px; padding-top: 20px; border-top: 2px solid #dbeafe; }
    .genius-steps li > span { color: var(--genius-gold); font-size: 1.55rem; font-weight: 900; }
    .genius-steps strong { display: block; margin-bottom: 5px; color: var(--genius-ink); }
    .genius-steps p { color: #64748b; font-size: 0.86rem; line-height: 1.5; }
    .genius-lead-section {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(380px, 470px);
      gap: clamp(36px, 6vw, 82px);
      align-items: center;
      padding: 82px max(24px, calc((100vw - 1120px) / 2));
      background: linear-gradient(135deg, #172554, #1d4ed8);
    }
    .genius-resource-banner { color: #ffffff; }
    .genius-resource-banner { display: grid; grid-template-columns: 118px 1fr; gap: 28px; align-items: start; }
    .resource-visual {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 118px;
      aspect-ratio: 4 / 5;
      border: 4px solid rgba(255, 255, 255, 0.7);
      border-radius: 18px;
      background: var(--genius-gold);
      color: #172554;
      box-shadow: 14px 14px 0 rgba(255, 255, 255, 0.12);
      transform: rotate(-3deg);
    }
    .resource-visual span { font-size: 3.6rem; font-weight: 950; line-height: 1; }
    .resource-visual small { font-weight: 900; letter-spacing: 0.14em; }
    .resource-kicker { color: #fcd34d; }
    .genius-resource-banner h2 { margin: 10px 0 14px; font-size: clamp(2rem, 3.5vw, 3.15rem); line-height: 1.08; letter-spacing: -0.03em; }
    .genius-resource-banner p { max-width: 600px; color: #dbeafe; line-height: 1.65; }
    .genius-resource-banner ul { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 22px; padding: 0; list-style: none; color: #fef3c7; font-size: 0.86rem; font-weight: 750; }
    .genius-form-card { max-width: 470px; border: 0; box-shadow: 0 24px 60px rgba(4, 13, 45, 0.28); }
    .genius-form-card > h2 { margin: 7px 0 6px; color: var(--genius-ink); font-size: 1.5rem; text-align: center; }
    .form-badge { display: table; margin: 0 auto; color: var(--genius-blue-dark); font-size: 0.69rem; font-weight: 900; letter-spacing: 0.09em; }
    .landing-modo-genio .btn-submit { background: linear-gradient(135deg, var(--genius-gold), #fbbf24); color: #172554; box-shadow: 0 10px 22px rgba(245, 158, 11, 0.25); }
    .landing-modo-genio .btn-submit:hover { background: linear-gradient(135deg, #d97706, var(--genius-gold)); color: #ffffff; }
    .form-privacy { margin-top: 12px; color: #64748b; font-size: 0.72rem; line-height: 1.45; text-align: center; }
    .genius-faq { background: #f8fafc; }
    .faq-list { display: grid; gap: 12px; max-width: 850px; margin: 0 auto; }
    .faq-list details { overflow: hidden; border: 1px solid #dbeafe; border-radius: 14px; background: #ffffff; box-shadow: 0 8px 20px rgba(30, 64, 175, 0.05); }
    .faq-list summary { position: relative; padding: 20px 54px 20px 22px; color: var(--genius-ink); font-weight: 800; cursor: pointer; list-style: none; }
    .faq-list summary::-webkit-details-marker { display: none; }
    .faq-list summary::after { content: '+'; position: absolute; top: 50%; right: 20px; color: var(--genius-blue); font-size: 1.45rem; transform: translateY(-50%); }
    .faq-list details[open] summary::after { content: '−'; }
    .faq-list details[open] summary { color: var(--genius-blue-dark); background: #f8fbff; }
    .faq-list details p { padding: 0 22px 22px; color: #64748b; line-height: 1.65; }
    .genius-final-cta {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 20px;
      align-items: center;
      max-width: 1050px;
      margin: 70px auto;
      padding: 30px 34px;
      border-radius: 20px;
      background: var(--genius-gold-soft);
      border: 1px solid #fde68a;
    }
    .genius-final-cta > span { font-size: 2.2rem; }
    .genius-final-cta h2 { color: var(--genius-ink); font-size: 1.45rem; }
    .genius-final-cta p { color: #64748b; }
    .genius-final-cta a { padding: 12px 18px; border-radius: 10px; background: var(--genius-blue); color: #ffffff; font-weight: 850; text-decoration: none; }
    .genius-footer { padding: 54px max(24px, calc((100vw - 1120px) / 2)) 22px; background: #071b38; color: #ffffff; text-align: left; }
    .genius-footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 38px; }
    .genius-footer img { display: block; width: 210px; max-width: 100%; height: auto; margin-bottom: 14px; }
    .genius-footer-grid p { max-width: 330px; color: #b7c6dc; font-size: 0.86rem; line-height: 1.6; }
    .genius-footer h2 { margin-bottom: 13px; color: #fcd34d; font-size: 0.95rem; }
    .genius-footer a { display: block; margin: 7px 0; color: #dbeafe; font-size: 0.84rem; text-decoration: none; }
    .genius-footer a:hover { color: #fcd34d; }
    .genius-footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 36px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.14); color: #8fa4c0; font-size: 0.76rem; }
    .genius-primary-cta:focus-visible,
    .genius-secondary-cta:focus-visible,
    .genius-nav-cta:focus-visible,
    .genius-final-cta a:focus-visible,
    .faq-list summary:focus-visible { outline: 3px solid #f59e0b; outline-offset: 3px; }

    @media (max-width: 1020px) {
      .genius-pillar { display: none; }
      .genius-hero { grid-template-columns: 1fr 380px; gap: 30px; }
      .genius-benefit-grid { grid-template-columns: repeat(2, 1fr); }
      .genius-footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
      .genius-footer-grid > div:last-child { grid-column: 2; }
    }
    @media (max-width: 768px) {
      .genius-header { flex-wrap: wrap; }
      .genius-hero { grid-template-columns: 1fr; padding-top: 46px; }
      .genius-hero-copy h1 { font-size: clamp(2.35rem, 11vw, 3.6rem); }
      .genius-vsl-wrap { max-width: 580px; }
      .before-after-grid { grid-template-columns: 1fr; gap: 14px; }
      .transformation-arrow { transform: rotate(90deg); }
      .genius-steps { grid-template-columns: 1fr; }
      .genius-lead-section { grid-template-columns: 1fr; }
      .genius-resource-banner { max-width: 650px; }
      .genius-form-card { justify-self: center; width: 100%; }
      .genius-final-cta { grid-template-columns: auto 1fr; margin-inline: 20px; }
      .genius-final-cta a { grid-column: 1 / -1; text-align: center; }
      .genius-footer-grid { grid-template-columns: repeat(2, 1fr); }
      .genius-footer-grid > div:last-child { grid-column: auto; }
    }
    @media (max-width: 540px) {
      .genius-hero-actions { flex-direction: column; }
      .genius-benefit-grid { grid-template-columns: 1fr; }
      .genius-resource-banner { grid-template-columns: 1fr; }
      .resource-visual { width: 92px; }
      .genius-resource-banner ul { flex-direction: column; }
      .genius-lead-section { padding-inline: 16px; }
      .genius-transformation,
      .genius-method,
      .genius-faq { padding: 62px 18px; }
      .genius-footer-grid { grid-template-columns: 1fr; }
      .genius-footer-bottom { flex-direction: column; }
    }

    /* MODO GENIO — VARIANTE ESTRUCTURAL DE TERAPÉUTICO */
    .landing-modo-genio.modo-genio-template {
      background:
        radial-gradient(circle at 91% 13%, rgba(59, 130, 246, 0.13), transparent 24rem),
        radial-gradient(circle at 7% 45%, rgba(245, 158, 11, 0.08), transparent 20rem),
        var(--bg-light);
    }
    .landing-modo-genio.modo-genio-template .hero-container {
      grid-template-columns: minmax(0, 500px) minmax(300px, 390px);
      justify-content: center;
      column-gap: 34px;
      row-gap: 26px;
    }
    .landing-modo-genio.modo-genio-template .hero-heading {
      grid-column: 1 / -1;
      width: 100%;
      max-width: 960px;
      justify-self: center;
      text-align: center;
    }
    .landing-modo-genio.modo-genio-template .hero-heading .kicker { margin-bottom: 12px; }
    .genius-hero-badge {
      display: inline-block;
      padding: 7px 13px;
      border: 1px solid #f59e0b;
      border-radius: 999px;
      background: #fffbeb;
      color: #92400e;
      font-size: 0.78rem;
      font-weight: 900;
      letter-spacing: 0.06em;
      box-shadow: 0 7px 16px rgba(245, 158, 11, 0.13);
    }
    .landing-modo-genio.modo-genio-template .hero-heading h1 {
      max-width: 920px;
      margin: 0 auto 12px;
      color: #102448;
      font-size: clamp(2.25rem, 4.2vw, 3.35rem);
      line-height: 1.12;
      text-wrap: balance;
    }
    .landing-modo-genio.modo-genio-template .hero-heading .lead-intro {
      max-width: 800px;
      margin: 0 auto;
      color: var(--text-muted);
      font-size: 1.04rem;
      line-height: 1.58;
      text-wrap: balance;
    }
    .landing-modo-genio.modo-genio-template .form-card {
      width: 100%;
      border-color: #bfdbfe;
      box-shadow: 0 18px 42px rgba(29, 78, 216, 0.13);
    }
    .landing-modo-genio.modo-genio-template .form-card > h2 {
      margin: 0 0 6px;
      color: #102448;
      font-size: 1.2rem;
      line-height: 1.35;
    }
    .landing-modo-genio.modo-genio-template .need-selector {
      border-color: #bfdbfe;
      background: linear-gradient(145deg, #eff6ff, #f8fbff);
    }
    .landing-modo-genio.modo-genio-template .need-selector legend { color: #1d4ed8; }
    .landing-modo-genio.modo-genio-template .need-chip { border-color: #93c5fd; color: #1e40af; }
    .landing-modo-genio.modo-genio-template .need-chip:hover { background: #eff6ff; box-shadow: 0 5px 14px rgba(37, 99, 235, 0.14); }
    .landing-modo-genio.modo-genio-template .need-chip[aria-pressed="true"] {
      border-color: #1d4ed8;
      background: #2563eb;
      color: #ffffff;
      box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
    }
    .landing-modo-genio.modo-genio-template .form-card .btn-submit {
      background: linear-gradient(135deg, #2563eb, #3b82f6);
      color: #ffffff;
      box-shadow: 0 10px 24px rgba(37, 99, 235, 0.25);
    }
    .landing-modo-genio.modo-genio-template .form-card .btn-submit:hover { background: linear-gradient(135deg, #1d4ed8, #2563eb); }
    .landing-modo-genio.modo-genio-template .therapeutic-video {
      border-color: #93c5fd;
      box-shadow: 0 20px 45px rgba(29, 78, 216, 0.18);
    }
    .landing-modo-genio.modo-genio-template .therapeutic-quote {
      border-left-color: #f59e0b;
      background: #fffbeb;
      color: #78350f;
    }
    .landing-modo-genio.modo-genio-template .trust-list { color: #1e40af; }
    .landing-modo-genio.modo-genio-template .trust-list li { background: #eff6ff; }
    .landing-modo-genio.modo-genio-template .fast-card { border-top: 4px solid #60a5fa; }
    .genius-before-after { max-width: 1120px; margin: 40px auto 0; padding: 64px 24px; text-align: center; }
    .genius-before-after > h2 { color: #102448; font-size: clamp(1.9rem, 3.2vw, 2.65rem); line-height: 1.15; }
    .genius-before-after > .intro-desc { max-width: 760px; margin: 12px auto 30px; }
    .genius-compare-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; text-align: left; }
    .genius-compare-card {
      padding: 28px;
      border-radius: 18px;
      background: #ffffff;
      box-shadow: 0 14px 32px rgba(15, 23, 42, 0.07);
    }
    .genius-before-card { border: 1px solid #fed7aa; }
    .genius-after-card { border: 2px solid #93c5fd; }
    .genius-compare-badge { display: inline-block; padding: 5px 9px; border-radius: 7px; font-size: 0.7rem; font-weight: 900; letter-spacing: 0.08em; }
    .genius-before-card .genius-compare-badge { background: #fff7ed; color: #c2410c; }
    .genius-after-card .genius-compare-badge { background: #eff6ff; color: #1d4ed8; }
    .genius-compare-card h3 { margin: 14px 0 17px; color: #102448; font-size: 1.2rem; }
    .genius-compare-card ul { display: grid; gap: 11px; padding-left: 20px; color: #475569; }
    .genius-before-card li::marker { color: #ea580c; }
    .genius-after-card li::marker { color: #2563eb; }

    @media (max-width: 768px) {
      .landing-modo-genio.modo-genio-template .hero-container { grid-template-columns: minmax(0, 1fr); justify-items: center; }
      .landing-modo-genio.modo-genio-template .hero-heading { grid-column: 1; max-width: 540px; text-align: left; }
      .landing-modo-genio.modo-genio-template .hero-heading h1 { font-size: clamp(2rem, 10vw, 2.7rem); }
      .landing-modo-genio.modo-genio-template .hero-heading .lead-intro { margin-inline: 0; }
      .landing-modo-genio.modo-genio-template .hero-text { width: 100%; max-width: 540px; }
      .genius-compare-grid { grid-template-columns: 1fr; }
    }

    /* LANDING EXÁMENES INTERNACIONALES */
    .landing-examenes {
      --exam-navy: #1e3c72;
      --exam-blue: #2a5298;
      --exam-blue-light: #eaf1ff;
      --exam-orange: #ff9f43;
      --exam-gold: #f39c12;
      --exam-ink: #14213d;
      background: #ffffff;
      color: #243047;
      font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
    }
    .landing-examenes *,
    .landing-examenes *::before,
    .landing-examenes *::after { font-family: inherit; }
    .exam-top-bar { background: #162f5d; }
    .exam-header { background: #10284f; }
    .landing-examenes .dropdown-menu a[aria-current="page"] { color: var(--exam-blue); background: var(--exam-blue-light); font-weight: 800; }
    .exam-nav-cta {
      padding: 9px 16px !important;
      border-radius: 999px;
      background: var(--exam-orange);
      color: #172033 !important;
      font-weight: 800 !important;
      box-shadow: 0 6px 16px rgba(255, 159, 67, 0.22);
    }
    .exam-hero {
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
      gap: clamp(38px, 6vw, 78px);
      align-items: center;
      max-width: 1180px;
      margin: 0 auto;
      padding: clamp(58px, 8vw, 100px) 24px 78px;
      background: radial-gradient(circle at 82% 18%, rgba(42, 82, 152, 0.14), transparent 24rem);
    }
    .exam-eyebrow,
    .exam-section-heading > span,
    .exam-form-intro > span {
      display: inline-block;
      color: var(--exam-blue);
      font-size: 0.76rem;
      font-weight: 800;
      letter-spacing: 0.1em;
    }
    .exam-hero h1 {
      max-width: 770px;
      margin: 14px 0 19px;
      color: var(--exam-ink);
      font-size: clamp(2.55rem, 5vw, 4.55rem);
      line-height: 1.04;
      letter-spacing: -0.04em;
      text-wrap: balance;
    }
    .exam-lead { max-width: 720px; color: #526078; font-size: clamp(1rem, 1.6vw, 1.14rem); line-height: 1.7; }
    .exam-confidence-badge {
      display: inline-flex;
      margin-top: 22px;
      padding: 10px 14px;
      border: 1px solid #c7d7f5;
      border-radius: 9px;
      background: #f3f7ff;
      color: #294779;
      font-size: 0.82rem;
      font-weight: 650;
    }
    .exam-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
    .exam-primary-cta,
    .exam-whatsapp-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 51px;
      padding: 12px 20px;
      border-radius: 10px;
      font-size: 0.9rem;
      font-weight: 800;
      text-decoration: none;
      transition: transform 0.18s ease, box-shadow 0.18s ease;
    }
    .exam-primary-cta { background: linear-gradient(135deg, var(--exam-orange), #ffb45e); color: #172033; box-shadow: 0 12px 24px rgba(255, 159, 67, 0.25); }
    .exam-whatsapp-cta { border: 1px solid #b9cae9; background: #ffffff; color: var(--exam-navy); }
    .exam-primary-cta:hover,
    .exam-whatsapp-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(30, 60, 114, 0.15); }
    .exam-score-card {
      position: relative;
      overflow: hidden;
      padding: 28px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 24px;
      background: linear-gradient(145deg, #1e3c72, #2a5298);
      color: #ffffff;
      box-shadow: 0 25px 55px rgba(30, 60, 114, 0.24);
    }
    .exam-score-card::after { content: ''; position: absolute; width: 180px; height: 180px; right: -70px; top: -70px; border-radius: 50%; background: rgba(255, 255, 255, 0.07); }
    .score-card-kicker { color: #ffd39f; font-size: 0.69rem; font-weight: 800; letter-spacing: 0.1em; }
    .score-target { display: flex; flex-direction: column; align-items: center; margin: 22px 0 26px; text-align: center; }
    .score-target span { color: #cddaf1; font-size: 0.78rem; }
    .score-target strong { color: #ffc06f; font-size: 4.8rem; line-height: 1; letter-spacing: -0.06em; }
    .score-target small { color: #dbe7f8; }
    .exam-score-card ol { display: grid; gap: 12px; padding: 0; list-style: none; }
    .exam-score-card li { display: grid; grid-template-columns: 38px 1fr; gap: 12px; align-items: center; padding: 12px; border-radius: 11px; background: rgba(255, 255, 255, 0.09); }
    .exam-score-card li > span { color: #ffc06f; font-weight: 800; }
    .exam-score-card li strong { display: block; font-size: 0.86rem; }
    .exam-score-card li small { color: #cbd9ef; font-size: 0.72rem; }
    .exam-trust-bar { padding: 27px 24px 31px; background: #f8f9fa; border-block: 1px solid #e3e8f1; text-align: center; }
    .exam-trust-bar > p { margin-bottom: 17px; color: #6b7588; font-size: 0.74rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
    .exam-badges { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; max-width: 1080px; margin: 0 auto; }
    .exam-badges > div { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 10px; align-items: center; padding: 12px 14px; border: 1px solid #dbe3f1; border-radius: 11px; background: #ffffff; text-align: left; }
    .exam-badges span { grid-row: 1 / 3; font-size: 1.45rem; }
    .exam-badges strong { color: var(--exam-ink); font-size: 0.86rem; }
    .exam-badges small { color: #718096; font-size: 0.67rem; }
    .exam-problem-solution,
    .exam-program { padding: 82px 24px; }
    .exam-problem-solution { background: #ffffff; }
    .exam-section-heading { max-width: 820px; margin: 0 auto 40px; text-align: center; }
    .exam-section-heading h2 { margin: 10px 0 12px; color: var(--exam-ink); font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.13; letter-spacing: -0.028em; text-wrap: balance; }
    .exam-section-heading p { color: #68758b; line-height: 1.65; }
    .exam-contrast-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 1050px; margin: 0 auto; }
    .exam-contrast-card { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 30px; border-radius: 18px; }
    .exam-problem-card { border: 1px solid #fed7aa; background: #fffaf5; }
    .exam-solution-card { border: 1px solid #b8caea; background: #f4f7fd; }
    .contrast-icon { font-size: 1.65rem; }
    .contrast-label { color: #9a5b1e; font-size: 0.67rem; font-weight: 850; letter-spacing: 0.09em; }
    .exam-solution-card .contrast-label { color: var(--exam-blue); }
    .exam-contrast-card h3 { margin: 8px 0 12px; color: var(--exam-ink); font-size: 1.2rem; }
    .exam-contrast-card p { color: #657187; font-size: 0.88rem; line-height: 1.65; }
    .exam-program { background: #f8f9fa; }
    .exam-pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 1160px; margin: 0 auto; }
    .exam-pillar-card { position: relative; overflow: hidden; padding: 27px 24px; border: 1px solid #dce4f1; border-radius: 17px; background: #ffffff; box-shadow: 0 12px 26px rgba(30, 60, 114, 0.07); }
    .pillar-number { position: absolute; top: 10px; right: 15px; color: #e4eaf4; font-size: 2.6rem; font-weight: 800; }
    .pillar-icon { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 17px; border-radius: 12px; background: #edf3ff; font-size: 1.35rem; }
    .exam-pillar-card h3 { position: relative; margin-bottom: 10px; color: var(--exam-ink); font-size: 1.02rem; line-height: 1.35; }
    .exam-pillar-card p { color: #6a768b; font-size: 0.82rem; line-height: 1.65; }
    .exam-audience { padding: 82px 24px; background: linear-gradient(135deg, #182f5d, #2a5298); }
    .exam-heading-light > span { color: #ffc06f; }
    .exam-heading-light h2 { color: #ffffff; }
    .exam-heading-light p { color: #cfdbed; }
    .exam-audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1050px; margin: 0 auto; }
    .exam-audience-grid article { padding: 28px; border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 17px; background: rgba(255, 255, 255, 0.08); color: #ffffff; }
    .exam-audience-grid article > span { font-size: 1.75rem; }
    .exam-audience-grid h3 { margin: 14px 0 9px; color: #ffffff; font-size: 1.08rem; }
    .exam-audience-grid p { color: #d2deef; font-size: 0.84rem; line-height: 1.6; }
    .exam-lead-section { display: grid; grid-template-columns: minmax(0, 1fr) minmax(390px, 470px); gap: clamp(38px, 7vw, 88px); align-items: center; padding: 86px max(24px, calc((100vw - 1120px) / 2)); background: #ffffff; }
    .exam-form-intro h2 { max-width: 650px; margin: 12px 0 17px; color: var(--exam-ink); font-size: clamp(2.1rem, 4vw, 3.4rem); line-height: 1.1; letter-spacing: -0.035em; }
    .exam-form-intro > p { max-width: 620px; color: #657187; line-height: 1.7; }
    .exam-form-intro ul { display: grid; gap: 10px; margin-top: 22px; padding: 0; list-style: none; color: #38557f; font-size: 0.86rem; font-weight: 650; }
    .exam-form-card { width: 100%; max-width: 470px; border-color: #c8d5eb; box-shadow: 0 22px 52px rgba(30, 60, 114, 0.16); }
    .exam-form-card > h2 { margin: 7px 0 6px; color: var(--exam-ink); font-size: 1.45rem; text-align: center; }
    .exam-form-badge { display: table; margin: 0 auto; color: #a85c0a; font-size: 0.68rem; font-weight: 850; letter-spacing: 0.09em; }
    .landing-examenes .btn-submit { background: linear-gradient(135deg, var(--exam-orange), #ffb45e); color: #172033; box-shadow: 0 10px 22px rgba(255, 159, 67, 0.25); }
    .landing-examenes .btn-submit:hover { background: linear-gradient(135deg, #e88628, var(--exam-orange)); }
    .exam-form-privacy { margin-top: 12px; color: #758196; font-size: 0.69rem; line-height: 1.45; text-align: center; }
    .exam-final-cta { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; max-width: 1050px; margin: 0 auto 76px; padding: 30px 34px; border: 1px solid #f7d399; border-radius: 18px; background: #fff9ef; }
    .exam-final-cta span { color: #a75e12; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.06em; }
    .exam-final-cta h2 { margin-top: 6px; color: var(--exam-ink); font-size: 1.4rem; line-height: 1.3; }
    .exam-final-cta a { padding: 12px 18px; border-radius: 9px; background: var(--exam-navy); color: #ffffff; font-weight: 800; text-decoration: none; }
    .exam-footer { padding: 54px max(24px, calc((100vw - 1120px) / 2)) 22px; background: #0d2244; color: #ffffff; text-align: left; }
    .exam-footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 38px; }
    .exam-footer img { display: block; width: 210px; max-width: 100%; height: auto; margin-bottom: 14px; }
    .exam-footer-grid p { max-width: 340px; color: #b8c7dc; font-size: 0.82rem; line-height: 1.65; }
    .exam-footer h2 { margin-bottom: 13px; color: #ffc06f; font-size: 0.92rem; }
    .exam-footer a { display: block; margin: 7px 0; color: #d8e3f2; font-size: 0.81rem; text-decoration: none; }
    .exam-footer a:hover { color: #ffc06f; }
    .exam-footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 36px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.14); color: #8fa4c0; font-size: 0.73rem; }
    .exam-primary-cta:focus-visible,
    .exam-whatsapp-cta:focus-visible,
    .exam-nav-cta:focus-visible,
    .exam-final-cta a:focus-visible { outline: 3px solid #f39c12; outline-offset: 3px; }

    @media (max-width: 980px) {
      .exam-hero { grid-template-columns: 1fr 340px; gap: 28px; }
      .exam-pillar-grid { grid-template-columns: repeat(2, 1fr); }
      .exam-badges { grid-template-columns: repeat(2, 1fr); }
      .exam-footer-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .exam-hero { grid-template-columns: 1fr; padding-top: 48px; }
      .exam-hero h1 { font-size: clamp(2.4rem, 11vw, 3.65rem); }
      .exam-score-card { max-width: 520px; }
      .exam-contrast-grid,
      .exam-audience-grid,
      .exam-lead-section { grid-template-columns: 1fr; }
      .exam-form-card { justify-self: center; }
      .exam-final-cta { grid-template-columns: 1fr; margin-inline: 20px; }
      .exam-final-cta a { text-align: center; }
    }
    @media (max-width: 520px) {
      .exam-actions { flex-direction: column; }
      .exam-badges,
      .exam-pillar-grid,
      .exam-footer-grid { grid-template-columns: 1fr; }
      .exam-problem-solution,
      .exam-program,
      .exam-audience { padding: 62px 18px; }
      .exam-lead-section { padding: 65px 16px; }
      .exam-contrast-card { grid-template-columns: 1fr; }
      .exam-footer-bottom { flex-direction: column; }
    }

    /* EXÁMENES INTERNACIONALES — VARIANTE ESTRUCTURAL DE MODO GENIO */
    .landing-examenes.exam-template {
      --primary: #1e3c72;
      --primary-dark: #122549;
      --accent: #ff9f43;
      --accent-hover: #e08b38;
      --bg-soft: #f8fafc;
      --text: #1e293b;
      --text-muted: #64748b;
      background:
        radial-gradient(circle at 91% 13%, rgba(42, 82, 152, 0.13), transparent 24rem),
        radial-gradient(circle at 7% 45%, rgba(255, 159, 67, 0.07), transparent 20rem),
        #ffffff;
      color: var(--text);
      font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    }
    .landing-examenes.exam-template h1,
    .landing-examenes.exam-template h2,
    .landing-examenes.exam-template h3 { font-family: 'Montserrat', 'Inter', sans-serif; }
    .exam-compact-header { gap: 18px; }
    .exam-header-badge {
      margin-right: auto;
      padding: 7px 12px;
      border: 1px solid rgba(255, 159, 67, 0.5);
      border-radius: 999px;
      background: rgba(255, 159, 67, 0.11);
      color: #ffc986;
      font-size: 0.75rem;
      font-weight: 800;
      white-space: nowrap;
    }
    .exam-template-hero {
      grid-template-columns: minmax(0, 510px) minmax(300px, 390px);
      justify-content: center;
      column-gap: 34px;
      row-gap: 26px;
      margin-top: 38px;
    }
    .exam-template-hero .hero-heading {
      grid-column: 1 / -1;
      width: 100%;
      max-width: 1000px;
      justify-self: center;
      text-align: center;
    }
    .exam-template-hero .hero-heading .kicker { margin-bottom: 12px; }
    .exam-hero-badge {
      display: inline-block;
      padding: 7px 13px;
      border: 1px solid var(--accent);
      border-radius: 999px;
      background: #fff8ef;
      color: #94500d;
      font-size: 0.75rem;
      font-weight: 850;
      letter-spacing: 0.07em;
      box-shadow: 0 7px 16px rgba(255, 159, 67, 0.13);
    }
    .exam-template-hero .hero-heading h1 {
      max-width: 930px;
      margin: 0 auto 13px;
      color: var(--primary-dark);
      font-size: clamp(2.3rem, 4.4vw, 3.55rem);
      line-height: 1.11;
      letter-spacing: -0.035em;
      text-wrap: balance;
    }
    .exam-template-hero .hero-heading .lead-intro {
      max-width: 810px;
      margin: 0 auto;
      color: var(--text-muted);
      font-size: 1.04rem;
      line-height: 1.62;
      text-wrap: balance;
    }
    .exam-quick-benefits { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; max-width: 930px; margin: 22px auto 0; }
    .exam-quick-benefits span {
      padding: 8px 12px;
      border: 1px solid #cbd8ed;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.88);
      color: #2f4d7d;
      font-size: 0.75rem;
      font-weight: 700;
      box-shadow: 0 5px 12px rgba(30, 60, 114, 0.07);
    }
    .exam-template-form {
      width: 100%;
      border-color: #b9cae8;
      box-shadow: 0 18px 44px rgba(30, 60, 114, 0.14);
    }
    .exam-template-form > h2 { margin: 7px 0 6px; color: var(--primary-dark); font-size: 1.17rem; line-height: 1.38; text-align: center; }
    .exam-gift-label { display: table; margin: 0 auto; color: #a85d11; font-size: 0.69rem; font-weight: 850; letter-spacing: 0.08em; }
    .exam-selector { border-color: #bfd0eb; background: linear-gradient(145deg, #f0f5fd, #f9fbff); }
    .exam-selector legend { color: var(--primary); }
    .exam-template .exam-chip { border-color: #9eb6dc; color: #294a7e; }
    .exam-template .exam-chip:hover { background: #eaf1ff; box-shadow: 0 5px 14px rgba(30, 60, 114, 0.14); }
    .exam-template .exam-chip[aria-pressed="true"] {
      border-color: var(--primary);
      background: linear-gradient(135deg, var(--primary), #2a5298);
      color: #ffffff;
      box-shadow: 0 7px 17px rgba(30, 60, 114, 0.25);
    }
    .exam-template .exam-template-form .btn-submit {
      background: linear-gradient(135deg, var(--accent), #ffb45f);
      color: #172033;
      font-size: 0.84rem;
      box-shadow: 0 10px 24px rgba(255, 159, 67, 0.25);
    }
    .exam-template .exam-template-form .btn-submit:hover { background: linear-gradient(135deg, var(--accent-hover), var(--accent)); }
    .exam-hero-visual { width: 100%; max-width: 390px; justify-self: center; align-self: start; }
    .exam-template-video {
      width: min(100%, 390px);
      aspect-ratio: 9 / 16;
      border-color: #9eb6dc;
      border-radius: 24px;
      box-shadow: 0 22px 48px rgba(30, 60, 114, 0.22);
    }
    .exam-score-panel {
      position: relative;
      overflow: hidden;
      padding: 27px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 24px;
      background: linear-gradient(145deg, var(--primary), #2a5298);
      color: #ffffff;
      box-shadow: 0 22px 48px rgba(30, 60, 114, 0.22);
    }
    .exam-score-panel::after { content: ''; position: absolute; top: -70px; right: -70px; width: 180px; height: 180px; border-radius: 50%; background: rgba(255, 255, 255, 0.07); }
    .score-panel-label { color: #ffd19a; font-size: 0.69rem; font-weight: 850; letter-spacing: 0.1em; }
    .score-panel-target { display: flex; flex-direction: column; align-items: center; margin: 26px 0; text-align: center; }
    .score-panel-target small { color: #cedbf0; }
    .score-panel-target strong { color: #ffbc68; font-size: 5rem; line-height: 0.98; letter-spacing: -0.07em; }
    .score-panel-target span { color: #e3ebf7; font-size: 0.82rem; }
    .exam-score-panel ol { display: grid; gap: 11px; padding: 0; list-style: none; }
    .exam-score-panel li { display: grid; grid-template-columns: 38px 1fr; gap: 11px; align-items: center; padding: 12px; border-radius: 11px; background: rgba(255, 255, 255, 0.09); }
    .exam-score-panel li > span { color: #ffc27a; font-weight: 850; }
    .exam-score-panel li strong { display: block; font-size: 0.84rem; }
    .exam-score-panel li small { color: #cbd8eb; font-size: 0.7rem; }
    .exam-template-quote { border-left-color: var(--accent); background: #fff8ef; color: #7c4613; }
    .exam-trust-list { color: var(--primary); }
    .exam-trust-list li { background: #edf3fc; }
    .exam-strategy { max-width: 1120px; }
    .exam-challenge-card { border: 1px solid #fed7aa; }
    .exam-enjoy-card { border: 2px solid #9eb6dc; }
    .exam-challenge-card .genius-compare-badge { background: #fff7ed; color: #c2410c; }
    .exam-enjoy-card .genius-compare-badge { background: #edf3fc; color: var(--primary); }
    .exam-compare-grid p { color: var(--text-muted); line-height: 1.65; }
    .exam-pillars .fast-card { border-top: 4px solid #547ebd; }
    .exam-pillars .fast-card:nth-child(even) { border-top-color: var(--accent); }

    @media (max-width: 1020px) {
      .exam-header-badge { display: none; }
    }
    @media (max-width: 768px) {
      .exam-template-hero { grid-template-columns: minmax(0, 1fr); justify-items: center; }
      .exam-template-hero .hero-heading { grid-column: 1; max-width: 550px; text-align: left; }
      .exam-template-hero .hero-heading h1 { font-size: clamp(2rem, 10vw, 2.75rem); }
      .exam-template-hero .hero-heading .lead-intro { margin-inline: 0; }
      .exam-quick-benefits { justify-content: flex-start; }
      .exam-template-hero .hero-text { width: 100%; max-width: 550px; }
      .exam-hero-visual { margin-top: 4px; }
    }
    @media (max-width: 430px) {
      .exam-quick-benefits span { width: 100%; }
    }

    /* LANDING IDIOMAS — HERO CON LA JERARQUÍA VISUAL DE MODO GENIO */
    .landing-idiomas {
      background:
        radial-gradient(circle at 91% 13%, rgba(0, 170, 166, 0.12), transparent 24rem),
        radial-gradient(circle at 7% 45%, rgba(255, 159, 67, 0.08), transparent 20rem),
        var(--bg-light);
    }
    .landing-idiomas .hero-container {
      grid-template-columns: minmax(0, 500px) minmax(300px, 390px);
      justify-content: center;
      column-gap: 34px;
      row-gap: 26px;
    }
    .landing-idiomas .hero-heading {
      grid-column: 1 / -1;
      width: 100%;
      max-width: 960px;
      justify-self: center;
      text-align: center;
    }
    .landing-idiomas .hero-heading .kicker { margin-bottom: 12px; }
    .idiomas-hero-badge {
      display: inline-block;
      padding: 7px 13px;
      border: 1px solid var(--primary-teal);
      border-radius: 999px;
      background: #ecfdfb;
      color: #0f766e;
      font-size: 0.78rem;
      font-weight: 900;
      letter-spacing: 0.06em;
      box-shadow: 0 7px 16px rgba(0, 170, 166, 0.13);
    }
    .landing-idiomas .hero-heading h1 {
      max-width: 920px;
      margin: 0 auto 12px;
      color: var(--primary-dark);
      font-size: clamp(2.25rem, 4.2vw, 3.35rem);
      line-height: 1.12;
      text-wrap: balance;
    }
    .landing-idiomas .hero-heading .lead-intro {
      max-width: 800px;
      margin: 0 auto;
      color: var(--text-muted);
      font-size: 1.04rem;
      line-height: 1.58;
      text-wrap: balance;
    }
    .landing-idiomas .hero-text,
    .landing-idiomas .form-card { width: 100%; }
    .idiomas-hero-visual {
      width: 100%;
      max-width: 390px;
      justify-self: center;
      align-self: start;
    }
    .idiomas-video {
      width: min(100%, 390px);
      aspect-ratio: 9 / 16;
      border-color: #81d8d5;
      border-radius: 24px;
      box-shadow: 0 20px 45px rgba(0, 119, 115, 0.18);
    }
    .idiomas-quote {
      border-left-color: var(--primary-orange);
      background: #fff8ef;
      color: #7c4613;
    }
    @media (max-width: 768px) {
      .landing-idiomas .hero-container { grid-template-columns: minmax(0, 1fr); justify-items: center; }
      .landing-idiomas .hero-heading { grid-column: 1; max-width: 540px; text-align: left; }
      .landing-idiomas .hero-heading h1 { font-size: clamp(2rem, 10vw, 2.7rem); }
      .landing-idiomas .hero-heading .lead-intro { margin-inline: 0; }
      .landing-idiomas .hero-text { max-width: 540px; }
      .idiomas-hero-visual { margin-top: 4px; }
    }
