/* ============================================================
   SafeNote — folha de estilo base
   Tema escuro, base azul marinho.

   Como o layout se molda à tela:
     < 900px   celular  — barra de abas embaixo, menu vira gaveta
     >= 900px  desktop  — coluna de navegação fixa à esquerda
     >= 1200px           — grade de turmas em duas colunas

   Linguagem visual:
     - hierarquia por tom de superfície + fio de 1px, não por sombra pesada;
     - tipografia com contraste de escala (título grande e apertado ao lado
       de rótulo minúsculo em caixa alta) — é daí que vem a personalidade;
     - curva presente, mas contida: 14px em botão, 18px em card. Pílula só
       em chip e avatar, onde a forma tem função;
     - cor forte usada com parcimônia, em um lugar de cada vez.
   ============================================================ */

:root {
    /* Superfícies */
    --bg: #070d16;
    --surface-1: #0e1826;
    --surface-2: #162234;
    --surface-3: #1e2c42;
    --line: rgba(255, 255, 255, .06);
    --line-2: rgba(255, 255, 255, .10);

    /* Texto */
    --text: #f2f6fb;
    --text-2: #94a7bf;
    /* --text-3 veste rótulo minúsculo e placeholder. Mais escuro que isto
       não passa no contraste mínimo em texto de 11px. */
    --text-3: #7288a1;

    /* Azul de destaque */
    --accent: #5b8cff;
    --accent-lift: #7aa3ff;
    --accent-text: #9dbcff;
    --accent-ink: #050b14;
    --accent-wash: rgba(91, 140, 255, .12);

    /* Estados */
    --danger: #f4796f;
    --danger-wash: rgba(244, 121, 111, .12);
    --warn: #e8b555;
    --warn-wash: rgba(232, 181, 85, .12);

    /* Dourado — só o selo de criador. Separado do --warn de propósito,
       ainda que sejam vizinhos: --warn quer dizer "olha isto", e um selo
       de criador não é um alerta. Cores com significados diferentes que
       compartilham token acabam mudando juntas quando só uma devia mudar.
       Puxado para o quente e saturado para não ler como o amarelo de
       aviso: 10,5:1 sobre o fundo, 9,6:1 sobre superfície. */
    --gold: #e5b84b;
    --gold-wash: rgba(229, 184, 75, .14);

    /* Verde floresta — concluído. Escuro e frio, para conviver com o marinho. */
    --forest: #35845a;
    --forest-deep: #102319;
    --forest-text: #8ab99b;
    --forest-wash: rgba(53, 132, 90, .22);

    /* Forma */
    --r-1: 10px;
    --r-2: 14px;
    --r-3: 18px;
    --r-4: 24px;
    --r-full: 999px;

    --shadow-1: 0 1px 2px rgba(0, 0, 0, .4);
    --shadow-2: 0 4px 16px rgba(0, 0, 0, .45);
    --shadow-3: 0 12px 40px rgba(0, 0, 0, .55);

    /* Medidas do esqueleto */
    --nav-w: 264px;
    --tabbar-h: 62px;
    --content-w: 860px;

    --ease: cubic-bezier(.2, .8, .3, 1);

    --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-mono: ui-monospace, "Cascadia Mono", "SF Mono", Consolas, monospace;

    color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    -webkit-text-size-adjust: 100%;
    background: var(--bg);
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.5;
    color: var(--text);
    background: var(--bg);
    -webkit-tap-highlight-color: transparent;
    overscroll-behavior-y: none;
}
body.is-locked { overflow: hidden; }

h1, h2, h3, h4 { margin: 0; font-weight: 650; letter-spacing: -.02em; }
p { margin: 0; }
a { color: var(--accent-text); text-decoration: none; }

[hidden] { display: none !important; }

/* Escala tipográfica ------------------------------------------------ */

.display {
    font-size: clamp(27px, 7vw, 34px);
    font-weight: 700;
    letter-spacing: -.035em;
    line-height: 1.08;
}
.eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--text-3);
}
.lead { font-size: 15px; color: var(--text-2); }
.muted { color: var(--text-2); }

