/* ================================================================
   PROGRAMAS · Rediseño editorial 2026
   Conserva la paleta y tipografía del tema; renueva composición,
   jerarquía, navegación, profundidad y movimiento.
   ================================================================ */

.ci-page--programas {
	--ci-programs-max: 1180px;
	--ci-programs-y: clamp(68px, 7vw, 94px);
	--ci-programs-x: clamp(20px, 4vw, 40px);
	--ci-programs-line: color-mix(in srgb, var(--ci-blue) 11%, transparent);
	overflow: clip;
}

.ci-page--programas *,
.ci-page--programas *::before,
.ci-page--programas *::after {
	box-sizing: border-box;
}

/* Hero ----------------------------------------------------------- */
.ci-page--programas .ci-page-hero {
	align-items: flex-end;
	background-position: center;
	display: flex;
	min-height: clamp(500px, 62vh, 650px);
	overflow: hidden;
	padding: clamp(110px, 13vw, 165px) var(--ci-programs-x) clamp(54px, 7vw, 82px);
	position: relative;
}

.ci-page--programas .ci-page-hero::before {
	background:
		linear-gradient(90deg, color-mix(in srgb, var(--ci-blue) 90%, transparent), color-mix(in srgb, var(--ci-blue) 55%, transparent) 52%, transparent 84%),
		linear-gradient(0deg, color-mix(in srgb, var(--ci-ink) 38%, transparent), transparent 58%);
	content: "";
	inset: 0;
	position: absolute;
}

.ci-page--programas .ci-page-hero::after {
	background: linear-gradient(90deg, var(--ci-blue), var(--ci-turquoise), var(--ci-coral), var(--ci-yellow), var(--ci-green));
	bottom: 0;
	content: "";
	height: 5px;
	left: 0;
	position: absolute;
	right: 0;
}

.ci-page--programas .ci-page-hero__copy {
	margin: 0 auto;
	max-width: var(--ci-programs-max);
	position: relative;
	width: 100%;
	z-index: 2;
}

.ci-page--programas .ci-page-hero__copy > p:not(.ci-page-kicker) {
	max-width: 710px;
}

.ci-programs-hero__path {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 28px;
}

.ci-programs-hero__path span {
	align-items: center;
	backdrop-filter: blur(10px);
	background: color-mix(in srgb, white 14%, transparent);
	border: 1px solid color-mix(in srgb, white 30%, transparent);
	border-radius: 999px;
	color: white;
	display: inline-flex;
	font-size: 0.74rem;
	font-weight: 700;
	gap: 8px;
	padding: 9px 13px;
}

.ci-programs-hero__path span::before {
	background: var(--ci-yellow);
	border-radius: 50%;
	content: "";
	height: 7px;
	width: 7px;
}

/* Ritmo y encabezados ------------------------------------------- */
.ci-page--programas .ci-page-section {
	border-top: 1px solid var(--ci-programs-line);
	margin: 0;
	max-width: none;
	padding: var(--ci-programs-y) var(--ci-programs-x);
	position: relative;
}

.ci-page--programas .ci-page-section > :is(.ci-page-section__head, .ci-tabs, .ci-programs-model__intro, .ci-page-section__lead, .ci-skill-grid) {
	margin-left: auto;
	margin-right: auto;
	max-width: var(--ci-programs-max);
}

.ci-page--programas .ci-page-section__head {
	margin-bottom: clamp(34px, 4vw, 50px);
	text-align: left;
}

.ci-page--programas .ci-page-section__head h2 {
	margin-bottom: 12px;
}

.ci-page--programas .ci-page-section__head > p:not(.ci-page-kicker) {
	max-width: 720px;
}

.ci-programs-section-number {
	border-bottom: 2px solid currentColor;
	color: color-mix(in srgb, var(--ci-blue) 20%, transparent);
	display: block;
	font-size: clamp(2.2rem, 3.4vw, 3.2rem);
	font-weight: 700;
	letter-spacing: -0.05em;
	line-height: 1;
	margin-bottom: 18px;
	padding-bottom: 7px;
	width: max-content;
}

