:root {
	--r-main-font: 'Inter', sans-serif;
	--r-heading-font: 'Outfit', sans-serif;
	--r-heading-color: #1e1b4b;
	--r-main-color: #334155;
	--accent: #6366f1;
	--accent-strong: #818cf8;
	--teal: #4f46e5;
	--amber: #a5b4fc;
	--danger: #4338ca;
	--surface: #ffffff;
	--surface-alt: #f8faff;
	--border: rgba(99, 102, 241, 0.18);
	--neutral-strong: #334155;
	--subtle: #64748b;
	--accent-soft: rgba(99, 102, 241, 0.035);
	--teal-soft: rgba(79, 70, 229, 0.025);
	--amber-soft: rgba(165, 180, 252, 0.06);
	--danger-soft: rgba(67, 56, 202, 0.03);
	--shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.06);
	--slide-height: 750px;
	--slide-safe-top: 84px;
	--slide-safe-bottom: 104px;
	--slide-safe-x: 64px;
}

.reveal {
	background: #ffffff;
}

.reveal-viewport,
.reveal .backgrounds,
.reveal .slide-background,
.reveal .slide-background-content {
	background: #ffffff !important;
	opacity: 1 !important;
	background-color: #ffffff !important;
	box-shadow: none !important;
	filter: none !important;
}

.reveal .slides {
	height: var(--slide-height);
}

.reveal .slides section {
	text-align: left;
	padding: var(--slide-safe-top) var(--slide-safe-x) var(--slide-safe-bottom) !important;
	box-sizing: border-box;
	display: grid;
	align-content: start;
}

@media screen {
	.reveal .slides section {
		height: var(--slide-height) !important;
		min-height: var(--slide-height) !important;
	}
}

.full-height-center {
	min-height: calc(var(--slide-height) - var(--slide-safe-top) - var(--slide-safe-bottom));
	height: calc(var(--slide-height) - var(--slide-safe-top) - var(--slide-safe-bottom));
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.reveal .slides section > * {
	width: min(100%, calc(1200px - (var(--slide-safe-x) * 2)));
	margin: 0 auto;
}

.reveal .slides section.v-center {
	align-content: center;
}

.reveal .slides section.v-center > * {
	width: min(100%, 1080px);
	margin: 0 auto;
}

.reveal .slides section.v-center .split-2,
.reveal .slides section.v-center .cover-hero,
.reveal .slides section.v-center .center-card {
	margin: 0 auto;
}

.section-intro {
	width: min(100%, 920px);
	margin: 0 0 24px;
}

.section-flow {
	display: grid;
	gap: 36px;
	align-content: start;
	width: min(100%, 920px);
}

.section-flow-wide {
	width: 100%;
}

.section-intro .eyebrow {
	margin-bottom: 12px;
}

.section-intro h3 {
	margin-bottom: 12px !important;
}

.section-intro .lead {
	margin-bottom: 0 !important;
}

.text-xs { font-size: 14px !important; line-height: 1.4; }
.text-sm { font-size: 17px !important; line-height: 1.5; }
.text-md { font-size: 22px !important; line-height: 1.3; font-weight: 700; }
.text-lg { font-size: 34px !important; line-height: 1.12; font-weight: 700; }
.text-xl { font-size: 46px !important; line-height: 1.02; font-weight: 800; }

.reveal h1,
.reveal h2,
.reveal h3,
.reveal h4,
.reveal h5 {
	text-transform: none;
	letter-spacing: -0.03em;
	color: var(--r-heading-color);
}

.reveal h3 { margin-bottom: 16px !important; }
.reveal h4 { margin-bottom: 12px !important; color: var(--accent); }
.reveal p { color: var(--r-main-color); margin-bottom: 14px !important; }
.reveal strong { color: var(--accent); }

.reveal ul,
.reveal ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

.reveal ul li,
.reveal ol li {
	position: relative;
	padding-left: 1.35rem;
	margin-bottom: 12px;
	color: var(--r-main-color);
}

.reveal ul li::before,
.reveal ol li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.68em;
	width: 9px;
	height: 9px;
	border-radius: 999px;
	background: var(--accent);
	transform: translateY(-50%);
}

.reveal ul.no-bullet li,
.reveal ol.no-bullet li {
	padding-left: 0;
}

.reveal ul.no-bullet li::before,
.reveal ol.no-bullet li::before {
	content: none;
}

.header-ui {
	position: absolute;
	top: 20px;
	left: var(--slide-safe-x);
	right: var(--slide-safe-x);
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 10;
}

.logo-ui { height: 32px; }

.project-badge {
	font-family: var(--r-heading-font);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--accent);
	padding: 0;
	border-radius: 0;
	background: transparent;
	border: none;
	backdrop-filter: none;
}

