/* ============================================================
   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 { 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 {
        padding: 15px 22px calc(15px + env(safe-area-inset-bottom));
        gap: 14px;
      }

      .sticky-cta-text {
        font-size: 13px;
      }

      .sticky-cta-btn {
        padding: 11px 16px;
        font-size: 14px;
      }
    }

    @media (max-width: 420px) {
      .sticky-cta-inner {
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 9px;
        padding: 13px 18px calc(13px + env(safe-area-inset-bottom));
      }

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

      .sticky-cta-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
      }
    }

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

    .intro-section {
      width: 100%;
      min-height: 100vh;
      padding: 48px 0 44px;
      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.03;
      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 26px;
      font-size: 22px;
      line-height: 1.35;
      font-weight: 400;
      letter-spacing: -0.44px;
      color: rgba(237, 230, 218, 0.65);
    }

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

    .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: 92px 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: 40px auto 34px; 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;
    }

    .program-title {
      margin: 0 auto 34px;
      max-width: 660px;
      font-family: Inter, "Neue Haas Grotesk Display", "Helvetica Neue", Arial, sans-serif;
      font-size: 38px;
      line-height: 1.06;
      font-weight: 800;
      letter-spacing: -1.7px;
      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: 26px 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 38px;
    }

    .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: 30px; }
    }

    /* =========================
       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 46px;
      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: 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 mandatory;
      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 - 155px);
    }

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

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

    .content-cover {
      flex: 0 0 300px;
      min-height: 290px;
      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: 26px 26px 30px;
      display: flex;
      flex-direction: column;
      border-radius: 12px;
      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: 16px;
    }

    .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: auto 0 0;
      padding-top: 16px;
      font-family: "Big Caslon", "Big Caslon CC", Georgia, serif;
      font-size: 26px;
      line-height: 1.14;
      font-weight: 700;
      letter-spacing: -0.5px;
      color: #fff4df;
    }

    .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: 12px;
    }

    .content-list li {
      position: relative;
      padding-left: 18px;
      font-size: 16px;
      line-height: 1.45;
      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: 42px; height: 42px; flex-shrink: 0; border-radius: 999px; border: 1px solid rgba(242, 236, 217, 0.22); background: rgba(242, 236, 217, 0.05); color: #f2ecd9; cursor: pointer; 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.08); }
    .car-arrow:active { transform: scale(0.94); }
    .car-arrow svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .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: 34px;
        line-height: 1.08;
        letter-spacing: -1.4px;
      }

      .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: calc(50vw - 145px);
      }

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

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

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

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

      .sticky-brand-inner {
        padding: 13px 26px 12px;
      }

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

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

      .intro-section {
        min-height: auto;
        padding: 46px 0 50px;
        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: 24px;
        text-align: center;
        margin-bottom: 28px;
      }

      .program-title {
        font-size: 39px;
        line-height: 1.05;
        letter-spacing: -1.4px;
        text-align: center;
        margin-bottom: 30px;
      }

      .program-description {
        font-size: 19px;
        line-height: 1.45;
        text-align: center;
        margin-bottom: 56px;
      }

      .program-bands {
        gap: 10px;
      }

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

      .contents-header {
        text-align: center;
        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: 12px 14px 11px;
        gap: 6px;
      }

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

      .intro-section {
        padding: 40px 0 44px;
      }

      .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.32), rgba(0, 0, 0, 0) 130px),
        linear-gradient(0deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0) 130px);
      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: rgba(242, 236, 217, 0.66);
    }

    .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: 80px 0 84px;
      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 - 250px));
    }

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

    .rev-slide img {
      display: block;
      max-height: 460px;
      width: auto;
      max-width: 84vw;
      transform: scale(0.58);
      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 { max-height: 430px; }
    }

    /* =========================
       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.42s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .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);
    }

    .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: 8px 0 104px;
      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: 36px 30px 34px;
      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 5%, #000 95%, transparent);
      mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, 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(8px); transition: opacity 0.5s ease, transform 0.5s ease; }
    .rv.is-vis { opacity: 1; transform: none; }
    @media (prefers-reduced-motion: reduce) {
      .rv { opacity: 1 !important; transform: none !important; transition: none !important; }
    }


/* ===== Apertura (agregado para este curso):
   tipografía blanca y más aire entre los elementos ===== */