/* Navegación de programas --------------------------------------- */
.ci-page--programas .ci-tabs__nav {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-bottom: 22px;
}

.ci-page--programas .ci-tabs__btn {
	align-items: start;
	background: #fff;
	background-color: #fff;
	border: 1px solid var(--ci-programs-line);
	border-radius: 22px;
	box-shadow: 0 10px 26px color-mix(in srgb, var(--ci-blue) 8%, transparent);
	cursor: pointer;
	display: grid;
	gap: 5px;
	grid-template-columns: auto minmax(0, 1fr);
	min-height: 132px;
	min-width: 0;
	overflow: hidden;
	padding: 20px;
	position: relative;
	text-align: left;
	transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
	white-space: normal;
}

.ci-page--programas .ci-tabs__btn::after {
	background: var(--ci-blue);
	border-radius: 999px;
	bottom: 0;
	content: "";
	height: 4px;
	left: 18px;
	position: absolute;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 350ms ease;
	width: 44px;
}

.ci-page--programas .ci-tabs__btn:nth-child(2)::after { background: var(--ci-green); }
.ci-page--programas .ci-tabs__btn:nth-child(3)::after { background: var(--ci-pumpkin); }
.ci-page--programas .ci-tabs__btn:nth-child(4)::after { background: var(--ci-turquoise); }