svg.icon {
    width: 20px;
    height: 20px;
    flex: none;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
}
svg.icon--sm { width: 15px; height: 15px; stroke-width: 2; }
svg.icon--lg { width: 30px; height: 30px; stroke-width: 1.5; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
::selection { background: var(--accent-wash); }

* { scrollbar-width: thin; scrollbar-color: var(--surface-3) transparent; }
*::-webkit-scrollbar { width: 8px; height: 8px; }
*::-webkit-scrollbar-thumb {
    background: var(--surface-3);
    border: 2px solid transparent;
    background-clip: content-box;
    border-radius: 4px;
}

/* ============================================================
   Esqueleto responsivo
   ============================================================ */

.shell { min-height: 100dvh; }

.shell__main { min-width: 0; }

.topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 58px;
    padding: 0 10px;
    background: color-mix(in srgb, var(--bg) 88%, transparent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color .2s ease;
    border-bottom: 1px solid transparent;
}
.topbar--scrolled { border-bottom-color: var(--line); }
.topbar__inner {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: var(--content-w);
    margin: 0 auto;
}
.topbar__spacer { flex: 1; }
.topbar__here {
    min-width: 0;
    font-size: 15px;
    font-weight: 650;
    letter-spacing: -.015em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.page {
    max-width: var(--content-w);
    margin: 0 auto;
    padding: 18px 16px calc(var(--tabbar-h) + 90px);
}

/* ============================================================
   Botões
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px;
    padding: 0 18px;
    border: 0;
    border-radius: var(--r-2);
    font: 650 14.5px/1 var(--font);
    letter-spacing: -.015em;
    color: var(--text);
    background: transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color .15s ease, color .15s ease, transform .1s var(--ease), opacity .15s ease;
}
.btn:active:not(:disabled) { transform: scale(.965); }
.btn:disabled { opacity: .45; cursor: default; }

.btn--primary { background: var(--accent); color: var(--accent-ink); }
.btn--primary:hover:not(:disabled) { background: var(--accent-lift); }

.btn--soft { background: var(--surface-2); color: var(--text); }
.btn--soft:hover:not(:disabled) { background: var(--surface-3); }

.btn--outline { color: var(--accent-text); box-shadow: inset 0 0 0 1px var(--line-2); }
.btn--outline:hover:not(:disabled) { background: var(--accent-wash); }

.btn--text { color: var(--accent-text); padding: 0 14px; }
.btn--text:hover:not(:disabled) { background: var(--accent-wash); }

.btn--quiet { color: var(--text-2); padding: 0 14px; }
.btn--quiet:hover:not(:disabled) { background: var(--surface-2); color: var(--text); }

.btn--danger { color: var(--danger); }
.btn--danger:hover:not(:disabled) { background: var(--danger-wash); }

.btn--block { width: 100%; }
.btn--lg { height: 50px; font-size: 15.5px; }
.btn--sm { height: 36px; padding: 0 13px; font-size: 13.5px; border-radius: var(--r-1); }

.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: var(--r-2);
    background: transparent;
    color: var(--text-2);
    cursor: pointer;
    transition: background-color .15s ease, color .15s ease, transform .1s var(--ease);
}
.icon-btn:hover { background: var(--surface-2); color: var(--text); }
.icon-btn:active { transform: scale(.9); }

.avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex: none;
    border-radius: var(--r-full);
    background: var(--surface-2);
    color: var(--text-2);
    cursor: pointer;
    transition: background-color .15s ease, transform .1s var(--ease);
}
.avatar:hover { background: var(--surface-3); color: var(--text); }
.avatar:active { transform: scale(.92); }

/* Ação principal flutuante — quadrado de canto suave, não bolha. */
.fab {
    position: fixed;
    right: 18px;
    bottom: calc(var(--tabbar-h) + 18px + env(safe-area-inset-bottom));
    z-index: 35;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 56px;
    height: 56px;
    padding: 0;
    border: 0;
    border-radius: var(--r-3);
    font: 650 15px/1 var(--font);
    color: var(--accent-ink);
    background: var(--accent);
    box-shadow: var(--shadow-3);
    cursor: pointer;
    transition: transform .12s var(--ease), background-color .15s ease;
}
.fab:hover { background: var(--accent-lift); }
.fab:active { transform: scale(.93); }
.fab svg { stroke-width: 2.4; }
.fab__label { display: none; }

/* ============================================================
   Cartões e blocos
   ============================================================ */

.card {
    background: var(--surface-1);
    border: 1px solid var(--line);
    border-radius: var(--r-3);
    padding: 16px;
    transition: border-color .15s ease, background-color .15s ease, transform .1s var(--ease);
}

.grid { display: grid; grid-template-columns: 1fr; gap: 12px; }

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 30px 2px 12px;
}
.section-head h2, .section-head h3 { font-size: 17px; }
.section-head__left { display: flex; align-items: center; gap: 10px; min-width: 0; }

.stack { display: flex; flex-direction: column; gap: 10px; }

.empty {
    padding: 46px 24px;
    text-align: center;
    color: var(--text-2);
    background: var(--surface-1);
    border: 1px dashed var(--line-2);
    border-radius: var(--r-3);
}
.empty svg { color: var(--text-3); margin-bottom: 12px; }
.empty p { font-size: 14px; }
.empty .btn { margin-top: 16px; }

/* Entrada dos itens da lista, escalonada. Rápida —
   se demorar vira enfeite e atrapalha. */
.rise {
    animation: rise .34s var(--ease) both;
}
@keyframes rise {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: none; }
}

/* ============================================================
   Formulário
   ============================================================ */

.field { display: block; margin-bottom: 15px; }
.field__label {
    display: block;
    margin: 0 0 7px 2px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-2);
}

.input {
    display: block;
    width: 100%;
    height: 48px;
    padding: 0 15px;
    border: 1px solid var(--line);
    border-radius: var(--r-2);
    font: 400 15px/1.5 var(--font);
    color: var(--text);
    background: var(--surface-1);
    transition: border-color .15s ease, background-color .15s ease;
}
textarea.input { height: auto; min-height: 96px; padding: 12px 15px; resize: vertical; }
.input::placeholder { color: var(--text-3); }
.input:hover { border-color: var(--line-2); }
.input:focus {
    outline: none;
    background: var(--surface-2);
    border-color: var(--accent);
}
.input--code {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .34em;
    font-weight: 700;
    font-size: 19px;
    text-indent: .34em;
    font-family: var(--font-mono);
}
.input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(.6); cursor: pointer; }

