/* =============================================
   PR-U0.1.1 – Presentación 2026/2027
   =============================================
   • Slides con h1 (#)  → tarjeta morada redondeada, texto blanco
   • Slides con h2 (##) → tarjeta blanca redondeada, texto oscuro
   ============================================= */

:root {
    --navy: #1e2a4a;
    --purple: #6046b3;
    --purple-grad: linear-gradient(135deg, #33226f 0%, #7657d8 100%);
    --pink: #e45b83;
    --ink: #20233c;
    --muted: #5f6378;
    --paper: #ffffff;
    --wash: #f4f6fb;
    --radius: 1.25rem;
    --shadow: 0 12px 36px rgba(38, 32, 78, 0.14);
}

/* ── Base ────────────────────────────────────── */

body {
    background: radial-gradient(circle at 10% 0%, #eef0ff, transparent 34%),
        linear-gradient(160deg, #f6f5fb 0%, #e8eaf5 100%);
}

.presentacion-2026 {
    color: var(--ink);
    font-family: "Avenir Next", "Segoe UI", system-ui, sans-serif;
}

/* The outer section is the group created by `---`. It must not receive a
   card, otherwise its background covers all its vertical child slides. */
.presentacion-2026 .slides > section {
    box-sizing: border-box;
    min-height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    text-align: left;
}

/* Apply cards to actual slides: vertical children and standalone groups. */
.presentacion-2026 .slides > section > section,
.presentacion-2026 .slides > section:not(:has(> section)) {
    box-sizing: border-box;
    min-height: 100%;
    padding: 2.25rem 3rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    text-align: left;
    transition: box-shadow 0.25s ease;
}

/* Centre short slides without affecting dense tables or image slides. */
.presentacion-2026 .slides > section > section:not(:has(img)):not(:has(table)),
.presentacion-2026 .slides > section:not(:has(> section)):not(:has(img)):not(:has(table)) {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.presentacion-2026 .slides > section > section:has(> h1),
.presentacion-2026 .slides > section:not(:has(> section)):has(> h1) {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.presentacion-2026 .slides > section > section:has(> h1) img,
.presentacion-2026 .slides > section:not(:has(> section)):has(> h1) img {
    max-width: min(32%, 280px);
    max-height: 25vh;
    margin: 0.5rem 0 1rem;
    object-fit: contain;
}

/* Slides con ## (h2) -> tarjeta blanca */

.presentacion-2026 .slides > section > section:not(:has(> h1)),
.presentacion-2026 .slides > section:not(:has(> section)):not(:has(> h1)) {
    background: var(--paper);
    box-shadow: var(--shadow);
}

.presentacion-2026 .slides > section > section:not(:has(> h1))::before,
.presentacion-2026 .slides > section:not(:has(> section)):not(:has(> h1))::before {
    display: block;
    width: 3rem;
    height: 3px;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: var(--purple);
    content: "";
}

/* Slides con # (h1) -> tarjeta morada. The direct-child check is important:
   a group may contain an h1 in its first child slide. */

.presentacion-2026 .slides > section > section:has(> h1),
.presentacion-2026 .slides > section:not(:has(> section)):has(> h1) {
    border-color: transparent;
    background: var(--purple-grad);
    color: #ffffff;
    box-shadow: 0 12px 40px rgba(74, 45, 122, 0.35);
}

.presentacion-2026 .slides > section > section:has(> h1) :is(h1, h2, h3, h4, h5, h6, p, li, dt, dd, th, td, blockquote),
.presentacion-2026 .slides > section:not(:has(> section)):has(> h1) :is(h1, h2, h3, h4, h5, h6, p, li, dt, dd, th, td, blockquote) {
    color: #ffffff !important;
}

.presentacion-2026 .slides > section > section:has(> h1)::before,
.presentacion-2026 .slides > section:not(:has(> section)):has(> h1)::before {
    display: block;
    width: 3rem;
    height: 3px;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    content: "";
}

/* ── Tipografía ─────────────────────────────── */

.presentacion-2026 h1,
.presentacion-2026 h2,
.presentacion-2026 h3,
.presentacion-2026 h4 {
    font-family: "Inter", "Segoe UI", system-ui, sans-serif;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-align: left !important;
    text-wrap: balance;
}

.presentacion-2026 h1 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: clamp(2.4rem, 5vw, 4rem);
}

.presentacion-2026 h2 {
    color: var(--navy);
    margin-bottom: 0.8rem;
    font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.presentacion-2026 h3 {
    color: var(--purple);
    font-size: clamp(1.2rem, 2.2vw, 1.7rem);
}

.presentacion-2026 p,
.presentacion-2026 li,
.presentacion-2026 th,
.presentacion-2026 td {
    font-size: clamp(0.78rem, 1.15vw, 1rem);
    line-height: 1.45;
    text-align: left !important;
}

/* Texto en slides moradas */
.presentacion-2026 .slides > section > section:has(> h1) p,
.presentacion-2026 .slides > section:not(:has(> section)):has(> h1) p {
    color: rgba(255, 255, 255, 0.88);
}

.presentacion-2026 .slides > section > section:has(> h1) strong,
.presentacion-2026 .slides > section:not(:has(> section)):has(> h1) strong {
    color: #ffffff;
}

/* Texto en slides blancas */
.presentacion-2026 .slides > section > section:not(:has(> h1)) p,
.presentacion-2026 .slides > section:not(:has(> section)):not(:has(> h1)) p {
    color: var(--muted);
}

.presentacion-2026 .slides > section > section:not(:has(> h1)) strong,
.presentacion-2026 .slides > section:not(:has(> section)):not(:has(> h1)) strong {
    color: var(--navy);
}

.presentacion-2026 .slides > section > section:not(:has(> h1)) blockquote,
.presentacion-2026 .slides > section:not(:has(> section)):not(:has(> h1)) blockquote {
    border-left-color: var(--purple);
    background: #f1efff;
}

/* ── Enlaces ─────────────────────────────────── */

.presentacion-2026 a {
    color: var(--purple);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.presentacion-2026 a:hover {
    border-bottom-color: var(--purple);
}

.presentacion-2026 .slides > section > section:has(> h1) a,
.presentacion-2026 .slides > section:not(:has(> section)):has(> h1) a {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.4);
}

.presentacion-2026 .slides > section > section:has(> h1) a:hover,
.presentacion-2026 .slides > section:not(:has(> section)):has(> h1) a:hover {
    border-bottom-color: #ffffff;
}

/* ── Imágenes ────────────────────────────────── */

.presentacion-2026 img {
    max-width: 92%;
    max-height: 57vh;
    border-radius: 0.75rem;
    box-shadow: 0 4px 16px rgba(30, 42, 74, 0.12);
}

/* ── Tablas ──────────────────────────────────── */

.presentacion-2026 table {
    display: table;
    width: 100%;
    overflow: hidden;
    border: 1px solid #e0e5ef;
    border-radius: 0.75rem;
    border-spacing: 0;
    background: var(--paper);
    font-size: 0.68em;
    box-shadow: 0 2px 8px rgba(30, 42, 74, 0.06);
}

.presentacion-2026 th {
    background: var(--navy);
    color: #fff;
    font-weight: 700;
}

.presentacion-2026 th,
.presentacion-2026 td {
    padding: 0.5rem 0.65rem;
    border-bottom: 1px solid #e8ecf3;
}

.presentacion-2026 tr:last-child td {
    border-bottom: 0;
}

/* ── Blockquotes ─────────────────────────────── */

.presentacion-2026 blockquote {
    margin: 0.8rem 0;
    padding: 0.75rem 1rem;
    border-left: 4px solid var(--pink);
    border-radius: 0 0.6rem 0.6rem 0;
    background: #fdf1f5;
    color: var(--ink);
    font-style: italic;
}

.presentacion-2026 .evaluation-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    width: 100%;
    margin: 2rem 0 1.25rem;
}

.presentacion-2026 .evaluation-step {
    position: relative;
    display: flex;
    min-height: 8rem;
    padding: 1rem 0.85rem;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #e5e1f5;
    border-radius: 0.9rem;
    background: #faf9ff;
    text-align: center;
}

.presentacion-2026 .evaluation-step:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: -0.85rem;
    width: 0.85rem;
    height: 2px;
    background: var(--pink);
    content: "";
}

.presentacion-2026 .evaluation-date {
    color: var(--purple);
    font-size: 0.7em;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.presentacion-2026 .evaluation-step strong {
    margin: 0.35rem 0;
    color: var(--navy);
    font-size: 1.05em;
}

.presentacion-2026 .evaluation-step small {
    color: var(--muted);
    font-size: 0.72em;
    line-height: 1.25;
}

.presentacion-2026 .evaluation-final {
    border-color: var(--pink);
    background: #fff5f8;
}

.presentacion-2026 .metric-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 100%;
    margin: 1.75rem 0;
}

.presentacion-2026 .metric-card {
    display: flex;
    min-height: 7rem;
    padding: 1rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: linear-gradient(145deg, #f3f0ff, #fff);
    box-shadow: inset 0 0 0 1px #e5e1f5;
    text-align: center;
}

.presentacion-2026 .metric-card strong {
    color: var(--purple);
    font-size: 2.1em;
    line-height: 1;
}

.presentacion-2026 .metric-card span {
    margin-top: 0.55rem;
    color: var(--muted);
    font-size: 0.75em;
}

.presentacion-2026 .workflow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    width: 100%;
    margin: 1.75rem 0;
}

.presentacion-2026 .workflow-step {
    display: flex;
    min-height: 7rem;
    padding: 0.9rem 0.6rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top: 4px solid var(--purple);
    border-radius: 0.75rem;
    background: #f8f7ff;
    text-align: center;
}

.presentacion-2026 .workflow-step b {
    color: var(--pink);
    font-size: 0.7em;
    letter-spacing: 0.1em;
}

.presentacion-2026 .workflow-step strong {
    margin: 0.35rem 0;
    color: var(--navy);
    font-size: 0.95em;
}

.presentacion-2026 .workflow-step span {
    color: var(--muted);
    font-size: 0.65em;
    line-height: 1.2;
}

.presentacion-2026 .profile-card,
.presentacion-2026 .resource-card,
.presentacion-2026 .practice-panel,
.presentacion-2026 .tool-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    padding: 1.5rem;
    border: 1px solid #e5e1f5;
    border-radius: 1rem;
    background: linear-gradient(145deg, #faf9ff, #fff);
    box-shadow: 0 8px 24px rgba(38, 32, 78, 0.08);
}

.presentacion-2026 .profile-card {
    position: relative;
    min-height: 17rem;
    padding-right: 12rem;
}

.presentacion-2026 .profile-photo {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    width: 9rem;
    height: 13rem;
    margin: 0;
    object-fit: contain;
    transform: translateY(-50%);
    box-shadow: none;
}

.presentacion-2026 .profile-card strong,
.presentacion-2026 .resource-card strong,
.presentacion-2026 .practice-panel strong,
.presentacion-2026 .tool-card strong {
    color: var(--navy);
    font-size: 1.25em;
}

.presentacion-2026 .profile-card > span,
.presentacion-2026 .practice-panel > span,
.presentacion-2026 .tool-card span:not(.tool-mark) {
    margin-top: 0.35rem;
    color: var(--muted);
}

.presentacion-2026 .profile-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 1rem;
    margin-top: 1rem;
}

.presentacion-2026 .profile-links a {
    font-size: 0.72em;
}

.presentacion-2026 .resource-kicker {
    color: var(--pink);
    font-size: 0.68em;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.presentacion-2026 .resource-card a {
    align-self: flex-start;
    margin-top: 1rem;
    font-size: 0.8em;
}

.presentacion-2026 .practice-panel {
    border-top: 5px solid var(--purple);
}

.presentacion-2026 .practice-panel p {
    margin: 1rem 0 0;
}

.presentacion-2026 .communication-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    margin: 1.5rem 0;
}

.presentacion-2026 .communication-grid > div {
    display: flex;
    min-height: 7rem;
    padding: 1rem;
    flex-direction: column;
    justify-content: center;
    border-radius: 1rem;
}

.presentacion-2026 .communication-main {
    background: var(--purple-grad);
    color: #fff;
}

.presentacion-2026 .communication-secondary {
    border: 1px solid #e5e1f5;
    background: #faf9ff;
}

.presentacion-2026 .communication-grid b {
    font-size: 0.7em;
    letter-spacing: 0.1em;
    opacity: 0.75;
}

.presentacion-2026 .communication-grid strong {
    margin: 0.35rem 0;
    font-size: 1.05em;
}

.presentacion-2026 .communication-grid span {
    font-size: 0.72em;
}

.presentacion-2026 .communication-main span {
    color: rgba(255, 255, 255, 0.84);
}

.presentacion-2026 .communication-secondary strong {
    color: var(--navy);
}

.presentacion-2026 .communication-secondary span {
    color: var(--muted);
}

.presentacion-2026 .tool-card {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.presentacion-2026 .tool-card > div {
    display: flex;
    flex-direction: column;
}

.presentacion-2026 .tool-mark {
    display: grid;
    width: 3.25rem;
    height: 3.25rem;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 0.9rem;
    background: var(--purple-grad);
    color: #fff;
    font-size: 1.1em;
    font-weight: 800;
}

.presentacion-2026 .class-intro {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 2rem;
    width: 100%;
    align-items: center;
}

.presentacion-2026 .class-intro-content {
    display: flex;
    flex-direction: column;
}

.presentacion-2026 .class-intro-content > strong {
    margin: 0.4rem 0 1rem;
    color: var(--navy);
    font-size: 1.55em;
    line-height: 1.05;
}

.presentacion-2026 .class-intro-content p {
    margin: 0 0 0.5rem;
}

.presentacion-2026 .class-intro-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.presentacion-2026 .class-intro-content li {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin: 0.55rem 0;
    color: var(--navy);
}

.presentacion-2026 .class-intro-content li b {
    display: grid;
    width: 1.55rem;
    height: 1.55rem;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: #f1efff;
    color: var(--purple);
    font-size: 0.65em;
}

.presentacion-2026 .class-photo-wrap {
    position: relative;
    margin: 0;
    padding: 0.65rem 0.65rem 2.2rem;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 12px 28px rgba(38, 32, 78, 0.14);
    transform: rotate(1.5deg);
}

.presentacion-2026 .class-photo {
    display: block;
    width: 100%;
    max-width: none;
    max-height: 40vh;
    margin: 0;
    border-radius: 0.65rem;
    object-fit: cover;
    box-shadow: none;
}

.presentacion-2026 .class-photo-wrap > span {
    position: absolute;
    right: 1rem;
    bottom: 0.6rem;
    color: var(--muted);
    font-size: 0.68em;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.presentacion-2026 .journey-path {
    display: flex;
    width: 100%;
    margin: 2.5rem 0 1.5rem;
    align-items: stretch;
    justify-content: center;
    gap: 0;
}

.presentacion-2026 .journey-step {
    display: flex;
    min-width: 9rem;
    min-height: 8.5rem;
    padding: 1rem 0.75rem;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e1f5;
    border-radius: 1rem;
    background: #faf9ff;
    text-align: center;
}

.presentacion-2026 .journey-number {
    display: grid;
    width: 2.25rem;
    height: 2.25rem;
    place-items: center;
    border-radius: 50%;
    background: var(--purple);
    color: #fff;
    font-size: 0.7em;
    font-weight: 800;
}

.presentacion-2026 .journey-step strong {
    margin: 0.55rem 0 0.3rem;
    color: var(--navy);
    font-size: 0.9em;
}

.presentacion-2026 .journey-link {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: inherit;
    text-decoration: none;
}

.presentacion-2026 .journey-link:hover,
.presentacion-2026 .journey-link:focus-visible {
    border-radius: 1rem;
    outline: 3px solid rgba(228, 91, 131, 0.35);
}

.presentacion-2026 .back-to-journey {
    display: inline-block;
    margin-top: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    padding: 0.45rem 0.85rem;
    background: rgba(255, 255, 255, 0.12);
    color: #fff !important;
    font-size: 0.68em;
    font-weight: 700;
    text-decoration: none;
}

.presentacion-2026 .back-to-journey:hover,
.presentacion-2026 .back-to-journey:focus-visible {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.2);
}

.presentacion-2026 .assessment-summary {
    margin: 1rem auto 0;
    max-width: 1100px;
    text-align: left;
}

.presentacion-2026 .assessment-summary-head {
    border-left: 4px solid var(--accent, #72e0c0);
    padding: 0.25rem 0 0.45rem 1rem;
}

.presentacion-2026 .assessment-summary-head strong {
    display: block;
    font-size: 1.35em;
    line-height: 1.15;
}

.presentacion-2026 .assessment-summary-head em {
    color: var(--accent, #72e0c0);
    font-style: normal;
}

.presentacion-2026 .assessment-summary-head p {
    margin: 0.4rem 0 0;
    color: #475569;
    font-size: 0.72em;
}

.presentacion-2026 .assessment-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.7rem;
    margin-top: 1rem;
}

.presentacion-2026 .assessment-summary-grid > div {
    min-height: 8.5rem;
    border: 1px solid #dbe3ec;
    border-radius: 0.85rem;
    padding: 0.85rem;
    background: rgba(255, 255, 255, 0.07);
}

.presentacion-2026 .assessment-summary-grid b {
    display: block;
    color: var(--accent, #72e0c0);
    font-size: 0.72em;
    letter-spacing: 0.08em;
}

.presentacion-2026 .assessment-summary-grid strong,
.presentacion-2026 .assessment-summary-grid span {
    display: block;
}

.presentacion-2026 .delivery-expectations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
    margin: 1.2rem auto 0;
    max-width: 1100px;
    text-align: left;
}

.presentacion-2026 .delivery-expectation {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    min-height: 7.5rem;
    border: 1px solid #dbe3ec;
    border-radius: 0.9rem;
    padding: 1rem;
    background: #f8fafc;
}

.presentacion-2026 .delivery-expectation-primary {
    border-color: #72cdb7;
    background: linear-gradient(135deg, #effcf8, #f8fafc);
}

.presentacion-2026 .delivery-number {
    display: grid;
    flex: 0 0 2rem;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #d9f5ec;
    color: #16705d;
    font-size: 0.7em;
    font-weight: 800;
}

.presentacion-2026 .delivery-expectation strong,
.presentacion-2026 .delivery-expectation p {
    display: block;
}

.presentacion-2026 .delivery-expectation strong {
    color: #172033;
    font-size: 0.82em;
}

.presentacion-2026 .delivery-expectation p {
    margin: 0.45rem 0 0;
    color: #475569;
    font-size: 0.65em;
    line-height: 1.35;
}

.presentacion-2026 .delivery-expectation em {
    color: #16705d;
    font-style: normal;
    font-weight: 700;
}

.presentacion-2026 .delivery-takeaway {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin: 1rem auto 0;
    color: #334155;
    font-size: 0.68em;
}

.presentacion-2026 .delivery-takeaway b {
    color: #16705d;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.presentacion-2026 .delivery-blocker {
    max-width: 1100px;
    margin: 0.8rem auto 0;
    border: 2px solid #e7a6a6;
    border-radius: 1rem;
    padding: 1rem;
    background: #fff7f7;
    text-align: left;
}

.presentacion-2026 .delivery-blocker-head {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #7f1d1d;
}

.presentacion-2026 .delivery-alert-mark {
    display: grid;
    flex: 0 0 2.4rem;
    place-items: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: #dc2626;
    color: #fff;
    font-size: 1.25em;
    font-weight: 900;
}

.presentacion-2026 .delivery-blocker-head strong {
    display: block;
    font-size: 0.9em;
}

.presentacion-2026 .delivery-blocker .resource-kicker {
    color: #b91c1c;
}

.presentacion-2026 .delivery-blocker-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.65rem;
    margin-top: 1rem;
}

.presentacion-2026 .delivery-blocker-grid > div {
    border-top: 1px solid #efbcbc;
    padding-top: 0.65rem;
}

.presentacion-2026 .delivery-blocker-grid b,
.presentacion-2026 .delivery-blocker-grid strong,
.presentacion-2026 .delivery-blocker-grid span {
    display: block;
}

.presentacion-2026 .delivery-blocker-grid b {
    color: #dc2626;
    font-size: 0.68em;
}

.presentacion-2026 .delivery-blocker-grid strong {
    margin: 0.3rem 0;
    color: #334155;
    font-size: 0.72em;
}

.presentacion-2026 .delivery-blocker-grid span {
    color: #64748b;
    font-size: 0.58em;
    line-height: 1.3;
}

.presentacion-2026 .delivery-warning {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 0.75rem;
    color: #475569;
    font-size: 0.65em;
}

.presentacion-2026 .delivery-warning strong {
    color: #b91c1c;
}

.presentacion-2026 .recovery-card {
    max-width: 1050px;
    margin: 1rem auto 0;
    border: 1px solid #b8d8f1;
    border-radius: 1rem;
    padding: 1.1rem;
    background: linear-gradient(135deg, #f2f8ff, #fff);
    text-align: left;
}

.presentacion-2026 .recovery-card-head {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.presentacion-2026 .recovery-mark {
    display: grid;
    flex: 0 0 2.7rem;
    place-items: center;
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 0.8rem;
    background: #2563eb;
    color: #fff;
    font-size: 1.45em;
    font-weight: 800;
}

.presentacion-2026 .recovery-card .resource-kicker {
    color: #2563eb;
}

.presentacion-2026 .recovery-card strong {
    display: block;
    color: #172033;
    font-size: 1em;
}

.presentacion-2026 .recovery-card p {
    margin: 0.35rem 0 0;
    color: #475569;
    font-size: 0.65em;
    line-height: 1.35;
}

.presentacion-2026 .recovery-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7rem;
    margin-top: 1rem;
}

.presentacion-2026 .recovery-steps > div {
    border-top: 2px solid #93c5fd;
    padding-top: 0.65rem;
}

.presentacion-2026 .recovery-steps b,
.presentacion-2026 .recovery-steps strong,
.presentacion-2026 .recovery-steps span {
    display: block;
}

.presentacion-2026 .recovery-steps b {
    color: #2563eb;
    font-size: 0.68em;
}

.presentacion-2026 .recovery-steps strong {
    margin: 0.3rem 0;
    color: #334155;
    font-size: 0.75em;
}

.presentacion-2026 .recovery-steps span {
    color: #64748b;
    font-size: 0.6em;
}

.presentacion-2026 .recovery-takeaway {
    margin-top: 0.8rem;
    color: #475569;
    font-size: 0.68em;
}

.presentacion-2026 .recovery-takeaway strong {
    color: #2563eb;
}

.presentacion-2026 .assessment-summary-grid strong {
    margin: 0.45rem 0 0.35rem;
    font-size: 0.8em;
}

.presentacion-2026 .assessment-summary-grid span {
    color: #475569;
    font-size: 0.62em;
    line-height: 1.3;
}

@media (max-width: 800px) {
    .presentacion-2026 .assessment-summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .presentacion-2026 .delivery-expectations {
        grid-template-columns: 1fr;
    }

    .presentacion-2026 .delivery-blocker-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .presentacion-2026 .recovery-steps {
        grid-template-columns: 1fr;
    }
}

.presentacion-2026 .journey-step small {
    color: var(--muted);
    font-size: 0.65em;
    line-height: 1.25;
}

.presentacion-2026 .journey-connector {
    width: 1.1rem;
    height: 2px;
    align-self: center;
    background: var(--pink);
}

.presentacion-2026 .journey-last {
    border-color: var(--pink);
    background: #fff5f8;
}

.presentacion-2026 .journey-last .journey-number {
    background: var(--pink);
}

.presentacion-2026 .assessment-flow {
    display: flex;
    width: 100%;
    margin: 2.25rem 0 1.5rem;
    align-items: stretch;
    justify-content: center;
    gap: 0.55rem;
}

.presentacion-2026 .assessment-node {
    display: flex;
    min-width: 8.6rem;
    min-height: 8.4rem;
    padding: 0.9rem 0.65rem;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e1f5;
    border-radius: 1rem;
    background: #faf9ff;
    text-align: center;
}

.presentacion-2026 .assessment-icon {
    display: grid;
    width: 2.2rem;
    height: 2.2rem;
    margin-bottom: 0.55rem;
    place-items: center;
    border-radius: 50%;
    background: var(--purple);
    color: #fff;
    font-size: 0.68em;
    font-weight: 800;
}

.presentacion-2026 .assessment-node strong {
    color: var(--navy);
    font-size: 0.95em;
}

.presentacion-2026 .assessment-node small {
    max-width: 8rem;
    margin-top: 0.35rem;
    color: var(--muted);
    font-size: 0.63em;
    line-height: 1.25;
}

.presentacion-2026 .assessment-arrow {
    display: grid;
    color: var(--pink);
    font-size: 1.6rem;
    font-weight: 800;
    place-items: center;
}

.presentacion-2026 .assessment-evidence {
    border-color: #f0cad6;
    background: #fff7f9;
}

.presentacion-2026 .assessment-evidence .assessment-icon {
    background: var(--pink);
}

.presentacion-2026 .assessment-result {
    border-color: var(--purple);
    background: #f2efff;
}

.presentacion-2026 .slides > section > section:has(> h1) blockquote,
.presentacion-2026 .slides > section:not(:has(> section)):has(> h1) blockquote {
    background: rgba(255, 255, 255, 0.12);
    border-left-color: rgba(255, 255, 255, 0.6);
    color: rgba(255, 255, 255, 0.9);
}

/* ── Barra de progreso ───────────────────────── */

.presentacion-2026 .progress {
    height: 3px !important;
    background: rgba(30, 42, 74, 0.12);
}

.presentacion-2026 .progress span {
    background: linear-gradient(90deg, var(--purple), var(--pink));
}

/* ── Número de diapositiva ───────────────────── */

.presentacion-2026 .slide-number {
    right: 1.2rem !important;
    bottom: 0.6rem !important;
    color: var(--muted);
    background: transparent;
    font-weight: 700;
    font-size: 0.75rem;
}

/* ── Botón volver ────────────────────────────── */

.back-button {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 20;
    padding: 0.5rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    background: rgba(30, 42, 74, 0.88);
    color: #fff;
    font: 600 0.72rem/1 system-ui, sans-serif;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(6px);
}

.back-button:hover,
.back-button:focus-visible {
    background: var(--purple);
    transform: translateY(-1px);
}

/* ── Responsive ──────────────────────────────── */

@media (max-width: 700px) {
    .presentacion-2026 .slides > section > section,
    .presentacion-2026 .slides > section:not(:has(> section)) {
        padding: 1.35rem 1.2rem 1.4rem;
        border-radius: 1rem;
    }

    .presentacion-2026 table {
        font-size: 0.55em;
    }

    .presentacion-2026 img {
        max-width: 92%;
        max-height: 46vh;
    }

    .presentacion-2026 .evaluation-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
        margin-top: 1rem;
    }

    .presentacion-2026 .metric-grid {
        gap: 0.6rem;
    }

    .presentacion-2026 .workflow-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .presentacion-2026 .assessment-flow {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.45rem;
    }

    .presentacion-2026 .assessment-node {
        min-width: 0;
        min-height: 6rem;
    }

    .presentacion-2026 .assessment-arrow {
        display: none;
    }

    .presentacion-2026 .communication-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .presentacion-2026 .profile-card,
    .presentacion-2026 .resource-card,
    .presentacion-2026 .practice-panel,
    .presentacion-2026 .tool-card {
        padding: 1.1rem;
    }

    .presentacion-2026 .profile-card {
        min-height: 0;
        padding-right: 1.1rem;
    }

    .presentacion-2026 .profile-photo {
        position: static;
        width: 7rem;
        height: 8rem;
        align-self: center;
        transform: none;
        order: -1;
    }

    .presentacion-2026 .class-intro {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .presentacion-2026 .class-photo-wrap {
        max-width: 80%;
        justify-self: center;
        transform: rotate(0.5deg);
    }

    .presentacion-2026 .journey-path {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
        margin-top: 1rem;
    }

    .presentacion-2026 .journey-step {
        min-width: 0;
        min-height: 6.5rem;
    }

    .presentacion-2026 .journey-connector {
        display: none;
    }

    .presentacion-2026 .evaluation-step:not(:last-child)::after {
        display: none;
    }

    .back-button {
        top: 0.65rem;
        left: 0.65rem;
    }
}