.intro-section .intro-title,
.intro-section .intro-text { color: #ffffff; }
.intro-section .intro-title { margin-bottom: 64px; }
.intro-section .intro-text { margin-bottom: 44px; line-height: 1.5; }
.intro-section .intro-text:last-child { margin-bottom: 0; }


/* ===== Sección naranja intermedia (agregado para este curso) ===== */
.statement-line {
  margin: 0 0 30px;
  text-align: center;
  font-family: "Big Caslon", "Big Caslon CC", Georgia, serif;
  font-size: 32px;
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: -0.8px;
  color: #fff4df;
}
.statement-line:last-child { margin-bottom: 0; }
.statement-strong {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1.2px;
}
@media (max-width: 520px) {
  .statement-line { font-size: 26px; }
  .statement-strong { font-size: 31px; }
}


/* ===== Ajustes (agregado para este curso) ===== */

/* El separador entre la apertura y "No están preguntando..." queda
   centrado entre ambos textos: mismo aire arriba y abajo de la línea */
.intro-section { padding-bottom: 96px; }
.awareness-section { padding-top: 96px; }

/* Sección naranja: menos alto, color plano (sin brillos claros) */
.situations-section {
  padding: 58px 0 62px;
  background: #c4571f;
}
.situations-section::before,
.situations-section::after { display: none; }


/* La sección "No están preguntando..." ya no ocupa una pantalla entera:
   su alto lo define el texto, con un cierre compacto antes de la naranja */
.awareness-section { min-height: 0; padding-bottom: 84px; }
.awareness-section .awareness-lead:last-of-type { margin-bottom: 0; }


/* Kicker "Por eso diseñamos..." un poco más chico */
.program-kicker { font-size: 24px; }
@media (max-width: 520px) {
  .program-kicker { font-size: 20px; }
}


/* Nombre del curso más grande */
.program-title { font-size: 46px; max-width: 720px; }
@media (max-width: 900px) {
  .program-title { font-size: 38px; }
}
@media (max-width: 520px) {
  .program-title { font-size: 33px; }
}


/* Sección del programa: cierre más compacto (quedó corta al sacar los módulos) */
.program-section { padding-bottom: 64px; min-height: 0; }
.program-description { margin-bottom: 0; }


/* Línea divisoria centrada entre la bajada del curso y "Los temas que vamos a trabajar" */
.program-section { padding-bottom: 80px; }
.contents-section { padding-top: 80px; }


/* ===== Cards del temario con título + ítems (agregado para este curso) ===== */

/* Todas las cards toman la altura de la más alta y se alinean parejas */
.contents-scroll { align-items: stretch; }

.content-cover {
  flex: 0 0 360px;
  min-height: 0;
}
.contents-scroll::before,
.contents-scroll::after { flex: 0 0 calc(50vw - 186px); }

/* El título sube al tope de la card (antes vivía abajo) */
.content-cover-title {
  margin: 0 0 18px;
  font-size: 21.5px;
  line-height: 1.2;
}

/* Lista de ítems: chica, aireada y escaneable */
.content-cover-list {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.content-cover-list li {
  position: relative;
  padding-left: 17px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.1px;
  color: rgba(242, 236, 217, 0.78);
}
.content-cover-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 2px;
  border-radius: 2px;
  background: #de7a4d;
}

@media (max-width: 900px) {
  .content-cover { flex-basis: 330px; }
  .contents-scroll::before,
  .contents-scroll::after { flex-basis: calc(50vw - 171px); }
  .content-cover-title { font-size: 20px; }
}
@media (max-width: 520px) {
  .content-cover { flex-basis: 302px; min-height: 0; }
  .contents-scroll::before,
  .contents-scroll::after { flex-basis: calc(50vw - 157px); }
  .content-cover-title { font-size: 19px; }
  .content-cover-list li { font-size: 13.5px; }
  .content-cover-inner { padding: 22px 20px 24px; }
}


/* Mobile: las cards del temario ocupan casi todo el ancho de la pantalla */
@media (max-width: 520px) {
  .content-cover { flex-basis: calc(100vw - 48px); }
  .contents-scroll { gap: 16px; }
  .contents-scroll::before,
  .contents-scroll::after { flex-basis: 24px; }
  .content-cover-list li { font-size: 14px; }
}


/* Card destacada del temario (Punto 05) */
.content-cover.is-featured .content-cover-inner {
  border-color: rgba(222, 122, 77, 0.5);
  background:
    radial-gradient(circle at 82% 10%, rgba(201, 91, 40, 0.34), rgba(201, 91, 40, 0) 46%),
    linear-gradient(180deg, rgba(222, 122, 77, 0.10), rgba(242, 236, 217, 0.034)),
    #15130f;
  box-shadow: 0 34px 82px rgba(0, 0, 0, 0.36), 0 0 0 1px rgba(222, 122, 77, 0.18), 0 0 38px rgba(222, 122, 77, 0.10);
}
.content-cover.is-featured.is-active .content-cover-inner {
  border-color: rgba(222, 122, 77, 0.72);
  box-shadow: 0 42px 96px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(222, 122, 77, 0.30), 0 0 46px rgba(222, 122, 77, 0.16);
}
.content-cover.is-featured .content-ghost { color: rgba(222, 122, 77, 0.20); }


/* ===== Temario: cards apaisadas (titulo izquierda, items derecha) ===== */

.content-cover { flex: 0 0 min(860px, calc(100vw - 96px)); }
.contents-scroll::before,
.contents-scroll::after { flex: 0 0 calc(50vw - min(430px, 50vw - 48px) - 0px); }

.content-cover-inner {
  flex-direction: row;
  align-items: flex-start;
  gap: 34px;
  padding: 30px 34px 32px;
}

.content-cover-head {
  position: relative;
  z-index: 2;
  flex: 0 0 36%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.content-cover-title { margin: 0; font-size: 23px; line-height: 1.18; }

.content-cover-list {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 26px;
  row-gap: 12px;
  align-content: start;
}
.content-cover-list li { font-size: 13.5px; line-height: 1.5; }

/* el numero fantasma queda detras de la columna izquierda */
.content-ghost { right: auto; left: 18px; top: auto; bottom: 4px; font-size: 110px; }

@media (max-width: 760px) {
  .content-cover { flex: 0 0 calc(100vw - 48px); }
  .contents-scroll { gap: 16px; }
  .contents-scroll::before,
  .contents-scroll::after { flex: 0 0 24px; }

  /* en mobile: titulo arriba, items abajo en una columna */
  .content-cover-inner {
    flex-direction: column;
    gap: 18px;
    padding: 24px 22px 26px;
  }
  .content-cover-head { flex: none; gap: 12px; }
  .content-cover-title { font-size: 20px; }
  .content-cover-list { grid-template-columns: 1fr; row-gap: 10px; }
  .content-cover-list li { font-size: 14px; }
  .content-ghost { left: auto; right: 14px; bottom: auto; top: 8px; font-size: 92px; }
}


/* ===== Temario: cards colapsables (titulo + boton "ver los temas") ===== */

.contents-scroll { align-items: flex-start; }

.content-cover-inner {
  flex-direction: column;
  gap: 0;
  padding: 26px 30px 26px;
}

.content-cover-head {
  flex: none;
  width: 100%;
  gap: 12px;
}

.content-ghost { left: auto; right: 18px; top: 6px; bottom: auto; font-size: 104px; }

.cover-toggle {
  margin-top: 14px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(222, 122, 77, 0.10);
  border: 1px solid rgba(222, 122, 77, 0.45);
  color: #de7a4d;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 11.5px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.cover-toggle:hover { background: rgba(222, 122, 77, 0.20); border-color: rgba(222, 122, 77, 0.7); }
.cover-toggle-sign {
  font-size: 15px;
  line-height: 1;
  transition: transform 0.3s ease;
}
.content-cover.is-open .cover-toggle-sign { transform: rotate(45deg); }

.cover-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s cubic-bezier(.22, .61, .36, 1);
}
.content-cover-list { padding-top: 24px; }

@media (max-width: 760px) {
  .content-cover-inner { padding: 22px 22px 24px; }
}



/* Mobile: carrusel del temario, card más prolija */
@media (max-width: 760px) {
  .content-cover-inner { padding: 22px 22px 22px; }
  .content-ghost { font-size: 72px; top: 12px; right: 16px; opacity: 0.8; }
  .content-cover-title { font-size: 19px; }
  .cover-toggle { margin-top: 12px; }
}


/* ===== Temario: proporción de tarjeta (más compacta y vertical) ===== */

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

/* la card colapsada tiene una altura pareja, con el botón apoyado abajo */
.content-cover-inner { min-height: 285px; }
.content-cover-head {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cover-toggle { margin-top: auto; }
.content-cover-title { font-size: 22px; margin-bottom: 22px; }

/* al desplegarse, los temas van en una sola columna */
.content-cover-list { grid-template-columns: 1fr; }

.content-ghost { font-size: 96px; top: 10px; right: 18px; }

@media (max-width: 760px) {
  .content-cover { flex: 0 0 calc(100vw - 96px); }
  .contents-scroll { gap: 20px; }
  .contents-scroll::before,
  .contents-scroll::after { flex: 0 0 48px; }
  .content-cover-inner { min-height: 250px; }
  .content-cover-title { font-size: 19.5px; }
  .content-ghost { font-size: 72px; }
}


/* ===== Temario: card compacta al cerrar, despliegue completo al abrir ===== */

/* 1) botón pegado al título: la card cerrada abraza su contenido */
.content-cover-inner { min-height: 0; }
.content-cover-head { flex: none; }
.cover-toggle { margin-top: 18px; }
.content-cover-title { margin-bottom: 0; }

/* 2) al abrir, la card no se escala: así nada se recorta */
.content-cover.is-open,
.content-cover.is-open.is-active { transform: scale(1) !important; }
.contents-scroll { padding-top: 26px; padding-bottom: 30px; }

/* 3) ítems aireados y escaneables */
.content-cover-list {
  padding-top: 22px;
  row-gap: 14px;
}
.content-cover-list li {
  font-size: 13.5px;
  line-height: 1.6;
  padding-left: 19px;
  color: rgba(242, 236, 217, 0.82);
}
.content-cover-list li::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  top: 8px;
  background: #de7a4d;
}

@media (max-width: 760px) {
  .content-cover-inner { min-height: 0; }
  .content-cover-list li { font-size: 14px; }
}


/* ===== Temario: la card activa muestra sus temas sin boton ===== */
.cover-toggle { display: none; }

/* las cards cerradas guardan una altura pareja y prolija */
.content-cover-inner { transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.content-cover-list { padding-top: 20px; }


/* ===== Temario: animación más suave y altura estable ===== */

/* despliegue más lento y amortiguado */
.cover-panel { transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1); }

/* los ítems aparecen con un fundido sutil, apenas después de abrir */
.cover-panel .content-cover-list {
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.4s ease 0.08s, transform 0.4s ease 0.08s;
}
.content-cover.is-open .content-cover-list {
  opacity: 1;
  transform: translateY(0);
}


/* ===== Temario: flechas a los costados de la card, siempre a mano ===== */
.contents-stage { position: relative; }

.car-arrow-side {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  background: rgba(12, 12, 12, 0.74);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.car-arrow-side.is-prev { left: max(16px, calc(50% - 330px)); }
.car-arrow-side.is-next { right: max(16px, calc(50% - 330px)); }

/* los dots quedan solos abajo, un poco más cerca de la card */
.contents-section .car-nav { margin-top: 4px; }

@media (max-width: 760px) {
  /* flechitas compactas en mobile: invitan a deslizar sin ocupar espacio */
  .car-arrow-side {
    display: flex;
    width: 34px;
    height: 34px;
    min-width: 0;
    border-radius: 50%;
    background: rgba(12, 12, 12, 0.55);
    border-color: rgba(222, 122, 77, 0.45);
  }
  .car-arrow-side svg { width: 15px; height: 15px; }
  .car-arrow-side.is-prev { left: 6px; }
  .car-arrow-side.is-next { right: 6px; }
}


/* subrayado prolijo para "ilimitado" en Cursado */
.u-sub { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }


/* Cursado: más aire entre el título y el subtítulo */
.modality-title { margin-bottom: 44px; }


/* ===== Certificado: el fondo de la seccion pasa POR DELANTE de la base =====
   La capa replica exactamente el fondo de la seccion (mismo radial + color)
   y se recorta con una mascara vertical: sobre el fondo es invisible, y
   sobre el certificado lo va tapando desde abajo, como si emergiera. */
.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);
}

/* el texto y el logo de la columna izquierda quedan por encima de la capa */
.cert-copy { position: relative; z-index: 6; }

/* Mobile: el certificado es más chico, así que la capa sube menos
   y con menos intensidad para no invadir la pieza */
@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);
  }
}