.checkbox {
    width: 22px;
    height: 22px;
    margin: 1px 0 0;
    accent-color: var(--forest);
    cursor: pointer;
    flex: none;
}

/* ============================================================
   Chips
   ============================================================ */

.chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    height: 23px;
    padding: 0 10px;
    border-radius: var(--r-full);
    font-size: 11.5px;
    font-weight: 650;
    letter-spacing: .005em;
    background: var(--surface-2);
    color: var(--text-2);
    white-space: nowrap;
}
.chip--blue { background: var(--accent-wash); color: var(--accent-text); }
.chip--green { background: var(--forest-wash); color: var(--forest-text); }
.chip--red { background: var(--danger-wash); color: var(--danger); }
.chip--amber { background: var(--warn-wash); color: var(--warn); }

.code-chip {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .16em;
    color: var(--text-2);
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 3px 9px 3px 11px;
}

/* ============================================================
   Login
   ============================================================ */

.auth {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100dvh;
    padding: 28px 20px calc(28px + env(safe-area-inset-bottom));
}
.auth__box { width: 100%; max-width: 380px; }
.auth__head { margin-bottom: 34px; }
.auth__head img { width: 56px; height: 56px; margin-bottom: 18px; display: block; }
.auth__head h2 { font-size: clamp(28px, 8vw, 34px); font-weight: 700; letter-spacing: -.035em; }
.auth__head p { color: var(--text-2); margin-top: 6px; }
.auth__legal {
    margin-top: 22px;
    font-size: 12.5px;
    line-height: 1.7;
    color: var(--text-3);
}
.link-btn {
    border: 0;
    padding: 0;
    background: none;
    font: inherit;
    font-weight: 650;
    color: var(--accent-text);
    cursor: pointer;
}
.link-btn:hover { text-decoration: underline; }
.link-btn--strong { font-weight: 700; color: var(--accent); }

/* Troca entre entrar e criar conta */
.auth__switch {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: var(--text-2);
}

/* Botão do Google. A marca exige o "G" colorido sobre fundo neutro;
   aqui o neutro é a nossa superfície, para não abrir um retângulo branco
   no meio do tema escuro. */
.btn--google {
    background: var(--surface-2);
    color: var(--text);
    box-shadow: inset 0 0 0 1px var(--line-2);
}
.btn--google:hover:not(:disabled) { background: var(--surface-3); }
.g-logo { width: 19px; height: 19px; flex: none; }

/* Separador "ou" */
.or {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 20px 0;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-3);
}
.or::before, .or::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--line-2);
}

.field__hint {
    margin: 7px 0 0 2px;
    font-size: 12.5px;
    color: var(--text-3);
}

/* Aceite dos termos */
.consent {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 4px 0 20px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-2);
    cursor: pointer;
}
.consent .checkbox { accent-color: var(--accent); margin-top: 1px; }
.consent .link-btn { font-size: 13px; }

/* Campos-armadilha: fora da tela, nunca vistos ou tabulados por gente. */
.trap {
    position: absolute !important;
    left: -9999px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* ============================================================
   Abertura da página (saudação)
   ============================================================ */

.greeting { margin: 6px 0 22px; }
.greeting .eyebrow { margin-bottom: 8px; }
.greeting__sub { margin-top: 7px; color: var(--text-2); font-size: 14.5px; }

/* ============================================================
   Turma — cabeçalho do aluno
   ============================================================ */

.hero {
    position: relative;
    overflow: hidden;
    padding: 18px;
    background: var(--surface-1);
    border: 1px solid var(--line);
    border-radius: var(--r-4);
}
.hero__top { display: flex; align-items: center; gap: 14px; }
.hero__info { flex: 1; min-width: 0; }
/* Nome da turma e código na mesma linha. O flex-wrap é o que segura turma
   de nome comprido em tela estreita: em vez de espremer os dois, o código
   desce inteiro para a linha de baixo. */
.hero__name {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -.025em;
    margin-top: 3px;
}
.hero__name-texto { word-break: break-word; }
.hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
    margin-top: 11px;
    font-size: 13px;
    color: var(--text-2);
}
.hero__meta span { display: inline-flex; align-items: center; gap: 6px; }

.hero__stats {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}
.hero__numbers { flex: 1; display: flex; gap: 22px; }
.stat__value {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.1;
}
.stat__label {
    display: block;
    margin-top: 2px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-3);
}
.stat--alert .stat__value { color: var(--danger); }
.stat--done .stat__value { color: var(--forest-text); }