.eyebrow {
	display: inline-block;
	margin-bottom: 12px;
	padding: 0;
	border-radius: 0;
	background: transparent;
	color: var(--neutral-strong);
	font-family: var(--r-heading-font);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	line-height: 1.1;
}

.reveal .slides section > .eyebrow + h3.text-lg {
	margin-top: 0;
	margin-bottom: 12px !important;
}

.reveal .slides section > h3.text-lg + .lead {
	margin-top: 0;
	margin-bottom: 22px !important;
}

.reveal .slides section > .eyebrow + h3.text-lg + .lead {
	margin-top: 0;
}

.lead {
	font-size: 18px;
	line-height: 1.5;
	color: var(--subtle);
	max-width: 920px;
}

.muted { color: var(--subtle) !important; }
.accent-text { color: var(--accent-strong); }

.cover-grid {
	display: grid;
	grid-template-columns: 1.3fr 0.95fr;
	gap: 40px;
	align-items: center;
	min-height: 0;
}

.cover-hero {
	width: min(100%, 980px);
	margin: 0 auto;
}

.cover-rule {
	width: 56px;
	height: 5px;
	border-radius: 999px;
	background: var(--accent);
	margin-bottom: 26px;
}

.card {
	background: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
}

.media-plain {
	background: transparent !important;
	border: none !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
}

.media-plain img {
	display: block;
	background: transparent;
	box-shadow: none;
	border: none;
}

.case-swap-stage {
	position: relative;
	width: 100%;
	max-width: 860px;
	height: 500px;
	margin: 0 auto;
	overflow: hidden;
}

.case-swap-image {
	position: absolute;
	inset: 0;
	margin: auto;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	object-position: center center;
	border-radius: 18px;
}

.case-swap-next {
	z-index: 2;
}

.case-swap-bias {
	width: 92%;
	max-width: 760px;
	max-height: 100%;
}

.case-swap-stage:has(.case-swap-next.visible) .case-swap-base {
	opacity: 0;
}

.case-swap-stage:has(.case-swap-next.visible) .case-swap-bias {
	opacity: 1;
}

.cover-card {
	padding: 6px 0 0;
}

.cover-kicker {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--neutral-strong);
	margin-bottom: 14px;
}

.cover-intro {
	max-width: 760px;
	margin-bottom: 36px !important;
}

.cover-meta {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	max-width: 760px;
	padding-top: 22px;
	border-top: 1px solid rgba(100, 116, 139, 0.22);
	color: var(--subtle);
	opacity: 0.92;
}

.cover-meta-item {
	display: grid;
	gap: 4px;
	font-size: 14px;
	line-height: 1.45;
}

.cover-meta-item strong {
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--neutral-strong);
}

.cover-meta-item.align-right {
	text-align: right;
}

.concepts-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 28px;
	align-items: center;
	width: 100%;
}

.concepts-stack {
	display: grid;
	gap: 16px;
	align-content: start;
}

