/* ══════════════════════════════════════════════════════════════════════════
   Girlsletter — feed da membra (§7). Newsletter em formato revista: masthead,
   capa gradiente, blocos (12 tipos), grid ½, cards escuros (citação/playlist),
   barras de enquete, cupom pontilhado, enfeites flutuantes e skeleton do scroll
   infinito. Tudo com os tokens do app.css. Prefixo .gl-*.
   ════════════════════════════════════════════════════════════════════════════ */

.gl-wrap {
    max-width: 640px;
    margin: 0 auto;
    padding: 24px 16px 64px;
}

/* ── Masthead ── */
.gl-masthead {
    position: relative;
    text-align: center;
    padding: 24px 16px 20px;
}
.gl-mast-kicker {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.32em;
    color: var(--color-slate);
    text-transform: uppercase;
    margin-bottom: 8px;
}
.gl-mast-titulo {
    font-family: var(--font-display);
    font-size: 46px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1;
}
.gl-mast-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border-radius: var(--radius-full);
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    color: #d45800;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    margin-top: 12px;
}
.gl-mast-star { color: var(--color-lavender); }
.gl-mast-spark {
    position: absolute;
    color: var(--color-olive);
    text-shadow: 0 0 4px #fff, 0 0 4px #fff;
    pointer-events: none;
    animation: glSparkle 3.4s ease-in-out infinite;
}
.gl-mast-spark.s1 { top: 18px; left: 32px; font-size: 16px; }
.gl-mast-spark.s2 { top: 34px; right: 40px; font-size: 12px; color: var(--color-lavender); animation-delay: .6s; }

/* Separador entre edições (scroll infinito) */
.gl-edicao-sep {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 36px 4px 20px;
}
.gl-sep-linha {
    flex: 1;
    height: 1px;
    background: rgba(132, 153, 183, 0.3);
}
.gl-sep-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border-radius: var(--radius-full);
    padding: 6px 14px;
    font-size: 10px;
    font-weight: 700;
    color: #d45800;
    box-shadow: var(--shadow-card);
    white-space: nowrap;
}

/* ── Layout dos blocos ── */
.gl-edicao {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.gl-linha-cheia { position: relative; }
.gl-linha-meia {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: stretch;
}
.gl-bloco {
    position: relative;
    overflow: visible; /* o enfeite pode extrapolar a borda (§6) */
    height: 100%;
}
.gl-card {
    background: #fff;
    border-radius: var(--radius-modal);
    box-shadow: var(--shadow-card-elevated);
    overflow: hidden;
    height: 100%;
}
.gl-card-body { padding: 20px 22px; }

/* ── Enfeites (§6) ── */
.gl-enfeite {
    position: absolute;
    z-index: 3;
    transform: translate(-50%, -50%);
    pointer-events: none;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    line-height: 1;
    will-change: transform;
}
/* translate(-50%,-50%) é a posição-base: as animações compõem a partir dela (keyframes *C). */
.gl-anim-flutuando { animation: glFloatyC 3.2s ease-in-out infinite; }
.gl-anim-girando   { animation: glSpinnyC 9s linear infinite; }
.gl-anim-pulsando  { animation: glBouncyC 2.6s ease-in-out infinite; }
.gl-anim-parado    { animation: none; }

/* ── Chips reutilizados ── */
.gl-chip-cat {
    display: inline-block;
    background: rgba(180, 181, 54, 0.12);
    color: #5c5e00;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    padding: 4px 10px;
    margin-bottom: 8px;
}
.gl-chip-olive {
    background: rgba(180, 181, 54, 0.15);
    color: #5c5e00;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    padding: 4px 10px;
}
.gl-chip-laranja {
    background: var(--color-orange-light);
    color: #d45800;
    font-size: 9px;
    font-weight: 700;
    border-radius: var(--radius-full);
    padding: 3px 9px;
}
.gl-chip-lav {
    background: var(--color-lavender-light);
    color: #9b59d6;
    font-size: 10px;
    font-weight: 700;
    border-radius: var(--radius-full);
    padding: 3px 10px;
}

/* ── Texto: matéria de capa ── */
.gl-card-cover {
    position: relative;
    min-height: 180px;
    background: linear-gradient(135deg, var(--color-lavender) 0%, var(--color-orange) 100%);
    display: flex;
    align-items: flex-end;
    padding: 22px 24px;
    overflow: hidden;
}
.gl-cover-num {
    position: absolute;
    top: -28px;
    right: 6px;
    font-family: var(--font-display);
    font-size: 150px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.16);
    line-height: 1;
}
.gl-cover-chips {
    position: absolute;
    top: 16px;
    left: 22px;
    display: flex;
    gap: 6px;
}
.gl-chip-capa {
    background: rgba(43, 35, 24, 0.85);
    color: var(--color-cream);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    border-radius: var(--radius-full);
    padding: 5px 12px;
}
.gl-chip-cat-claro {
    background: rgba(255, 255, 255, 0.92);
    color: #d45800;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: var(--radius-full);
    padding: 5px 12px;
}
.gl-chip-fixado {
    position: absolute;
    top: 16px;
    right: 22px;
    background: var(--color-orange);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: var(--radius-full);
    padding: 5px 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.gl-cover-titulo {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
    position: relative;
}
.gl-texto-titulo {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 8px;
    line-height: 1.25;
}
.gl-texto-corpo {
    font-size: 15px;
    color: #4a4034;
    line-height: 1.75;
}
.gl-texto-corpo :first-child { margin-top: 0; }
.gl-texto-corpo :last-child { margin-bottom: 0; }
/* Capitular: primeira letra Zodiak laranja (drop-cap). */
.gl-texto-corpo.gl-cap > p:first-of-type::first-letter {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 700;
    color: var(--color-orange);
    float: left;
    line-height: 0.85;
    padding: 6px 8px 0 0;
}
.gl-autor {
    font-size: 12px;
    color: var(--color-slate);
    margin-top: 14px;
}
.gl-autor strong { color: var(--color-text-secondary); }

/* ── Reações ── */
.gl-reacoes {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
}
.gl-reacao {
    background: var(--color-lavender-light);
    color: #9b59d6;
    font-size: 11px;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-full);
    padding: 5px 12px;
    cursor: pointer;
    transition: transform .1s ease, box-shadow .15s ease;
}
.gl-reacao-brilho { background: var(--color-orange-light); color: #d45800; }
.gl-reacao:hover:not(:disabled) { transform: translateY(-1px); }
.gl-reacao.on { box-shadow: inset 0 0 0 1.5px currentColor; }
.gl-reacao:disabled { cursor: default; }
.gl-reacoes-escuro .gl-reacao { background: rgba(221, 177, 247, 0.18); color: var(--color-lavender); }
.gl-reacoes-escuro .gl-reacao-brilho { background: rgba(246, 242, 227, 0.1); color: rgba(246, 242, 227, 0.75); }

/* ── Citação (card escuro) ── */
.gl-citacao {
    background: var(--color-text);
    padding: 24px 24px 20px;
    position: relative;
    overflow: hidden;
}
.gl-aspas {
    position: absolute;
    top: -14px;
    left: 12px;
    font-family: var(--font-display);
    font-size: 110px;
    color: rgba(221, 177, 247, 0.22);
    line-height: 1;
    pointer-events: none;
}
.gl-chip-cat-escuro {
    display: inline-block;
    background: rgba(221, 177, 247, 0.2);
    color: var(--color-lavender);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    padding: 4px 10px;
    margin-bottom: 10px;
    position: relative;
}
.gl-frase {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    color: var(--color-cream);
    line-height: 1.5;
    margin: 0;
    position: relative;
}
.gl-autora {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--color-lavender);
    letter-spacing: 0.1em;
    margin-top: 10px;
    position: relative;
}

