:root {
  --primary: #8a1538;        
  --primary-soft: #f4e6ea;
  --accent: #cca259;         
  --text-main: #1f2a33;
  --text-muted: #6a737d;
  --border: #e1e4e8;
  --bg-soft: #f9fafb;
  --white: #ffffff;
}

/* TITULO PRINCIPAL */

#title-gen{
	font-size: 2.2rem;
	color: var(--primary);
	margin-bottom: 10px;
	font-weight: 700;
	letter-spacing: 0.5px;
}

/* AÑO */

#ttl-transp{
	font-size: 1.6rem;
	margin: 25px 0 10px 0;
	font-weight: 600;
	color: var(--text-main);
	border-left: 4px solid var(--accent);
	padding-left: 10px;
}

/* línea divisoria más suave */

#linea-sp{
	height: 1px;
	background: var(--border);
	margin: 25px 0;
}

/* COLLAPSIBLE */

.collapsibleT{
	display: flex;
	align-items: center;
	border: 1px solid var(--border);
	background: var(--white);
	color: var(--text-main);
	font-weight: 500;
	cursor: pointer;
	padding: 10px 15px;
	width: 100%;
	text-align: left;
	font-size: 13px;
	margin-bottom: 6px;
	transition: all 0.2s ease;
	border-radius: 6px;
}

/* hover más elegante */
.collapsibleT:hover {
	background: var(--primary-soft);
	border-color: var(--accent);
	transform: translateX(2px);
}

/* activo */
.activeT{
	background: var(--primary-soft);
	border-color: var(--accent);
	font-weight: 600;
}

/* CONTENIDO */

.contentT{
	padding: 12px 25px;
	margin: 4px 0 8px 0;
	background-color: var(--white);
	border-left: 3px solid var(--accent);
	border-right: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	display: none;
	border-radius: 0 0 6px 6px;
}

/* LINKS */

#l_tr{
	display: flex;
	align-items: center;
	font-size: 13px;
	color: var(--text-muted);
	font-weight: 400;
	cursor: default;
	pointer-events: none;
	padding: 4px 0;
	transition: all 0.2s ease;
}

#l_tr.l_trA{
	color: var(--primary);
	font-weight: 600;
	pointer-events: auto;
	cursor: pointer;
}

#l_tr.l_trA:hover{
	text-decoration: underline;
	color: var(--accent);
	transform: translateX(2px);
}

/* ICONO */

#icn-file{
	font-size: 15px;
	margin-right: 10px;
	opacity: 0.7;
}

/* TABLA / TEXTO */

#th-t{
	font-size: 13px;
	font-weight: 700;
	color: var(--text-main);
}

#l-ext{
	font-size: 12px;
	font-weight: 400;
	margin-left: 8px;
	color: var(--text-muted);
}