.ci-page--programas .ci-tabs__btn.is-active {
	background: linear-gradient(145deg, color-mix(in srgb, var(--ci-blue-pale) 72%, #fff), #fff);
	background-color: var(--ci-blue-pale);
	border-color: color-mix(in srgb, var(--ci-blue) 46%, transparent);
	box-shadow: 0 18px 38px color-mix(in srgb, var(--ci-blue) 14%, transparent);
	transform: translateY(-4px);
}

.ci-page--programas .ci-tabs__btn.is-active:hover,
.ci-page--programas .ci-tabs__btn.is-active:focus,
.ci-page--programas .ci-tabs__btn[aria-selected="true"] {
	background: linear-gradient(145deg, color-mix(in srgb, var(--ci-blue-pale) 72%, #fff), #fff);
	background-color: var(--ci-blue-pale);
	color: var(--ci-blue);
}

.ci-page--programas .ci-tabs__btn:focus-visible {
	outline: 3px solid color-mix(in srgb, var(--ci-blue) 26%, transparent);
	outline-offset: 3px;
}

.ci-page--programas .ci-tabs__btn.is-active::after {
	transform: scaleX(1);
}

.ci-tabs__number {
	color: color-mix(in srgb, var(--ci-blue) 34%, transparent);
	font-size: 0.74rem;
	font-weight: 700;
	grid-row: 1 / span 2;
	letter-spacing: 0.08em;
	padding-top: 3px;
}

.ci-tabs__label {
	color: var(--ci-blue);
	font-size: 1.08rem;
	font-weight: 800;
	line-height: 1.3;
	min-width: 0;
	overflow-wrap: anywhere;
	white-space: normal;
}

.ci-tabs__age {
	color: var(--ci-muted);
	font-size: 0.78rem;
	line-height: 1.45;
	max-width: 100%;
	min-width: 0;
	overflow-wrap: anywhere;
	white-space: normal;
	word-break: normal;
}

.ci-page--programas .ci-tabs__btn.is-active .ci-tabs__number {
	color: color-mix(in srgb, var(--ci-blue) 66%, transparent);
}

.ci-page--programas .ci-tabs__btn.is-active .ci-tabs__label {
	color: var(--ci-blue);
}

.ci-page--programas .ci-tabs__btn.is-active .ci-tabs__age {
	color: color-mix(in srgb, var(--ci-forest) 84%, #23332e);
}

/* Panel de programa --------------------------------------------- */
.ci-page--programas .ci-tabs__panel {
	background: linear-gradient(145deg, white, color-mix(in srgb, var(--ci-blue-pale) 40%, white));
	border: 1px solid var(--ci-programs-line);
	border-radius: 34px;
	box-shadow: 0 26px 64px color-mix(in srgb, var(--ci-blue) 12%, transparent);
	overflow: hidden;
	padding: clamp(22px, 3vw, 34px);
}

.ci-page--programas .ci-tabs__panel[hidden] {
	display: none !important;
}

.ci-page--programas .ci-program-detail {
	align-items: start;
	display: grid;
	gap: clamp(34px, 5vw, 68px);
	grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
}

.ci-page--programas .ci-program-detail__media {
	border-radius: 28px 28px 76px 28px;
	box-shadow: 0 22px 48px color-mix(in srgb, var(--ci-blue) 18%, transparent);
	height: min(650px, calc(100vh - 150px));
	margin: 0;
	min-height: 500px;
	overflow: hidden;
	position: sticky;
	top: 120px;
}

.ci-page--programas .ci-program-detail__media::after {
	background: linear-gradient(180deg, transparent 55%, color-mix(in srgb, var(--ci-ink) 72%, transparent));
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.ci-page--programas .ci-program-detail__media img {
	height: 100%;
	min-height: 0;
	object-fit: cover;
	transition: transform 850ms cubic-bezier(0.2, 0.72, 0.25, 1);
	width: 100%;
}

.ci-program-detail__media figcaption {
	bottom: 24px;
	color: white;
	display: flex;
	flex-direction: column;
	font-size: 0.78rem;
	font-weight: 700;
	left: 24px;
	line-height: 1.45;
	position: absolute;
	right: 24px;
	z-index: 2;
}

.ci-program-detail__media figcaption span {
	color: var(--ci-yellow);
	font-size: 0.64rem;
	letter-spacing: 0.12em;
	margin-bottom: 4px;
	text-transform: uppercase;
}

.ci-page--programas .ci-program-detail__copy {
	min-width: 0;
	padding: 12px 0 8px;
}

.ci-program-detail__header {
	border-bottom: 1px solid var(--ci-programs-line);
	padding-bottom: 22px;
}

.ci-page--programas .ci-program-detail__copy h2 {
	margin-bottom: 15px;
}

.ci-program-detail__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.ci-page--programas .ci-program-detail__meta p {
	align-items: center;
	background: white;
	border: 1px solid var(--ci-programs-line);
	border-radius: 999px;
	display: inline-flex;
	font-size: 0.78rem;
	gap: 7px;
	margin: 0;
	padding: 8px 12px;
}

.ci-program-detail__meta span {
	align-items: center;
	background: var(--ci-blue-pale);
	border-radius: 50%;
	color: var(--ci-blue);
	display: inline-flex;
	height: 22px;
	justify-content: center;
	width: 22px;
}

.ci-program-detail__objective {
	align-items: start;
	background: white;
	border: 1px solid var(--ci-programs-line);
	border-radius: 24px;
	box-shadow: 0 14px 32px color-mix(in srgb, var(--ci-blue) 8%, transparent);
	display: grid;
	gap: 16px;
	grid-template-columns: 48px minmax(0, 1fr);
	margin-top: 24px;
	padding: 22px;
}

.ci-program-detail__objective-mark {
	align-items: center;
	background: var(--ci-coral-pale);
	border-radius: 16px;
	color: var(--ci-coral);
	display: flex;
	font-size: 1.35rem;
	height: 48px;
	justify-content: center;
	width: 48px;
}

.ci-page--programas .ci-program-detail__objective h3 {
	margin: 1px 0 7px;
}

.ci-program-detail__objective p {
	margin: 0;
}

/* Listas con jerarquía ------------------------------------------ */
.ci-program-detail__list-block {
	margin-top: clamp(30px, 4vw, 44px);
}

.ci-program-detail__list-head {
	align-items: end;
	border-bottom: 1px solid var(--ci-programs-line);
	display: flex;
	gap: 20px;
	justify-content: space-between;
	margin-bottom: 15px;
	padding-bottom: 12px;
}

.ci-program-detail__list-head span {
	color: var(--ci-coral);
	font-size: 0.64rem;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.ci-program-detail__list-block--benefits .ci-program-detail__list-head span {
	color: var(--ci-turquoise);
}

.ci-page--programas .ci-program-detail__list-head h3 {
	margin: 4px 0 0;
}

.ci-program-detail__list-head strong {
	background: white;
	border: 1px solid var(--ci-programs-line);
	border-radius: 999px;
	color: var(--ci-blue);
	font-size: 0.67rem;
	padding: 7px 10px;
	white-space: nowrap;
}

.ci-page--programas .ci-check-list {
	counter-reset: ci-program-item;
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0;
}

.ci-page--programas .ci-check-list li {
	align-items: start;
	background: white;
	border: 1px solid var(--ci-programs-line);
	border-left: 1px solid var(--ci-programs-line);
	border-radius: 18px;
	box-shadow: 0 9px 22px color-mix(in srgb, var(--ci-blue) 7%, transparent);
	counter-increment: ci-program-item;
	display: grid;
	font-size: 0.9rem;
	gap: 12px;
	grid-template-columns: 34px minmax(0, 1fr);
	line-height: 1.55;
	min-height: 94px;
	padding: 16px;
	position: relative;
	transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.ci-page--programas .ci-check-list li::before {
	align-items: center;
	background: var(--ci-blue-pale);
	border-radius: 11px;
	color: var(--ci-blue);
	content: counter(ci-program-item, decimal-leading-zero);
	display: flex;
	font-size: 0.62rem;
	font-weight: 700;
	height: 34px;
	justify-content: center;
	letter-spacing: 0.05em;
	width: 34px;
}

.ci-program-detail__list-block--benefits .ci-check-list li::before {
	background: var(--ci-turquoise-pale);
	color: var(--ci-turquoise);
}

.ci-page--programas .ci-check-list li:last-child:nth-child(odd) {
	grid-column: 1 / -1;
}

@media (hover: hover) and (pointer: fine) {
	.ci-page--programas .ci-tabs__btn:hover {
		box-shadow: 0 16px 34px color-mix(in srgb, var(--ci-blue) 12%, transparent);
		transform: translateY(-4px);
	}

	.ci-page--programas .ci-check-list li:hover {
		border-color: color-mix(in srgb, var(--ci-blue) 28%, transparent);
		box-shadow: 0 16px 32px color-mix(in srgb, var(--ci-blue) 12%, transparent);
		transform: translateY(-4px);
	}

	.ci-page--programas .ci-program-detail:hover .ci-program-detail__media img {
		transform: scale(1.035);
	}
}

/* Modelo pedagógico --------------------------------------------- */
.ci-programs-model__intro {
	align-items: center;
	display: grid;
	gap: clamp(36px, 6vw, 76px);
	grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
}

.ci-programs-model .ci-page-section__head {
	margin-bottom: 0;
}

.ci-programs-model .ci-eclectic-box {
	border-radius: 28px;
	box-shadow: 0 18px 44px color-mix(in srgb, var(--ci-blue) 10%, transparent);
	margin: 0;
	padding: clamp(28px, 4vw, 42px);
	position: relative;
}

.ci-eclectic-box__mark {
	align-items: center;
	background: var(--ci-coral-pale);
	border-radius: 16px;
	color: var(--ci-coral);
	display: flex;
	font-size: 1.25rem;
	height: 48px;
	justify-content: center;
	margin-bottom: 22px;
	width: 48px;
}

.ci-programs-model .ci-page-section__lead {
	border-bottom: 1px solid var(--ci-programs-line);
	margin-bottom: 22px;
	margin-top: clamp(46px, 6vw, 70px);
	padding-bottom: 16px;
	text-align: left;
}

.ci-programs-model .ci-skill-grid {
	gap: 14px;
	position: relative;
}

.ci-programs-model .ci-skill {
	border: 1px solid var(--ci-programs-line);
	border-radius: 22px;
	min-height: 230px;
	overflow: hidden;
	padding: 22px 18px;
	position: relative;
	transition: transform 320ms ease, box-shadow 320ms ease;
}

.ci-skill__number {
	color: color-mix(in srgb, var(--ci-blue) 27%, transparent);
	font-size: 0.64rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	position: absolute;
	right: 17px;
	top: 16px;
}

.ci-programs-model .ci-skill__icon-img,
.ci-programs-model .ci-skill__icon {
	margin-bottom: 22px;
	transition: transform 320ms ease;
}

@media (hover: hover) and (pointer: fine) {
	.ci-programs-model .ci-skill:hover {
		box-shadow: 0 20px 42px color-mix(in srgb, var(--ci-blue) 12%, transparent);
		transform: translateY(-6px);
	}

	.ci-programs-model .ci-skill:hover :is(.ci-skill__icon-img, .ci-skill__icon) {
		transform: rotate(-4deg) scale(1.08);
	}
}

/* CTA ------------------------------------------------------------ */
.ci-page--programas .ci-programs-cta {
	border-radius: 30px;
	box-shadow: 0 24px 56px color-mix(in srgb, var(--ci-blue) 20%, transparent);
	margin: var(--ci-programs-y) auto;
	max-width: var(--ci-programs-max);
	overflow: hidden;
	position: relative;
}

.ci-page--programas .ci-programs-cta::before {
	background: linear-gradient(90deg, var(--ci-blue), var(--ci-turquoise), var(--ci-coral), var(--ci-yellow), var(--ci-green));
	content: "";
	height: 5px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

/* Transiciones --------------------------------------------------- */
.ci-page--programas.ci-programs-motion [data-program-reveal] {
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 620ms ease var(--ci-program-delay, 0ms),
		transform 720ms cubic-bezier(0.2, 0.72, 0.25, 1) var(--ci-program-delay, 0ms);
}

.ci-page--programas.ci-programs-motion [data-program-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

.ci-program-detail.is-switching {
	animation: ci-program-panel-in 520ms cubic-bezier(0.2, 0.72, 0.25, 1) both;
}

@keyframes ci-program-panel-in {
	from { opacity: 0; transform: translateY(18px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Responsive ----------------------------------------------------- */
@media (max-width: 1050px) {
	.ci-page--programas .ci-tabs__nav {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ci-page--programas .ci-program-detail {
		grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
	}

	.ci-page--programas .ci-program-detail__media {
		height: 560px;
		min-height: 0;
	}

	.ci-programs-model__intro {
		grid-template-columns: 1fr;
	}

	.ci-programs-model .ci-eclectic-box {
		max-width: 760px;
	}

	.ci-programs-model .ci-skill-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 780px) {
	.ci-page--programas {
		--ci-programs-y: 56px;
	}

	.ci-page--programas .ci-program-detail {
		grid-template-columns: 1fr;
	}

	.ci-page--programas .ci-program-detail__media {
		height: 420px;
		position: relative;
		top: auto;
	}

	.ci-page--programas .ci-check-list {
		grid-template-columns: 1fr;
	}

	.ci-page--programas .ci-check-list li:last-child:nth-child(odd) {
		grid-column: auto;
	}

	.ci-programs-model .ci-skill-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 520px) {
	.ci-page--programas {
		--ci-programs-y: 48px;
		--ci-programs-x: 16px;
	}

	.ci-page--programas .ci-page-hero {
		background-position: 61% center;
		min-height: 590px;
		padding-bottom: 42px;
	}

	.ci-page--programas .ci-page-hero::before {
		background: linear-gradient(90deg, color-mix(in srgb, var(--ci-blue) 90%, transparent), color-mix(in srgb, var(--ci-blue) 58%, transparent));
	}

	.ci-programs-hero__path span {
		font-size: 0.67rem;
		padding: 8px 10px;
	}

	.ci-page--programas .ci-tabs__nav {
		grid-template-columns: 1fr;
	}

	.ci-page--programas .ci-tabs__btn {
		min-height: 88px;
	}

	.ci-page--programas .ci-tabs__panel {
		border-radius: 24px;
		padding: 14px;
	}

	.ci-page--programas .ci-program-detail__media {
		border-radius: 22px 22px 52px 22px;
		height: 340px;
	}

	.ci-page--programas .ci-program-detail__copy {
		padding: 8px 4px;
	}

	.ci-program-detail__objective {
		grid-template-columns: 42px minmax(0, 1fr);
		padding: 18px;
	}

	.ci-program-detail__objective-mark {
		height: 42px;
		width: 42px;
	}

	.ci-program-detail__list-head {
		align-items: flex-start;
		flex-direction: column;
		gap: 9px;
	}

	.ci-page--programas .ci-check-list li {
		min-height: 0;
	}

	.ci-programs-model .ci-skill-grid {
		grid-template-columns: 1fr;
	}

	.ci-programs-model .ci-skill {
		min-height: 0;
	}

	.ci-page--programas .ci-programs-cta {
		border-radius: 24px;
		margin: 48px 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ci-page--programas.ci-programs-motion [data-program-reveal] {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.ci-program-detail.is-switching {
		animation: none;
	}
}

/* Contraste final de pestañas: prevalece sobre los estados globales de botones. */
html body .ci-page--programas .ci-tabs__nav button.ci-tabs__btn.is-active,
html body .ci-page--programas .ci-tabs__nav button.ci-tabs__btn.is-active:hover,
html body .ci-page--programas .ci-tabs__nav button.ci-tabs__btn.is-active:focus,
html body .ci-page--programas .ci-tabs__nav button.ci-tabs__btn.is-active:active,
html body .ci-page--programas .ci-tabs__nav button.ci-tabs__btn[aria-selected="true"] {
	background-color: #eaf4ff !important;
	background-image: linear-gradient(145deg, #eaf4ff, #fff) !important;
	border-color: color-mix(in srgb, var(--ci-blue) 52%, transparent) !important;
	color: var(--ci-blue) !important;
}

html body .ci-page--programas .ci-tabs__nav button.ci-tabs__btn.is-active .ci-tabs__number,
html body .ci-page--programas .ci-tabs__nav button.ci-tabs__btn[aria-selected="true"] .ci-tabs__number {
	color: #3c8db4 !important;
}

html body .ci-page--programas .ci-tabs__nav button.ci-tabs__btn.is-active .ci-tabs__label,
html body .ci-page--programas .ci-tabs__nav button.ci-tabs__btn[aria-selected="true"] .ci-tabs__label {
	color: var(--ci-blue) !important;
	font-size: 1.1rem !important;
}

html body .ci-page--programas .ci-tabs__nav button.ci-tabs__btn.is-active .ci-tabs__age,
html body .ci-page--programas .ci-tabs__nav button.ci-tabs__btn[aria-selected="true"] .ci-tabs__age {
	color: #315b67 !important;
	font-size: 0.82rem !important;
}

html body .ci-page--programas .ci-tabs__nav button.ci-tabs__btn:not(.is-active):hover,
html body .ci-page--programas .ci-tabs__nav button.ci-tabs__btn[aria-selected="false"]:hover {
	background-color: #f4faff !important;
	background-image: linear-gradient(145deg, #f4faff, #fff) !important;
	border-color: color-mix(in srgb, var(--ci-blue) 34%, transparent) !important;
	color: var(--ci-blue) !important;
}

html body .ci-page--programas .ci-tabs__nav button.ci-tabs__btn:not(.is-active):hover .ci-tabs__number,
html body .ci-page--programas .ci-tabs__nav button.ci-tabs__btn[aria-selected="false"]:hover .ci-tabs__number {
	color: #58a4c6 !important;
}

html body .ci-page--programas .ci-tabs__nav button.ci-tabs__btn:not(.is-active):hover .ci-tabs__label,
html body .ci-page--programas .ci-tabs__nav button.ci-tabs__btn[aria-selected="false"]:hover .ci-tabs__label {
	color: var(--ci-blue) !important;
}

html body .ci-page--programas .ci-tabs__nav button.ci-tabs__btn:not(.is-active):hover .ci-tabs__age,
html body .ci-page--programas .ci-tabs__nav button.ci-tabs__btn[aria-selected="false"]:hover .ci-tabs__age {
	color: #4d6668 !important;
}
