
/* ── Header ── */
.app-header {
	background: var(--alexia-deep);
	color: var(--white);
	padding: 14px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	/* Distribuye elementos: Logo - Texto - Logo */
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	gap: 12px;
}

/* Contenedores para mantener la escala del SVG original (32px) */
.header-logo-container {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	/* Evita que el logo se aplaste */
}

.header-img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.header-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-width: 0;
	/* Permite que el texto se trunque si es necesario */
}

.text-header-content {
	justify-content: center;
	width: fit-content;
}

.header-title {
	font-weight: 700;
	font-size: 17px;
	letter-spacing: -0.3px;
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.header-sub {
	font-size: 11px;
	font-weight: 500;
	opacity: 0.9;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--alexia-yellow);
}

.text-white {
	color: #fff;;
}