/* Anel de progresso — o ponto focal do cartão */
.ring { position: relative; width: 78px; height: 78px; flex: none; }
.ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring circle { fill: none; stroke-width: 5; stroke-linecap: round; }
.ring__track { stroke: var(--surface-3); }
.ring__fill {
    stroke: var(--forest);
    transition: stroke-dashoffset .6s var(--ease);
}
/* O número e o % ficam lado a lado — "20%" — centrados no vão do arco.
   Todo o texto vai dentro de .ring__val (um único filho) porque, num
   container grid, texto solto e elemento viram itens separados: era isso
   que jogava o símbolo para baixo do número. Com um filho só, os dois
   voltam a ser conteúdo inline e alinham pela linha de base. */
.ring__num {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    line-height: 1;
}
.ring__val {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -.03em;
}
.ring__val i {
    font-style: normal;
    font-size: 12px;
    font-weight: 650;
    letter-spacing: 0;
    margin-left: 1px;
}

/* Selo com as iniciais da matéria. A cor sai do nome, então a mesma turma
   aparece sempre no mesmo tom — ajuda a reconhecer de relance. */
.badge-sala {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    flex: none;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -.02em;
    background: var(--accent-wash);
    color: var(--accent-text);
}
.badge-sala--sm { width: 42px; height: 42px; border-radius: 12px; font-size: 15px; }

.tone-1 { background: rgba(91, 140, 255, .14); color: #8fb3ff; }
.tone-2 { background: rgba(45, 191, 178, .14); color: #57cfc3; }
.tone-3 { background: rgba(83, 186, 122, .14); color: #6fc98f; }
.tone-4 { background: rgba(232, 181, 85, .14); color: #e8b555; }
.tone-5 { background: rgba(244, 121, 111, .14); color: #f4796f; }
.tone-6 { background: rgba(166, 137, 245, .14); color: #b79cf7; }

/* ============================================================
   Lista de atividades
   ============================================================ */

.group { margin-top: 26px; }
.group:first-of-type { margin-top: 18px; }
.group__head {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 2px 10px;
}
.group__head .eyebrow { color: var(--text-2); }
.group__count {
    font-size: 11px;
    font-weight: 700;
    /* fundo mais claro que a página: precisa de texto mais claro junto */
    color: var(--text-2);
    background: var(--surface-2);
    border-radius: var(--r-full);
    padding: 1px 8px;
}
.group--alert .group__head .eyebrow { color: var(--danger); }

.task {
    position: relative;
    display: flex;
    gap: 13px;
    padding: 14px 15px;
    background: var(--surface-1);
    border: 1px solid var(--line);
    border-radius: var(--r-3);
    transition: background-color .3s ease, border-color .2s ease, transform .1s var(--ease);
}
.task:hover { border-color: var(--line-2); }

/* Marca de estado: traço curto e arredondado na lateral */
.task[data-mark]::before {
    content: "";
    position: absolute;
    left: -1px;
    top: 15px;
    bottom: 15px;
    width: 3px;
    border-radius: 0 3px 3px 0;
    transition: background-color .3s ease;
}
.task[data-mark="urgent"]::before { background: var(--danger); }
.task[data-mark="late"]::before { background: var(--surface-3); }
.task[data-mark="done"]::before { background: var(--forest); }

.task__body { flex: 1; min-width: 0; }
.task__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}
.task__title {
    font-size: 15.5px;
    font-weight: 650;
    letter-spacing: -.015em;
    line-height: 1.35;
    word-break: break-word;
    transition: color .3s ease;
}
.task__meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    font-size: 13px;
    color: var(--text-2);
}
.task__note {
    margin-top: 11px;
    padding: 11px 13px;
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--text-2);
    background: var(--bg);
    border-radius: 12px;
    word-break: break-word;
    white-space: pre-wrap;
}
.task__actions { display: flex; align-items: center; }

.task--late .task__title { color: var(--text-2); }

/* Concluída — verde floresta escuro */
.task--done {
    background: var(--forest-deep);
    border-color: rgba(53, 132, 90, .28);
}
.task--done .task__title {
    color: var(--forest-text);
    text-decoration: line-through;
    text-decoration-color: rgba(138, 185, 155, .38);
    text-decoration-thickness: 1.5px;
}
.task--done .task__meta { color: rgba(138, 185, 155, .72); }
.task--done .task__note {
    background: rgba(0, 0, 0, .22);
    color: rgba(138, 185, 155, .85);
}
/* pulso curto no momento em que o aluno marca */
.task--just-done { animation: pop .32s var(--ease); }
@keyframes pop {
    40% { transform: scale(1.015); }
    100% { transform: scale(1); }
}

/* ============================================================
   Assinatura da postagem
   ============================================================ */

.post {
    margin-top: 12px;
    padding-top: 11px;
    border-top: 1px solid var(--line);
}
.post__autor {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--text-2);
}
.post__autor > span:first-of-type { font-weight: 600; color: var(--text); }
.post__autor svg { color: var(--text-3); }

.post__info {
    display: inline-grid;
    place-items: center;
    width: 19px;
    height: 19px;
    flex: none;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--surface-2);
    color: var(--text-2);
    font: 700 11px/1 var(--font-mono);
    cursor: pointer;
    transition: background-color .15s ease, color .15s ease;
}
.post__info:hover { background: var(--surface-3); color: var(--text); }

.post__quando {
    margin-top: 7px;
    font-size: 12.5px;
    color: var(--text-3);
}

.post__acoes {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}
.post__acoes .btn.is-on { color: var(--warn); background: var(--warn-wash); }

/* ============================================================
   Selos

   Dois, e a diferença é só a cor:

     .verificado            azul  — conta verificada pela escola
     .verificado--criador   dourado — quem fez o SafeNote

   O desenho é uma roseta de 8 pontas, simétrica nos dois eixos. A versão
   anterior tinha o lado esquerdo com coordenadas que não espelhavam o
   direito, e o resultado não era um círculo dentado: era um círculo com
   os cantos cortados, torto, e ficava evidente ao lado de um nome.

   Só o console do Firebase grava 'criador'. O painel de administração
   não oferece o botão, e as regras nem o listam entre os campos
   editáveis — é o que faz o selo dourado significar alguma coisa.
   ============================================================ */

.verificado {
    display: inline-flex;
    align-items: center;
    color: var(--accent);
}
.verificado svg { stroke-width: 1.6; }

.verificado--criador { color: var(--gold); }

/* No rodapé da tarefa, .post__autor pinta todo svg de --text-3 para deixar
   o ícone de usuário discreto. O selo não pode ser arrastado junto: a cor
   dele é a informação — é ela que separa o azul do dourado. Mais específico
   que a regra de cima, então ganha sem depender da ordem do arquivo. */
.post__autor .verificado svg { color: inherit; }

/* ============================================================
   Informações — índice de três destinos
   ============================================================ */

.destinos { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }

.destino {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--surface-1);
    border: 1px solid var(--line);
    border-radius: var(--r-3);
    text-decoration: none;
    color: var(--text);
    transition: border-color .15s ease, background-color .15s ease, transform .1s var(--ease);
}
.destino:hover {
    border-color: var(--line-2);
    background: var(--surface-2);
    text-decoration: none;
}
.destino:active { transform: scale(.99); }