/* Ítems de las cards del temario: tipografía más grande */
.content-cover-list li {
  font-size: 15.5px;
  line-height: 1.55;
  padding-left: 20px;
}
.content-cover-list li::before { top: 9px; }
@media (max-width: 760px) {
  .content-cover-list li { font-size: 15.5px; }
}


/* ===== Contador de "últimos días" en el navbar ===== */
.brand-count {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid rgba(222, 122, 77, 0.5);
  background: rgba(222, 122, 77, 0.12);
  white-space: nowrap;
}
.brand-count[hidden] { display: none; }
.brand-count-label {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #de7a4d;
}
.brand-count-timer {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0;
  color: #f2ecd9;
  font-variant-numeric: tabular-nums;
}
.brand-count-timer:empty { display: none; }

/* en pantallas chicas, el contador reemplaza a la credencial */
@media (max-width: 640px) {
  .sticky-brand.is-countdown .sticky-cred { display: none; }
  .brand-count { padding: 6px 11px; }
  .brand-count-timer { font-size: 12px; }
}


/* Títulos de las cards del temario: más grandes y en Inter (más legible) */
.content-cover-title {
  font-family: Inter, "Neue Haas Grotesk Display", "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.6px;
}
@media (max-width: 760px) {
  .content-cover-title { font-size: 21px; }
}


