/* =========================================================
   Lake Academy — identidade LakeFlow com tom acadêmico
   ========================================================= */

:root {
	--la-bg: #eef1fa;
	--la-bg-soft: #f7f9ff;
	--la-surface: #ffffff;
	--la-ink: #101a33;
	--la-ink-soft: #3d4761;
	--la-muted: #7b8398;
	--la-line: #e5e9f4;
	--la-blue: #2aa0f7;
	--la-violet: #6a2ee0;
	--la-brand: #1f7fef;
	--la-gradient: linear-gradient(90deg, #2aa0f7 0%, #6a2ee0 100%);
	--la-navy: #101a33;
	--la-navy-2: #17224180;
	--la-ok: #0f9d63;
	--la-ok-bg: #e8f7f0;
	--la-warn: #b26a00;
	--la-warn-bg: #fdf3e2;
	--la-err: #c92a3d;
	--la-err-bg: #fdf2f3;
	--la-err-line: #f6d8dc;
	--la-radius: 14px;
	--la-radius-sm: 9px;
	--la-shadow: 0 12px 40px rgba(23, 32, 84, .09);
	--la-shadow-sm: 0 2px 10px rgba(23, 32, 84, .05);
	--la-serif: "Fraunces", Georgia, "Times New Roman", serif;
	--la-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body.lake-academy-page { background: var(--la-bg); }

.la-shell,
.la-login {
	font-family: var(--la-sans);
	color: var(--la-ink);
	font-size: 15px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

.la-shell *, .la-login * { box-sizing: border-box; }
.la-shell a { color: var(--la-brand); text-decoration: none; }
.la-shell a:hover { text-decoration: underline; }
.la-muted { color: var(--la-muted); }
.la-sub { display: block; font-size: 12.5px; color: var(--la-muted); font-weight: 400; }
.la-link-sm { font-size: 13.5px; font-weight: 500; }

/* ---------- Marca ---------- */

.la-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 25px;
	letter-spacing: -.02em;
	color: var(--la-ink);
	text-decoration: none;
}
.la-logo:hover { text-decoration: none; }
.la-logo b { font-weight: 700; }
.la-logo span { color: var(--la-brand); }
.la-logo img { height: 34px; width: auto; }
.la-logo--escuro { color: #fff; font-size: 22px; }
.la-logo--escuro span { color: #7cc4ff; }

/* ---------- Tela de acesso ---------- */

.la-login {
	min-height: 100vh;
	display: grid;
	place-items: center;
	padding: 40px 20px;
	background: linear-gradient(180deg, var(--la-bg-soft) 0%, var(--la-bg) 100%);
}

.la-login__card {
	width: 100%;
	max-width: 496px;
	background: var(--la-surface);
	border-radius: 18px;
	box-shadow: var(--la-shadow);
	padding: 40px 44px 44px;
	text-align: center;
}

.la-login__sub { margin: 18px 0 26px; color: var(--la-ink-soft); font-size: 16px; }
.la-login__form { text-align: left; }
.la-login__footer { margin-top: 26px; color: var(--la-muted); font-size: 14px; }
.la-login__foot-note { margin-top: 22px; color: #9aa3b8; font-size: 13px; text-align: center; }

/* ---------- Campos ---------- */

.la-field { margin-bottom: 18px; }
.la-field--nota { max-width: 160px; }

.la-label {
	display: block;
	font-weight: 600;
	font-size: 14px;
	color: var(--la-ink-soft);
	margin-bottom: 7px;
}

.la-input, .la-select, .la-textarea, .la-search {
	width: 100%;
	background: #fff;
	border: 1px solid var(--la-line);
	border-radius: var(--la-radius-sm);
	padding: 11px 13px;
	font: inherit;
	font-size: 14.5px;
	color: var(--la-ink);
	transition: border-color .15s ease, box-shadow .15s ease;
}
.la-textarea { resize: vertical; }
.la-select { appearance: auto; }
.la-select--sm { width: auto; min-width: 200px; padding: 8px 12px; font-size: 14px; }
.la-search { max-width: 280px; padding: 9px 12px; font-size: 14px; }

.la-input:focus, .la-select:focus, .la-textarea:focus, .la-search:focus {
	outline: none;
	border-color: var(--la-blue);
	box-shadow: 0 0 0 3px rgba(42, 160, 247, .16);
}

.la-check {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 14px;
	color: var(--la-ink-soft);
	margin-bottom: 7px;
	cursor: pointer;
}
.la-check input { width: 16px; height: 16px; accent-color: var(--la-violet); }

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

.la-inline-form { display: inline-flex; gap: 8px; align-items: center; margin: 0; }

.la-radios { display: flex; gap: 14px; flex-wrap: wrap; }
.la-radio { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; cursor: pointer; }
.la-radio input { accent-color: var(--la-violet); width: 16px; height: 16px; }

/* ---------- Botões ---------- */

.la-btn, .la-btn-block, .la-btn-ghost {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: 0;
	border-radius: var(--la-radius-sm);
	padding: 12px 22px;
	font: inherit;
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
	text-decoration: none;
	transition: filter .15s ease, transform .05s ease;
}

.la-btn, .la-btn-block { background: var(--la-gradient); color: #fff; }
.la-btn:hover, .la-btn-block:hover { filter: brightness(1.07); color: #fff; text-decoration: none; }
.la-btn:active, .la-btn-block:active { transform: translateY(1px); }
.la-btn-block { width: 100%; font-size: 16px; padding: 13px 24px; margin-top: 6px; }

.la-btn-ghost {
	background: #fff;
	color: var(--la-ink-soft);
	border: 1px solid var(--la-line);
	box-shadow: var(--la-shadow-sm);
}
.la-btn-ghost:hover { color: var(--la-ink); border-color: #cfd6ea; text-decoration: none; }

.la-btn-sm { padding: 8px 14px; font-size: 13.5px; border-radius: 8px; }

:where(.la-shell, .la-login) :focus-visible {
	outline: 2px solid var(--la-violet);
	outline-offset: 2px;
}

/* ---------- Avisos ---------- */

.la-alert {
	border-radius: var(--la-radius-sm);
	padding: 14px 16px;
	margin-bottom: 20px;
	font-size: 15px;
	border: 1px solid transparent;
}
.la-alert--erro { background: var(--la-err-bg); border-color: var(--la-err-line); color: var(--la-err); }
.la-alert--ok { background: var(--la-ok-bg); border-color: #cbebdd; color: var(--la-ok); }

/* ---------- Estrutura ---------- */

.la-shell {
	display: grid;
	grid-template-columns: 258px minmax(0, 1fr);
	min-height: 100vh;
	background: var(--la-bg);
}

.la-side {
	background: var(--la-navy);
	color: #fff;
	padding: 24px 16px 30px;
	position: sticky;
	top: 0;
	height: 100vh;
	overflow-y: auto;
}

.la-side__user {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 24px 0 4px;
	padding: 12px;
	border-radius: 12px;
	background: rgba(255, 255, 255, .06);
}

.la-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--la-gradient);
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	flex: 0 0 auto;
}

.la-side__name { display: block; font-weight: 600; font-size: 14px; line-height: 1.3; color: #fff; }
.la-side__role { display: block; font-size: 12px; color: #93a0bd; }

.la-nav { margin-top: 18px; display: flex; flex-direction: column; gap: 2px; }

.la-nav__title {
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: .02em;
	color: #7987a8;
	margin: 18px 0 6px 12px;
}

.la-nav a {
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 10px 12px;
	border-radius: 10px;
	color: #c6cee2;
	font-weight: 500;
	font-size: 14.5px;
	text-decoration: none;
}
.la-nav a:hover { background: rgba(255, 255, 255, .07); color: #fff; text-decoration: none; }

.la-nav a.is-active {
	background: var(--la-gradient);
	color: #fff;
	font-weight: 600;
	box-shadow: 0 6px 18px rgba(106, 46, 224, .35);
}

.la-nav svg { width: 18px; height: 18px; flex: 0 0 auto; }

.la-main { min-width: 0; display: flex; flex-direction: column; }

.la-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	background: #fff;
	border-bottom: 1px solid var(--la-line);
	padding: 13px 28px;
	position: sticky;
	top: 0;
	z-index: 5;
}

.la-top__meta { font-size: 13px; color: var(--la-muted); }

.la-burger {
	display: none;
	background: #fff;
	border: 1px solid var(--la-line);
	border-radius: 9px;
	width: 40px;
	height: 40px;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	color: var(--la-ink-soft);
}
.la-burger svg { width: 20px; height: 20px; }

.la-content { padding: 26px 28px; max-width: 1260px; width: 100%; }
.la-foot { padding: 16px 28px 30px; color: #9aa3b8; font-size: 13px; }

.la-page-head {
	margin-bottom: 22px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}
.la-page-head h1 {
	font-family: var(--la-serif);
	font-size: 30px;
	font-weight: 600;
	letter-spacing: -.01em;
	margin: 0 0 3px;
	line-height: 1.15;
}
.la-page-head p { margin: 0; color: var(--la-muted); font-size: 14.5px; }
.la-page-head__acoes { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }

/* ---------- Cartões ---------- */

.la-card {
	background: var(--la-surface);
	border: 1px solid var(--la-line);
	border-radius: var(--la-radius);
	box-shadow: var(--la-shadow-sm);
	overflow: hidden;
	margin-bottom: 20px;
}

.la-card__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 15px 20px;
	border-bottom: 1px solid var(--la-line);
	font-weight: 600;
	font-size: 15px;
}

.la-card__body { padding: 20px; }
.la-card--pad { padding: 20px; }

.la-cols { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr); gap: 20px; align-items: start; }
.la-cols-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; align-items: start; }
.la-cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }

/* ---------- Indicadores ---------- */

.la-kpis {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 16px;
	margin-bottom: 22px;
}

.la-kpi {
	background: #fff;
	border: 1px solid var(--la-line);
	border-radius: var(--la-radius);
	padding: 17px 19px;
	box-shadow: var(--la-shadow-sm);
}
.la-kpi__rotulo { margin: 0 0 6px; font-size: 12.5px; font-weight: 600; color: var(--la-muted); }
.la-kpi__valor {
	display: block;
	font-family: var(--la-serif);
	font-size: 28px;
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: -.01em;
}
.la-kpi__apoio { display: block; margin-top: 5px; font-size: 12.5px; color: var(--la-muted); }

.la-kpi--escuro { background: var(--la-navy); border-color: var(--la-navy); color: #fff; }
.la-kpi--escuro .la-kpi__rotulo, .la-kpi--escuro .la-kpi__apoio { color: #a9b4d0; }

.la-kpi--alerta { background: var(--la-err-bg); border-color: var(--la-err-line); }
.la-kpi--alerta .la-kpi__valor { color: var(--la-err); }

/* ---------- Tabelas ---------- */

.la-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.la-table th {
	text-align: left;
	font-weight: 600;
	font-size: 13px;
	color: var(--la-ink-soft);
	background: #f7f9ff;
	padding: 11px 20px;
	border-bottom: 1px solid var(--la-line);
	white-space: nowrap;
}
.la-table td { padding: 13px 20px; border-bottom: 1px solid #f0f3fb; vertical-align: middle; }
.la-table tbody tr:last-child td { border-bottom: 0; }
.la-table tbody tr:hover { background: #fafbff; }
.la-table td.la-col-acao { text-align: right; white-space: nowrap; }
.la-table td.la-col-acao form { display: inline; }
.la-table tr.is-bloqueado td { opacity: .58; }
.la-table tr.is-atrasado td:first-child { box-shadow: inset 3px 0 0 var(--la-err); }
.la-table-wrap { overflow-x: auto; }

.la-code { font-variant-numeric: tabular-nums; font-weight: 600; color: var(--la-violet); margin-right: 6px; }

/* ---------- Selos e chips ---------- */

.la-tag {
	display: inline-block;
	font-size: 12.5px;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 20px;
	white-space: nowrap;
}
.la-tag--pago { background: var(--la-ok-bg); color: var(--la-ok); }
.la-tag--aberto { background: var(--la-warn-bg); color: var(--la-warn); }
.la-tag--atrasado { background: var(--la-err-bg); color: var(--la-err); }
.la-tag--bloqueado { background: #f1f3f9; color: var(--la-muted); }

.la-chip {
	display: inline-block;
	font-size: 11.5px;
	font-weight: 600;
	color: var(--la-violet);
	background: rgba(106, 46, 224, .09);
	padding: 3px 10px;
	border-radius: 20px;
	margin-bottom: 10px;
}

.la-filtros { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.la-chip-filtro {
	padding: 8px 15px;
	border-radius: 30px;
	background: #fff;
	border: 1px solid var(--la-line);
	font-size: 14px;
	font-weight: 500;
	color: var(--la-ink-soft);
}
.la-chip-filtro:hover { text-decoration: none; border-color: #cfd6ea; }
.la-chip-filtro.is-active { background: var(--la-gradient); border-color: transparent; color: #fff; }

.la-abas { display: flex; gap: 4px; margin-bottom: 18px; border-bottom: 1px solid var(--la-line); }
.la-aba {
	padding: 11px 18px;
	font-weight: 600;
	font-size: 14.5px;
	color: var(--la-muted);
	border-bottom: 2px solid transparent;
	margin-bottom: -1px;
}
.la-aba:hover { text-decoration: none; color: var(--la-ink); }
.la-aba.is-active { color: var(--la-ink); border-bottom-color: var(--la-violet); }

/* ---------- Progresso, rosca e gráficos ---------- */

.la-progress {
	height: 7px;
	background: #edf0f9;
	border-radius: 20px;
	overflow: hidden;
	margin-top: 7px;
}
.la-progress__bar { height: 100%; border-radius: 20px; }
.la-progress__bar--gradiente { background: var(--la-gradient); }
.la-progress__bar--verde { background: #14b174; }
.la-progress__bar--azul { background: var(--la-blue); }
.la-progress__label { display: inline-block; margin-top: 5px; font-size: 12.5px; color: var(--la-muted); }

.la-donut { max-width: 210px; margin: 0 auto; }
.la-donut svg { width: 100%; height: auto; }
.la-donut__trilho { fill: none; stroke: #edf0f9; stroke-width: 15; }
.la-donut__valor { fill: none; stroke: var(--la-violet); stroke-width: 15; stroke-linecap: round; }
.la-donut__num { font-family: var(--la-serif); font-size: 34px; font-weight: 600; fill: var(--la-ink); text-anchor: middle; }
.la-donut__cap { font-size: 12px; fill: var(--la-muted); text-anchor: middle; }

.la-chart__legenda { display: flex; gap: 18px; justify-content: flex-end; font-size: 13px; color: var(--la-muted); margin-bottom: 12px; }
.la-dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; margin-right: 6px; }
.la-dot--a { background: var(--la-violet); }
.la-dot--b { background: var(--la-blue); }

.la-chart__grid { display: flex; align-items: flex-end; gap: 12px; height: 210px; }
.la-chart__col { flex: 1; display: flex; flex-direction: column; align-items: center; height: 100%; }
.la-chart__bars { flex: 1; display: flex; align-items: flex-end; gap: 5px; width: 100%; justify-content: center; }
.la-chart__bar { width: 22px; border-radius: 6px 6px 0 0; min-height: 3px; }
.la-chart__bar--a { background: var(--la-violet); }
.la-chart__bar--b { background: var(--la-blue); opacity: .55; }
.la-chart__x { margin-top: 9px; font-size: 12.5px; color: var(--la-muted); }

.la-rank { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid #f0f3fb; }
.la-rank:last-child { border-bottom: 0; }
.la-rank__pos {
	width: 26px; height: 26px;
	border-radius: 8px;
	display: grid; place-items: center;
	background: rgba(106, 46, 224, .10);
	color: var(--la-violet);
	font-size: 13px; font-weight: 700;
	flex: 0 0 auto;
}
.la-rank__corpo { flex: 1; min-width: 0; }
.la-rank__topo { display: flex; justify-content: space-between; gap: 10px; font-size: 14.5px; }
.la-rank__valor { font-variant-numeric: tabular-nums; font-weight: 600; }
.la-rank__apoio { font-size: 12.5px; color: var(--la-muted); }

.la-linha { margin-bottom: 16px; }
.la-linha span { font-size: 14px; color: var(--la-ink-soft); }
.la-linha b { float: right; font-variant-numeric: tabular-nums; }

.la-linhas-resumo { margin-top: 18px; border-top: 1px solid var(--la-line); padding-top: 14px; }
.la-linhas-resumo div { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; }
.la-linhas-resumo span { color: var(--la-muted); }

.la-linha-alerta {
	display: flex; justify-content: space-between; align-items: center; gap: 12px;
	padding: 11px 0; border-bottom: 1px solid #f0f3fb;
}
.la-linha-alerta:last-child { border-bottom: 0; }

.la-percurso { display: grid; grid-template-columns: 200px minmax(0, 1fr); gap: 24px; align-items: center; }
.la-percurso__linhas { min-width: 0; }

.la-dados div { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid #f4f6fc; font-size: 14px; }
.la-dados div:last-child { border-bottom: 0; }
.la-dados span { color: var(--la-muted); }

.la-atalhos { display: grid; gap: 8px; }
.la-atalho {
	display: flex; align-items: center; gap: 10px;
	padding: 12px 14px;
	border: 1px solid var(--la-line);
	border-radius: var(--la-radius-sm);
	color: var(--la-ink-soft);
	font-weight: 500;
	font-size: 14.5px;
}
.la-atalho:hover { text-decoration: none; border-color: #cfd6ea; color: var(--la-ink); }
.la-atalho svg { width: 18px; height: 18px; color: var(--la-violet); }

/* ---------- Aula ---------- */

.la-player { position: relative; padding-top: 56.25%; background: #0d1428; border-radius: var(--la-radius-sm); overflow: hidden; }
.la-player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.la-video-title { font-weight: 600; margin: 0 0 14px; font-size: 16px; }

.la-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.la-list__item {
	display: flex; align-items: center; justify-content: space-between; gap: 12px;
	border: 1px solid var(--la-line);
	border-radius: var(--la-radius-sm);
	padding: 11px 14px;
	font-size: 14.5px;
	color: var(--la-ink-soft);
	background: #fff;
	text-align: left;
	width: 100%;
	cursor: pointer;
	font-family: inherit;
	transition: border-color .15s ease, color .15s ease;
}
.la-list__item:hover { border-color: #c9d3ee; color: var(--la-ink); text-decoration: none; }
.la-list__item.is-playing {
	border-color: var(--la-violet);
	color: var(--la-ink);
	font-weight: 600;
	background: linear-gradient(90deg, rgba(42, 160, 247, .08), rgba(106, 46, 224, .08));
}
.la-list__item span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.la-list__item small { color: var(--la-brand); font-weight: 600; white-space: nowrap; }

.la-upload {
	border: 1px dashed #c9d3ee;
	border-radius: var(--la-radius-sm);
	padding: 18px;
	text-align: center;
	color: var(--la-muted);
	font-size: 14px;
	margin-bottom: 14px;
}
.la-upload input[type="file"] { width: 100%; margin: 10px 0; font-size: 13px; }

.la-nota-grande {
	font-family: var(--la-serif);
	font-size: 40px;
	font-weight: 600;
	color: var(--la-ok);
	margin: 6px 0;
	line-height: 1;
}

.la-ementa h3 { font-size: 15px; font-weight: 600; margin: 22px 0 8px; }
.la-ementa h3:first-child { margin-top: 0; }
.la-ementa p, .la-ementa li { color: var(--la-ink-soft); font-size: 14.5px; max-width: 78ch; }
.la-ementa ul { margin: 0; padding-left: 18px; }
.la-ementa ul li { margin-bottom: 5px; }
.la-ementa .la-ref { color: var(--la-brand); font-size: 13.5px; margin-bottom: 6px; }

.la-correcoes .la-card__head span { line-height: 1.3; }
.la-form-nota .la-grid-2 { gap: 0 16px; }

/* ---------- Cursos, biblioteca e packs ---------- */

.la-curso__titulo, .la-item__titulo {
	font-family: var(--la-serif);
	font-size: 20px;
	font-weight: 600;
	margin: 0 0 6px;
	line-height: 1.2;
}
.la-curso__resumo { color: var(--la-ink-soft); font-size: 14px; }
.la-curso .la-btn { margin-top: 14px; }

.la-item__capa { background: #f4f6fd; }
.la-item__capa img { width: 100%; height: 180px; object-fit: cover; display: block; }
.la-item__acoes { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }

.la-packs { display: grid; gap: 20px; }
.la-pack { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 0; }
.la-pack__mosaico { background: #f1ece6; }
.la-pack__mosaico img { width: 100%; height: 100%; min-height: 240px; object-fit: cover; display: block; }
.la-pack__texto { padding: 26px 28px; align-self: center; }
.la-pack__titulo { font-family: var(--la-serif); font-size: 26px; font-weight: 600; margin: 0 0 8px; line-height: 1.15; }

/* ---------- Agenda ---------- */

.la-agenda { display: grid; gap: 16px; }
.la-aula-linha {
	display: flex; justify-content: space-between; align-items: center; gap: 14px;
	padding: 11px 0; border-bottom: 1px solid #f0f3fb; flex-wrap: wrap;
}
.la-aula-linha:last-child { border-bottom: 0; }
.la-aula-linha__acoes { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }

/* ---------- Vazio ---------- */

.la-empty { text-align: center; padding: 34px 20px; color: var(--la-muted); }
.la-empty p { margin: 0 0 14px; }

/* ---------- Responsivo ---------- */

@media (max-width: 1080px) {
	.la-cols, .la-cols-2, .la-pack { grid-template-columns: minmax(0, 1fr); }
	.la-percurso { grid-template-columns: minmax(0, 1fr); }
	.la-pack__mosaico img { min-height: 200px; }
}

@media (max-width: 860px) {
	.la-shell { grid-template-columns: minmax(0, 1fr); }
	.la-side {
		position: fixed;
		inset: 0 auto 0 0;
		width: 258px;
		z-index: 40;
		transform: translateX(-100%);
		transition: transform .2s ease;
		box-shadow: var(--la-shadow);
	}
	.la-side.is-open { transform: none; }
	.la-burger { display: inline-flex; }
	.la-content { padding: 20px 16px; }
	.la-top { padding: 12px 16px; }
	.la-login__card { padding: 30px 22px 34px; }
	.la-grid-2 { grid-template-columns: minmax(0, 1fr); }
	.la-page-head h1 { font-size: 25px; }
	.la-chart__grid { height: 170px; }
}

.la-backdrop { display: none; position: fixed; inset: 0; background: rgba(16, 26, 51, .38); z-index: 30; }
.la-backdrop.is-open { display: block; }

@media (prefers-reduced-motion: reduce) {
	.la-side, .la-btn, .la-input { transition: none; }
}

@media print {
	.la-side, .la-top, .la-foot, .la-page-head__acoes { display: none; }
	.la-shell { grid-template-columns: minmax(0, 1fr); }
	.la-card { break-inside: avoid; box-shadow: none; }
}