.concepts-graphic {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.term-cloud {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 14px;
	max-width: 1040px;
	margin: 0 auto;
	line-height: 1;
	padding: 10px 0;
	text-align: center;
}

.term-cloud span {
	display: inline-block;
	letter-spacing: -0.02em;
}

.term-cloud .term-1 { font-size: 74px; font-weight: 800; color: var(--r-heading-color); font-family: var(--r-heading-font); }
.term-cloud .term-2 { font-size: 68px; font-weight: 800; color: var(--accent); font-family: var(--r-heading-font); }
.term-cloud .term-3 { font-size: 60px; font-weight: 700; color: var(--r-heading-color); }
.term-cloud .term-4 { font-size: 54px; font-weight: 700; color: var(--accent); }
.term-cloud .term-5 { font-size: 48px; font-weight: 700; color: #0891b2; }
.term-cloud .term-6 { font-size: 42px; font-weight: 600; color: var(--neutral-strong); }
.term-cloud .term-7 { font-size: 38px; font-weight: 600; color: var(--accent); }
.term-cloud .term-8 { font-size: 34px; font-weight: 600; color: var(--neutral-strong); opacity: 0.9; }
.term-cloud .term-9 { font-size: 30px; font-weight: 600; color: #0891b2; opacity: 0.9; }
.term-cloud .term-10 { font-size: 28px; font-weight: 600; color: var(--neutral-strong); opacity: 0.85; }
.term-cloud .term-11 { font-size: 24px; font-weight: 600; color: var(--accent); opacity: 0.8; }
.term-cloud .term-12 { font-size: 21px; font-weight: 500; color: #94a3b8; opacity: 0.82; }
.term-cloud .term-13 { font-size: 18px; font-weight: 500; color: #64748b; opacity: 0.7; }

.term-cloud-caption {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	text-align: center;
	color: var(--accent);
	margin-top: 88px;
	font-weight: 800;
	opacity: 0.82;
}

.cover-strip {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.strip-item {
	padding: 8px 0;
	border-radius: 0;
	background: transparent;
	border: none;
}

.strip-item .label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--subtle);
	margin-bottom: 6px;
}

.strip-item .value {
	font-size: 18px;
	font-weight: 700;
	color: var(--neutral-strong);
}

.footer-chip {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 18px;
	padding: 0;
	border-radius: 0;
	background: transparent;
	color: var(--accent);
	font-size: 14px;
	font-weight: 600;
}

.split-2 {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 22px;
	align-items: center;
}

.grid-2,
.grid-3,
.grid-4,
.table-three {
	display: grid;
	gap: 18px;
	align-items: stretch;
}

.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3,
.table-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.grid-2 > .card,
.grid-3 > .card,
.grid-4 > .card,
.table-three > .card {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.card.accent {
	padding: 18px 20px;
	background: var(--accent-soft);
	border: 1px solid rgba(99, 102, 241, 0.04);
	border-radius: 16px;
	box-shadow: none;
	border-left: 2px solid rgba(99, 102, 241, 0.42);
}

.card.teal {
	padding: 18px 20px;
	background: var(--teal-soft);
	border: 1px solid rgba(79, 70, 229, 0.04);
	border-radius: 16px;
	box-shadow: none;
	border-left: 2px solid rgba(79, 70, 229, 0.4);
}

.card.amber {
	padding: 18px 20px;
	background: var(--amber-soft);
	border: 1px solid rgba(165, 180, 252, 0.08);
	border-radius: 16px;
	box-shadow: none;
	border-left: 2px solid rgba(165, 180, 252, 0.5);
}

.card.danger {
	padding: 18px 20px;
	background: var(--danger-soft);
	border: 1px solid rgba(67, 56, 202, 0.04);
	border-radius: 16px;
	box-shadow: none;
	border-left: 2px solid rgba(67, 56, 202, 0.4);
}

.stack > * + * { margin-top: 16px; }

.metric-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 20px;
}

.metric {
	flex: 1 1 0;
	min-width: 150px;
	padding: 6px 0;
	background: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
}

.metric-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--subtle);
	margin-bottom: 4px;
}

.metric-value {
	font-family: var(--r-heading-font);
	font-size: 17px;
	line-height: 1.2;
	font-weight: 600;
	color: var(--accent-strong);
}

.pill-row,
.tag-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.pill-row { margin: 22px 0; }
.tag-row { margin: 16px 0 18px; }

.pill-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 12px;
	margin: 0;
	width: min(100%, 920px);
}

.prompt-steps {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
	width: min(100%, 920px);
}

.prompt-step {
	display: grid;
	gap: 6px;
	align-content: start;
	text-align: left;
}

.prompt-step-number {
	font-family: var(--r-heading-font);
	font-size: 18px;
	font-weight: 800;
	line-height: 1;
	color: var(--accent);
}

.prompt-step-label {
	font-family: var(--r-heading-font);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: var(--r-heading-color);
}

.pill,
.tag {
	padding: 10px 14px;
	border-radius: 999px;
	background: var(--surface);
	border: 1px solid rgba(99, 102, 241, 0.12);
	font-weight: 700;
	box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
}

.pill {
	font-size: 16px;
	color: var(--accent-strong);
}

.pill-grid .pill {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	text-align: center;
}

.pill span { color: var(--accent); margin-right: 8px; }

.tag {
	font-size: 13px;
	color: var(--subtle);
}

.mini {
	padding: 6px 0;
	background: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
}

.mini h5 {
	margin: 0 0 8px;
	font-size: 18px;
	color: var(--accent-strong);
}

.mini p {
	margin: 0 !important;
	font-size: 15px;
	line-height: 1.45;
	color: var(--subtle);
}

.note-line {
	margin-top: 18px;
	font-size: 15px;
	line-height: 1.5;
	color: var(--subtle);
}

.tool-title {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.tool-badge {
	font-family: var(--r-heading-font);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	padding: 0;
	border-radius: 0;
	background: transparent;
	color: var(--accent);
}

.demo-shell {
	display: grid;
	grid-template-columns: 1.18fr 0.82fr;
	gap: 20px;
	align-items: center;
}

.demo-steps {
	display: grid;
	gap: 14px;
}

.step {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	padding: 6px 0;
	background: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
}

.step-number {
	width: 34px;
	height: 34px;
	border-radius: 999px;
	background: var(--accent-soft);
	color: var(--accent);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--r-heading-font);
	font-size: 16px;
	font-weight: 800;
	flex: 0 0 auto;
}

.step-copy {
	font-size: 16px;
	line-height: 1.45;
	color: var(--subtle);
}

.step-copy strong {
	display: block;
	margin-bottom: 4px;
	color: var(--accent-strong);
}

.question-grid {
	display: grid;
	gap: 16px;
	margin-top: 24px;
}

.question {
	display: flex;
	gap: 16px;
	padding: 8px 0;
	background: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
}

.question-index {
	width: 40px;
	height: 40px;
	border-radius: 999px;
	background: var(--accent-soft);
	color: var(--accent);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--r-heading-font);
	font-size: 20px;
	font-weight: 800;
	flex: 0 0 auto;
}