.destino__icone {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    flex: none;
    border-radius: 14px;
}

.destino__texto { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.destino__texto b {
    font-size: 15.5px;
    font-weight: 650;
    letter-spacing: -.015em;
}
.destino__texto span { font-size: 13px; color: var(--text-2); }

.destino__seta { flex: none; color: var(--text-3); }

/* ============================================================
   Sobre o app — a carta de apresentação
   ============================================================ */

.carta {
    margin-top: 18px;
    padding: 22px;
    background: var(--surface-1);
    border: 1px solid var(--line);
    border-radius: var(--r-3);
}
.carta p {
    margin-bottom: 14px;
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--text-2);
}
.carta p:first-child {
    font-size: 19px;
    font-weight: 650;
    letter-spacing: -.02em;
    color: var(--text);
}
.carta p:last-child { margin-bottom: 0; }

.carta__assinatura {
    margin-top: 26px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}
.carta__frase { font-weight: 650; color: var(--text) !important; }
.carta__fim { text-align: right; margin-bottom: 4px !important; }

/* O projeto que veio antes. Fica em destaque porque é convite:
   quem clica descobre de onde o SafeNote saiu. */
.sofie-link {
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color .15s ease, color .15s ease;
}
.sofie-link:hover {
    color: var(--accent-lift);
    border-bottom-color: var(--accent-lift);
    text-decoration: none;
}

/* ============================================================
   Relato de bug

   Mais sóbrio que o feedback de propósito: escolha de gravidade em
   cartões com explicação, campos numerados, e o bloco técnico à vista
   — coletar dados do aparelho em silêncio seria outra coisa.
   ============================================================ */

.gravidade { display: grid; grid-template-columns: 1fr; gap: 8px; }

.gravidade__item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--r-2);
    background: var(--bg);
    font-family: var(--font);
    text-align: left;
    cursor: pointer;
    transition: border-color .15s ease, background-color .15s ease;
}
.gravidade__item:hover { border-color: var(--line-2); }
.gravidade__item b {
    font-size: 14px;
    font-weight: 650;
    letter-spacing: -.015em;
    color: var(--text);
}
.gravidade__item span { font-size: 12.5px; color: var(--text-2); }
.gravidade__item.is-on {
    border-color: var(--accent);
    background: var(--accent-wash);
}

.obrigatorio {
    margin-left: 6px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--danger);
}

.field__hint--alerta { color: var(--warn); }