/* ── Playlist (card escuro) ── */
.gl-playlist {
    background: var(--color-text);
    padding: 22px 24px;
}
.gl-play-topo { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.gl-play-ic { font-size: 18px; }
.gl-play-titulo {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-cream);
    line-height: 1.3;
}
.gl-play-desc { font-size: 13px; color: rgba(246, 242, 227, 0.7); line-height: 1.5; margin: 6px 0 0; }
.gl-play-btn {
    margin-top: 14px;
    background: var(--color-lavender);
    color: var(--color-text);
    border: none;
    border-radius: var(--radius-full);
    padding: 9px 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

/* ── Enquete ── */
.gl-enquete { padding: 18px 20px; }
.gl-enq-topo { display: flex; align-items: center; gap: 7px; margin-bottom: 9px; flex-wrap: wrap; }
.gl-enq-votos { font-size: 10px; color: var(--color-slate); }
.gl-enq-pergunta {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 10px;
    line-height: 1.3;
}
.gl-enq-desc {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin: -4px 0 12px;
    line-height: 1.5;
}
.gl-enq-opcoes { display: flex; flex-direction: column; gap: 6px; }
.gl-enq-opcao {
    position: relative;
    background: var(--color-cream);
    border-radius: var(--radius-full);
    padding: 8px 14px;
    overflow: hidden;
}
.gl-enq-opcao.votavel { cursor: pointer; }
.gl-enq-fill {
    position: absolute;
    inset: 0;
    width: 0;
    background: #eee9dc;
    border-radius: var(--radius-full);
    transition: width .35s ease;
}
.gl-enq-opcao.lider .gl-enq-fill { background: var(--color-lavender); }
.gl-enq-opcao.minha .gl-enq-fill { box-shadow: inset 0 0 0 1.5px #9b59d6; }
.gl-enq-linha {
    position: relative;
    display: flex;
    justify-content: space-between;
    font-size: 11.5px;
    font-weight: 500;
    color: var(--color-text-secondary);
}
.gl-enq-opcao.lider .gl-enq-linha { font-weight: 700; color: var(--color-text); }

/* ── Evento ── */
.gl-evento { display: flex; align-items: stretch; }
.gl-ev-data {
    background: var(--color-orange);
    padding: 20px 16px;
    min-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gl-ev-foto {
    width: 96px; flex-shrink: 0;
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center;
}
.gl-ev-ic { font-size: 26px; }
.gl-ev-corpo { flex: 1; padding: 16px 18px; min-width: 0; }
.gl-ev-topo { display: flex; align-items: center; gap: 7px; margin-bottom: 4px; flex-wrap: wrap; }
.gl-ev-lbl { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; color: var(--color-slate); }
.gl-ev-nome { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--color-text); }
.gl-ev-sub { font-size: 12px; color: var(--color-text-secondary); margin-top: 3px; }
.gl-ev-cta { display: flex; align-items: center; padding: 0 16px; }

/* ── Cupom (ticket pontilhado) ── */
.gl-cupom {
    background: var(--color-lavender-light);
    border: 2px dashed var(--color-lavender);
    box-shadow: none;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
}
.gl-cup-emoji { font-size: 26px; flex-shrink: 0; }
.gl-cup-logo { width: 46px; height: 46px; flex-shrink: 0; border-radius: 10px; object-fit: contain; background: #fff; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06); }
.gl-cup-corpo { flex: 1; min-width: 0; }
.gl-cup-titulo { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--color-text); }
.gl-cup-desc { font-size: 12px; color: var(--color-text-secondary); margin-top: 2px; line-height: 1.4; }

/* Composer do Cupom: painel do parceiro (logo + cupons cadastrados). */
.glc-cupom-parceiro { display: flex; gap: 12px; align-items: flex-start; margin-top: 8px; padding: 12px; border-radius: 12px; background: var(--color-cream); }
.glc-cupom-logo { width: 48px; height: 48px; flex-shrink: 0; border-radius: 10px; object-fit: contain; background: #fff; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06); }
.glc-cupom-pnome { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--color-text); }
.glc-cupom-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.glc-cupom-chip {
    border: 1.5px solid var(--color-lavender); background: var(--color-lavender-light); color: #9b59d6;
    border-radius: 9999px; padding: 5px 12px; font-size: 12px; font-weight: 600; cursor: pointer;
}
.glc-cupom-chip:hover { background: var(--color-lavender); color: #2b2318; }

/* Composer da Matéria de capa: fundo por cor ou foto. */
.glc-capa-fundo { margin-top: 6px; }
.glc-capa-fundo-linha { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin: 4px 0 8px; }
.glc-capa-cor { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--color-text-secondary); }
.glc-capa-cor input[type="color"] { width: 42px; height: 32px; border: none; border-radius: 8px; background: none; cursor: pointer; padding: 0; }
.glc-capa-fundo-prev { height: 96px; border-radius: 12px; background-size: cover; background-position: center; margin-bottom: 6px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); }
.gl-cup-barra { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.gl-cup-track { flex: 1; height: 5px; border-radius: var(--radius-full); background: #e8ddf5; overflow: hidden; }
.gl-cup-fill { display: block; height: 100%; border-radius: var(--radius-full); background: #9b59d6; }
.gl-cup-exp { font-size: 10px; color: #9b59d6; font-weight: 700; white-space: nowrap; }
.gl-cup-val { font-size: 12px; color: #9b59d6; margin-top: 4px; }
.gl-cup-codigo {
    background: #fff;
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
    color: #9b59d6;
    letter-spacing: 0.1em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
}

/* ── Dica da cidade ── */
.gl-dica { display: flex; gap: 14px; padding: 16px; align-items: flex-start; }
.gl-dica-foto {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: var(--radius-input);
    background: linear-gradient(135deg, var(--color-olive), var(--color-slate));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.gl-dica-corpo { flex: 1; min-width: 0; }
.gl-dica-topo { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.gl-dica-nome { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--color-text); }
.gl-dica-nota { font-size: 13px; color: var(--color-text-secondary); line-height: 1.5; margin: 6px 0 0; }

/* ── Foto ── */
.gl-foto-strip { display: grid; gap: 3px; }
.gl-foto-strip.gl-foto-1 { grid-template-columns: 1fr; }
.gl-foto-strip.gl-foto-2 { grid-template-columns: 1fr 1fr; }
.gl-foto-strip.gl-foto-3 { grid-template-columns: 1fr 1fr 1fr; }
.gl-foto-tile {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: rgba(255, 255, 255, 0.85);
}
.gl-foto-legenda { font-size: 13px; color: var(--color-text-secondary); line-height: 1.5; margin: 0; }

/* ── Destaque de membras ── */
.gl-destaque { padding: 18px 20px; }
.gl-dest-topo { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.gl-dest-coroa { font-size: 20px; }
.gl-dest-titulo { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--color-text); }
.gl-dest-avatares { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.gl-dest-texto { font-size: 13px; color: var(--color-text-secondary); line-height: 1.55; margin: 0; }

/* ── Mini-agenda ── */
.gl-agenda { padding: 18px 20px; }
.gl-ag-topo { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.gl-ag-ic { font-size: 18px; }
.gl-ag-titulo { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--color-text); }
.gl-ag-sub { font-size: 12px; color: var(--color-text-secondary); margin: 4px 0 10px; }

/* Mini-agenda: cards de evento escolhidos (feed). */
.gl-ag-cards { display: flex; flex-direction: column; gap: 10px; }
.gl-ag-card {
    display: flex; align-items: stretch; gap: 0; text-align: left; padding: 0; cursor: pointer;
    border: none; background: var(--color-surface); border-radius: 14px; overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.gl-ag-card-foto { width: 84px; flex-shrink: 0; background-size: cover; background-position: center; }
.gl-ag-card-corpo { flex: 1; min-width: 0; padding: 12px 14px; }
.gl-ag-card-nome { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--color-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gl-ag-card-meta { font-size: 12px; color: var(--color-text-secondary); margin-top: 2px; }

/* Mini-agenda: picker no composer. */
.glc-ag-lista { display: flex; flex-direction: column; gap: 8px; }
.glc-ag-item { display: flex; align-items: center; gap: 10px; padding: 8px; border-radius: 12px; background: var(--color-cream); }
.glc-ag-cap { width: 54px; height: 54px; flex-shrink: 0; border-radius: 10px; background-size: cover; background-position: center; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06); }
.glc-ag-nome { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--color-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.glc-ag-crop { display: flex; align-items: center; gap: 6px; margin-top: 4px; }
.glc-ag-crop span { color: var(--color-slate); font-size: 12px; }
.glc-ag-crop input[type="range"] { flex: 1; accent-color: var(--color-orange); cursor: pointer; }
.glc-ag-acoes { display: flex; flex-direction: column; gap: 3px; flex-shrink: 0; }
.glc-ag-acoes button { border: none; background: #fff; border-radius: 7px; width: 26px; height: 22px; cursor: pointer; font-size: 11px; color: var(--color-text-secondary); box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06); }
.glc-ag-acoes button:disabled { opacity: .4; cursor: default; }

/* Destaque: filtros do mês (tipo + mês). */
.glc-dest-filtro { display: flex; gap: 8px; margin-bottom: 8px; flex-wrap: wrap; }
.glc-dest-filtro .input { flex: 1; min-width: 140px; }

/* Mini-agenda / Evento: bloco de adicionar (mês + select). */
.glc-ag-add { margin-top: 10px; display: flex; flex-direction: column; gap: 6px; }
.glc-ag-mes { display: flex; flex-direction: column; gap: 2px; }

/* Link inline (ver álbum, maps, agenda) */
.gl-link {
    display: inline-block;
    background: none;
    border: none;
    padding: 0;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-orange);
    cursor: pointer;
}

/* ── Botão (CTA) ── */
.gl-botao-wrap { display: flex; justify-content: center; padding: 4px 0; }

/* ── Divisor ── */
.gl-divisor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 8px 0;
    color: var(--color-lavender);
    font-size: 14px;
}
.gl-divisor-linha { border-top: 1.5px solid rgba(132, 153, 183, 0.3); height: 0; padding: 0; margin: 12px 8px; }
.gl-divisor-pontinhos { gap: 8px; color: var(--color-slate); }

/* ── Loader / skeleton do scroll infinito ── */
.gl-loader { text-align: center; padding: 8px 4px 12px; }
.gl-loader-txt {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--color-slate);
    margin-bottom: 14px;
}
.gl-loader-star { color: var(--color-lavender); animation: glSparkle 2s ease-in-out infinite; }
.gl-skeleton {
    background: #fff;
    border-radius: var(--radius-modal);
    padding: 20px 26px;
    box-shadow: var(--shadow-card);
}
.gl-sk-linha {
    height: 12px;
    border-radius: var(--radius-full);
    background: linear-gradient(90deg, #eee9dc 25%, #f8f5ea 50%, #eee9dc 75%);
    background-size: 420px 100%;
    animation: glShimmer 1.5s linear infinite;
    margin-bottom: 9px;
}
.gl-sk-linha:last-child { margin-bottom: 0; }
.gl-fim {
    text-align: center;
    font-size: 12px;
    color: var(--color-slate);
    padding: 24px 4px 8px;
    letter-spacing: 0.04em;
}

/* ── Vazio ── */
.gl-vazio {
    background: #fff;
    border-radius: var(--radius-modal);
    box-shadow: var(--shadow-card);
    padding: 40px 24px;
    text-align: center;
}
.gl-vazio-emoji { font-size: 34px; color: var(--color-lavender); margin-bottom: 10px; }

/* ══════════ Keyframes ══════════ */
/* As animações compõem com a translate(-50%,-50%) do posicionamento-base. */
@keyframes glFloatyC {
    0%, 100% { transform: translate(-50%, -50%); }
    50%      { transform: translate(-50%, calc(-50% - 6px)) rotate(6deg); }
}
@keyframes glSpinnyC {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes glBouncyC {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50%      { transform: translate(-50%, -50%) scale(1.15); }
}
@keyframes glShimmer {
    0%   { background-position: -210px 0; }
    100% { background-position: 210px 0; }
}
@keyframes glSparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .4; transform: scale(.8); }
}

/* ── Responsivo: mobile em coluna única (½ empilha) ── */
@media (max-width: 560px) {
    .gl-linha-meia { grid-template-columns: 1fr; }
    .gl-mast-titulo { font-size: 38px; }
    .gl-cover-num { font-size: 120px; }
}

/* A VM de dev não tem GPU: respeita quem pediu menos movimento (desliga os loops). */
@media (prefers-reduced-motion: reduce) {
    .gl-enfeite,
    .gl-mast-spark,
    .gl-loader-star,
    .gl-sk-linha { animation: none !important; }
}

/* ══════════════════════════════════════════════════════════════════════════
   Girlsletter — COMPOSER admin (§7, F2). Lista de edições, modelos, composer
   (paleta + lista arrastável + prévia dupla app/e-mail + agendar) e o estúdio
   "Editar bloco" (conteúdo + enfeite com posição por arrasto). Prefixo .glc-*.
   ════════════════════════════════════════════════════════════════════════════ */

.glc-wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: 20px 16px 72px;
}
.glc-wrap-wide { max-width: 1120px; }

/* ── Cabeçalho / selo ADMIN ── */
.glc-cab {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.glc-selo {
    background: var(--color-orange);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    padding: 4px 12px;
}
.glc-cab-txt {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
}

/* ── Status chips ── */
.glc-st {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    border-radius: var(--radius-full);
    padding: 4px 11px;
    text-transform: uppercase;
}
.glc-st-rasc { background: rgba(132, 153, 183, 0.15); color: #4a5e72; }
.glc-st-agd  { background: var(--color-lavender-light); color: #9b59d6; }
.glc-st-pub  { background: rgba(180, 181, 54, 0.15); color: #5c5e00; }

/* ── Lista de edições ── */
.glc-lista-card {
    background: #fff;
    border-radius: var(--radius-modal);
    box-shadow: var(--shadow-card-elevated);
    padding: 8px;
}
.glc-edlista { display: flex; flex-direction: column; }
.glc-edrow {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 14px;
    border-radius: var(--radius-card);
    cursor: pointer;
    transition: background .12s ease;
}
.glc-edrow:hover { background: var(--color-cream); }
.glc-edrow + .glc-edrow { border-top: 1px solid rgba(0, 0, 0, 0.05); }
.glc-ednum { display: flex; flex-direction: column; min-width: 92px; }
.glc-ednum-n { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--color-text); }
.glc-ednum-mes { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; color: var(--color-slate); }
.glc-edinfo { flex: 1; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.glc-edabrir { font-size: 12px; font-weight: 600; color: var(--color-orange); }

.glc-vazio { padding: 40px 24px; text-align: center; }
.glc-vazio-emoji { font-size: 34px; color: var(--color-lavender); margin-bottom: 10px; }

/* ── Modelos salvos ── */
.glc-modelos-card {
    background: var(--color-cream);
    border-radius: 24px;
    box-shadow: var(--shadow-card-elevated);
    overflow: hidden;
}
.glc-modelos-head {
    background: var(--color-text);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.glc-modelos-head .glc-cab-txt { color: var(--color-cream); font-size: 16px; }
.glc-modelos-hint { margin-left: auto; font-size: 11px; color: rgba(246, 242, 227, 0.55); }
.glc-modelos-grid {
    padding: 22px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.glc-modelo-zero {
    border: 2px dashed rgba(132, 153, 183, 0.4);
    background: transparent;
    border-radius: 18px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    min-height: 180px;
}
.glc-modelo-zero:hover { border-color: var(--color-orange); }
.glc-modelo-zero-mais {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--color-orange);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.glc-modelo-zero-tit { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--color-text); }
.glc-modelo {
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow-card-elevated);
    overflow: hidden;
}
.glc-modelo-thumb { padding: 12px; background: #faf7ee; }
.glc-th-capa { height: 34px; border-radius: 8px; background: linear-gradient(135deg, var(--color-lavender), var(--color-orange)); margin-bottom: 5px; }
.glc-th-linha2 { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; margin-bottom: 5px; }
.glc-th-escuro { height: 22px; border-radius: 8px; background: var(--color-text); }
.glc-th-claro { height: 22px; border-radius: 8px; background: #fff; border: 1px solid #eee9dc; }
.glc-th-cupom { height: 14px; border-radius: 8px; border: 1.5px dashed var(--color-lavender); background: var(--color-lavender-light); }
.glc-modelo-corpo { padding: 12px 15px 14px; }
.glc-modelo-nome-linha { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.glc-modelo-nome { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--color-text); }
.glc-badge-usado { background: var(--color-orange-light); color: #d45800; font-size: 9px; font-weight: 700; border-radius: var(--radius-full); padding: 2px 8px; }
.glc-badge-pack { background: rgba(180, 181, 54, 0.15); color: #5c5e00; font-size: 9px; font-weight: 700; border-radius: var(--radius-full); padding: 2px 8px; }
.glc-modelo-meta { margin: 3px 0 10px; }
.glc-modelos-rodape { background: #fff; border-top: 1px solid rgba(0, 0, 0, 0.06); padding: 12px 24px; font-size: 11.5px; color: #4a5e72; }
.glc-erro { color: var(--color-danger, #e8473f); font-size: 12px; padding: 10px 24px; }

/* ══════════ Composer ══════════ */
.glc-composer {
    background: var(--color-cream);
    border-radius: 24px;
    box-shadow: var(--shadow-card-elevated);
    overflow: hidden;
}
.glc-comp-head {
    background: var(--color-text);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.glc-comp-head-tit { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--color-cream); }
.glc-comp-vivo { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--color-olive); font-weight: 600; }
.glc-comp-voltar { margin-left: auto; background: none; border: none; color: rgba(246, 242, 227, 0.65); font-size: 12px; cursor: pointer; }
.glc-dot-olive { width: 7px; height: 7px; border-radius: 50%; background: var(--color-olive); animation: glPulseDot 1.6s ease-in-out infinite; }

.glc-comp-cabecalho {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    padding: 16px 22px;
    background: #faf7ee;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.glc-comp-grid { display: grid; grid-template-columns: 1fr 300px; align-items: start; }
.glc-comp-blocos { padding: 18px 22px; border-right: 1px solid rgba(0, 0, 0, 0.06); }
.glc-sec-lbl { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--color-slate); margin-bottom: 10px; }

.glc-paleta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.glc-paleta-chip {
    background: #fff;
    border: 1.5px solid rgba(132, 153, 183, 0.25);
    border-radius: var(--radius-full);
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: border-color .12s ease, transform .1s ease;
}
.glc-paleta-chip:hover { border-color: var(--color-orange); transform: translateY(-1px); }

.glc-drop-vazio {
    border: 2px dashed rgba(132, 153, 183, 0.35);
    border-radius: var(--radius-card);
    padding: 22px;
    text-align: center;
    font-size: 12.5px;
    color: var(--color-slate);
}
.glc-bloco-lista { display: flex; flex-direction: column; gap: 8px; }
.glc-bloco-item {
    background: #fff;
    border-radius: var(--radius-card);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 11px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border-left: 4px solid transparent;
}
.glc-bloco-item.sel { border-left-color: var(--color-orange); outline: 2px solid var(--color-lavender); outline-offset: 2px; }
.glc-bloco-item.arrastando { opacity: 0.5; }
.glc-drag-handle { color: #c4c0b8; font-size: 13px; letter-spacing: 2px; cursor: grab; }
.glc-bloco-ic { font-size: 15px; }
.glc-bloco-txt { flex: 1; min-width: 0; }
.glc-bloco-nome { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--color-text); flex-wrap: wrap; }
.glc-chip-fix { background: var(--color-orange-light); color: #d45800; font-size: 9px; font-weight: 700; border-radius: var(--radius-full); padding: 2px 8px; }
.glc-bloco-sub { font-size: 11px; color: var(--color-slate); margin-top: 2px; }
.glc-bloco-metricas { display: flex; gap: 5px; margin-top: 5px; flex-wrap: wrap; }
.glc-mchip { font-size: 10px; font-weight: 600; border-radius: var(--radius-full); padding: 2px 8px; }
.glc-m-view { background: var(--color-cream); color: var(--color-text-secondary); }
.glc-m-cor { background: var(--color-lavender-light); color: #9b59d6; }
.glc-m-bri { background: var(--color-orange-light); color: #d45800; }
.glc-m-clq { background: var(--color-orange-light); color: #d45800; }
.glc-m-vot { background: rgba(180, 181, 54, 0.15); color: #5c5e00; }
.glc-bloco-acoes { display: flex; align-items: center; gap: 8px; }
.glc-ordem-btns { display: flex; flex-direction: column; gap: 2px; }
.glc-ordem-btns button {
    width: 22px; height: 18px;
    border: 1px solid rgba(132, 153, 183, 0.3);
    background: #fff; color: var(--color-slate);
    border-radius: 6px; font-size: 11px; line-height: 1; cursor: pointer;
}
.glc-ordem-btns button:disabled { opacity: 0.35; cursor: default; }
.glc-editar {
    font-size: 12px; font-weight: 600; color: var(--color-orange);
    background: var(--color-orange-light); border: none;
    border-radius: var(--radius-full); padding: 5px 12px; cursor: pointer;
    white-space: nowrap;
}
.glc-dica-inline {
    margin-top: 14px;
    background: rgba(132, 153, 183, 0.08);
    border-radius: 12px;
    padding: 9px 13px;
    font-size: 11px;
    color: #4a5e72;
}

/* ── Prévia ── */
.glc-comp-previa { padding: 18px 16px; background: #efe9d8; align-self: stretch; }
.glc-previa-tabs {
    display: inline-flex;
    background: #e2ddd0;
    border-radius: var(--radius-full);
    padding: 3px;
    gap: 2px;
    margin-bottom: 12px;
}
.glc-previa-tabs button {
    border: none; background: transparent;
    border-radius: var(--radius-full);
    padding: 5px 13px;
    font-size: 11px; font-weight: 500; color: var(--color-slate); cursor: pointer;
}
.glc-previa-tabs button.on { background: #fff; color: var(--color-orange); font-weight: 700; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08); }
.glc-previa-app {
    background: var(--color-cream);
    border-radius: var(--radius-card);
    padding: 14px 12px;
    max-height: 640px;
    overflow: auto;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}
.glc-previa-mast { text-align: center; font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--color-text); margin-bottom: 12px; }
.glc-previa-vazio { text-align: center; font-size: 12px; color: var(--color-slate); padding: 40px 16px; }

.glc-previa-email-barra { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.glc-email-chip { background: rgba(132, 153, 183, 0.12); color: #4a5e72; font-size: 11px; font-weight: 600; border-radius: var(--radius-full); padding: 6px 13px; }
.glc-email-full { margin-left: auto; background: none; border: none; color: var(--color-slate); font-size: 12px; cursor: pointer; }
.glc-email-frame {
    background: #e2ddd0;
    border-radius: var(--radius-card);
    padding: 10px;
}
.glc-email-iframe { width: 100%; height: 560px; border: none; border-radius: 10px; background: #fff; }

/* ── Faixa AGENDAR ── */
.glc-agendar {
    background: #faf7ee;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 13px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.glc-ag-input { width: auto; padding: 8px 12px; }
.glc-push-card {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 9px;
    background: var(--color-text);
    border-radius: 12px;
    padding: 7px 12px;
    box-shadow: 0 4px 12px rgba(43, 35, 24, 0.25);
}
.glc-push-ic {
    width: 24px; height: 24px;
    border-radius: 7px;
    background: linear-gradient(135deg, var(--color-lavender), var(--color-orange));
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; flex-shrink: 0;
}
.glc-push-t1 { display: block; font-size: 9px; font-weight: 700; color: var(--color-cream); }
.glc-push-t2 { display: block; font-size: 9px; color: rgba(246, 242, 227, 0.7); }

/* ── Rodapé do composer ── */
.glc-comp-rodape {
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.glc-rasc-chip { display: flex; align-items: center; gap: 6px; background: rgba(132, 153, 183, 0.12); color: #4a5e72; font-size: 12px; font-weight: 600; border-radius: var(--radius-full); padding: 6px 14px; }
.glc-rasc-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--color-slate); }
.glc-salvar-modelo { background: none; border: none; color: var(--color-slate); font-size: 12.5px; font-weight: 500; cursor: pointer; padding: 9px 12px; }
.glc-msg { padding: 10px 22px; font-size: 12.5px; color: #4a5e72; background: rgba(180, 181, 54, 0.1); }

/* ══════════ Estúdio "Editar bloco" ══════════ */
.glc-estudio-overlay {
    position: fixed; inset: 0; z-index: 1100;
    background: rgba(43, 35, 24, 0.55);
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
}
.glc-estudio {
    background: var(--color-cream);
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(43, 35, 24, 0.45);
    overflow: hidden;
    width: 100%;
    max-width: 780px;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
}
.glc-estudio-head {
    background: #fff;
    padding: 15px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.glc-estudio-emoji { font-size: 15px; }
.glc-estudio-titulo { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--color-text); }
.glc-estudio-vivo { margin-left: auto; display: flex; align-items: center; gap: 6px; font-size: 11px; color: #5c5e00; font-weight: 600; }
.glc-estudio-x { width: 30px; height: 30px; border-radius: 50%; background: var(--color-cream); border: none; color: var(--color-slate); font-size: 13px; cursor: pointer; }
.glc-estudio-corpo { display: flex; overflow: auto; }
.glc-estudio-conteudo {
    width: 300px;
    flex-shrink: 0;
    padding: 20px 22px;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.glc-estudio-enfeite { flex: 1; min-width: 0; padding: 20px 22px; background: #efe9d8; }

/* ── Toggle / switch ── */
.glc-toggle-linha { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 12.5px; color: var(--color-text-secondary); }
.glc-switch { position: relative; display: inline-block; width: 44px; height: 26px; flex-shrink: 0; }
.glc-switch input { opacity: 0; width: 0; height: 0; }
.glc-switch span {
    position: absolute; inset: 0;
    background: var(--color-disabled-bg, #e8e4da);
    border-radius: 50px;
    transition: background .15s ease;
}
.glc-switch span::before {
    content: ""; position: absolute; top: 3px; left: 3px;
    width: 20px; height: 20px; border-radius: 50%;
    background: #fff; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    transition: transform .15s ease;
}
.glc-switch input:checked + span { background: var(--color-orange); }
.glc-switch input:checked + span::before { transform: translateX(18px); }
.glc-switch-lg { margin-top: 2px; }

/* ── Linhas de edição (foto/opção) ── */
.glc-editrow { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.glc-x { width: 28px; height: 28px; border-radius: 50%; border: none; background: rgba(232, 71, 63, 0.1); color: #e8473f; font-size: 12px; cursor: pointer; flex-shrink: 0; }

/* ── Categoria chips ── */
.glc-cat-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.glc-cat-chip {
    border: none;
    font-size: 11px; font-weight: 700;
    border-radius: var(--radius-full);
    padding: 6px 12px;
    cursor: pointer;
    opacity: 0.55;
    transition: opacity .12s ease, outline-color .12s ease;
}
.glc-cat-chip.on { opacity: 1; outline: 2px solid currentColor; outline-offset: 1px; }
.glc-cat-hist { background: var(--color-orange-light); color: #d45800; }
.glc-cat-eventos { background: rgba(180, 181, 54, 0.15); color: #5c5e00; }
.glc-cat-mimos { background: var(--color-lavender-light); color: #9b59d6; }
.glc-cat-recados { background: rgba(132, 153, 183, 0.12); color: #4a5e72; }

/* ── Largura toggle ── */
.glc-linha-2col { display: flex; gap: 14px; flex-wrap: wrap; align-items: flex-start; }
.glc-larg-toggle { display: inline-flex; background: #fff; border-radius: 10px; padding: 4px; gap: 3px; border: 1.5px solid rgba(132, 153, 183, 0.2); }
.glc-larg-toggle button {
    display: flex; align-items: center; gap: 5px;
    border: none; background: transparent;
    border-radius: 7px; padding: 6px 10px;
    font-size: 11px; font-weight: 500; color: var(--color-slate); cursor: pointer;
}
.glc-larg-toggle button.on { background: var(--color-lavender); color: var(--color-text); font-weight: 700; }
.glc-larg-cheia { width: 14px; height: 9px; border-radius: 2px; background: currentColor; opacity: 0.7; }
.glc-larg-meia { display: inline-flex; gap: 1.5px; }
.glc-larg-meia i { width: 6px; height: 9px; border-radius: 1.5px; background: currentColor; opacity: 0.7; }

/* ── Enfeite ── */
.glc-enfeite-titulo { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--color-slate); }
.glc-badge-novo { background: var(--color-lavender); color: var(--color-text); font-size: 9px; font-weight: 700; border-radius: var(--radius-full); padding: 3px 9px; letter-spacing: 0; }
.glc-pack-chips { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.glc-pack-chip {
    background: #fff;
    border: 1.5px solid rgba(132, 153, 183, 0.25);
    color: var(--color-slate);
    font-size: 11px;
    border-radius: var(--radius-full);
    padding: 5px 12px;
    cursor: pointer;
}
.glc-pack-chip.on { background: var(--color-lavender); color: var(--color-text); font-weight: 700; border-color: transparent; }
.glc-emoji-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 7px; margin-bottom: 14px; }
.glc-emoji-tile {
    aspect-ratio: 1;
    background: #fff;
    border: none;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.glc-emoji-tile.on { outline: 2.5px solid var(--color-orange); outline-offset: 2px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); }
.glc-emoji-sem { font-size: 12px; font-weight: 700; color: var(--color-slate); border: 1.5px dashed rgba(132, 153, 183, 0.4); box-shadow: none; }
.glc-anim-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.glc-anim-chip {
    background: #fff;
    border: 1.5px solid rgba(132, 153, 183, 0.25);
    color: var(--color-slate);
    font-size: 11px;
    border-radius: var(--radius-full);
    padding: 6px 12px;
    cursor: pointer;
}
.glc-anim-chip.on { background: var(--color-lavender); color: var(--color-text); font-weight: 700; border-color: transparent; }
.glc-anim-chip:disabled { opacity: 0.4; cursor: default; }

/* Slider de tamanho (track gradiente até o thumb via background-size inline) */
.glc-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 50px;
    background-color: #e8e4da;
    background-image: linear-gradient(90deg, var(--color-lavender), var(--color-orange));
    background-repeat: no-repeat;
    margin-top: 9px;
    cursor: pointer;
}
.glc-range::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none;
    width: 20px; height: 20px; border-radius: 50%;
    background: #fff; border: 2.5px solid var(--color-orange);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); cursor: grab;
}
.glc-range::-moz-range-thumb {
    width: 20px; height: 20px; border-radius: 50%;
    background: #fff; border: 2.5px solid var(--color-orange);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); cursor: grab;
}
.glc-range:disabled { opacity: 0.5; }

/* Card de arrasto do enfeite (é a prévia real do bloco) */
.glc-drag-wrap { background: #fff; border-radius: var(--radius-card); padding: 14px; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07); }
.glc-drag-card { position: relative; border-radius: 12px; }
.glc-drag-card.arrastavel { touch-action: none; cursor: grab; }
.glc-drag-card.arrastavel .gl-enfeite { cursor: grab; }
.glc-drag-mini { min-height: 90px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--color-lavender), var(--color-orange)); border-radius: 12px; padding: 12px; }
.glc-drag-hint { font-size: 10.5px; color: var(--color-slate); margin-top: 8px; text-align: center; }
/* Zonas pontilhadas de posicionamento (dicas visuais) */
.glc-zona { position: absolute; width: 26px; height: 26px; border-radius: 50%; border: 2px dashed rgba(132, 153, 183, 0.5); pointer-events: none; z-index: 1; }
.glc-zona.z1 { top: 8px; left: 10px; }
.glc-zona.z2 { top: 8px; left: 50%; transform: translateX(-50%); }
.glc-zona.z3 { bottom: 8px; left: 10px; }
.glc-zona.z4 { bottom: 8px; left: 50%; transform: translateX(-50%); }
.glc-zona.z5 { bottom: 8px; right: 10px; }

.glc-estudio-rodape {
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 13px 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.glc-remover { background: none; border: none; color: #e8473f; font-size: 12px; font-weight: 600; cursor: pointer; }
.glc-remover:disabled { opacity: 0.5; cursor: default; }

/* ── Fullscreen "ver exatamente como o e-mail" ── */
.glc-email-fs {
    position: fixed; inset: 0; z-index: 1200;
    background: rgba(29, 24, 17, 0.94);
    display: flex; flex-direction: column;
    padding: 18px;
}
.glc-email-fs-barra { display: flex; align-items: center; gap: 12px; color: var(--color-cream); font-size: 13px; padding: 6px 4px 14px; }
.glc-email-fs-barra span:first-child { flex: 1; font-family: var(--font-display); font-weight: 700; }
.glc-email-fs-x { width: 32px; height: 32px; border-radius: 50%; border: none; background: rgba(246, 242, 227, 0.14); color: var(--color-cream); font-size: 14px; cursor: pointer; }
.glc-email-fs-corpo { flex: 1; max-width: 600px; width: 100%; margin: 0 auto; border-radius: 12px; overflow: hidden; box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5); }
.glc-email-fs-iframe { width: 100%; height: 100%; border: none; background: #fff; }

/* Barra da aba App (chip + botão "ver tela inteira") — espelha a barra do e-mail. */
.glc-previa-app-barra { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.glc-email-full:disabled { opacity: 0.4; cursor: default; }

/* Fullscreen "ver a tela do app inteira" — o feed sobre o fundo creme real do app. */
.glc-app-fs {
    position: fixed; inset: 0; z-index: 1200;
    background: rgba(29, 24, 17, 0.94);
    display: flex; flex-direction: column;
    padding: 18px;
}
.glc-app-fs-barra { display: flex; align-items: center; gap: 12px; color: var(--color-cream); font-size: 13px; padding: 6px 4px 14px; }
.glc-app-fs-barra span:first-child { flex: 1; font-family: var(--font-display); font-weight: 700; }
.glc-app-fs-corpo { flex: 1; width: 100%; overflow-y: auto; display: flex; justify-content: center; }
.glc-app-fs-tela {
    width: 100%; max-width: 720px; align-self: flex-start;
    background: var(--color-cream); border-radius: 16px;
    padding: 24px 20px 40px; box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

@keyframes glPulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .45; transform: scale(.7); }
}

/* ── Responsivo: composer empilha a prévia; estúdio vira bottom sheet ── */
@media (max-width: 900px) {
    .glc-comp-grid { grid-template-columns: 1fr; }
    .glc-comp-blocos { border-right: none; border-bottom: 1px solid rgba(0, 0, 0, 0.06); }
    .glc-modelos-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .glc-estudio-overlay { padding: 0; align-items: flex-end; }
    .glc-estudio { max-width: 100%; max-height: 94vh; border-radius: 22px 22px 0 0; }
    .glc-estudio-corpo { flex-direction: column; }
    .glc-estudio-conteudo { width: auto; border-right: none; border-bottom: 1px solid rgba(0, 0, 0, 0.06); }
    .glc-emoji-grid { grid-template-columns: repeat(6, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
    .glc-dot-olive { animation: none !important; }
}

/* ══════════════════════════════════════════════════════════════════════════
   Girlsletter — NEWSLETTER (db/migrations/064). Toggle da membra no masthead,
   página pública "sair da lista" e a tela admin de assinantes externos (resumo,
   cadastro, busca/filtro, lista com chip de status e import por CSV). Prefixo
   .gl-nl-*. Tokens do app.css; oliva = ativo, ardósia = saiu.
   ════════════════════════════════════════════════════════════════════════════ */

/* ── Toggle "receber por e-mail" no masthead do feed ── */
.gl-nl-mast-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    background: #fff;
    border-radius: var(--radius-full);
    padding: 7px 8px 7px 16px;
    box-shadow: var(--shadow-card);
    cursor: pointer;
    text-align: left;
}
.gl-nl-mast-toggle-lbl { font-size: 12px; font-weight: 600; color: var(--color-text-secondary); }
.gl-nl-switch { margin: 0; }

/* ══════════ Página pública "sair da lista" ══════════ */
.gl-nl-sair-wrap {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 16px;
}
.gl-nl-sair-card {
    background: #fff;
    border-radius: var(--radius-modal);
    box-shadow: var(--shadow-card-elevated);
    padding: 40px 32px;
    max-width: 440px;
    width: 100%;
    text-align: center;
}
.gl-nl-sair-emoji {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin: 0 auto 20px;
}
.gl-nl-sair-emoji-lav { background: var(--color-lavender-light); }
.gl-nl-sair-emoji-slate { background: rgba(132, 153, 183, 0.15); }
.gl-nl-sair-titulo {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 12px;
    line-height: 1.2;
}
.gl-nl-sair-msg { font-size: 15px; color: var(--color-text-secondary); line-height: 1.65; margin: 0 0 24px; }
.gl-nl-sair-acoes { display: flex; flex-direction: column; gap: 10px; }
.gl-nl-sair-btn { background: var(--color-slate); color: #fff; width: 100%; }
.gl-nl-sair-btn:hover { opacity: 0.9; }

/* ══════════ Admin — assinantes externos ══════════ */
.gl-nl-wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 20px 16px 72px;
}
.gl-nl-cab {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}
.gl-nl-cab-acoes { margin-left: auto; display: flex; gap: 8px; flex-wrap: wrap; }
.gl-nl-sub { font-size: 13px; color: var(--color-text-secondary); margin: 0 0 18px; }

/* Resumo */
.gl-nl-resumo { display: flex; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.gl-nl-stat {
    flex: 1 1 140px;
    background: #fff;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    padding: 16px 18px;
}
.gl-nl-stat-num { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--color-text); line-height: 1; }
.gl-nl-stat-lbl { font-size: 12px; color: var(--color-slate); margin-top: 6px; }

/* Card genérico + formulário de cadastro */
.gl-nl-card {
    background: #fff;
    border-radius: var(--radius-modal);
    box-shadow: var(--shadow-card-elevated);
    padding: 8px;
    margin-bottom: 18px;
}
.gl-nl-form { padding: 18px 20px; }
.gl-nl-form-titulo { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--color-text); margin-bottom: 12px; }
.gl-nl-form-linha { display: flex; gap: 10px; flex-wrap: wrap; }
.gl-nl-form-linha .input { flex: 1 1 180px; min-width: 0; }
.gl-nl-form-linha .btn { flex: 0 0 auto; }
.gl-nl-form-erro { color: var(--color-danger); font-size: 12.5px; margin: 10px 0 0; }
.gl-nl-form-ok { color: #5c5e00; font-size: 12.5px; margin: 10px 0 0; }

/* Toolbar: filtro de status + busca */
.gl-nl-toolbar { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.gl-nl-filtros {
    display: inline-flex;
    background: #fff;
    border-radius: var(--radius-full);
    padding: 4px;
    gap: 2px;
    box-shadow: var(--shadow-card);
}
.gl-nl-filtro {
    border: none;
    background: transparent;
    border-radius: var(--radius-full);
    padding: 7px 15px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--color-slate);
    cursor: pointer;
}
.gl-nl-filtro.on { background: var(--color-lavender); color: var(--color-text); font-weight: 700; }
.gl-nl-busca { margin-left: auto; position: relative; display: flex; align-items: center; }
.gl-nl-busca svg { position: absolute; left: 14px; pointer-events: none; }
.gl-nl-busca input {
    background: #fff;
    border: 1.5px solid transparent;
    border-radius: var(--radius-full);
    padding: 10px 16px 10px 38px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text);
    box-shadow: var(--shadow-card);
    outline: none;
    min-width: 200px;
}
.gl-nl-busca input:focus { border-color: var(--color-orange); }

/* Lista (grid alinhado; o cabeçalho compartilha as áreas) */
.gl-nl-lista { display: flex; flex-direction: column; }
.gl-nl-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 96px 76px 100px;
    grid-template-areas: "main origem status acao";
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
}
.gl-nl-row + .gl-nl-row { border-top: 1px solid rgba(0, 0, 0, 0.05); }
.gl-nl-row.head {
    padding: 8px 14px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-slate);
}
.gl-nl-row-main { grid-area: main; min-width: 0; }
.gl-nl-col-origem { grid-area: origem; }
.gl-nl-col-status { grid-area: status; }
.gl-nl-col-acao { grid-area: acao; display: flex; justify-content: flex-end; }
.gl-nl-row-nome {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.gl-nl-row-email {
    font-size: 12px;
    color: var(--color-text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.gl-nl-origem { grid-area: origem; font-size: 12px; color: var(--color-slate); }
/* Membra do app: chip lavanda pra distinguir de Manual/Importado (assinantes externos). */
.gl-nl-origem.app {
    display: inline-block;
    justify-self: start;
    background: var(--color-lavender-light);
    color: #9b59d6;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: var(--radius-full);
    padding: 4px 11px;
}
/* Célula de ação vazia (linhas de app são read-only aqui). */
.gl-nl-acao-vazia { color: var(--color-slate); font-size: 13px; }
.gl-nl-chip {
    grid-area: status;
    justify-self: start;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    border-radius: var(--radius-full);
    padding: 4px 11px;
    text-transform: uppercase;
}
.gl-nl-chip.ativo { background: rgba(180, 181, 54, 0.15); color: #5c5e00; }
.gl-nl-chip.saiu { background: rgba(132, 153, 183, 0.15); color: #4a5e72; }
.gl-nl-acao {
    border: none;
    border-radius: var(--radius-full);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}
.gl-nl-acao-cancelar { background: rgba(132, 153, 183, 0.14); color: #4a5e72; }
.gl-nl-acao-cancelar:hover { background: rgba(132, 153, 183, 0.22); }
.gl-nl-acao-reativar { background: var(--color-orange-light); color: #d45800; }
.gl-nl-acao-reativar:hover { opacity: 0.85; }

.gl-nl-vazio { padding: 40px 24px; text-align: center; }
.gl-nl-vazio-emoji { font-size: 32px; margin-bottom: 10px; }

/* ══════════ Modal: importar CSV ══════════ */
.gl-nl-modal-overlay {
    position: fixed; inset: 0; z-index: 1100;
    background: rgba(43, 35, 24, 0.55);
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
}
.gl-nl-modal {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(43, 35, 24, 0.45);
    width: 100%;
    max-width: 520px;
    max-height: 92vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.gl-nl-modal-head {
    display: flex;
    align-items: center;
    padding: 16px 22px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.gl-nl-modal-titulo { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--color-text); flex: 1; }
.gl-nl-modal-x { width: 30px; height: 30px; border-radius: 50%; background: var(--color-cream); border: none; color: var(--color-slate); font-size: 13px; cursor: pointer; }
.gl-nl-modal-corpo { padding: 20px 22px; overflow: auto; }
.gl-nl-modal-ajuda { font-size: 13px; color: var(--color-text-secondary); line-height: 1.6; margin: 0 0 12px; }
.gl-nl-modal-ajuda code { background: var(--color-cream); border-radius: 6px; padding: 1px 6px; font-size: 12px; color: #d45800; }
.gl-nl-csv { width: 100%; font-family: ui-monospace, "Cascadia Code", Consolas, monospace; font-size: 13px; resize: vertical; min-height: 120px; }
.gl-nl-modal-ou { display: flex; align-items: center; gap: 10px; margin: 16px 0; color: var(--color-slate); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; }
.gl-nl-modal-ou::before, .gl-nl-modal-ou::after { content: ""; flex: 1; height: 1px; background: rgba(132, 153, 183, 0.3); }
.gl-nl-arquivo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-lavender-light);
    color: #9b59d6;
    border-radius: var(--radius-full);
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}
.gl-nl-arquivo input[type="file"] { display: none; }
.gl-nl-modal-rodape { display: flex; justify-content: flex-end; gap: 10px; margin-top: 18px; }
.gl-nl-import-result { text-align: center; padding: 10px 0; }
.gl-nl-import-emoji { font-size: 34px; margin-bottom: 10px; }
.gl-nl-import-linha { font-size: 15px; color: var(--color-text-secondary); margin: 0 0 18px; }
.gl-nl-import-linha strong { color: var(--color-text); }
.gl-nl-import-outro { display: block; margin: 12px auto 0; background: none; border: none; color: var(--color-slate); font-size: 12.5px; cursor: pointer; }

/* ── Responsivo: a lista reflui (nome + ação em cima; origem + status embaixo) ── */
@media (max-width: 600px) {
    .gl-nl-row {
        grid-template-columns: auto auto 1fr;
        grid-template-areas:
            "main main acao"
            "status origem .";
        row-gap: 8px;
    }
    .gl-nl-row.head { display: none; }
    .gl-nl-origem { justify-self: start; }
    .gl-nl-busca { margin-left: 0; width: 100%; }
    .gl-nl-busca input { width: 100%; min-width: 0; }
}

/* ══════════════════════════════════════════════════════════════════════════
   Girlsletter — blocos Foto (imagens reais: upload ou álbum GymRats) e Destaque
   (membras escolhidas por busca/leaderboard). Render (.gl-*) + editores (.glc-*).
   ════════════════════════════════════════════════════════════════════════════ */

/* ── Foto no feed: imagem real dentro do tile ── */
.gl-foto-tile.gl-foto-img { padding: 0; background: #efe9d8; }
.gl-foto-tile.gl-foto-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Destaque no feed: avatar + primeiro nome sob cada membra ── */
.gl-dest-avatares { align-items: flex-start; gap: 12px; }
.gl-dest-membra { display: flex; flex-direction: column; align-items: center; gap: 4px; width: 52px; }
.gl-dest-nome {
    font-size: 10px;
    font-weight: 600;
    color: var(--color-text-secondary);
    text-align: center;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* Pontos do leaderboard por evento (só quando a membra veio do ranking do GymRats). */
.gl-dest-pts {
    font-size: 9px;
    font-weight: 700;
    color: #5c5e00;
    background: rgba(180, 181, 54, 0.15);
    border-radius: var(--radius-full);
    padding: 1px 7px;
    white-space: nowrap;
}

/* ── Editor Foto: chips de fonte (upload × GymRats) ── */
.glc-fonte-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.glc-fonte-chip {
    background: #fff;
    border: 1.5px solid rgba(132, 153, 183, 0.25);
    color: var(--color-slate);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
    padding: 7px 14px;
    cursor: pointer;
}
.glc-fonte-chip.on { background: var(--color-lavender); color: var(--color-text); border-color: transparent; }

/* ── Editor Foto: thumbnails do upload (com remover) ── */
.glc-foto-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.glc-foto-thumb {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-cream);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.glc-foto-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.glc-foto-thumb-load { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; font-size: 22px; }
.glc-foto-thumb-x {
    position: absolute;
    top: 3px; right: 3px;
    width: 20px; height: 20px;
    border: none;
    border-radius: 50%;
    background: rgba(43, 35, 24, 0.7);
    color: #fff;
    font-size: 10px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
}
.glc-upload-lbl { display: inline-flex; align-items: center; cursor: pointer; }

/* ── Editor Foto: grade de fotos do álbum GymRats (pickable) ── */
.glc-foto-picker { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.glc-foto-pick {
    position: relative;
    aspect-ratio: 1;
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    padding: 0;
    background: var(--color-cream);
    cursor: pointer;
}
.glc-foto-pick img { width: 100%; height: 100%; object-fit: cover; display: block; }
.glc-foto-pick .glc-foto-thumb-load { font-size: 18px; }
.glc-foto-pick.sel { border-color: var(--color-orange); }
.glc-foto-pick-check {
    position: absolute;
    top: 4px; right: 4px;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--color-orange);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

/* ── Editor Foto: enquadramento por foto (object-position no card) ── */
.glc-enq { margin-top: 6px; }
.glc-enq-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}
.glc-enq-prev {
    flex-shrink: 0;
    width: 64px; height: 64px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-cream);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.glc-enq-prev img { width: 100%; height: 100%; object-fit: cover; display: block; }
.glc-enq-prev .glc-foto-thumb-load { font-size: 20px; }
.glc-enq-sliders { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.glc-enq-slider { display: flex; align-items: center; gap: 8px; }
.glc-enq-slider span { width: 16px; text-align: center; color: var(--color-slate); font-size: 13px; }
.glc-enq-slider input[type="range"] { flex: 1; accent-color: var(--color-orange); cursor: pointer; }

/* ── Editor Destaque: chips das membras escolhidas ── */
.glc-membra-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.glc-membra-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--color-lavender-light);
    border-radius: var(--radius-full);
    padding: 3px 6px 3px 4px;
}
.glc-membra-chip-nome { font-size: 12px; font-weight: 600; color: var(--color-text); max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.glc-membra-chip-x {
    width: 18px; height: 18px;
    border: none;
    border-radius: 50%;
    background: rgba(155, 89, 214, 0.18);
    color: #9b59d6;
    font-size: 10px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

/* ── Editor Destaque: abas buscar × leaderboard ── */
.glc-membra-tabs { display: inline-flex; background: #e2ddd0; border-radius: var(--radius-full); padding: 3px; gap: 2px; }
.glc-membra-tabs button {
    border: none; background: transparent;
    border-radius: var(--radius-full);
    padding: 5px 13px;
    font-size: 11px; font-weight: 500; color: var(--color-slate); cursor: pointer;
}
.glc-membra-tabs button.on { background: #fff; color: var(--color-orange); font-weight: 700; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08); }

/* ── Editor Destaque: lista de resultados (busca/leaderboard) ── */
.glc-membra-lista {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 220px;
    overflow-y: auto;
    background: #fff;
    border-radius: var(--radius-card);
    padding: 6px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}
.glc-membra-row {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    border: none;
    background: transparent;
    border-radius: 10px;
    padding: 6px 8px;
    cursor: pointer;
    text-align: left;
    transition: background .12s ease;
}
.glc-membra-row:hover:not(:disabled) { background: var(--color-cream); }
.glc-membra-row:disabled { opacity: 0.5; cursor: default; }
.glc-membra-pos {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-slate);
    min-width: 20px;
    text-align: center;
    flex-shrink: 0;
}
.glc-membra-row-nome { flex: 1; min-width: 0; font-size: 13px; font-weight: 600; color: var(--color-text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.glc-membra-row-eventos {
    flex-shrink: 0;
    font-size: 10px;
    font-weight: 700;
    color: #5c5e00;
    background: rgba(180, 181, 54, 0.15);
    border-radius: var(--radius-full);
    padding: 3px 9px;
}
/* Pontos (Score) na aba Leaderboard — mesmo formato da tela do GymRats (.gym-lb-pts). */
.glc-membra-row-pts { flex-shrink: 0; font-size: 13px; font-weight: 700; color: #6b5f50; white-space: nowrap; }
.glc-membra-row-pts small { font-size: 10px; font-weight: 400; color: var(--color-slate); }

@media (max-width: 640px) {
    .glc-foto-picker { grid-template-columns: repeat(3, 1fr); }
}