/* ===== Mobile: el temario se apila como acordeón (sin carrusel) ===== */
@media (max-width: 760px) {
  .contents-scroll {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 13px;
    padding: 8px 0 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%;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  /* el encabezado es tocable y tiene 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: 24px;
    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);
  }

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


/* ===== Mobile · temario: respiración lateral e interna, sin flechas ni números ===== */
@media (max-width: 760px) {
  /* 1) más margen a los costados de la pantalla */
  .contents-scroll { padding-left: 10px; padding-right: 10px; }

  /* 2) más aire interno en la card */
  .content-cover-inner { padding: 26px 24px 28px; }
  .content-cover-head { gap: 14px; }
  .content-cover-title { padding-top: 20px; }   /* línea naranja ↔ título */
  .content-cover-list { padding-top: 26px; row-gap: 13px; }

  /* 3) sin flechas */
  .car-arrow-side { display: none !important; }

  /* 4) sin el número grande de fondo */
  .content-ghost { display: none; }
}


/* ===== Mobile · temario: más espacio entre cards + hilo de continuidad ===== */
@media (max-width: 760px) {
  .contents-scroll { gap: 38px; }

  /* línea fina que une cada punto con el siguiente, con un destello
     suave que la recorre hacia abajo */
  .content-cover + .content-cover { position: relative; }
  .content-cover + .content-cover::before {
    content: "";
    position: absolute;
    top: -38px;
    left: 50%;
    transform: translateX(-50%);
    width: 1.5px;
    height: 38px;
    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));
  }
}


/* ===== Carrusel del temario más controlable y fluido ===== */
/* cada gesto de scroll se detiene en la card siguiente: imposible pasarse */
.content-cover { scroll-snap-stop: always; }


/* ===== Ajustes mobile (junio 2026) ===== */

/* T4 · FAQ: las respuestas aparecen con un fundido suave al abrir */
.faq-panel .faq-answer { opacity: 0; transition: opacity 0.3s ease; }
.faq-item.is-open .faq-panel .faq-answer { opacity: 1; transition: opacity 0.4s ease 0.1s; }

/* T7 · Footer más chico en mobile */
@media (max-width: 520px) {
  .site-footer { font-size: 11.5px; padding: 28px 22px 36px; letter-spacing: 0.03em; }
}

/* T14 (jun 2026) · En mobile, "tu conclusión profesional" sin subrayado naranja */
@media (max-width: 600px) {
  .lead-highlight::after { display: none; }
  .lead-highlight { padding-bottom: 0; }
}