@media (min-width: 620px) {
    .gravidade { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   Ranking

   Três primeiros com faixa de posição colorida, e a linha de quem
   está usando destacada em azul — mesmo quando ela está lá embaixo,
   separada por um corte que deixa claro que houve um salto.
   ============================================================ */

.segmentado {
    display: flex;
    gap: 4px;
    padding: 4px;
    margin-top: 4px;
    background: var(--surface-1);
    border: 1px solid var(--line);
    border-radius: var(--r-2);
}
.segmentado__item {
    flex: 1;
    height: 36px;
    border: 0;
    border-radius: var(--r-1);
    background: transparent;
    font: 650 13.5px/1 var(--font);
    color: var(--text-2);
    cursor: pointer;
    transition: background-color .15s ease, color .15s ease;
}
.segmentado__item:hover { color: var(--text); }
.segmentado__item.is-on { background: var(--surface-3); color: var(--text); }

.podio { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }

.rk {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 15px 13px 12px;
    background: var(--surface-1);
    border: 1px solid var(--line);
    border-radius: var(--r-3);
    overflow: hidden;
}
.rk::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: transparent;
}
.rk--1::before { background: #e8b555; }
.rk--2::before { background: #b9c4d2; }
.rk--3::before { background: #cd8b57; }

.rk--eu {
    border-color: var(--accent);
    background: var(--accent-wash);
}

.rk__pos {
    flex: none;
    min-width: 26px;
    font-size: 16px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: -.03em;
    text-align: center;
    color: var(--text-2);
}
.rk--1 .rk__pos { color: #e8b555; }
.rk--2 .rk__pos { color: #b9c4d2; }
.rk--3 .rk__pos { color: #cd8b57; }

.rk__info { flex: 1; min-width: 0; }
.rk__nome {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14.5px;
    font-weight: 650;
    letter-spacing: -.015em;
    word-break: break-word;
}
.rk__sala {
    margin-top: 2px;
    font-size: 12.5px;
    color: var(--text-2);
}

.rk__total { flex: none; text-align: right; }
.rk__total strong {
    display: block;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.1;
}
.rk__total span { font-size: 11px; color: var(--text-3); }

/* Corte que marca o salto entre o pódio e a posição de quem está usando */
.ranking-corte {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--text-3);
}
.ranking-corte::before, .ranking-corte::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--line-2);
}

/* ============================================================
   Avisos — feed da escola

   Estrutura de post de rede social: avatar à esquerda, coluna de
   conteúdo à direita, cabeçalho com autor e tempo relativo. O horário
   cravado fica embaixo porque aviso de escola precisa de data exata,
   não só de "há 5 h".
   ============================================================ */

.feed { display: flex; flex-direction: column; gap: 10px; }

.post-av {
    display: flex;
    gap: 12px;
    padding: 15px 16px;
    background: var(--surface-1);
    border: 1px solid var(--line);
    border-radius: var(--r-3);
    transition: border-color .15s ease;
}
.post-av:hover { border-color: var(--line-2); }

.post-av__avatar {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex: none;
    border-radius: 13px;
    background: var(--accent-wash);
    color: var(--accent);
}

.post-av__corpo { flex: 1; min-width: 0; }

.post-av__cabecalho {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    font-size: 13.5px;
}
.post-av__autor {
    font-weight: 700;
    letter-spacing: -.015em;
    color: var(--text);
}
.post-av__sep { color: var(--text-3); }
.post-av__quando { color: var(--text-2); }
.post-av__excluir { margin-left: auto; color: var(--text-3); }
.post-av__excluir:hover { color: var(--danger); background: var(--danger-wash); }

.post-av__texto {
    margin-top: 6px;
    font-size: 15px;
    line-height: 1.55;
    color: var(--text);
    word-break: break-word;
}
.post-av__data {
    margin-top: 10px;
    font-size: 12.5px;
    color: var(--text-3);
}

/* ---- caixa de publicar (só direção) ---- */

.compositor {
    padding: 15px 16px;
    margin-bottom: 18px;
    background: var(--surface-1);
    border: 1px solid var(--line-2);
    border-radius: var(--r-3);
}
.compositor__topo { display: flex; gap: 12px; }
.compositor__campo {
    flex: 1;
    min-width: 0;
    min-height: 52px;
    max-height: 320px;
    padding: 10px 0 0;
    border: 0;
    background: transparent;
    color: var(--text);
    font: 400 16px/1.5 var(--font);
    resize: none;
    overflow-y: auto;
}
.compositor__campo:focus { outline: none; }
.compositor__campo::placeholder { color: var(--text-3); }

.compositor__rodape {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
}
.compositor__contador {
    font-size: 12.5px;
    font-variant-numeric: tabular-nums;
    color: var(--text-3);
}

/* ============================================================
   Perfil

   Segue o padrão de tela de conta dos apps: identidade grande e
   centrada no topo, informação em listas agrupadas com rótulo à
   esquerda e valor à direita, e a ação destrutiva isolada no fim,
   longe do polegar que estava rolando a página.
   ============================================================ */

.perfil {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 0 28px;
}
.perfil__avatar {
    display: grid;
    place-items: center;
    width: 88px;
    height: 88px;
    margin-bottom: 16px;
    border-radius: 28px;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -.02em;
}
.perfil__nome {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(22px, 6vw, 27px);
    font-weight: 700;
    letter-spacing: -.03em;
    word-break: break-word;
}
.perfil__nome .verificado svg { width: 20px; height: 20px; }
.perfil__sub {
    margin-top: 6px;
    font-size: 14px;
    color: var(--text-2);
}

.grupo__titulo {
    margin: 26px 4px 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--text-3);
}
.grupo__titulo--perigo { color: var(--danger); }

.rows {
    background: var(--surface-1);
    border: 1px solid var(--line);
    border-radius: var(--r-3);
    overflow: hidden;
}
/* A margem de cima não é estética: antes existia um "Zona de risco" acima
   deste bloco, e o .grupo__titulo trazia 26px em cima mais 8px embaixo. Sem
   o título, o botão de excluir a conta encostaria no de sair — dois botões
   colados, um deles irreversível. O espaço passa a ser a única coisa que
   diz "isto aqui é outra coisa", então tem que ser maior do que o vão
   normal entre blocos. */
.rows--perigo {
    margin-top: 34px;
    border-color: rgba(244, 121, 111, .25);
}

.row {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-height: 52px;
    padding: 13px 16px;
    border: 0;
    border-top: 1px solid var(--line);
    background: transparent;
    font-family: var(--font);
    font-size: 14.5px;
    text-align: left;
    color: var(--text);
}
.row:first-child { border-top: 0; }

.row__rotulo { flex: none; color: var(--text-2); }
.row__valor {
    flex: 1;
    min-width: 0;
    text-align: right;
    font-weight: 600;
    word-break: break-word;
}
.row__valor--id {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}
.row__valor--id code {
    font-family: var(--font-mono);
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text-2);
    word-break: break-all;
}

.row--acao {
    cursor: pointer;
    font-weight: 600;
    transition: background-color .15s ease;
}
.row--acao .row__rotulo { flex: 1; color: var(--text); }
.row--acao:hover { background: var(--surface-2); }
.row--acao:active { background: var(--surface-3); }
.row--perigo { color: var(--danger); }
.row--perigo .row__rotulo { color: var(--danger); }
.row--perigo:hover { background: var(--danger-wash); }

.icon-btn--mini { width: 30px; height: 30px; border-radius: 8px; }

.nota-lgpd {
    margin: 12px 4px 0;
    font-size: 12.5px;
    line-height: 1.65;
    color: var(--text-3);
}

/* ---- avisos dentro do modal ---- */

.aviso {
    padding: 13px 15px;
    border-radius: var(--r-2);
    background: var(--bg);
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text-2);
}
.aviso--perigo {
    background: var(--danger-wash);
    color: var(--danger);
}
.aviso strong { color: inherit; }

.lista-check {
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
    font-size: 13.5px;
    color: var(--text-2);
}
.lista-check li {
    position: relative;
    padding: 5px 0 5px 20px;
    line-height: 1.5;
}
.lista-check li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 12px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--danger);
}

