/* ===========================================================
   Templio — base do app (Web/Mobile)
   Só o que é global de verdade. Estilo de componente vive no
   {Componente}.razor.css, consumindo as vars do tokens.css.
   =========================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0 0 12px;
}

a {
    color: var(--color-focus);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ---------- Cycle bar (elemento de assinatura da marca) ----------
   Vem do Templio.Site; aqui vira o indicador de posição no ciclo da
   tela /foco (Etapa 5 do plano). */
.cycle-bar {
    display: inline-flex;
    gap: 3px;
    align-items: center;
}

.cycle-block {
    width: 14px;
    height: 8px;
    border-radius: 2px;
    background: var(--color-border);
}

.cycle-block--focus {
    background: var(--color-focus);
}

.cycle-block--rest {
    background: var(--color-rest);
}

.cycle-bar--lg .cycle-block {
    width: 34px;
    height: 14px;
    border-radius: 3px;
}
