/* =========================================================================
   UNITECH · program-page.css  —  Plantilla Plan de estudios (CPT programa)
   ========================================================================= */

/* ---- Sub-hero del programa ---- */
.unitech-prohero { padding-block: 2.5rem 2rem; }
.unitech-breadcrumb { font-size: 0.8125rem; color: rgba(255, 255, 255, 0.8); margin-bottom: 0.75rem; }
.unitech-breadcrumb a { color: rgba(255, 255, 255, 0.9); text-decoration: none; }
.unitech-breadcrumb a:hover { text-decoration: underline; color: #fff; }
.unitech-prohero__title { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin: 0 0 0.5rem; }
.unitech-prohero__lead { color: rgba(255, 255, 255, 0.9); font-size: 1.05rem; max-width: 52ch; margin: 0 0 1.5rem; }

/* Ficha técnica horizontal */
.unitech-fichabar { gap: 1.75rem 2.25rem; }
.unitech-fichabar .unitech-ficha__item { display: flex; flex-direction: column; gap: 0.15rem; color: #fff; }
.unitech-fichabar .unitech-ficha__label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.04em; color: rgba(255, 255, 255, 0.7); }
.unitech-fichabar .unitech-ficha__value { font-weight: 700; font-size: 0.95rem; }
.unitech-fichabar .unitech-ficha__icon { display: none; }

/* ---- Layout 2 columnas ---- */
.unitech-progwrap { padding-block: 3rem; }
.unitech-progcols { gap: 2.5rem; align-items: flex-start; }
.unitech-progmain { min-width: 0; }
.unitech-progmain > * { margin-block: 1.25rem; }
.unitech-progmain h2 { font-size: 1.6rem; margin-top: 2rem; }

/* Listas con bullets ✓ azules */
.unitech-progmain ul { list-style: none; padding-left: 0; }
.unitech-progmain ul li {
	position: relative;
	padding-left: 1.6rem;
	margin-bottom: 0.5rem;
}
.unitech-progmain ul li::before {
	content: "\2713";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--color-secondary);
	font-weight: 700;
}

/* Caja highlight con borde izquierdo azul */
.unitech-progmain .unitech-highlight,
.unitech-progmain blockquote {
	border-left: 4px solid var(--color-secondary);
	background: var(--color-bg-light);
	padding: 1rem 1.25rem;
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ---- Sidebar sticky ---- */
.unitech-progside { position: relative; }
.unitech-progaside { position: sticky; top: 80px; }
.unitech-progcard {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 1.5rem;
	box-shadow: var(--shadow-card);
}
/* Badge de descuento (primer program-badge sin label) */
.unitech-progcard > .unitech-ficha__item:first-child {
	display: inline-block;
	background: var(--color-accent-coral);
	color: #fff;
	font-weight: 700;
	font-size: 0.8125rem;
	padding: 0.4rem 0.8rem;
	border-radius: var(--radius-sm);
	margin-bottom: 1.25rem;
}
.unitech-progcard > .unitech-ficha__item:first-child .unitech-ficha__label,
.unitech-progcard > .unitech-ficha__item:first-child .unitech-ficha__icon { display: none; }

.unitech-ficha { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 1.5rem; }
.unitech-ficha__item { display: flex; align-items: baseline; gap: 0.6rem; font-size: 0.9rem; }
.unitech-ficha__icon { flex: 0 0 auto; }
.unitech-ficha__label { color: var(--color-text-muted); min-width: 84px; }
.unitech-ficha__value { font-weight: 600; color: var(--color-text-main); }

.unitech-progcard .unitech-btn--full { margin-bottom: 0.75rem; }
.unitech-progcard__limit { text-align: center; font-size: 0.8125rem; color: var(--color-accent-coral); font-weight: 600; margin: 0.25rem 0 0; }

/* ---- Metodología ---- */
.unitech-metodo { gap: 1.25rem; }
.unitech-metodo__card {
	background: var(--color-bg-light);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: 1.25rem;
	height: 100%;
}
.unitech-metodo__card h3 { font-family: var(--font-body); font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.5rem; }
.unitech-metodo__card p { color: var(--color-text-muted); font-size: 0.9rem; margin: 0; }

/* ---- Acordeones ---- */
.unitech-accordion {
	border-bottom: 1px solid var(--color-border);
	padding: 0.25rem 0;
}
.unitech-accordion summary {
	cursor: pointer;
	font-weight: 600;
	padding: 0.9rem 0;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.unitech-accordion summary::-webkit-details-marker { display: none; }
.unitech-accordion summary::after { content: "+"; color: var(--color-secondary); font-size: 1.4rem; line-height: 1; }
.unitech-accordion[open] summary::after { content: "\2212"; }
.unitech-accordion p { color: var(--color-text-muted); padding-bottom: 0.9rem; margin: 0; }

/* ---- Otras titulaciones ---- */
.unitech-otras__grid { gap: 1.5rem; }
.unitech-card--mini { padding: 1.25rem; }
.unitech-card__kicker { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--color-accent-teal); font-weight: 700; }
.unitech-card--mini h3 { font-size: 1.0625rem; margin: 0.35rem 0 0.5rem; }
.unitech-card--mini h3 a { color: var(--color-primary); text-decoration: none; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
	.unitech-progcols { flex-wrap: wrap; }
	.unitech-progmain, .unitech-progside { flex-basis: 100% !important; }
	.unitech-progaside { position: static; }
	.unitech-progcard { max-width: 420px; }
	.unitech-otras__grid { grid-template-columns: 1fr !important; }
}
