/* ============================================================
   PLANTILLA GENTIUM - Estilos de la pagina principal
   No hace falta tocar este archivo para cambiar contenidos.
   Colores y tipografias de la identidad visual viven aca.
   ============================================================ */


    * {
      box-sizing: border-box;
    }

    html,
    body {
      margin: 0;
      padding: 0;
      background: #0c0c0c;
      font-family: Inter, "Neue Haas Grotesk Display", "Helvetica Neue", Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      overflow-x: clip;
    }

    body {
      min-height: 100vh;
      background-color: #0c0c0c;
      background-image:
        radial-gradient(58% 50% at 100% 6%, rgba(201, 91, 40, 0.13) 0%, rgba(201, 91, 40, 0) 66%);
      background-attachment: fixed;
      background-repeat: no-repeat;
    }

    .page {
      width: 100%;
      background: transparent;
    }

    /* Costura sutil entre secciones: bisel luminoso que cierra cada bloque
       sin línea dura. Funciona sobre fondo oscuro y sobre naranja. */
    .page > section { position: relative; }
    .sec-seam {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: min(640px, 84%);
      height: 2px;
      pointer-events: none;
      z-index: 4;
      background:
        linear-gradient(90deg, transparent, rgba(255, 244, 223, 0.24) 50%, transparent) 0 0 / 100% 1px no-repeat,
        linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.22) 50%, transparent) 0 1px / 100% 1px no-repeat;
    }
    /* La sección naranja "Quizás estás pensando…" no lleva costura
       (el resplandor claro quedaba marcado sobre el naranja). */
    .doubt-section > .sec-seam,
    .closing-section > .sec-seam,
    .program-section > .sec-seam { display: none; }
    .sec-seam::before {
      content: "";
      position: absolute;
      top: 1px;
      left: 50%;
      transform: translateX(-50%);
      width: 130%;
      height: 30px;
      pointer-events: none;
      background: radial-gradient(58% 100% at 50% 0%, rgba(255, 244, 223, 0.05) 0%, rgba(255, 244, 223, 0) 72%);
    }

    .container {
      width: 100%;
      max-width: 560px;
      margin: 0 auto;
      padding-left: 44px;
      padding-right: 44px;
    }

    /* =========================
       BARRA SUPERIOR STICKY
    ========================= */

    .sticky-brand {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 50;
      background: rgba(237, 230, 218, 0.88);
      backdrop-filter: blur(16px) saturate(1.1);
      -webkit-backdrop-filter: blur(16px) saturate(1.1);
      color: #0f0f0f;
      transform: translateY(-100%);
      opacity: 0;
      transition: transform 0.35s ease, opacity 0.35s ease;
      border-bottom: 1px solid rgba(15, 15, 15, 0.08);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .sticky-brand.is-visible {
      transform: translateY(0);
      opacity: 1;
    }

    .sticky-brand-inner {
      width: 100%;
      max-width: 680px;
      margin: 0 auto;
      padding: 10px 44px 9px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .sticky-logo {
      margin: 0;
      font-family: "Big Caslon", "Big Caslon CC", Georgia, serif;
      font-size: 24px;
      line-height: 1;
      font-weight: 700;
      letter-spacing: -0.8px;
      color: #0f0f0f;
      white-space: nowrap;
    }

    .sticky-logo-img {
      display: block;
      height: 38px;
      width: auto;
      flex-shrink: 0;
    }

    .sticky-cred {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-shrink: 0;
    }

    .sticky-colegio {
      display: block;
      height: 30px;
      width: auto;
      opacity: 0.92;
      flex-shrink: 0;
    }

    .sticky-info {
      margin: 0;
      font-size: 11.5px;
      line-height: 1.2;
      font-weight: 600;
      letter-spacing: -0.1px;
      color: rgba(15, 15, 15, 0.68);
      text-align: right;
      white-space: nowrap;
    }

    /* =========================
       NAV INFERIOR FIJO (CTA)
    ========================= */

    .sticky-cta {
      position: fixed;
      left: 0;
      bottom: 0;
      width: 100%;
      z-index: 50;
      background: linear-gradient(180deg, #cf6030 0%, #c4571f 100%);
      color: #fff;
      transform: translateY(100%);
      opacity: 0;
      transition: transform 0.35s ease, opacity 0.35s ease;
      box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.26);
    }

    .sticky-cta.is-visible {
      transform: translateY(0);
      opacity: 1;
    }

    .sticky-cta-inner {
      width: 100%;
      max-width: 720px;
      margin: 0 auto;
      padding: 13px 44px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .sticky-cta-text {
      margin: 0;
      font-size: 14.5px;
      line-height: 1.3;
      font-weight: 600;
      letter-spacing: -0.1px;
      color: rgba(255, 244, 223, 0.92);
    }

    .sticky-cta-text strong {
      font-weight: 800;
      color: #fff;
    }

    .cta-status {
      display: flex;
      align-items: center;
      gap: 11px;
      min-width: 0;
    }

    .cta-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #4ade80;
      flex: 0 0 auto;
      animation: ctaDotIdle 2.6s ease-in-out infinite;
    }

    @keyframes ctaDotIdle {
      0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
      50% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
    }

    .sticky-cta.is-urgent {
      animation: ctaBarPulse 2.8s ease-in-out infinite;
    }

    @keyframes ctaBarPulse {
      0%, 100% { background: linear-gradient(180deg, #cf6030 0%, #c4571f 100%); }
      50% { background: linear-gradient(180deg, #cd4f28 0%, #b8431b 100%); }
    }

    .sticky-cta.is-urgent .cta-dot {
      background: #ffd9cf;
      animation: ctaDotPulse 1.2s ease-out infinite;
    }

    @keyframes ctaDotPulse {
      0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
      70% { box-shadow: 0 0 0 11px rgba(255, 255, 255, 0); }
      100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
    }

    .sticky-cta.is-urgent .cta-phase {
      font-size: 13px;
      letter-spacing: 0.6px;
      text-transform: uppercase;
    }

    .sticky-cta.is-urgent .cta-count {
      font-size: 20px;
      font-weight: 800;
      letter-spacing: 0.5px;
      color: #fff;
    }

    .sticky-cta.is-urgent .sticky-cta-btn {
      animation: ctaBtnPulse 1.5s ease-in-out infinite;
    }

    @keyframes ctaBtnPulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.045); }
    }

    .cta-status-text {
      display: flex;
      flex-direction: column;
      line-height: 1.18;
      min-width: 0;
    }

    .cta-phase {
      font-size: 14px;
      font-weight: 800;
      letter-spacing: -0.2px;
      color: #fff;
    }

    .cta-count {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.2px;
      color: rgba(255, 244, 223, 0.82);
      font-variant-numeric: tabular-nums;
    }

    .cta-btn-arrow {
      transition: transform 0.2s ease;
    }

    .sticky-cta-btn:hover .cta-btn-arrow {
      transform: translateX(3px);
    }

    @media (prefers-reduced-motion: reduce) {
      .cta-dot,
      .sticky-cta.is-urgent,
      .sticky-cta.is-urgent .cta-dot,
      .sticky-cta.is-urgent .sticky-cta-btn { animation: none; }
      .cta-btn-arrow { transition: none; }
    }

    .sticky-cta-btn {
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 22px;
      border-radius: 8px;
      background: #fff;
      color: #c4571f;
      font-size: 15px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: -0.2px;
      text-decoration: none;
      white-space: nowrap;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .sticky-cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
    }

    @media (max-width: 600px) {
      .sticky-cta-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 9px;
        padding: 10px 18px;
      }

      .cta-status {
        justify-content: center;
      }

      .cta-status-text,
      .cta-timer {
        text-align: center;
        align-items: center;
      }

      .sticky-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
        font-size: 14.5px;
      }
    }

    /* =========================
       BLOQUE 1
    ========================= */

    .intro-section {
      width: 100%;
      min-height: auto;
      padding: 72px 0 0;
      background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0) 130px),
        linear-gradient(0deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0) 130px);
      display: flex;
      align-items: center;
    }

    .intro-title {
      margin: 0 0 34px;
      font-family: "Big Caslon", "Big Caslon CC", Georgia, serif;
      font-size: 40px;
      line-height: 1.3;
      font-weight: 700;
      letter-spacing: -1.6px;
      color: #ede6da;
    }

    .intro-subtitle {
      margin: 0 0 42px;
      font-family: "Big Caslon", "Big Caslon CC", Georgia, serif;
      font-size: 34px;
      line-height: 1.1;
      font-weight: 400;
      letter-spacing: -1.1px;
      color: #ede6da;
    }

    .intro-subtitle em {
      font-style: italic;
      font-weight: 700;
      letter-spacing: -0.2px;
    }

    .intro-text {
      margin: 0 0 36px;
      font-size: 22px;
      line-height: 1.45;
      font-weight: 400;
      letter-spacing: -0.44px;
      color: #ffffff;
    }

    /* Subrayado hecho a mano bajo "evaluación forense" (img/subrayado.png) */
    .hand-underline {
      position: relative;
      display: inline-block;
    }
    .hand-underline::after {
      content: "";
      position: absolute;
      left: -3%;
      right: -3%;
      bottom: 0.0em;
      height: 0.40em;
      background: url("../img/subrayado.png") no-repeat center bottom;
      background-size: 100% 100%;
      pointer-events: none;
    }

    .intro-text strong {
      font-weight: 700;
      color: #de7a4d;
    }

    .intro-doubt {
      margin: 36px 0 24px;
      font-size: 22px;
      line-height: 1.35;
      font-weight: 400;
      letter-spacing: -0.44px;
      color: rgba(237, 230, 218, 0.65);
    }

    .intro-question {
      margin: 0;
      font-family: "Big Caslon", "Big Caslon CC", Georgia, serif;
      font-size: 44px;
      line-height: 1;
      font-weight: 700;
      letter-spacing: -1.4px;
      color: #ede6da;
    }

    /* =========================
       BLOQUE 2
    ========================= */

    .awareness-section {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      width: 100%;
      min-height: 100vh;
      padding: 88px 0 98px;
      background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0) 130px),
        linear-gradient(0deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0) 130px);
      color: #f2ecd9;
    }

    .awareness-section::before {
      content: "";
      display: none;
      position: absolute;
      top: 8%;
      right: -26%;
      width: 860px;
      height: 860px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201, 91, 40, 0.14) 0%, rgba(201, 91, 40, 0.06) 34%, rgba(201, 91, 40, 0.015) 56%, rgba(201, 91, 40, 0) 76%);
      filter: blur(64px);
      opacity: 0.8;
      z-index: -1;
      pointer-events: none;
    }

    .awareness-lead {
      margin: 0 0 56px;
      font-family: "Big Caslon", "Big Caslon CC", Georgia, serif;
      font-size: 33px;
      line-height: 1.26;
      font-weight: 400;
      letter-spacing: -0.8px;
      color: #f2ecd9;
      max-width: 100%;
    }

    .lead-highlight {
      position: relative;
      display: inline-block;
      color: #de7a4d;
      font-style: italic;
      font-weight: 700;
      font-size: 1.18em;
      line-height: 1;
      padding-bottom: 0.1em;
      margin-right: 0.08em;
    }

    .lead-highlight::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -0.04em;
      height: 0.14em;
      background: linear-gradient(90deg, rgba(222, 122, 77, 0.84) 0%, rgba(222, 122, 77, 0.92) 100%);
      border-radius: 999px;
      opacity: 0.95;
    }

    .hl-mark {
      position: relative;
      white-space: nowrap;
      color: #f2ecd9;
    }

    .hl-mark::before {
      content: "";
      position: absolute;
      left: -5px;
      right: -5px;
      top: 16%;
      bottom: 10%;
      background: rgba(222, 122, 77, 0.30);
      border-radius: 7px 10px 8px 11px;
      transform: rotate(-1.2deg);
      z-index: -1;
      pointer-events: none;
    }

    .soft-mark {
      display: inline-block;
      border-bottom: 1.5px solid rgba(222, 122, 77, 0.55);
      padding-bottom: 1px;
      transform-origin: center bottom;
      transition: color 0.25s ease, transform 0.25s ease, text-shadow 0.25s ease, border-color 0.25s ease;
    }

    .soft-mark:hover {
      color: #de7a4d;
      transform: scale(1.05);
      text-shadow: 0 0 18px rgba(222, 122, 77, 0.45);
      border-bottom-color: transparent;
    }

    .decision-flow {
      position: relative;
      margin: 0 0 66px;
      padding-left: 22px;
    }

    .decision-flow::before {
      content: "";
      position: absolute;
      top: 10px;
      bottom: 10px;
      left: 0;
      width: 1px;
      background: linear-gradient(
        180deg,
        rgba(222, 122, 77, 0.04),
        rgba(222, 122, 77, 0.42),
        rgba(222, 122, 77, 0.04)
      );
    }

    .decision-card {
      position: relative;
      margin: 0 0 18px;
      padding: 22px 22px 23px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(242, 236, 217, 0.13);
      color: rgba(242, 236, 217, 0.84);
      backdrop-filter: blur(2px);
      transition:
        transform 0.28s ease,
        background 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        color 0.28s ease;
    }

    .decision-card::before {
      content: "";
      position: absolute;
      left: -27px;
      top: 27px;
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: #de7a4d;
      box-shadow: 0 0 0 6px rgba(222, 122, 77, 0.10);
      transition: transform 0.28s ease, box-shadow 0.28s ease;
    }

    .decision-card:hover {
      transform: translateY(-3px);
      background: rgba(255, 255, 255, 0.055);
      border-color: rgba(222, 122, 77, 0.45);
      color: #f2ecd9;
      box-shadow: 0 22px 46px rgba(0, 0, 0, 0.22);
    }

    .decision-card:hover::before {
      transform: scale(1.16);
      box-shadow: 0 0 0 8px rgba(222, 122, 77, 0.15);
    }

    .decision-card p {
      margin: 0;
      font-size: 22px;
      line-height: 1.45;
      font-weight: 400;
      letter-spacing: -0.44px;
    }

    .awareness-close {
      margin: 0 0 34px;
      font-family: "Big Caslon", "Big Caslon CC", Georgia, serif;
      font-size: 31px;
      line-height: 1.3;
      font-weight: 400;
      letter-spacing: -0.72px;
      color: #f2ecd9;
    }

    .awareness-close em {
      font-style: italic;
      font-weight: 700;
    }

    .awareness-close u {
      text-underline-offset: 4px;
      text-decoration-thickness: 1px;
      text-decoration-color: rgba(242, 236, 217, 0.78);
    }

    .awareness-final {
      margin: 0;
      font-family: "Big Caslon", "Big Caslon CC", Georgia, serif;
      font-size: 31px;
      line-height: 1.25;
      font-weight: 400;
      letter-spacing: -0.72px;
      color: #f2ecd9;
      text-decoration: underline;
      text-underline-offset: 5px;
      text-decoration-thickness: 1px;
      text-decoration-color: rgba(242, 236, 217, 0.78);
    }

    /* =========================
       BLOQUE 3
    ========================= */

    .situations-section {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      width: 100%;
      padding: 88px 0 98px;
      background:
        radial-gradient(100% 115% at 72% 48%, rgba(255, 228, 192, 0.28) 0%, rgba(255, 228, 192, 0) 54%),
        #c4571f;
      color: #fff4df;
    }

    .situations-section::before {
      content: "";
      position: absolute;
      top: -18%;
      right: -34%;
      width: 760px;
      height: 760px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 244, 223, 0.15) 0%, rgba(255, 244, 223, 0.055) 38%, rgba(255, 244, 223, 0) 72%);
      filter: blur(62px);
      opacity: 0.78;
      z-index: -1;
      pointer-events: none;
    }

    .situations-section::after {
      content: "";
      position: absolute;
      left: -28%;
      bottom: -38%;
      width: 720px;
      height: 720px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(15, 15, 15, 0.28) 0%, rgba(15, 15, 15, 0.12) 42%, rgba(15, 15, 15, 0) 74%);
      filter: blur(66px);
      opacity: 0.9;
      z-index: -1;
      pointer-events: none;
    }

    .situations-container {
      width: 100%;
      max-width: 720px;
      margin: 0 auto;
      padding: 0 44px;
    }

    .situations-title {
      margin: 0 auto 54px;
      max-width: 560px;
      text-align: center;
      font-family: "Big Caslon", "Big Caslon CC", Georgia, serif;
      font-size: 42px;
      line-height: 1.08;
      font-weight: 700;
      letter-spacing: -1.35px;
      color: #fff4df;
    }

    .situations-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: start;
      gap: 18px;
    }

    .sit-card {
      position: relative;
      display: flex;
      flex-direction: column;
      padding: 24px 24px 26px;
      border-radius: 16px;
      background:
        linear-gradient(180deg, rgba(15, 15, 15, 0.96), rgba(11, 11, 11, 0.99));
      border: 1px solid rgba(255, 244, 223, 0.14);
      box-shadow: 0 22px 52px rgba(15, 15, 15, 0.28);
      transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .sit-card:hover {
      transform: translateY(-4px);
      border-color: rgba(255, 244, 223, 0.3);
      box-shadow: 0 30px 66px rgba(15, 15, 15, 0.36);
    }

    .sit-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 18px;
    }

    .sit-channel {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: rgba(255, 244, 223, 0.6);
    }

    .sit-channel svg {
      width: 15px;
      height: 15px;
      flex: 0 0 auto;
      stroke: #de7a4d;
      stroke-width: 1.7;
      fill: none;
    }

    .sit-num {
      font-size: 11px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: 0.12em;
      color: rgba(255, 244, 223, 0.3);
    }

    .sit-body {
      display: flex;
      flex-direction: column;
    }

    .sit-quote {
      margin: 0;
      font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: 18.5px;
      line-height: 1.5;
      font-weight: 600;
      letter-spacing: -0.2px;
      color: #fff4df;
    }

    .sit-by {
      margin: 14px 0 0;
      font-size: 16px;
      line-height: 1.4;
      font-weight: 500;
      letter-spacing: -0.1px;
      color: rgba(255, 244, 223, 0.5);
    }

    @media (max-width: 520px) {


      .sit-quote {
        font-size: 22px;
      }
    }

    /* =========================
       BLOQUE 4 - PROGRAMA
    ========================= */

    .program-section {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      width: 100%;
      padding: 0 0 106px;
      background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0) 130px),
        linear-gradient(0deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0) 130px);
      color: #f2ecd9;
    }

    .program-section::before {
      content: "";
      display: none;
      position: absolute;
      top: -160px;
      right: -34%;
      width: 820px;
      height: 820px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201, 91, 40, 0.12) 0%, rgba(201, 91, 40, 0.045) 38%, rgba(201, 91, 40, 0) 74%);
      filter: blur(70px);
      opacity: 0.78;
      z-index: -1;
      pointer-events: none;
    }

    .program-container {
      width: 100%;
      max-width: 720px;
      margin: 0 auto;
      padding: 0 44px;
    }

    .program-divider { width: 56px; height: 2px; margin: 48px auto 48px; border-radius: 2px; background: linear-gradient(90deg, rgba(222,122,77,0), #de7a4d 50%, rgba(222,122,77,0)); }

    .program-bridge {
      margin: 0 auto 0;
      max-width: 540px;
      font-size: 19px;
      line-height: 1.5;
      font-weight: 400;
      letter-spacing: -0.2px;
      color: rgba(242, 236, 217, 0.62);
      text-align: center;
    }
    .program-bridge strong { color: #fff4df; font-weight: 600; }

    .program-kicker {
      margin: 0 0 18px;
      font-family: "Big Caslon", "Big Caslon CC", Georgia, serif;
      font-size: 31px;
      line-height: 1.08;
      font-weight: 400;
      letter-spacing: -0.8px;
      color: rgba(242, 236, 217, 0.82);
      text-align: center;
    }

    .kicker-lead {
      display: block;
      margin-bottom: 8px;
      font-size: 20px;
      line-height: 1.25;
      letter-spacing: -0.4px;
      color: rgba(242, 236, 217, 0.7);
    }

    .program-title {
      margin: 0 auto 34px;
      max-width: 660px;
      font-family: Inter, "Neue Haas Grotesk Display", "Helvetica Neue", Arial, sans-serif;
      font-size: 50px;
      line-height: 1.05;
      font-weight: 800;
      letter-spacing: -1.9px;
      color: #f2ecd9;
      text-align: center;
    }

    .program-title span {
      color: #de7a4d;
    }

    .program-description {
      margin: 0 auto 76px;
      max-width: 560px;
      font-size: 23px;
      line-height: 1.45;
      font-weight: 400;
      letter-spacing: -0.46px;
      color: rgba(242, 236, 217, 0.76);
      text-align: center;
    }

    .program-description strong {
      font-weight: 800;
      color: #f2ecd9;
    }

    .program-bands {
      display: flex;
      flex-direction: column;
      border-top: 1px solid rgba(242, 236, 217, 0.13);
    }

    .program-band {
      border-bottom: 1px solid rgba(242, 236, 217, 0.13);
    }

    .band-button {
      width: 100%;
      padding: 17px 2px;
      border: 0;
      background: transparent;
      color: inherit;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 12px;
      align-items: center;
      cursor: pointer;
      text-align: left;
      font-family: inherit;
    }

    .band-number {
      font-size: 12px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: 0.06em;
      color: #de7a4d;
      padding-top: 3px;
    }

    .band-question {
      margin: 0;
      font-family: Inter, "Neue Haas Grotesk Display", "Helvetica Neue", Arial, sans-serif;
      font-size: 19px;
      line-height: 1.3;
      font-weight: 600;
      letter-spacing: -0.4px;
      color: #f2ecd9;
    }

    .band-plus {
      position: relative;
      flex: 0 0 auto;
      width: 18px;
      height: 18px;
    }

    .band-plus::before,
    .band-plus::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      width: 13px;
      height: 2px;
      border-radius: 999px;
      background: #de7a4d;
      transform: translate(-50%, -50%);
      transition: transform 0.24s ease, opacity 0.24s ease;
    }

    .band-plus::after {
      transform: translate(-50%, -50%) rotate(90deg);
    }

    .program-band.is-open .band-plus::after {
      transform: translate(-50%, -50%) rotate(0deg);
      opacity: 0;
    }

    .band-panel {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.32s ease;
    }

    .band-content {
      padding: 0 2px 18px 2px;
    }

    .band-content ul {
      margin: 0;
      padding: 0;
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .band-content li {
      position: relative;
      padding-left: 18px;
      font-size: 17px;
      line-height: 1.45;
      font-weight: 400;
      letter-spacing: -0.2px;
      color: rgba(242, 236, 217, 0.72);
    }

    .band-content li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.62em;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #de7a4d;
      opacity: 0.9;
    }

    @media (max-width: 480px) {
      .band-question { font-size: 18px; }
      .band-content { padding-left: 2px; }
    }

    /* =========================
       BLOQUE 5 - CONTENIDOS
    ========================= */

    .contents-section {
      width: 100%;
      overflow: hidden;
      padding: 92px 0 104px;
      background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0) 130px),
        linear-gradient(0deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0) 130px);
      color: #f2ecd9;
    }

    .contents-container {
      width: 100%;
      max-width: none;
      margin: 0 auto;
      padding: 0;
    }

    .contents-header {
      max-width: 600px;
      margin: 0 auto 28px;
      padding: 0 44px;
      text-align: center;
    }

    .contents-kicker {
      margin: 0 0 15px;
      font-size: 11px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #de7a4d;
    }

    .contents-title {
      margin: 0 0 14px;
      font-family: "Big Caslon", "Big Caslon CC", Georgia, serif;
      font-size: 42px;
      line-height: 1.06;
      font-weight: 700;
      letter-spacing: -1.35px;
      color: #f2ecd9;
    }

    .contents-hint {
      margin: 26px 0 0;
      font-size: 16px;
      line-height: 1.4;
      color: rgba(242, 236, 217, 0.48);
    }

    .contents-scroll {
      width: 100vw;
      display: flex;
      align-items: flex-end;
      gap: 42px;
      overflow-x: auto;
      overflow-y: visible;
      scroll-snap-type: x proximity;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding: 30px 0 14px;
      cursor: grab;
    }

    .contents-scroll::before,
    .contents-scroll::after {
      content: "";
      flex: 0 0 calc(50vw - 220px);
    }

    .contents-scroll::-webkit-scrollbar {
      display: none;
    }

    .contents-scroll:active {
      cursor: grabbing;
    }

    .content-cover {
      flex: 0 0 440px;
      min-height: 446px;
      cursor: pointer;
      scroll-snap-align: center;
      opacity: 0.48;
      filter: brightness(0.54) saturate(0.84);
      transform: scale(0.82);
      transform-origin: center bottom;
      transition:
        transform 0.46s cubic-bezier(.22, .61, .36, 1),
        opacity 0.36s ease,
        filter 0.36s ease;
    }

    .content-cover.is-near {
      opacity: 0.70;
      filter: brightness(0.70) saturate(0.92);
      transform: scale(0.88);
    }

    .content-cover.is-active {
      opacity: 1;
      filter: brightness(1) saturate(1);
      transform: scale(1.06);
    }

    .content-cover-inner {
      position: relative;
      overflow: hidden;
      width: 100%;
      height: 100%;
      padding: 28px 30px 28px;
      display: flex;
      flex-direction: column;
      border-radius: 14px;
      border: 1px solid rgba(242, 236, 217, 0.16);
      background:
        radial-gradient(circle at 82% 10%, rgba(201, 91, 40, 0.20), rgba(201, 91, 40, 0) 38%),
        linear-gradient(180deg, rgba(242, 236, 217, 0.065), rgba(242, 236, 217, 0.034)),
        #15130f;
      box-shadow: 0 34px 82px rgba(0, 0, 0, 0.36);
    }

    .content-cover.is-active .content-cover-inner {
      border-color: rgba(242, 236, 217, 0.24);
      box-shadow: 0 42px 96px rgba(0, 0, 0, 0.48);
    }

    .content-cover-inner::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,.024) 1px, transparent 1px);
      background-size: 34px 34px;
      opacity: 0.05;
      pointer-events: none;
    }

    .content-cover-top,
    .content-cover-body {
      position: relative;
      z-index: 2;
    }

    .content-cover-top {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 14px;
      margin-bottom: 14px;
    }

    .content-ghost {
      position: absolute;
      right: 16px;
      top: 6px;
      font-family: "Big Caslon", "Big Caslon CC", Georgia, serif;
      font-size: 120px;
      line-height: 1;
      font-weight: 700;
      color: rgba(222, 122, 77, 0.12);
      z-index: 1;
      pointer-events: none;
      user-select: none;
    }

    .content-number {
      position: relative;
      z-index: 2;
      font-size: 12px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #de7a4d;
    }

    .content-chip {
      font-size: 10px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color: rgba(242, 236, 217, 0.44);
      padding: 6px 9px;
      border-radius: 999px;
      border: 1px solid currentColor;
    }

    .content-cover-title {
      position: relative;
      z-index: 2;
      margin: 0 0 12px;
      padding-top: 16px;
      font-family: "Big Caslon", "Big Caslon CC", Georgia, serif;
      font-size: 24px;
      line-height: 1.18;
      font-weight: 700;
      letter-spacing: -0.5px;
      color: #fff4df;
    }

    .content-desc {
      position: relative;
      z-index: 2;
      margin: 0 0 15px;
      padding-bottom: 15px;
      border-bottom: 1px solid rgba(242, 236, 217, 0.12);
      font-size: 15px;
      line-height: 1.45;
      font-weight: 400;
      letter-spacing: -0.18px;
      color: rgba(242, 236, 217, 0.64);
    }

    .content-cover-title::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 36px;
      height: 3px;
      border-radius: 2px;
      background: #de7a4d;
    }

    .content-cover-title span {
      color: #de7a4d;
    }

    .content-list {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 11px;
    }

    .content-list li {
      position: relative;
      padding-left: 20px;
      font-size: 15px;
      line-height: 1.42;
      font-weight: 400;
      letter-spacing: -0.18px;
      color: rgba(242, 236, 217, 0.76);
    }

    .content-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.64em;
      width: 5px;
      height: 5px;
      border-radius: 999px;
      background: #de7a4d;
    }

    .car-nav { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 14px; }
    .car-nav .contents-dots, .car-nav .reviews-dots { margin-top: 0; }
    .car-arrow { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; flex-shrink: 0; border-radius: 999px; border: 1.5px solid rgba(242, 236, 217, 0.42); background: rgba(20, 18, 15, 0.55); color: #f2ecd9; cursor: pointer; box-shadow: 0 8px 26px rgba(0, 0, 0, 0.42); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.15s; }
    .car-arrow:hover { border-color: #de7a4d; color: #de7a4d; background: rgba(222, 122, 77, 0.16); }
    .car-arrow:active { transform: scale(0.94); }
    .car-arrow svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

    /* Flechas del carrusel de programa: a los costados, sobre la zona en penumbra */
    .contents-stage { position: relative; }
    .car-arrow-side {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 6;
      width: 46px;
      height: 46px;
      border: 0;
      background: #f2ecd9;
      color: #1a1712;
      box-shadow: 0 6px 22px rgba(0, 0, 0, 0.40);
      -webkit-backdrop-filter: none;
      backdrop-filter: none;
    }
    .car-arrow-side svg { width: 19px; height: 19px; stroke-width: 2.4; }
    .car-arrow-side:hover { background: #de7a4d; color: #fff4df; border: 0; }
    .car-arrow-side:active { transform: translateY(-50%) scale(0.94); }
    .car-arrow-prev { left: max(16px, calc(50vw - 300px)); }
    .car-arrow-next { right: max(16px, calc(50vw - 300px)); }
    .contents-dots {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      margin-top: 4px;
    }

    .contents-dot {
      width: 9px;
      height: 9px;
      padding: 0;
      border: 0;
      border-radius: 999px;
      background: rgba(242, 236, 217, 0.28);
      cursor: pointer;
      transition: background 0.22s ease, width 0.22s ease;
    }

    .contents-dot.is-active {
      width: 25px;
      background: #f2ecd9;
    }

    /* ===== Sección "Vas a poder" — título sticky + cards apiladas ===== */
    .payoff-section { position: relative; width: 100%; overflow: visible; padding: 78px 0 28px; color: #f2ecd9;
      background: linear-gradient(180deg, rgba(0,0,0,0.32), rgba(0,0,0,0) 130px), linear-gradient(0deg, rgba(0,0,0,0.32), rgba(0,0,0,0) 130px); }
    .stack-layout { max-width: 1060px; margin: 0 auto; padding: 0 30px; display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 48px; align-items: start; }
    .stack-header { position: sticky; top: 50%; transform: translateY(-50%); align-self: start; }
    .stack-kicker { margin: 0 0 12px; font-size: 12px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: #de7a4d; }
    .stack-h2 { margin: 0; font-family: "Big Caslon", "Big Caslon CC", Georgia, serif; font-size: clamp(40px, 5vw, 64px); line-height: 0.94; letter-spacing: -0.03em; font-weight: 700; color: #fff4df; }

    .cards-wrapper { min-width: 0; }
    .stack-card { position: sticky; min-height: 96px; border-radius: 16px; padding: 18px 24px; margin-bottom: 12px;
      display: flex; flex-direction: column; justify-content: center;
      border: 1px solid rgba(242, 236, 217, 0.12);
      background: #141210;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32); transition: border-color 0.3s ease; }
    .stack-card:hover { border-color: rgba(222, 122, 77, 0.45); }
    .stack-card:nth-child(1) { top: 104px; z-index: 1; }
    .stack-card:nth-child(2) { top: 114px; z-index: 2; }
    .stack-card:nth-child(3) { top: 124px; z-index: 3; }
    .stack-card:nth-child(4) { top: 134px; z-index: 4; }
    .stack-card:nth-child(5) { top: 144px; z-index: 5; }
    .stack-card:nth-child(6) { top: 154px; z-index: 6; }
    .stack-card.final-card { top: 164px; }
    .cards-wrapper .stack-card:last-child { margin-bottom: 0; }
    .final-card { z-index: 7;
      background: linear-gradient(135deg, rgba(201, 91, 40, 0.16), rgba(201, 91, 40, 0) 60%), #161310;
      border: 1px solid rgba(222, 122, 77, 0.38); }
    .card-number { color: rgba(222, 122, 77, 0.9); font-size: 11.5px; font-weight: 800; letter-spacing: 0.15em; margin-bottom: 8px; }
    .stack-card h3 { margin: 0; font-family: Inter, "Helvetica Neue", Arial, sans-serif; font-size: clamp(16px, 1.9vw, 20px); line-height: 1.3; letter-spacing: -0.01em; font-weight: 700; color: #fff4df; }
    .final-card h3 { font-weight: 800; }
    .final-detail { margin-top: 15px; color: rgba(255, 244, 223, 0.5); font-size: 14px; }

    @media (max-width: 820px) {
      .stack-layout { grid-template-columns: 1fr; gap: 0; padding: 0 22px; }
      .stack-header { position: sticky; top: 46px; transform: none; z-index: 8; text-align: center; padding: 14px 0 12px; background: transparent; }
      .stack-kicker { margin-bottom: 8px; }
      .stack-h2 { font-size: clamp(34px, 10vw, 50px); line-height: 0.96; }
      .stack-card { min-height: 84px; padding: 16px 18px; border-radius: 14px; }
      .stack-card h3 { font-size: 17px; }
      .stack-card:nth-child(1){top:150px}.stack-card:nth-child(2){top:160px}.stack-card:nth-child(3){top:170px}
      .stack-card:nth-child(4){top:180px}.stack-card:nth-child(5){top:190px}.stack-card:nth-child(6){top:200px}
      .final-card{top:210px}
    }

    .contents-cta-note { margin: 0 auto 14px; max-width: 420px; font-size: 14px; line-height: 1.45; color: rgba(242, 236, 217, 0.55); }
    .contents-cta {
      margin-top: 40px;
      padding: 0 44px;
      text-align: center;
    }

    .contents-download {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 15px 26px;
      border-radius: 999px;
      border: 1px solid rgba(222, 122, 77, 0.5);
      background: rgba(222, 122, 77, 0.08);
      color: #f2ecd9;
      font-family: inherit;
      font-size: 16px;
      line-height: 1;
      font-weight: 700;
      letter-spacing: -0.2px;
      text-decoration: none;
      transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    }

    .contents-download:hover {
      transform: translateY(-2px);
      background: rgba(222, 122, 77, 0.16);
      border-color: rgba(222, 122, 77, 0.85);
    }

    .contents-download svg {
      width: 18px;
      height: 18px;
      flex: 0 0 auto;
      stroke: #de7a4d;
      stroke-width: 1.8;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* =========================
       RESPONSIVE
    ========================= */

    @media (max-width: 700px) {
      .sticky-logo-img { height: 30px; }
      .sticky-info { font-size: 10px; }

      .situations-container,
      .program-container {
        max-width: 620px;
        padding: 0 36px;
      }

      .situations-title {
        font-size: 37px;
        margin-bottom: 48px;
      }

      .situations-grid {
        gap: 16px;
      }





      .program-section {
        padding: 82px 0 92px;
      }

      .program-kicker {
        font-size: 28px;
      }

      .program-title {
        font-size: 42px;
        line-height: 1.06;
        letter-spacing: -1.6px;
      }

      .program-description {
        font-size: 21px;
        margin-bottom: 64px;
      }

      .contents-section {
        padding: 78px 0 88px;
      }

      .contents-header {
        padding: 0 36px;
      }

      .contents-title {
        font-size: 36px;
      }

      .contents-scroll {
        gap: 32px;
        padding: 26px 0 12px;
      }

      .contents-scroll::before,
      .contents-scroll::after {
        flex-basis: 5vw;
      }

      .content-cover {
        flex-basis: 90vw;
        min-height: 0;
      }

      .car-arrow-side { display: none; }

      .content-cover-title {
        font-size: 23px;
      }

      .content-list li {
        font-size: 15px;
      }
    }

    @media (max-width: 600px) {
      .container {
        padding-left: 36px;
        padding-right: 36px;
      }

      .sticky-brand-inner {
        padding: 9px 26px 8px;
      }

      .sticky-logo-img { height: 26px; }
      .sticky-info { font-size: 9.5px; }

      .sticky-logo {
        font-size: 22px;
      }

      .intro-section {
        min-height: auto;
        padding: 56px 0 26px;
        display: block;
      }

      .intro-title {
        font-size: 36px;
        margin-bottom: 32px;
      }

      .intro-subtitle {
        font-size: 31px;
        margin-bottom: 38px;
      }

      .intro-text,
      .intro-doubt {
        font-size: 20px;
        line-height: 1.4;
      }

      .intro-text {
        margin-bottom: 24px;
      }

      .intro-doubt {
        margin-top: 34px;
        margin-bottom: 22px;
      }

      .intro-question {
        font-size: 40px;
      }

      .awareness-section {
        min-height: auto;
        padding: 76px 0 84px;
      }

      .awareness-section::before {
        width: 620px;
        height: 620px;
        right: -34%;
        top: 10%;
      }

      .awareness-lead {
        margin-bottom: 50px;
        font-size: 28px;
        line-height: 1.28;
      }

      .lead-highlight {
        font-size: 1.14em;
      }

      .decision-flow {
        margin-bottom: 56px;
      }

      .decision-card {
        padding: 20px 20px 21px;
      }

      .decision-card p {
        font-size: 20px;
        line-height: 1.45;
      }

      .awareness-close {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 28px;
      }

      .awareness-final {
        font-size: 28px;
        line-height: 1.28;
      }
    }

    @media (max-width: 520px) {
      .situations-section {
        padding: 72px 0 82px;
      }

      .situations-container {
        padding: 0 30px;
      }

      .situations-title {
        font-size: 32px;
        line-height: 1.1;
        margin-bottom: 42px;
      }

      .situations-grid {
        grid-template-columns: 1fr;
        gap: 22px;
      }



    }

    @media (max-width: 480px) {
      .program-section {
        padding: 72px 0 82px;
      }

      .program-container {
        padding: 0 30px;
      }

      .program-kicker {
        font-size: 25px;
        text-align: left;
      }

      .program-title {
        font-size: 36px;
        line-height: 1.08;
        letter-spacing: -1.3px;
        text-align: left;
      }

      .program-description {
        font-size: 19px;
        line-height: 1.42;
        text-align: left;
        margin-bottom: 54px;
      }

      .program-bands {
        gap: 10px;
      }

      .contents-section {
        padding: 72px 0 84px;
      }

      .contents-header {
        text-align: left;
        padding: 0 30px;
        margin-bottom: 36px;
      }

      .contents-title {
        font-size: 31px;
        line-height: 1.08;
      }

      .contents-scroll {
        gap: 26px;
        padding: 24px 0 12px;
      }

      .contents-scroll::before,
      .contents-scroll::after {
        flex-basis: calc(50vw - 138px);
      }

      .content-cover {
        flex-basis: 276px;
        min-height: 300px;
      }

      .content-cover.is-active {
        transform: scale(1);
      }

      .content-cover-inner {
        padding: 24px 23px 25px;
      }

      .content-cover-top {
        margin-bottom: 40px;
      }

      .content-cover-title {
        font-size: 24px;
      }

      .content-list {
        gap: 9px;
      }

      .content-list li {
        font-size: 16px;
      }
    }

    @media (max-width: 420px) {
      .container {
        padding-left: 30px;
        padding-right: 30px;
      }

      .sticky-brand-inner {
        padding: 8px 12px 7px;
        gap: 6px;
      }

      .sticky-info { font-size: 8.5px; letter-spacing: -0.2px; }
      .sticky-logo-img { height: 22px; }

      .intro-section {
        padding: 48px 0 22px;
      }

      .intro-title {
        font-size: 32px;
        margin-bottom: 28px;
      }

      .intro-subtitle {
        font-size: 28px;
        margin-bottom: 34px;
      }

      .intro-text,
      .intro-doubt {
        font-size: 18.5px;
        line-height: 1.38;
      }

      .intro-text {
        margin-bottom: 22px;
      }

      .intro-doubt {
        margin-top: 30px;
        margin-bottom: 20px;
      }

      .intro-question {
        font-size: 36px;
      }

      .awareness-section {
        padding: 66px 0 74px;
      }

      .awareness-section::before {
        width: 520px;
        height: 520px;
        right: -45%;
        top: 14%;
        opacity: 0.72;
      }

      .awareness-lead {
        margin-bottom: 44px;
        font-size: 23px;
        line-height: 1.3;
      }

      .lead-highlight {
        font-size: 1.12em;
      }

      .decision-flow {
        padding-left: 19px;
        margin-bottom: 48px;
      }

      .decision-card {
        margin-bottom: 16px;
        padding: 18px 18px 19px;
      }

      .decision-card::before {
        left: -24px;
        top: 24px;
      }

      .decision-card p {
        font-size: 18.5px;
        line-height: 1.45;
      }

      .awareness-close {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 24px;
      }

      .awareness-final {
        font-size: 24px;
        line-height: 1.28;
      }
    }

    /* =========================
       UTILIDADES — MANUSCRITO + MARCO A MANO (estilo referencia)
    ========================= */

    .hand {
      font-family: "Caveat", "Kalam", cursive;
      color: #de7a4d;
      font-weight: 700;
      letter-spacing: 0;
      line-height: 0.9;
      display: inline-block;
      transform: rotate(-3.5deg);
    }

    .hand--up {
      transform: rotate(2.5deg);
    }

    .hand--big {
      font-size: 1.5em;
    }

    .struck {
      position: relative;
      text-decoration: line-through;
      text-decoration-color: rgba(222, 122, 77, 0.9);
      text-decoration-thickness: 2px;
      opacity: 0.62;
    }

    /* Marco dibujado a mano: contenedor relativo + svg absoluto desbordado */
    .sketch {
      position: relative;
      display: block;
    }

    .sketch-frame {
      position: absolute;
      inset: -12px;
      width: calc(100% + 24px);
      height: calc(100% + 24px);
      pointer-events: none;
      z-index: 4;
      color: #de7a4d;
      overflow: visible;
    }

    .sketch-frame path {
      fill: none;
      stroke: currentColor;
      stroke-width: 3.4;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* =========================
       BLOQUE 6 — MODALIDAD / CALENDARIO (oscuro)
    ========================= */

    .modality-section {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      width: 100%;
      padding: 88px 0 96px;
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0) 180px),
        linear-gradient(0deg, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0) 180px);
      color: #f2ecd9;
    }

    .modality-container {
      width: 100%;
      max-width: 600px;
      margin: 0 auto;
      padding: 0 44px;
      text-align: center;
    }

    .modality-kicker {
      margin: 0 0 16px;
      font-size: 11px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #de7a4d;
    }

    .modality-title {
      margin: 0 0 26px;
      font-family: "Big Caslon", "Big Caslon CC", Georgia, serif;
      font-size: 40px;
      line-height: 1.04;
      font-weight: 700;
      letter-spacing: -1.4px;
      color: #f2ecd9;
    }

    .cursado-hl {
      position: relative;
      display: inline-block;
      color: #de7a4d;
    }

    .hl-underline {
      position: absolute;
      left: -2px;
      bottom: -13px;
      width: calc(100% + 4px);
      height: 14px;
      overflow: visible;
    }

    .hl-underline path {
      fill: none;
      stroke: #de7a4d;
      stroke-width: 3;
      stroke-linecap: round;
      stroke-linejoin: round;
      vector-effect: non-scaling-stroke;
    }

    .modality-subtitle-em {
      color: #f2ecd9;
      font-weight: 500;
    }

    .modality-subtitle {
      margin: 0 auto 44px;
      max-width: 480px;
      font-size: 18px;
      line-height: 1.45;
      font-weight: 400;
      letter-spacing: -0.32px;
      color: #ffffff;
    }

    .cal-caption {
      margin: 24px 0 4px;
      padding-top: 22px;
      border-top: 1px solid rgba(242, 236, 217, 0.12);
      text-align: center;
    }
    .cal-cap-main {
      display: block;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(242, 236, 217, 0.5);
    }
    .cal-cap-main strong { color: #de7a4d; font-weight: 700; }
    .cal-cap-date {
      display: block;
      margin-top: 10px;
      font-size: 18px;
      line-height: 1.3;
      font-weight: 700;
      letter-spacing: -0.3px;
      color: #fff4df;
    }
    .cal-cap-time {
      display: block;
      margin-top: 14px;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.02em;
      color: rgba(242, 236, 217, 0.62);
    }

    .cal-caption strong {
      color: #de7a4d;
      font-weight: 800;
    }

    .cal-card {
      position: relative;
      max-width: 300px;
      margin: 0 auto;
      padding: 20px 22px 18px;
      border-radius: 18px;
      border: 1px solid rgba(242, 236, 217, 0.15);
      background:
        radial-gradient(circle at 78% 6%, rgba(201, 91, 40, 0.16), rgba(201, 91, 40, 0) 46%),
        linear-gradient(180deg, rgba(242, 236, 217, 0.06), rgba(242, 236, 217, 0.03)),
        #15130f;
      box-shadow: 0 24px 56px rgba(0, 0, 0, 0.3);
    }

    .cal-top {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 16px;
    }

    .cal-month {
      margin: 0;
      font-family: "Big Caslon", "Big Caslon CC", Georgia, serif;
      font-size: 27px;
      line-height: 0.95;
      font-weight: 700;
      letter-spacing: -0.9px;
      color: #f2ecd9;
    }

    .cal-year {
      margin: 0;
      font-size: 10px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: 0.14em;
      color: #de7a4d;
    }

    .cal-weekdays {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 5px;
      margin-bottom: 6px;
    }

    .cal-weekdays span {
      text-align: center;
      font-size: 9px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: 0.04em;
      color: rgba(242, 236, 217, 0.32);
    }

    .cal-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 5px;
    }

    .cal-grid span {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 29px;
      border-radius: 999px;
      font-size: 12.5px;
      line-height: 1;
      font-weight: 600;
      color: rgba(242, 236, 217, 0.5);
    }

    .cal-grid span.is-empty {
      visibility: hidden;
    }

    .cal-grid span.is-class {
      position: relative;
      color: #14110d;
      font-weight: 800;
      background: #de7a4d;
      animation: calGlow 2.8s ease-in-out infinite;
    }

    @keyframes calGlow {
      0%, 100% {
        box-shadow: 0 0 0 2px rgba(222, 122, 77, 0.14), 0 0 0 0 rgba(222, 122, 77, 0);
      }
      50% {
        box-shadow: 0 0 0 4px rgba(222, 122, 77, 0.20), 0 0 13px 2px rgba(222, 122, 77, 0.42);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .cal-grid span.is-class {
        animation: none;
      }
    }

    .modality-summary {
      margin: 34px auto 0;
      max-width: 440px;
    }

    .modality-line {
      margin: 0 0 12px;
      font-size: 18px;
      line-height: 1.5;
      font-weight: 400;
      letter-spacing: -0.3px;
      color: rgba(242, 236, 217, 0.82);
    }

    .modality-line strong {
      font-weight: 700;
      color: #f2ecd9;
    }

    .modality-foot {
      margin: 20px 0 0;
      font-size: 16px;
      line-height: 1.5;
      font-weight: 500;
      letter-spacing: -0.1px;
      color: rgba(242, 236, 217, 0.52);
    }

    @media (max-width: 520px) {
      .modality-section {
        padding: 74px 0 82px;
      }

      .modality-container {
        padding: 0 30px;
      }

      .modality-title {
        font-size: 33px;
      }

      .modality-subtitle {
        font-size: 17px;
        margin-bottom: 38px;
      }

      .modality-line {
        font-size: 17px;
      }
    }

    .modality-arrow {
      display: flex;
      justify-content: center;
      margin: 12px auto 6px;
      width: 100%;
      max-width: 300px;
    }

    .modality-arrow svg {
      width: 116px;
      height: 78px;
      overflow: visible;
    }

    .modality-arrow path {
      fill: none;
      stroke: #de7a4d;
      stroke-width: 3.2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .modality-arrow .arrow-line {
      stroke-dasharray: 160;
      stroke-dashoffset: 160;
      animation: arrowDraw 1.1s ease forwards 0.25s;
    }

    .modality-arrow .arrow-head {
      opacity: 0;
      animation: arrowHead 0.01s linear forwards 1.25s;
    }

    @keyframes arrowDraw { to { stroke-dashoffset: 0; } }
    @keyframes arrowHead { to { opacity: 1; } }

    .live-window {
      position: relative;
      width: 100%;
      max-width: 300px;
      margin: 0 auto;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(242, 236, 217, 0.16);
      background: linear-gradient(180deg, #1b1a18, #121110);
      box-shadow: 0 26px 60px rgba(0, 0, 0, 0.36);
    }

    .live-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 14px;
    }

    .live-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #fff;
    }

    .live-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #ff4d3d;
      animation: livePulse 1.7s ease-out infinite;
    }

    @keyframes livePulse {
      0% { box-shadow: 0 0 0 0 rgba(255, 77, 61, 0.55); }
      70% { box-shadow: 0 0 0 7px rgba(255, 77, 61, 0); }
      100% { box-shadow: 0 0 0 0 rgba(255, 77, 61, 0); }
    }

    .live-zoom {
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(242, 236, 217, 0.5);
    }

    .live-zoom img {
      height: 18px;
      width: auto;
      display: block;
      border-radius: 4px;
    }

    .zoom-inline {
      height: 16px;
      width: auto;
      vertical-align: -3px;
      border-radius: 3px;
      margin: 0 2px;
    }

    .live-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .live-screen {
      position: relative;
      height: 152px;
      display: flex;
      align-items: center;
      justify-content: center;
      background:
        radial-gradient(circle at 50% 36%, rgba(222, 122, 77, 0.16), rgba(222, 122, 77, 0) 60%),
        linear-gradient(160deg, #241a14, #0c0c0c);
    }

    .live-photo-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(242, 236, 217, 0.36);
    }

    .live-wave {
      position: absolute;
      bottom: 12px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      align-items: flex-end;
      gap: 3px;
      height: 18px;
    }

    .live-wave span {
      width: 3px;
      height: 6px;
      border-radius: 2px;
      background: #de7a4d;
      animation: liveWave 1s ease-in-out infinite;
    }

    @keyframes liveWave {
      0%, 100% { height: 5px; }
      50% { height: 16px; }
    }

    .live-foot {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 13px 14px;
      border-top: 1px solid rgba(242, 236, 217, 0.12);
      font-size: 16px;
      font-weight: 700;
      letter-spacing: -0.2px;
      color: #f2ecd9;
    }

    .live-foot svg {
      width: 15px;
      height: 15px;
      stroke: #de7a4d;
      stroke-width: 1.8;
      fill: none;
    }

    .modality-how {
      margin: 64px auto 0;
      max-width: 520px;
    }

    .modality-how-title {
      margin: 0 0 6px;
      font-family: "Big Caslon", "Big Caslon CC", Georgia, serif;
      font-size: 25px;
      line-height: 1.1;
      font-weight: 700;
      letter-spacing: -0.5px;
      text-align: center;
      color: #f2ecd9;
    }

    .modality-how-sub {
      margin: 0 0 20px;
      font-size: 16px;
      line-height: 1.4;
      font-weight: 500;
      letter-spacing: -0.1px;
      text-align: center;
      color: rgba(242, 236, 217, 0.6);
    }

    .modality-ways {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      align-items: start;
      text-align: left;
    }

    .way {
      display: flex;
      gap: 13px;
      align-items: flex-start;
      padding: 20px 18px;
      border-radius: 16px;
      border: 1px solid rgba(242, 236, 217, 0.13);
      background: rgba(242, 236, 217, 0.045);
    }

    .way.is-live { border-color: rgba(255, 77, 61, 0.30); }
    .way.is-rec { border-color: rgba(222, 122, 77, 0.32); }

    .way-icon {
      flex: 0 0 auto;
      width: 40px;
      height: 40px;
      border-radius: 999px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 1px;
    }

    .way.is-live .way-icon { background: rgba(255, 77, 61, 0.15); color: #ff8174; }
    .way.is-rec .way-icon { background: rgba(222, 122, 77, 0.15); color: #de7a4d; }

    .way-icon svg {
      width: 20px;
      height: 20px;
      stroke: currentColor;
      stroke-width: 1.8;
      fill: none;
      transform-origin: center;
    }

    .way.is-live .way-icon svg { animation: wayLivePulse 2.2s ease-in-out infinite; }
    .way.is-rec .way-icon svg { animation: wayRecBreathe 3.2s ease-in-out infinite; }

    @keyframes wayLivePulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.12); }
    }

    @keyframes wayRecBreathe {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.07); opacity: 0.85; }
    }

    @media (prefers-reduced-motion: reduce) {
      .way.is-live .way-icon svg,
      .way.is-rec .way-icon svg { animation: none; }
    }

    .way-body { flex: 1 1 auto; }

    .way-tag {
      display: block;
      margin-bottom: 6px;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .way.is-live .way-tag { color: #ff8174; }
    .way.is-rec .way-tag { color: #de7a4d; }

    .way p {
      margin: 0;
      font-size: 16px;
      line-height: 1.42;
      font-weight: 400;
      letter-spacing: -0.2px;
      color: rgba(242, 236, 217, 0.82);
    }

    .way p strong {
      color: #f2ecd9;
      font-weight: 700;
    }

    .modality-flex {
      margin: 56px 0 0;
      text-align: center;
    }

    .modality-flex-title {
      margin: 0 0 6px;
      font-size: 17px;
      line-height: 1.3;
      font-weight: 800;
      letter-spacing: -0.2px;
      color: #de7a4d;
    }

    .modality-flex-text {
      margin: 0 auto;
      max-width: 440px;
      font-size: 16px;
      line-height: 1.5;
      font-weight: 400;
      letter-spacing: -0.2px;
      color: rgba(242, 236, 217, 0.74);
    }

    .modality-flex-text strong {
      color: #f2ecd9;
      font-weight: 700;
    }

    @media (prefers-reduced-motion: reduce) {
      .modality-arrow .arrow-line { stroke-dashoffset: 0; animation: none; }
      .modality-arrow .arrow-head { opacity: 1; animation: none; }
      .live-dot, .live-wave span { animation: none; }
    }

    @media (max-width: 520px) {
      .modality-ways { grid-template-columns: 1fr; }
    }

    /* =========================
       BLOQUE 6B — CERTIFICACIÓN (naranja)
    ========================= */

    .cert-section {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      width: 100%;
      padding: 90px 0 92px;
      background:
        radial-gradient(100% 115% at 72% 48%, rgba(255, 228, 192, 0.28) 0%, rgba(255, 228, 192, 0) 54%),
        #c4571f;
      color: #fff4df;
    }

    .cert-container {
      position: relative;
      width: 100%;
      max-width: 980px;
      margin: 0 auto;
      padding: 0 44px;
      display: grid;
      grid-template-columns: 0.88fr 1.12fr;
      gap: 30px;
      align-items: center;
      min-height: 440px;
    }

    .cert-badge {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin: 0 0 24px;
      padding: 9px 16px;
      border-radius: 999px;
      border: 1px solid rgba(255, 244, 223, 0.4);
      background: rgba(255, 244, 223, 0.12);
      font-size: 11px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: #fff4df;
    }

    .cert-badge svg {
      width: 15px;
      height: 15px;
      stroke: #fff4df;
      stroke-width: 1.8;
      fill: none;
    }

    .cert-title {
      margin: 0 0 18px;
      font-family: "Big Caslon", "Big Caslon CC", Georgia, serif;
      font-size: 40px;
      line-height: 1.04;
      font-weight: 700;
      letter-spacing: -1.35px;
      color: #fff;
    }

    .cert-text {
      margin: 0 0 28px;
      max-width: 420px;
      font-size: 18px;
      line-height: 1.45;
      font-weight: 400;
      letter-spacing: -0.3px;
      color: rgba(255, 244, 223, 0.86);
    }

    .cert-text strong {
      color: #fff;
      font-weight: 700;
    }

    .cert-logo {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      width: 210px;
      height: 72px;
    }

    .cert-logo-img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      animation: logoBreath 3.6s ease-in-out infinite;
    }

    @keyframes logoBreath {
      0%, 100% { transform: scale(1); opacity: 0.9; }
      50% { transform: scale(1.05); opacity: 1; }
    }

    @media (prefers-reduced-motion: reduce) {
      .cert-logo-img { animation: none; }
    }

    .cert-stage {
      position: relative;
      align-self: center;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .cert-card {
      position: relative;
      width: 100%;
      transform: rotate(-2.5deg);
      transform-origin: center center;
      filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.22));
    }

    .cert-img {
      display: block;
      width: 100%;
      height: auto;
    }

    .cert-doc-brand {
      margin: 0;
      font-family: "Big Caslon", "Big Caslon CC", Georgia, serif;
      font-size: 19px;
      line-height: 1;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-align: center;
      color: #14110d;
    }

    .cert-doc-eyebrow {
      margin: 16px 0 0;
      font-size: 10px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      text-align: center;
      color: #c4571f;
    }

    .cert-doc-course {
      margin: 16px auto 22px;
      max-width: 320px;
      font-family: "Big Caslon", "Big Caslon CC", Georgia, serif;
      font-size: 22px;
      line-height: 1.16;
      font-weight: 700;
      letter-spacing: -0.5px;
      text-align: center;
      color: #14110d;
    }

    .cert-doc-to {
      margin: 0;
      font-size: 10px;
      line-height: 1;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      text-align: center;
      color: #9a958c;
    }

    .cert-doc-name {
      margin: 10px auto 0;
      font-family: "Big Caslon", "Big Caslon CC", Georgia, serif;
      font-size: 25px;
      line-height: 1;
      font-weight: 700;
      letter-spacing: -0.5px;
      text-align: center;
      color: #1a1a1a;
    }

    .cert-doc-meta {
      margin: 12px 0 0;
      font-size: 11px;
      line-height: 1;
      font-weight: 500;
      letter-spacing: 0.02em;
      text-align: center;
      color: #9a958c;
    }

    .cert-doc-foot {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 16px;
      margin-top: 46px;
    }

    .cert-sign {
      flex: 0 0 auto;
      width: 86px;
    }

    .cert-sign svg {
      display: block;
      width: 64px;
      height: 26px;
      margin: 0 auto 6px;
      stroke: #2a2a2a;
      stroke-width: 1.6;
      fill: none;
    }

    .cert-sign span {
      display: block;
      padding-top: 6px;
      border-top: 1px solid #d8d2c6;
      font-size: 8.5px;
      line-height: 1.2;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      text-align: center;
      color: #9a958c;
    }

    .cert-doc-seal {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 70px;
      height: 70px;
      border-radius: 50%;
      border: 1px dashed #d2b8a8;
      font-size: 8px;
      line-height: 1.2;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-align: center;
      color: #b08a76;
      padding: 6px;
    }

    @media (max-width: 820px) {
      .cert-container {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 36px;
        min-height: 0;
      }

      .cert-stage {
        margin-top: 22px;
      }

      .cert-card {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        width: 100%;
        max-width: 380px;
        min-height: 0;
        margin: 0 auto;
        transform: rotate(-2deg);
      }

      .cert-title {
        font-size: 36px;
      }
    }

    @media (max-width: 520px) {
      .cert-section {
        padding: 74px 0 58px;
      }

      .cert-container {
        padding: 0 30px;
      }

      .cert-title {
        font-size: 31px;
      }

      .cert-stage {
        margin-top: 18px;
      }

      .cert-card {
        max-width: none;
        padding: 0;
      }
    }

    /* =========================
       BLOQUE 7 — DOCENTE (oscuro)
    ========================= */

    .teacher-section {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      width: 100%;
      padding: 92px 0 96px;
      background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0) 130px),
        linear-gradient(0deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0) 130px);
      color: #f2ecd9;
    }

    .teacher-container {
      width: 100%;
      max-width: 680px;
      margin: 0 auto;
      padding: 0 44px;
    }

    .teacher-head {
      display: grid;
      grid-template-columns: 170px 1fr;
      grid-template-areas:
        "photo top"
        "photo bottom";
      column-gap: 32px;
      margin-bottom: 36px;
    }

    .teacher-head-top {
      grid-area: top;
      align-self: end;
    }

    .teacher-head-bottom {
      grid-area: bottom;
      align-self: start;
    }

    .teacher-photo-wrap {
      grid-area: photo;
      align-self: center;
      position: relative;
    }

    .teacher-photo {
      position: relative;
      aspect-ratio: 4 / 5;
      border-radius: 18px;
      border: 1px solid rgba(243, 238, 228, 0.14);
      box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
      overflow: hidden;
      background:
        radial-gradient(circle at 50% 32%, rgba(255, 244, 223, 0.14), rgba(255, 244, 223, 0) 60%),
        linear-gradient(160deg, #241a14 0%, #0c0c0c 78%);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .teacher-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .teacher-photo-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(242, 236, 217, 0.34);
      text-align: center;
      padding: 0 14px;
    }

    .teacher-kicker {
      margin: 0 0 12px;
      font-size: 11px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #de7a4d;
    }

    .teacher-name {
      margin: 0 0 12px;
      font-family: "Big Caslon", "Big Caslon CC", Georgia, serif;
      font-size: 35px;
      line-height: 1.02;
      font-weight: 700;
      letter-spacing: -1.1px;
      color: #f2ecd9;
    }

    .teacher-duo {
      margin: 0;
      font-family: "Big Caslon", "Big Caslon CC", Georgia, serif;
      font-size: 23px;
      line-height: 1.1;
      font-weight: 700;
      letter-spacing: -0.4px;
      color: #de7a4d;
    }

    .teacher-duo .t-amp {
      color: rgba(242, 236, 217, 0.4);
      font-style: italic;
      font-weight: 400;
      padding: 0 3px;
    }

    .teacher-tagline {
      margin: 13px 0 0;
      max-width: 420px;
      font-size: 16px;
      line-height: 1.4;
      font-weight: 400;
      letter-spacing: -0.2px;
      color: rgba(242, 236, 217, 0.6);
    }

    .teacher-tagline em {
      font-style: italic;
      color: rgba(242, 236, 217, 0.86);
    }

    .teacher-body {
      max-width: 600px;
    }

    .teacher-lead {
      margin: 0 0 24px;
      font-size: 20px;
      line-height: 1.5;
      font-weight: 400;
      letter-spacing: -0.32px;
      color: rgba(242, 236, 217, 0.84);
    }

    .teacher-lead strong {
      font-weight: 700;
      color: #de7a4d;
    }

    .teacher-lead em {
      font-style: italic;
      color: #f2ecd9;
    }

    .teacher-facts {
      position: relative;
      margin: 0;
      padding-left: 22px;
    }

    .teacher-facts::before {
      content: "";
      position: absolute;
      left: 0;
      top: 4px;
      bottom: 4px;
      width: 1px;
      background: linear-gradient(180deg, rgba(222, 122, 77, 0.05), rgba(222, 122, 77, 0.5), rgba(222, 122, 77, 0.05));
    }

    .teacher-fact {
      margin: 0 0 14px;
      font-size: 16px;
      line-height: 1.5;
      font-weight: 400;
      letter-spacing: -0.2px;
      color: rgba(242, 236, 217, 0.78);
    }

    .teacher-fact:last-child {
      margin-bottom: 0;
    }

    .tf-label {
      margin-right: 9px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      color: #de7a4d;
    }

    .teacher-fact em {
      font-style: italic;
      color: #f2ecd9;
    }

    .teacher-fact strong {
      font-weight: 700;
      color: #f2ecd9;
    }

    .teacher-fact.is-key {
      color: rgba(242, 236, 217, 0.95);
    }

    .teacher-fact.is-key strong {
      color: #de7a4d;
    }

    .teacher-creds {
      margin: 24px 0 0;
      padding-top: 18px;
      border-top: 1px solid rgba(242, 236, 217, 0.13);
      font-size: 15px;
      line-height: 1.6;
      font-weight: 600;
      letter-spacing: 0.02em;
      color: rgba(242, 236, 217, 0.5);
    }

    .teacher-mp {
      margin: 6px 0 14px;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.02em;
      color: rgba(242, 236, 217, 0.72);
    }

    .teacher-arrow {
      margin: 4px 0 2px 10px;
      width: 76px;
      height: 52px;
    }

    .teacher-arrow svg {
      width: 100%;
      height: 100%;
      overflow: visible;
    }

    .teacher-arrow path {
      fill: none;
      stroke: #de7a4d;
      stroke-width: 2.6;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .teacher-cargo-card {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin: 0 0 22px;
      padding: 18px 20px;
      border-radius: 14px;
      border: 1px solid rgba(222, 122, 77, 0.34);
      background: rgba(222, 122, 77, 0.09);
    }

    .teacher-cargo-icon {
      flex: 0 0 auto;
      width: 26px;
      height: 26px;
      margin-top: 2px;
      stroke: #de7a4d;
      stroke-width: 1.7;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
    }

    .teacher-cargo-card p {
      margin: 0;
      font-size: 17px;
      line-height: 1.42;
      font-weight: 600;
      letter-spacing: -0.2px;
      color: #f2ecd9;
    }

    .teacher-cargo-card p strong {
      color: #de7a4d;
      font-weight: 700;
    }

    .teacher-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
      margin: 0 0 22px;
    }

    .teacher-chip {
      display: inline-flex;
      align-items: center;
      padding: 8px 15px;
      border-radius: 999px;
      border: 1px solid rgba(242, 236, 217, 0.22);
      font-size: 15px;
      line-height: 1;
      font-weight: 500;
      letter-spacing: -0.1px;
      color: rgba(242, 236, 217, 0.85);
    }

    .teacher-chip span {
      margin-left: 7px;
      font-weight: 400;
      color: rgba(242, 236, 217, 0.5);
    }

    .teacher-bio2 {
      margin: 0;
      font-size: 16px;
      line-height: 1.55;
      font-weight: 400;
      letter-spacing: -0.2px;
      color: rgba(242, 236, 217, 0.72);
    }

    .teacher-bio2 strong {
      color: #f2ecd9;
      font-weight: 600;
    }

    .teacher-bio2 em {
      font-style: italic;
      color: #f2ecd9;
    }

    .teacher-cargo {
      margin: 24px 0 24px;
      padding: 16px 18px;
      border-radius: 14px;
      border: 1px solid rgba(222, 122, 77, 0.32);
      background: rgba(222, 122, 77, 0.08);
    }

    .teacher-cargo-label {
      display: block;
      margin-bottom: 7px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: #de7a4d;
    }

    .teacher-cargo-text {
      margin: 0;
      font-family: "Big Caslon", "Big Caslon CC", Georgia, serif;
      font-size: 20px;
      line-height: 1.28;
      font-weight: 700;
      letter-spacing: -0.4px;
      color: #f2ecd9;
    }

    .teacher-cargo-text strong {
      color: #de7a4d;
    }

    .teacher-formacion {
      margin: 0 0 4px;
    }

    .tf-label-block {
      display: block;
      margin: 0 0 13px;
    }

    .teacher-creds-list {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 9px 20px;
    }

    .teacher-creds-list li {
      position: relative;
      padding-left: 16px;
      font-size: 16px;
      line-height: 1.4;
      font-weight: 600;
      letter-spacing: -0.1px;
      color: rgba(242, 236, 217, 0.85);
    }

    .teacher-creds-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.58em;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #de7a4d;
    }

    .teacher-creds-list li span {
      margin-left: 5px;
      font-weight: 400;
      color: rgba(242, 236, 217, 0.5);
    }

    @media (max-width: 560px) {
      .teacher-creds-list {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 560px) {
      .teacher-head {
        grid-template-columns: 1fr;
        grid-template-areas:
          "top"
          "photo"
          "bottom";
        column-gap: 0;
        row-gap: 16px;
        margin-bottom: 28px;
      }

      .teacher-head-top,
      .teacher-head-bottom {
        align-self: start;
      }

      .teacher-photo-wrap {
        align-self: start;
      }

      .teacher-container { text-align: center; }

      .teacher-head { text-align: center; }

      .teacher-photo-wrap { justify-self: center; }

      .teacher-photo {
        width: 160px;
        margin: 0 auto;
      }

      .teacher-tagline {
        margin-left: auto;
        margin-right: auto;
      }

      .teacher-chips { justify-content: center; }

      .teacher-cargo-card { text-align: left; }

      .teacher-name {
        font-size: 31px;
      }

      .teacher-duo {
        font-size: 21px;
      }
    }

    /* =========================
       BLOQUE 8 — RESEÑAS (carrusel manual, capturas que flotan)
    ========================= */

    .reviews-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      padding: 58px 0 60px;
      background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0) 130px),
        linear-gradient(0deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0) 130px),
        #0c0c0c;
      color: #f2ecd9;
    }

    .reviews-intro {
      max-width: 600px;
      margin: 0 auto 32px;
      padding: 0 44px;
      text-align: center;
    }

    .reviews-q {
      margin: 0 0 12px;
      font-family: "Big Caslon", "Big Caslon CC", Georgia, serif;
      font-size: 34px;
      line-height: 1.08;
      font-weight: 700;
      letter-spacing: -1.1px;
      color: #f2ecd9;
    }

    .reviews-sub {
      margin: 0;
      font-size: 17px;
      line-height: 1.5;
      font-weight: 400;
      letter-spacing: -0.3px;
      color: rgba(242, 236, 217, 0.66);
    }

    .reviews-sub strong { color: #de7a4d; font-weight: 600; }

    .reviews-carousel {
      display: flex;
      align-items: center;
      gap: 20px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding: 12px 0;
      cursor: grab;
    }

    .reviews-carousel::-webkit-scrollbar { display: none; }
    .reviews-carousel:active { cursor: grabbing; }

    .reviews-carousel::before,
    .reviews-carousel::after {
      content: "";
      flex: 0 0 max(20px, calc(50vw - 170px));
    }

    .rev-slide {
      flex: 0 0 auto;
      scroll-snap-align: center;
      cursor: pointer;
    }

    .rev-slide img {
      display: block;
      width: min(340px, 84vw);
      height: 460px;
      object-fit: contain;
      transform: scale(0.6);
      opacity: 0.32;
      filter: brightness(0.68);
      transform-origin: center center;
      transition: transform 0.42s cubic-bezier(.22, .61, .36, 1), opacity 0.35s ease, filter 0.35s ease;
      user-select: none;
      -webkit-user-drag: none;
      pointer-events: none;
    }

    .rev-slide.is-near img {
      transform: scale(0.74);
      opacity: 0.6;
      filter: brightness(0.85);
    }

    .rev-slide.is-active img {
      transform: scale(1);
      opacity: 1;
      filter: brightness(1);
    }

    .reviews-dots {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 9px;
      margin-top: 22px;
    }

    .rev-dot {
      width: 8px;
      height: 8px;
      padding: 0;
      border: 0;
      border-radius: 999px;
      background: rgba(242, 236, 217, 0.26);
      cursor: pointer;
      transition: background 0.2s ease, width 0.2s ease;
    }

    .rev-dot.is-active {
      width: 22px;
      background: #de7a4d;
    }

    @media (max-width: 600px) {
      .reviews-intro { padding: 0 30px; }
      .reviews-q { font-size: 27px; }
      .reviews-carousel { gap: 28px; }
      .rev-slide img { height: 420px; }
    }

    /* Sin flechas en reseñas (se centra tocando la reseña lateral o deslizando) */
    #revPrev, #revNext { display: none; }

    /* =========================
       BLOQUE 9 — FAQ (acordeón minimalista, igual que arriba)
    ========================= */

    .faq-section {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      width: 100%;
      padding: 90px 0 96px;
      background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0) 130px),
        linear-gradient(0deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0) 130px);
      color: #f2ecd9;
    }

    .faq-container {
      width: 100%;
      max-width: 640px;
      margin: 0 auto;
      padding: 0 44px;
    }

    .faq-head {
      margin: 0 0 30px;
    }

    .faq-title {
      margin: 0;
      font-family: "Big Caslon", "Big Caslon CC", Georgia, serif;
      font-size: 40px;
      line-height: 1.04;
      font-weight: 700;
      letter-spacing: -1.25px;
      color: #f2ecd9;
    }

    .faq-title-hand {
      display: block;
      margin-top: 6px;
      font-family: "Caveat", "Kalam", cursive;
      font-size: 30px;
      line-height: 0.95;
      font-weight: 700;
      letter-spacing: 0;
      color: #de7a4d;
      transform: rotate(-2deg);
      transform-origin: left center;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      border-top: 1px solid rgba(242, 236, 217, 0.13);
    }

    .faq-item {
      border-bottom: 1px solid rgba(242, 236, 217, 0.13);
    }

    .faq-q {
      width: 100%;
      border: 0;
      background: transparent;
      color: #f2ecd9;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 17px 2px;
      cursor: pointer;
      text-align: left;
      font-family: inherit;
      font-size: 18px;
      line-height: 1.3;
      font-weight: 600;
      letter-spacing: -0.3px;
    }

    .faq-sign {
      position: relative;
      flex: 0 0 auto;
      width: 18px;
      height: 18px;
    }

    .faq-sign::before,
    .faq-sign::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      width: 13px;
      height: 2px;
      border-radius: 999px;
      background: #de7a4d;
      transform: translate(-50%, -50%);
      transition: transform 0.24s ease, opacity 0.24s ease;
    }

    .faq-sign::after {
      transform: translate(-50%, -50%) rotate(90deg);
    }

    .faq-item.is-open .faq-sign::after {
      transform: translate(-50%, -50%) rotate(0deg);
      opacity: 0;
    }

    .faq-panel {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    .faq-answer {
      margin: 0;
      padding: 0 2px 18px;
      font-size: 16px;
      line-height: 1.55;
      font-weight: 400;
      letter-spacing: -0.2px;
      color: rgba(242, 236, 217, 0.74);
    }

    /* Respuestas FAQ en items separados */
    .faq-points {
      margin: 0;
      padding: 2px 2px 18px;
      list-style: none;
    }
    .faq-points li {
      position: relative;
      padding-left: 20px;
      margin-bottom: 11px;
      font-size: 16px;
      line-height: 1.5;
      letter-spacing: -0.2px;
      color: rgba(242, 236, 217, 0.74);
    }
    .faq-points li:last-child { margin-bottom: 0; }
    .faq-points li::before {
      content: "";
      position: absolute;
      left: 3px;
      top: 0.62em;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #de7a4d;
    }
    .faq-points li strong { color: #fff4df; font-weight: 700; }

    /* Reseña destacada de una alumna cursando (debajo del programa) */
    .cursando-quote-section {
      width: 100%;
      padding: 18px 0 26px;
    }
    .cursando-quote {
      max-width: 560px;
      margin: 0 auto;
      padding: 0 30px;
      text-align: center;
    }
    .cursando-quote-title {
      margin: 0 0 18px;
      font-family: "Caveat", "Kalam", cursive;
      font-size: 34px;
      line-height: 1;
      font-weight: 700;
      color: #de7a4d;
    }
    .cursando-quote-fig { margin: 0; }
    .cursando-quote-fig img {
      display: block;
      width: 100%;
      max-width: 430px;
      height: auto;
      margin: 0 auto;
      border-radius: 14px;
    }
    @media (max-width: 600px) {
      .cursando-quote { padding: 0 22px; }
      .cursando-quote-title { font-size: 30px; }
    }

    .faq-divider {
      margin: 76px 0 22px;
      text-align: center;
    }

    .faq-divider-title {
      margin: 0;
      font-family: "Big Caslon", "Big Caslon CC", Georgia, serif;
      font-size: 25px;
      line-height: 1.1;
      font-weight: 400;
      letter-spacing: -0.4px;
      color: #de7a4d;
    }

    .faq-divider-sub {
      margin: 8px 0 0;
      font-size: 16px;
      line-height: 1.4;
      font-weight: 500;
      color: rgba(242, 236, 217, 0.5);
    }

    .faq-foot {
      margin: 40px auto 0;
      max-width: 520px;
      padding: 0 24px;
      text-align: center;
    }

    .faq-foot-kicker {
      margin: 0 0 10px;
      font-size: 11px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #de7a4d;
    }

    .faq-foot-text {
      margin: 0 0 22px;
      font-size: 16px;
      line-height: 1.5;
      font-weight: 500;
      letter-spacing: -0.2px;
      color: rgba(242, 236, 217, 0.82);
    }

    /* =========================
       BLOQUE 10 — INSCRIPCIÓN / CIERRE (oscuro)
    ========================= */

    .doubt-section {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      width: 100%;
      padding: 88px 0 14px;
      background: #c4571f;
      color: #fff4df;
    }

    .doubt-container {
      width: 100%;
      max-width: 560px;
      margin: 0 auto;
      padding: 0 44px;
    }

    .doubt-lead {
      margin: 0 0 18px;
      font-family: "Big Caslon", "Big Caslon CC", Georgia, serif;
      font-size: 30px;
      line-height: 1.12;
      font-weight: 400;
      letter-spacing: -0.7px;
      color: #fff4df;
    }

    .doubt-quote {
      margin: 0 0 26px;
      font-size: 21px;
      line-height: 1.4;
      font-weight: 600;
      letter-spacing: -0.4px;
      color: #ffffff;
    }

    .doubt-line {
      margin: 0 0 12px;
      font-size: 19px;
      line-height: 1.45;
      font-weight: 400;
      letter-spacing: -0.3px;
      color: rgba(255, 247, 237, 0.92);
    }

    .doubt-line strong { color: #ffffff; font-weight: 700; }

    .doubt-final {
      margin-top: 8px;
      font-size: 22px;
      font-weight: 700;
      color: #ffffff;
    }

    .closing-section {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      width: 100%;
      padding: 50px 0 54px;
      background: #c4571f;
      color: #fff4df;
    }

    .closing-container {
      width: 100%;
      max-width: 560px;
      margin: 0 auto;
      padding: 0 44px;
    }

    .closing-doubt {
      margin: 0 0 28px;
    }

    .closing-doubt-lead {
      margin: 0 0 18px;
      font-family: "Big Caslon", "Big Caslon CC", Georgia, serif;
      font-size: 30px;
      line-height: 1.12;
      font-weight: 400;
      letter-spacing: -0.7px;
      color: #f2ecd9;
    }

    .closing-quote {
      margin: 0 0 26px;
      font-size: 21px;
      line-height: 1.4;
      font-weight: 500;
      letter-spacing: -0.4px;
      color: #de7a4d;
    }

    .closing-line {
      margin: 0 0 12px;
      font-size: 19px;
      line-height: 1.45;
      font-weight: 400;
      letter-spacing: -0.3px;
      color: rgba(242, 236, 217, 0.74);
    }

    .closing-text {
      margin: 0 0 18px;
      font-size: 19px;
      line-height: 1.5;
      font-weight: 400;
      letter-spacing: -0.3px;
      color: rgba(242, 236, 217, 0.74);
    }

    .closing-text strong {
      color: #f2ecd9;
      font-weight: 600;
    }

    .offer-card {
      margin: 16px 0 0;
      padding: 46px 34px 44px;
      border-radius: 22px;
      background:
        radial-gradient(circle at 82% 8%, rgba(201, 91, 40, 0.22), rgba(201, 91, 40, 0) 48%),
        #100b08;
      border: 1px solid rgba(255, 244, 223, 0.12);
      box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
      text-align: center;
    }

    .offer-eyebrow {
      margin: 0 0 12px;
      font-size: 11px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #de7a4d;
    }

    .offer-title {
      margin: 0 auto 18px;
      max-width: 420px;
      font-family: "Big Caslon", "Big Caslon CC", Georgia, serif;
      font-size: 30px;
      line-height: 1.08;
      font-weight: 700;
      letter-spacing: -0.9px;
      color: #f2ecd9;
    }

    .offer-meta {
      margin: 0 auto 26px;
      max-width: 360px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px 10px;
    }

    .offer-tag {
      font-size: 12px;
      line-height: 1;
      font-weight: 600;
      letter-spacing: 0.01em;
      color: rgba(242, 236, 217, 0.78);
      padding: 8px 13px;
      border-radius: 999px;
      border: 1px solid rgba(242, 236, 217, 0.18);
      background: rgba(242, 236, 217, 0.04);
    }

    .offer-price {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin: 0 0 22px;
      padding: 10px 20px;
      border: 1px dashed rgba(242, 236, 217, 0.34);
      border-radius: 999px;
      font-size: 15px;
      line-height: 1;
      font-weight: 600;
      letter-spacing: -0.2px;
      color: rgba(242, 236, 217, 0.8);
    }


    .offer-price-arrow {
      font-size: 16px;
      color: #de7a4d;
      animation: priceNudge 1.6s ease-in-out infinite;
    }

    @keyframes priceNudge {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(4px); }
    }

    @media (prefers-reduced-motion: reduce) {
      .offer-price-arrow { animation: none; }
    }

    .offer-logo {
      display: block;
      width: 96px;
      height: auto;
      margin: 16px auto 0;
      opacity: 0.72;
    }

    .cta-button {
      display: inline-block;
      width: 100%;
      max-width: 340px;
      padding: 17px 28px;
      border: 0;
      border-radius: 8px;
      background: #c4571f;
      color: #fff;
      font-family: inherit;
      font-size: 17px;
      line-height: 1.1;
      font-weight: 700;
      letter-spacing: -0.2px;
      text-align: center;
      text-decoration: none;
      cursor: pointer;
      box-shadow: 0 18px 38px rgba(196, 87, 31, 0.32);
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .cta-button:hover {
      transform: translateY(-2px);
      background: #cf6030;
      box-shadow: 0 22px 46px rgba(196, 87, 31, 0.4);
    }

    .cta-whatsapp {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 16px;
      padding: 13px 22px;
      border-radius: 999px;
      border: 1px solid rgba(242, 236, 217, 0.22);
      background: transparent;
      color: #f2ecd9;
      font-size: 14.5px;
      font-weight: 600;
      letter-spacing: -0.1px;
      text-decoration: none;
      transition: border-color 0.2s ease, background 0.2s ease;
    }

    .cta-whatsapp:hover {
      border-color: rgba(222, 122, 77, 0.6);
      background: rgba(222, 122, 77, 0.08);
    }

    .cta-whatsapp.is-solid {
      background: #c4571f;
      color: #fff;
      border-color: transparent;
      box-shadow: 0 10px 26px rgba(196, 87, 31, 0.28);
      transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    }

    .cta-whatsapp.is-solid:hover {
      transform: translateY(-2px);
      background: #cf6030;
      border-color: transparent;
      box-shadow: 0 14px 32px rgba(196, 87, 31, 0.34);
    }

    .cta-whatsapp.is-solid svg { flex: 0 0 auto; }

    @media (prefers-reduced-motion: reduce) {
      .cta-whatsapp.is-solid:hover { transform: none; }
    }

    .offer-result { margin: 0 0 22px; font-size: 16.5px; line-height: 1.5; color: rgba(255, 244, 223, 0.82); }
    .offer-result strong { color: #fff4df; font-weight: 700; }

    .offer-cert {
      margin: 26px auto 0;
      max-width: 380px;
      font-size: 15px;
      line-height: 1.45;
      font-weight: 500;
      color: rgba(242, 236, 217, 0.52);
    }

    /* =========================
       RESPONSIVE — SECCIONES NUEVAS
    ========================= */

    @media (max-width: 700px) {
      .teacher-container {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .teacher-photo {
        max-width: 320px;
        margin: 0 auto;
      }

      .reviews-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 600px) {
      .teacher-container,
      .reviews-container,
      .faq-container,
      .closing-container {
        padding-left: 36px;
        padding-right: 36px;
      }

      .reviews-title {
        font-size: 33px;
      }

      .faq-title {
        font-size: 36px;
      }

      .faq-title-hand {
        font-size: 30px;
      }

      .offer-card {
        padding: 30px 22px 30px;
      }
    }

    @media (max-width: 420px) {
      .teacher-container,
      .reviews-container,
      .faq-container,
      .closing-container {
        padding-left: 30px;
        padding-right: 30px;
      }

      .faq-q {
        font-size: 17px;
        padding: 16px 0;
      }

      .faq-answer {
        padding: 0 0 18px;
      }

      .closing-doubt-lead {
        font-size: 26px;
      }

      .offer-title {
        font-size: 26px;
      }
    }
    /* ---- Comunidad / Instagram (cierre) ---- */
    .ig-section {
      position: relative;
      width: 100%;
      padding: 92px 0 104px;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0) 130px),
        #0c0c0c;
      color: #f2ecd9;
    }

    .ig-head {
      width: 100%;
      max-width: 560px;
      margin: 0 auto 40px;
      padding: 0 44px;
      text-align: center;
    }

    .ig-title {
      margin: 0 0 12px;
      font-family: "Big Caslon", "Big Caslon CC", Georgia, serif;
      font-size: 34px;
      line-height: 1.06;
      font-weight: 700;
      letter-spacing: -1px;
      color: #fff4df;
    }

    .ig-sub {
      margin: 0 auto 22px;
      max-width: 440px;
      font-size: 16px;
      line-height: 1.5;
      font-weight: 400;
      color: rgba(242, 236, 217, 0.72);
    }

    .ig-handle {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 11px 20px;
      border-radius: 999px;
      border: 1px solid rgba(222, 122, 77, 0.45);
      background: rgba(222, 122, 77, 0.08);
      color: #fff4df;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: -0.2px;
      text-decoration: none;
      transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    }

    .ig-handle svg { width: 19px; height: 19px; color: #de7a4d; flex: 0 0 auto; }

    .ig-handle:hover {
      transform: translateY(-2px);
      background: rgba(222, 122, 77, 0.14);
      border-color: rgba(222, 122, 77, 0.7);
    }

    .ig-marquee {
      width: 100%;
      -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
      mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    }

    .ig-track {
      display: flex;
      gap: 18px;
      padding: 8px 9px 14px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      cursor: grab;
    }
    .ig-track::-webkit-scrollbar { display: none; }
    .ig-track:active { cursor: grabbing; }
    .ig-card { scroll-snap-align: center; }

    @keyframes igScroll {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    .ig-card {
      position: relative;
      flex: 0 0 auto;
      width: 300px;
      height: 300px;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(242, 236, 217, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      background:
        radial-gradient(120% 120% at 78% 14%, rgba(201, 91, 40, 0.34), rgba(201, 91, 40, 0) 60%),
        linear-gradient(150deg, #241a14 0%, #100b08 78%);
    }

    .ig-card:nth-child(3n+2) {
      background:
        radial-gradient(120% 120% at 22% 18%, rgba(201, 91, 40, 0.26), rgba(201, 91, 40, 0) 58%),
        linear-gradient(150deg, #1c140f 0%, #0d0907 80%);
    }

    .ig-card:nth-child(3n+3) {
      background:
        radial-gradient(130% 120% at 50% 110%, rgba(201, 91, 40, 0.3), rgba(201, 91, 40, 0) 62%),
        linear-gradient(160deg, #20160f 0%, #0c0807 82%);
    }

    .ig-card svg { width: 34px; height: 34px; color: rgba(255, 244, 223, 0.28); }

    a.ig-card { text-decoration: none; }

    .ig-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .ig-card-tag {
      position: absolute;
      bottom: 12px;
      left: 13px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: rgba(255, 244, 223, 0.4);
    }

    @media (prefers-reduced-motion: reduce) {
      .ig-track { animation: none; }
    }

    @media (max-width: 520px) {
      .ig-title { font-size: 28px; }
      .ig-card { width: 230px; height: 230px; }
    }

    .site-footer {
      width: 100%;
      padding: 34px 24px 44px;
      text-align: center;
      font-size: 14px;
      line-height: 1.5;
      letter-spacing: 0.04em;
      color: rgba(242, 236, 217, 0.42);
      background: #0c0c0c;
    }

    /* Scroll reveal sutil: el contenido asoma (sube 20px y aparece) al entrar en pantalla */
    .rv { opacity: 0; transform: translateY(9px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .rv.is-vis { opacity: 1; transform: none; }
    @media (prefers-reduced-motion: reduce) {
      .rv { opacity: 1 !important; transform: none !important; transition: none !important; }
    }


/* ===== Temario forense: cabecera + panel desplegable ===== */
/* Desktop: el panel queda siempre visible (carrusel con cards expandidas) */
.content-cover-head .content-number { display: inline-block; margin-bottom: 14px; }
.cover-panel { width: 100%; }

/* ===== Mobile (≤760px): el temario se apila como acordeón, sin carrusel ===== */
@media (max-width: 760px) {
  .contents-scroll {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 34px;
    padding: 8px 10px 4px;
    overflow-x: visible;
    scroll-snap-type: none;
    cursor: default;
    min-height: 0 !important;
  }
  .contents-scroll::before,
  .contents-scroll::after { display: none; }

  .content-cover {
    flex: none;
    width: 100%;
    min-height: 0;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    cursor: pointer;
  }
  .content-cover-inner { min-height: 0; padding: 24px 22px 24px; }
  .content-ghost { display: none; }

  /* la cabecera es tocable y muestra un + que indica que se despliega */
  .content-cover-head { cursor: pointer; position: relative; padding-right: 36px; }
  .content-cover-head::after {
    content: "+";
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 26px;
    font-weight: 400;
    line-height: 1;
    color: #de7a4d;
    transition: transform 0.3s ease;
  }
  .content-cover.is-open .content-cover-head::after { transform: translateY(-50%) rotate(45deg); }

  /* panel colapsable */
  .cover-panel {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s cubic-bezier(.22, .61, .36, 1);
  }
  .cover-panel .content-desc,
  .cover-panel .content-list { opacity: 0; transition: opacity 0.35s ease 0.06s; }
  .content-cover.is-open .content-desc,
  .content-cover.is-open .content-list { opacity: 1; }

  /* sin flechas, dots ni "deslizá" en mobile */
  .contents-section .car-nav { display: none; }
  .contents-hint { display: none; }
  .car-arrow-side { display: none !important; }

  /* hilo de continuidad entre cards apiladas */
  .content-cover + .content-cover { position: relative; }
  .content-cover + .content-cover::before {
    content: "";
    position: absolute;
    top: -34px;
    left: 50%;
    transform: translateX(-50%);
    width: 1.5px;
    height: 34px;
    border-radius: 2px;
    background: linear-gradient(180deg, rgba(222,122,77,0.05), rgba(222,122,77,0.35) 50%, rgba(222,122,77,0.05));
  }
}


/* ===== Cursado: layout claro y guiado ===== */
.cur-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 760px;
  margin: 38px auto 0;
}
.cur-stat {
  flex: 1 1 150px;
  min-width: 138px;
  background: rgba(242, 236, 217, 0.05);
  border: 1px solid rgba(242, 236, 217, 0.12);
  border-radius: 14px;
  padding: 18px 14px;
  text-align: center;
}
.cur-stat-num {
  display: block;
  font-family: "Big Caslon", "Big Caslon CC", Georgia, serif;
  font-size: 28px;
  line-height: 1.05;
  font-weight: 700;
  color: #de7a4d;
}
.cur-stat-lbl {
  display: block;
  margin-top: 8px;
  font-size: 13.5px;
  line-height: 1.3;
  color: rgba(242, 236, 217, 0.7);
}

.cur-h3 {
  max-width: 680px;
  margin: 52px auto 20px;
  font-family: Inter, "Neue Haas Grotesk Display", "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #fff4df;
  text-align: center;
}

.cur-steps {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 620px;
  display: grid;
  gap: 14px;
}
.cur-steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(242, 236, 217, 0.04);
  border: 1px solid rgba(242, 236, 217, 0.10);
  border-radius: 14px;
  padding: 16px 18px;
}
.cur-step-n {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #de7a4d;
  color: #1a1712;
  font-weight: 800;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cur-step-tx {
  font-size: 15.5px;
  line-height: 1.5;
  color: rgba(242, 236, 217, 0.82);
}
.cur-step-tx strong { color: #fff4df; font-weight: 700; }

.cur-timeline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 740px;
  margin: 0 auto;
}
.cur-mo {
  flex: 0 0 auto;
  width: 80px;
  background: rgba(242, 236, 217, 0.05);
  border: 1px solid rgba(242, 236, 217, 0.12);
  border-radius: 12px;
  padding: 11px 6px;
  text-align: center;
}
.cur-mo.is-first { border-color: rgba(222, 122, 77, 0.55); background: rgba(222, 122, 77, 0.10); }
.cur-mo-name {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff4df;
}
.cur-mo-cls {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #de7a4d;
}
.cur-mo-cls small {
  display: block;
  margin-top: 2px;
  font-size: 10.5px;
  font-weight: 400;
  color: rgba(242, 236, 217, 0.55);
}
.cur-cap {
  max-width: 560px;
  margin: 16px auto 0;
  text-align: center;
  font-size: 13.5px;
  line-height: 1.45;
  color: rgba(242, 236, 217, 0.6);
}

.cur-ways {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}
.cur-way {
  flex: 1 1 300px;
  background: rgba(242, 236, 217, 0.04);
  border: 1px solid rgba(242, 236, 217, 0.12);
  border-radius: 16px;
  padding: 22px 22px 24px;
}
.cur-way.is-full {
  border-color: rgba(222, 122, 77, 0.5);
  background: rgba(222, 122, 77, 0.07);
}
.cur-way-tag {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #de7a4d;
}
.cur-way p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(242, 236, 217, 0.82);
}

.cur-notes {
  display: grid;
  gap: 14px;
  max-width: 680px;
  margin: 0 auto;
}
.cur-note {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  justify-content: center;
}
.cur-note svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: #de7a4d;
  margin-top: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cur-note p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(242, 236, 217, 0.5);
}
.cur-note strong { color: #fff4df; font-weight: 700; }

.cur-foot {
  max-width: 620px;
  margin: 38px auto 0;
  text-align: center;
  font-size: 15px;
  color: rgba(242, 236, 217, 0.7);
}
.cur-foot a { color: #de7a4d; font-weight: 600; }

@media (max-width: 600px) {
  .cur-stat { flex-basis: calc(50% - 7px); min-width: 0; }
  .cur-mo { width: calc(33.333% - 7px); }
  .cur-h3 { font-size: 19px; margin-top: 44px; }
}


/* ===== Cursado v2: línea de tiempo vertical, simple y legible ===== */
.cur-flow {
  list-style: none;
  margin: 40px auto 0;
  padding: 0;
  max-width: 600px;
}
.cur-flow-step {
  position: relative;
  display: flex;
  gap: 20px;
  padding-bottom: 30px;
}
.cur-flow-step:last-child { padding-bottom: 0; }
/* línea que conecta los pasos */
.cur-flow-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: -2px;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(222, 122, 77, 0.55), rgba(222, 122, 77, 0.12));
}
.cur-flow-mark {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #de7a4d;
  color: #1a1712;
  font-weight: 800;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cur-flow-body { padding-top: 5px; }
.cur-flow-title {
  margin: 0 0 7px;
  font-family: Inter, "Neue Haas Grotesk Display", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #fff4df;
}
.cur-flow-body p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(242, 236, 217, 0.78);
}

/* separación de las notas respecto de la línea de tiempo */
.cur-notes { margin-top: 44px; }


/* ===== Cursado v3: recorrido con íconos + etiqueta de fecha ===== */
.cur-flow { max-width: 580px; margin: 46px auto 0; }
.cur-flow-step { gap: 22px; padding-bottom: 36px; }
.cur-flow-step:not(:last-child)::before {
  left: 22px;
  top: 50px;
  bottom: -4px;
  background: linear-gradient(180deg, rgba(222, 122, 77, 0.5), rgba(222, 122, 77, 0.08));
}
.cur-flow-icon {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(222, 122, 77, 0.12);
  border: 1px solid rgba(222, 122, 77, 0.45);
  color: #de7a4d;
}
.cur-flow-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cur-flow-body { padding-top: 1px; }
.cur-flow-date {
  display: inline-block;
  margin-bottom: 7px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #de7a4d;
}
.cur-flow-title {
  margin: 0 0 7px;
  font-size: 18.5px;
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #fff4df;
}
.cur-flow-body p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(242, 236, 217, 0.74);
}


/* Subrayado a mano de "Cursado": un poco más abajo */
.modality-title .hand-underline::after { bottom: -0.16em; }


/* ===== Cursado: recordatorio destacado de la fecha de inicio ===== */
.cur-start {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 14px 26px 14px 20px;
  border-radius: 16px;
  background: rgba(222, 122, 77, 0.12);
  border: 1px solid rgba(222, 122, 77, 0.5);
}
.cur-start-ico {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #de7a4d;
  color: #1a1712;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cur-start-ico svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cur-start-tx { display: flex; flex-direction: column; }
.cur-start-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #de7a4d;
}
.cur-start-date {
  margin-top: 3px;
  font-family: Inter, "Neue Haas Grotesk Display", "Helvetica Neue", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: #fff4df;
}

/* flecha a mano + nota manuscrita que sale del recuadro */
.cur-start-wrap { width: fit-content; max-width: 100%; margin: 0 auto; }
.cur-start-callout {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  margin-top: 0;
}
.cur-start-arrow {
  flex: 0 0 auto;
  width: 50px;
  height: auto;
  margin-top: 12px;
}
.cur-start-hand {
  margin: 58px 0 0;
  max-width: 215px;
  font-family: "Caveat", "Kalam", cursive;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 600;
  text-align: left;
  color: #de7a4d;
  transform: rotate(2deg);
}


/* ===== Cursado v4: recorrido guiado paso a paso (wizard) ===== */
.cur-wizard {
  max-width: 600px;
  margin: 44px auto 0;
  background: rgba(242, 236, 217, 0.04);
  border: 1px solid rgba(242, 236, 217, 0.12);
  border-radius: 18px;
  padding: 26px 28px;
}
.cur-wizard-prog { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.cur-wizard-bar { flex: 1; height: 4px; border-radius: 999px; background: rgba(242, 236, 217, 0.14); overflow: hidden; }
.cur-wizard-bar span {
  display: block;
  height: 100%;
  width: 33.33%;
  border-radius: 999px;
  background: #de7a4d;
  transition: width 0.45s cubic-bezier(.22, .61, .36, 1);
}
.cur-wizard-count { flex: 0 0 auto; font-size: 13px; font-weight: 700; color: rgba(242, 236, 217, 0.55); font-variant-numeric: tabular-nums; }
.cur-wizard-count b { color: #de7a4d; }

.cur-wizard-stage { position: relative; min-height: 168px; }
.cur-wizard-slide { display: none; gap: 20px; align-items: flex-start; }
.cur-wizard-slide.is-active { display: flex; animation: curWizFade 0.45s ease; }
@keyframes curWizFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.cur-wizard-nav { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 24px; }
.cur-wizard-dots { display: flex; gap: 8px; }
.cur-wiz-dot { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 999px; background: rgba(242, 236, 217, 0.25); cursor: pointer; transition: width 0.3s ease, background 0.3s ease; }
.cur-wiz-dot.is-active { width: 22px; background: #de7a4d; }
.cur-wiz-btn {
  border: 0;
  border-radius: 999px;
  padding: 11px 20px;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  background: #de7a4d;
  color: #1a1712;
  transition: opacity 0.2s ease, background 0.2s ease, transform 0.12s ease;
}
.cur-wiz-btn.is-ghost { background: transparent; border: 1px solid rgba(242, 236, 217, 0.3); color: #f2ecd9; }
.cur-wiz-btn:hover:not(:disabled) { transform: translateY(-1px); }
.cur-wiz-btn:disabled { opacity: 0.3; cursor: default; }

@media (max-width: 600px) {
  .cur-wizard { padding: 22px 18px; }
  .cur-wiz-btn { padding: 10px 15px; font-size: 13px; }
}


/* separación entre párrafos dentro de un paso del recorrido */
.cur-flow-body p + p { margin-top: 11px; }


/* Cursado: letra un poco más grande y más aire para lectura cómoda */
.cur-flow { max-width: 624px; }
.cur-flow-step { gap: 24px; padding-bottom: 74px; }
.cur-flow-date { font-size: 12px; margin-bottom: 9px; }
.cur-flow-body p { font-size: 17px; line-height: 1.68; color: rgba(242, 236, 217, 0.8); }
.cur-flow-body p + p { margin-top: 15px; }


/* Cursado: animación sutil de los íconos del recorrido */
@keyframes curIconPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(222, 122, 77, 0); transform: scale(1); }
  50% { box-shadow: 0 0 0 11px rgba(222, 122, 77, 0.16); transform: scale(1.05); }
}
.cur-flow-icon {
  animation: curIconPulse 3s ease-in-out infinite;
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}
.cur-flow-step:nth-child(2) .cur-flow-icon { animation-delay: 1.2s; }
.cur-flow-step:nth-child(3) .cur-flow-icon { animation-delay: 2.4s; }
.cur-flow-step:hover .cur-flow-icon {
  transform: scale(1.08);
  background: rgba(222, 122, 77, 0.18);
  border-color: rgba(222, 122, 77, 0.7);
}
@media (prefers-reduced-motion: reduce) {
  .cur-flow-icon { animation: none; }
}


/* más aire entre el recuadro de inicio (con la nota) y el recorrido */
.cur-flow { margin-top: 74px; }


/* ===== Certificado: misma integración con el fondo que Cientificidad =====
   Una capa replica el fondo de la sección y se enmascara desde abajo, de modo
   que el certificado parece emerger desde la base de la sección. */
.cert-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background:
    radial-gradient(100% 115% at 72% 48%, rgba(255, 228, 192, 0.28) 0%, rgba(255, 228, 192, 0) 54%),
    #c4571f;
  -webkit-mask-image: linear-gradient(to top, #000 0px, #000 150px, rgba(0,0,0,0.85) 230px, rgba(0,0,0,0.35) 330px, transparent 430px);
  mask-image: linear-gradient(to top, #000 0px, #000 150px, rgba(0,0,0,0.85) 230px, rgba(0,0,0,0.35) 330px, transparent 430px);
}
.cert-copy { position: relative; z-index: 6; }

@media (max-width: 760px) {
  .cert-section::after {
    -webkit-mask-image: linear-gradient(to top, #000 0px, #000 95px, rgba(0,0,0,0.65) 150px, rgba(0,0,0,0.22) 215px, transparent 280px);
    mask-image: linear-gradient(to top, #000 0px, #000 95px, rgba(0,0,0,0.65) 150px, rgba(0,0,0,0.22) 215px, transparent 280px);
  }
}


/* ===== Barra inferior: contador regresivo dentro del área de mensaje (izquierda) ===== */
.cta-timer[hidden] { display: none !important; }

.cta-timer {
  display: flex;
  flex-direction: column;
  line-height: 1.16;
  margin-top: 2px;
}
.cta-timer-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ffe3d4;
}
.cta-timer-clock {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  color: #fff;
}
@media (max-width: 480px) {
  .cta-timer-clock { font-size: 18px; }
}


/* Nota orientativa al inicio del temario */
.contents-note {
  max-width: 540px;
  margin: 20px auto 0;
  text-align: left;
  padding-left: 18px;
  border-left: 2px solid rgba(222, 122, 77, 0.55);
}
.contents-note p {
  margin: 0 0 11px;
  font-size: 15px;
  line-height: 1.62;
  font-weight: 400;
  letter-spacing: -0.1px;
  color: rgba(242, 236, 217, 0.62);
}
.contents-note p:last-child { margin-bottom: 0; }
.contents-note strong { font-weight: 600; color: rgba(242, 236, 217, 0.9); }


/* Cursado: recorrido alineado a la izquierda */
.cur-flow-body,
.cur-flow-body p,
.cur-flow-date { text-align: left; }

/* ===== Bloque de inversión (precio a la vista) en la sección de cierre ===== */
.offer-invest {
  margin: 4px 0 26px;
  text-align: left;
  border: 1px solid rgba(242, 236, 217, 0.14);
  border-radius: 16px;
  padding: 22px 22px 20px;
  background: rgba(242, 236, 217, 0.03);
}
.offer-invest-eyebrow {
  margin: 0 0 16px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #de7a4d;
}
.offer-invest-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.offer-invest-label { font-size: 15px; color: rgba(242, 236, 217, 0.72); }
.offer-invest-amt { font-size: 27px; font-weight: 800; color: #fff4df; line-height: 1.1; }
.offer-invest-amt-sm { font-size: 20px; }
.offer-invest-note { margin: 5px 0 0; font-size: 12.5px; line-height: 1.4; color: rgba(242, 236, 217, 0.5); }
.offer-invest-item-2 { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(242, 236, 217, 0.12); }

/* Bloque Inversión en mobile: apilar label y monto (el monto largo no se parte raro) */
@media (max-width: 600px) {
  .offer-invest { padding: 20px 18px 18px; }
  .offer-invest-row { flex-direction: column; align-items: flex-start; gap: 2px; }
  .offer-invest-amt { font-size: 25px; }
  .offer-invest-amt-sm { font-size: 20px; }
  .offer-invest-note { margin-top: 6px; }
}


/* ===== Tarjeta final: pregunta + botón secundario de consulta + modal ===== */
.offer-help-q { margin: 26px 0 0; font-size: 14.5px; font-weight: 700; color: rgba(242, 236, 217, 0.82); }
.cta-whatsapp.is-secondary { margin-top: 14px; padding: 9px 18px; font-size: 13px; font-weight: 600; color: rgba(242, 236, 217, 0.72); border-color: rgba(242, 236, 217, 0.16); }
.wa-modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 24px; background: rgba(0, 0, 0, 0.72); }
.wa-modal[hidden] { display: none; }
.wa-modal-box { max-width: 420px; width: 100%; background: #15130f; border: 1px solid rgba(242, 236, 217, 0.16); border-radius: 18px; padding: 28px 26px; text-align: center; }
.wa-modal-title { font-size: 20px; font-weight: 800; color: #f2ecd9; margin: 0 0 12px; }
.wa-modal-text { font-size: 15px; line-height: 1.55; color: rgba(242, 236, 217, 0.8); margin: 0 0 12px; }
.wa-modal-primary { display: block; width: 100%; margin: 18px 0 0; padding: 15px; border: 0; border-radius: 12px; background: #c4571f; color: #fff; font-family: inherit; font-size: 15px; font-weight: 800; cursor: pointer; transition: background 0.2s ease; }
.wa-modal-primary:hover { background: #cf6030; }
.wa-modal-go { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; margin: 12px 0 0; padding: 13px; border-radius: 12px; border: 1px solid rgba(242, 236, 217, 0.28); color: #f2ecd9; font-size: 14.5px; font-weight: 700; text-decoration: none; transition: border-color 0.2s ease, background 0.2s ease; }
.wa-modal-go:hover { border-color: rgba(37, 211, 102, 0.7); background: rgba(37, 211, 102, 0.1); }

/* Puntito de estado alineado con la primera línea ("Inscripciones abiertas") */
.cta-status { align-items: flex-start; }
.cta-dot { margin-top: 4px; }


/* Mobile: la línea naranja centrada en el hueco entre las dos secciones.
   El aire de arriba lo dan los paddings de las dos secciones, y el de abajo
   el margen de la línea. Para que quede centrada, tienen que sumar lo mismo.
   Ojo: los paddings NO pueden ser 0, porque los degradados de fondo de cada
   sección se pegan y se ve una costura horizontal. */
@media (max-width: 640px) {
  .intro-section { padding-bottom: 44px; }
  .program-section { padding-top: 44px; }
  .program-divider { margin: 0 auto 88px; }
}


/* Carrusel de reseñas: barra de progreso en lugar de un montón de puntitos */
.reviews-dots { display: none !important; }

.rev-progress { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 26px; }
.rev-progress-bar { position: relative; width: min(240px, 52%); height: 3px; border-radius: 999px; background: rgba(242, 236, 217, 0.14); overflow: hidden; }
.rev-progress-fill { position: absolute; inset: 0 auto 0 0; width: 3%; border-radius: 999px; background: #de7a4d; transition: width 0.25s ease; }
.rev-count { font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; color: rgba(242, 236, 217, 0.5); font-variant-numeric: tabular-nums; min-width: 48px; }