.question p {
	margin: 0 !important;
	font-size: 18px;
	line-height: 1.45;
}

.checklist li::before { background: var(--teal); }
.warnlist li::before { background: var(--amber); }
.dangerlist li::before { background: var(--danger); }

.center-card {
	max-width: 860px;
	margin: 0 auto;
}

.prompt-example {
	width: min(100%, 920px);
	margin: 0;
}

.comparison-grid {
	margin-top: 18px;
	align-items: stretch;
}

.comparison-logos-row {
	margin-top: 10px;
	padding-top: 38px;
	align-items: start;
}

.comparison-column {
	display: flex;
	flex-direction: column;
	gap: 14px;
	height: 100%;
}

.comparison-column > .card {
	flex: 1 1 auto;
}

.comparison-logos {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 14px;
	align-items: center;
	justify-content: center;
	min-height: 46px;
}

.comparison-logos img {
	height: 28px;
	width: auto;
	max-width: 120px;
	object-fit: contain;
	background: transparent;
	flex: 0 0 auto;
}

.public-logos img {
	height: 32px;
	max-width: 132px;
}

.private-logos img {
	height: 28px;
	max-width: 148px;
}

.comparison-logos img.logo-chatgpt-large,
.comparison-logos img.logo-claude-large {
	height: 44px;
	max-width: 220px;
}

.comparison-logos img.logo-gemini-cropped {
	height: 27px;
	max-width: 138px;
	object-fit: cover;
	object-position: center;
	clip-path: inset(1px 3px 2px 3px);
}

.comparison-list {
	line-height: 1.42;
}

.comparison-list li {
	margin-bottom: 10px;
}

.comparison-note {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid rgba(99, 102, 241, 0.14);
	font-size: 13px;
	line-height: 1.45;
}

.reveal .slides section[data-background-color] {
	background-color: #ffffff !important;
}

.reveal a { color: var(--accent-strong); }

@media (max-width: 1100px) {
	.header-ui {
		left: 28px;
		right: 28px;
	}

	.concepts-layout,
	.cover-grid,
	.split-2,
	.grid-2,
	.grid-3,
	.grid-4,
	.table-three,
	.demo-shell {
		grid-template-columns: 1fr;
	}

	.pill-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.prompt-steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cover-meta {
		grid-template-columns: 1fr;
	}

	.cover-meta-item.align-right {
		text-align: left;
	}

	.term-cloud {
		gap: 10px;
	}

	.term-cloud .term-1 { font-size: 48px; }
	.term-cloud .term-2 { font-size: 44px; }
	.term-cloud .term-3 { font-size: 40px; }
	.term-cloud .term-4 { font-size: 36px; }
	.term-cloud .term-5 { font-size: 32px; }
	.term-cloud .term-6 { font-size: 28px; }
	.term-cloud .term-7 { font-size: 25px; }
	.term-cloud .term-8 { font-size: 22px; }
	.term-cloud .term-9 { font-size: 20px; }
	.term-cloud .term-10 { font-size: 18px; }
	.term-cloud .term-11 { font-size: 16px; }
	.term-cloud .term-12 { font-size: 15px; }
	.term-cloud .term-13 { font-size: 14px; }

	.full-height-center {
		min-height: auto;
		height: auto;
	}

	.concepts-graphic {
		justify-content: center;
	}

	.comparison-logos {
		justify-content: center;
	}

	.reveal .slides {
		height: 100%;
	}

	.reveal .slides section {
		height: auto !important;
		min-height: auto !important;
		padding: 72px 28px 72px !important;
	}

	.header-ui {
		left: 28px;
		right: 28px;
	}
}

/* ----------------------------------------------------
   [ PDF EXPORT ] Bloqueo de Estilos de Impresión
---------------------------------------------------- */
@media print {
	@page {
		size: landscape;
		margin: 0;
	}

	* {
		-webkit-print-color-adjust: exact !important;
		print-color-adjust: exact !important;
	}
	
	.reveal .slides section {
		background: #ffffff !important;
	}
	
	.pdf-btn { 
		display: none !important; 
	}
}