.btn--perigo { background: var(--danger); color: #2a0b08; }
.btn--perigo:hover:not(:disabled) { background: #ff9d94; }

/* ============================================================
   Aba Alunos
   ============================================================ */

.membro {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px 15px;
    background: var(--surface-1);
    border: 1px solid var(--line);
    border-radius: var(--r-3);
}
.membro__info { flex: 1; min-width: 0; }
.membro__nome {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 650;
    letter-spacing: -.015em;
    word-break: break-word;
}
.membro__voce {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-3);
}
.membro__cargos {
    display: flex;
    gap: 6px;
    margin-top: 6px;
    flex-wrap: wrap;
}
.membro__cargos .chip svg { width: 12px; height: 12px; }
.membro__acoes { flex: none; }

/* ============================================================
   Cartão de turma (professor)
   ============================================================ */

.sala-card { cursor: pointer; }
.sala-card:hover { border-color: var(--line-2); background: var(--surface-2); }
.sala-card:active { transform: scale(.99); }
.sala-card__head { display: flex; align-items: center; gap: 13px; }
.sala-card__name {
    font-size: 16px;
    font-weight: 650;
    letter-spacing: -.02em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.sala-card__foot {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}
.sala-card__foot .code-chip { margin-right: auto; }

/* ============================================================
   Modal — folha no celular, caixa no desktop
   ============================================================ */

.modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: rgba(3, 7, 12, .74);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    animation: fade .18s ease;
}
.modal__box {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 520px;
    max-height: 88dvh;
    padding-bottom: env(safe-area-inset-bottom);
    background: var(--surface-2);
    border: 1px solid var(--line-2);
    border-bottom: 0;
    border-radius: var(--r-4) var(--r-4) 0 0;
    box-shadow: var(--shadow-3);
    animation: sheet-up .28s var(--ease);
}
.modal__box::before {
    content: "";
    width: 36px;
    height: 4px;
    flex: none;
    margin: 10px auto 0;
    border-radius: var(--r-full);
    background: var(--surface-3);
}
.modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 12px 12px 22px;
}
.modal__head h3 { font-size: 18px; font-weight: 700; letter-spacing: -.025em; }
.modal__body { padding: 4px 22px 20px; overflow-y: auto; }
.modal__foot {
    display: flex;
    gap: 10px;
    padding: 12px 16px calc(18px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
}
.modal__foot .btn { flex: 1; }

@keyframes sheet-up { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

/* ============================================================
   Texto legal
   ============================================================ */

.legal { font-size: 14px; color: var(--text-2); }
.legal h3 { margin: 22px 0 8px; font-size: 14px; font-weight: 650; color: var(--text); }
.legal h3:first-child { margin-top: 0; }
.legal p { margin-bottom: 12px; line-height: 1.7; }
.legal ul { margin: 0 0 12px; padding-left: 20px; }
.legal li { margin-bottom: 7px; line-height: 1.7; }
.legal strong { color: var(--text); font-weight: 650; }

/* ============================================================
   Toast
   ============================================================ */

.toasts {
    position: fixed;
    left: 50%;
    bottom: calc(var(--tabbar-h) + 84px + env(safe-area-inset-bottom));
    transform: translateX(-50%);
    z-index: 90;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: calc(100% - 28px);
    max-width: 420px;
    pointer-events: none;
}
.toast {
    display: flex;
    align-items: center;
    gap: 11px;
    width: 100%;
    padding: 12px 12px 12px 16px;
    border-radius: var(--r-2);
    background: var(--surface-3);
    border: 1px solid var(--line-2);
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    box-shadow: var(--shadow-2);
    pointer-events: auto;
    animation: toast-in .24s var(--ease);
}
.toast span { flex: 1; min-width: 0; }
.toast svg { flex: none; color: var(--forest-text); }
.toast--error svg { color: var(--danger); }
.toast__action {
    flex: none;
    height: 30px;
    padding: 0 12px;
    border: 0;
    border-radius: var(--r-1);
    background: var(--accent-wash);
    color: var(--accent-text);
    font: 650 13px/1 var(--font);
    cursor: pointer;
}
.toast__action:hover { background: rgba(91, 140, 255, .22); }

@keyframes toast-in { from { transform: translateY(14px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ============================================================
   Splash
   ============================================================ */

.splash {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
}
.splash img { width: 60px; height: 60px; animation: breathe 1.5s ease-in-out infinite; }
@keyframes breathe {
    0%, 100% { opacity: .4; transform: scale(.95); }
    50% { opacity: 1; transform: scale(1); }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================================
   >= 700px — mais respiro, grade de turmas em duas colunas
   ============================================================ */

@media (min-width: 700px) {
    .page { padding-left: 24px; padding-right: 24px; }
    .topbar { padding: 0 24px; height: 64px; }
    .hero { padding: 24px; }
    .hero__name { font-size: 23px; }
    .card { padding: 18px; }
    .grid { grid-template-columns: repeat(2, 1fr); }
    .modal__foot .btn { flex: 0 0 auto; min-width: 130px; }
    .modal__foot { justify-content: flex-end; }
}

/* ============================================================
   >= 900px — desktop: navegação fixa na lateral, sem barra de abas
   ============================================================ */

@media (min-width: 900px) {
    .shell {
        display: grid;
        grid-template-columns: var(--nav-w) minmax(0, 1fr);
    }
    .page { padding-bottom: 80px; }
    .toasts {
        left: auto;
        right: 24px;
        bottom: 24px;
        transform: none;
        align-items: flex-end;
    }
    /* Com espaço sobrando, a ação principal deixa de flutuar:
       vira um botão normal no cabeçalho da seção. */
    .fab {
        position: static;
        width: auto;
        height: 44px;
        padding: 0 18px;
        border-radius: var(--r-2);
        box-shadow: none;
        font-size: 14.5px;
    }
    .fab__label { display: inline; }
    .fab svg { width: 18px; height: 18px; }
    .fab-slot { display: block; }
}

/* ============================================================
   >= 1200px — três colunas de turmas
   ============================================================ */

@media (min-width: 1200px) {
    :root { --content-w: 1000px; }
    .grid { grid-template-columns: repeat(3, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ============================================================
   Conta suspensa

   Cobre a tela inteira e não fecha. Não é modal: modal é uma pergunta,
   e aqui não há pergunta a fazer — a conta perdeu o acesso, e o único
   caminho adiante é sair.

   z-index acima de tudo (a gaveta da navegação vai a 71) porque o
   conteúdo da página pode ter começado a desenhar antes de o perfil
   chegar. A camada tapa o que já estava lá.
   ============================================================ */

.suspensao {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 24px;
    background: var(--bg);
    overflow-y: auto;
}

.suspensao__caixa {
    width: 100%;
    max-width: 420px;
    text-align: center;
}

.suspensao__marca {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    margin: 0 auto 20px;
    border-radius: var(--r-3);
    background: var(--danger-wash);
    color: var(--danger);
}
.suspensao__marca svg { width: 30px; height: 30px; }

.suspensao__titulo {
    font-size: clamp(24px, 6vw, 30px);
    font-weight: 700;
    letter-spacing: -.035em;
    line-height: 1.15;
    color: var(--text);
}

.suspensao__lead {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-2);
}

/* O motivo é escrito por uma pessoa sobre outra pessoa. Fica em bloco
   próprio, com o rótulo, para não se confundir com texto do sistema. */
.suspensao__motivo {
    margin-top: 20px;
    padding: 14px 16px;
    text-align: left;
    background: var(--surface-1);
    border: 1px solid var(--line);
    border-radius: var(--r-3);
}
.suspensao__rotulo {
    display: block;
    margin-bottom: 5px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-3);
}
.suspensao__texto {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--text);
    overflow-wrap: anywhere;
}

.suspensao__quando {
    margin-top: 16px;
    font-size: 12.5px;
    color: var(--text-3);
}

.suspensao__acoes { margin-top: 24px; }

.suspensao__contato {
    margin-top: 18px;
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--text-3);
}
.suspensao__contato a { color: var(--accent-text); }
