/**
 * Arquivo: public/assets/css/style.css
 * Pasta: /public/assets/css
 * Projeto: Quero Ação / Cadê o Governo — plataforma cívica de cobranças públicas
 * Criado em: 2026-05-26 01:30 America/Maceio
 * Modificado em: 2026-05-26 01:30 America/Maceio
 * Descrição: CSS autoral mobile-first v11.1, com paleta multimarca por domínio.
 */

:root {
    --bg: #f3f4f6;
    --ink: #111827;
    --ink-2: #1f2937;
    --muted: #667085;
    --soft: #f8fafc;
    --line: #e5e7eb;
    --card: #ffffff;
    --dark: #0b1020;
    --dark-2: #111827;
    --dark-3: #182235;
    --yellow: #facc15;
    --yellow-2: #fef3c7;
    --yellow-3: #92400e;
    --danger: #ef4444;
    --ok: #16a34a;
    --warn: #f59e0b;
    --blue: #2563eb;
    --shadow: 0 20px 60px rgba(15, 23, 42, .13);
    --shadow-soft: 0 10px 30px rgba(15, 23, 42, .08);
    --radius: 22px;
    --radius-sm: 15px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    background: var(--bg);
    color: var(--ink);
    padding-bottom: 94px;
}
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
::selection { background: var(--yellow); color: #111827; }

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    min-height: 74px;
    padding: 14px clamp(16px, 3vw, 44px);
    background: rgba(11, 16, 32, .96);
    backdrop-filter: blur(18px);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.brand { display: inline-flex; gap: 12px; align-items: center; min-width: 0; }
.brand-heart { text-decoration: none; }
.brand-heart > a { display: inline-flex; max-width: 100%; }
.brand-mark {
    flex: 0 0 auto;
    width: 44px; height: 44px; border-radius: 15px;
    display: grid; place-items: center;
    background: var(--yellow); color: #111827; font-weight: 1000;
    box-shadow: 0 0 0 5px rgba(250, 204, 21, .13);
}
.brand strong { display: block; font-size: 1rem; line-height: 1.05; white-space: nowrap; }
.brand small { display: block; color: #d1d5db; font-size: .78rem; margin-top: 4px; }
.desktop-nav { display: none; gap: 8px; align-items: center; }
.desktop-nav a { padding: 10px 13px; border-radius: 999px; color: #e5e7eb; font-weight: 800; }
.desktop-nav a.is-active, .desktop-nav a:hover { background: rgba(255,255,255,.12); color: #fff; }

.ticker {
    color: #fff;
    display: flex;
    gap: 10px;
    overflow: auto;
    padding: 10px 16px;
    background: #202415;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.ticker span { white-space: nowrap; font-size: .86rem; font-weight: 900; }

.app-shell { width: min(1180px, calc(100% - 28px)); margin: 0 auto; padding: 26px 0; }

.hero,
.page-hero,
.detail-header,
.form-intro,
.admin-head {
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(250,204,21,.18), transparent 32%),
        linear-gradient(135deg, #0b1020 0%, #111827 52%, #182235 100%);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 30px;
    box-shadow: var(--shadow);
}
.hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: clamp(24px, 5vw, 48px);
    margin-bottom: 22px;
    overflow: hidden;
}
.hero-compact, .page-hero { padding: clamp(22px, 4vw, 38px); margin-bottom: 22px; }
.detail-header, .form-intro, .admin-head { padding: clamp(20px, 4vw, 34px); margin-bottom: 18px; }
.admin-head { display: grid; grid-template-columns: 1fr; gap: 16px; }
.eyebrow { color: var(--yellow); font-weight: 1000; text-transform: uppercase; letter-spacing: .09em; font-size: .76rem; }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2rem, 6.5vw, 4rem); margin-top: 9px; }
h2 { font-size: clamp(1.48rem, 4vw, 2.25rem); }
h3 { font-size: 1.22rem; }
p { line-height: 1.65; color: inherit; }
.hero p, .page-hero p, .detail-header p, .form-intro p, .admin-head p { color: #d7dde8; max-width: 820px; font-size: 1.03rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

.btn {
    border: 0;
    min-height: 45px;
    padding: 12px 16px;
    border-radius: 14px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 1000;
    transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-alert { background: var(--yellow); color: #111827; box-shadow: 0 14px 32px rgba(250, 204, 21, .25); }
.btn-dark { background: var(--dark-2); color: #fff; }
.btn-ghost { border: 1px solid rgba(255,255,255,.22); color: #fff; background: rgba(255,255,255,.08); }
.btn-soft { background: #f3f4f6; color: #111827; border: 1px solid #e5e7eb; }
.btn-danger { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.btn-small { min-height: 36px; padding: 8px 12px; }
.btn-full { width: 100%; }

.phone-preview {
    min-height: 252px;
    border-radius: 34px;
    border: 1px solid rgba(255,255,255,.16);
    background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.05));
    padding: 44px 18px 18px;
    position: relative;
    box-shadow: inset 0 0 0 8px rgba(255,255,255,.04), 0 26px 80px rgba(0,0,0,.35);
}
.phone-notch { position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 86px; height: 8px; border-radius: 999px; background: rgba(255,255,255,.25); }
.phone-card { background: #fff; color: #111827; border-radius: 22px; padding: 18px; margin-bottom: 12px; }
.phone-card small { color: var(--muted); font-weight: 900; }
.phone-card strong { display: block; font-size: 2rem; letter-spacing: -.05em; }
.phone-card span { color: var(--muted); }
.phone-card.muted { background: rgba(250, 204, 21, .98); }

.filter-card, .content-card, .complaint-card, .link-card, .ranking-card, .empty-state, .smart-form, .pressure-panel, .stats-grid > div, .admin-actions a, .mini-card {
    background: var(--card);
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}
.filter-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
    margin: 0 0 26px;
}
.filter-card.compact { margin-top: 12px; }
label span { display: block; font-size: .8rem; font-weight: 1000; color: #374151; margin-bottom: 7px; }
input, select, textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #111827;
    border-radius: 14px;
    padding: 13px 14px;
    outline: none;
}
input[type="file"] { padding: 10px; }
input:focus, select:focus, textarea:focus { border-color: var(--yellow); box-shadow: 0 0 0 4px rgba(250, 204, 21, .18); }
textarea { resize: vertical; }
.form-help { color: var(--muted); font-size: .88rem; margin-top: 6px; line-height: 1.45; }

.section-head { display: flex; justify-content: space-between; align-items: end; gap: 12px; margin: 28px 0 14px; }
.section-head a { color: #111827; font-weight: 1000; }
.feed-grid { display: grid; gap: 18px; }
.complaint-card { overflow: hidden; }
.media { display: block; background: #111827; }
.media img, .detail-photo { width: 100%; height: 220px; object-fit: cover; }
.placeholder-photo {
    min-height: 220px;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at top left, rgba(250,204,21,.32), transparent 45%), linear-gradient(145deg, #111827, #293548);
    color: #fff;
    text-align: center;
}
.placeholder-photo span { display: block; font-size: 4.5rem; filter: drop-shadow(0 18px 30px rgba(0,0,0,.4)); }
.placeholder-photo small { display: block; color: #d1d5db; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.card-body { padding: 18px; }
.card-meta { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; color: var(--muted); font-weight: 900; font-size: .84rem; }
.card-body h3 a:hover { text-decoration: underline; }
.card-body p { color: #4b5563; }
.place-line { color: #6b7280; font-size: .92rem; margin-top: 8px; line-height: 1.45; }
.pressure-box { display: flex; align-items: baseline; gap: 8px; margin: 16px 0; background: #fffbeb; border: 1px solid #fde68a; padding: 12px; border-radius: 16px; }
.pressure-box strong { font-size: 1.35rem; }
.pressure-box span { color: #92400e; font-weight: 900; }
.card-actions { display: grid; grid-template-columns: 1fr; gap: 10px; }

.badge { display: inline-flex; align-items: center; border-radius: 999px; padding: 6px 10px; font-size: .75rem; font-weight: 1000; line-height: 1; }
.badge-danger { background: #fee2e2; color: #991b1b; }
.badge-warn { background: #fef3c7; color: #92400e; }
.badge-ok { background: #dcfce7; color: #166534; }
.badge-muted { background: #e5e7eb; color: #374151; }
.badge-blue { background: #dbeafe; color: #1e40af; }

.detail-layout { display: grid; grid-template-columns: 1fr; gap: 18px; }
.detail-header h1 { margin: 12px 0; }
.detail-photo { border-radius: var(--radius); box-shadow: var(--shadow-soft); margin-bottom: 18px; }
.content-card { padding: 18px; margin-bottom: 18px; }
.content-card.small h3 { margin-bottom: 8px; }
.timeline ol, .steps { padding-left: 22px; }
.timeline li, .steps li { margin: 10px 0; line-height: 1.55; }
.pressure-panel { padding: 20px; position: sticky; top: 96px; display: grid; gap: 12px; }
.pressure-panel > span { font-size: 3rem; }
.pressure-panel strong { display: block; font-size: 4rem; line-height: 1; letter-spacing: -.08em; }
.pressure-panel p { color: var(--muted); margin: 0; }

.form-page { display: grid; grid-template-columns: 1fr; gap: 18px; align-items: start; }
.notice-box { border: 1px solid rgba(250,204,21,.40); background: rgba(250,204,21,.14); padding: 14px; border-radius: 18px; color: #fff; line-height: 1.55; }
.smart-form { padding: 18px; display: grid; gap: 14px; }
.grid-2, .grid-3, .grid-4 { display: grid; gap: 14px; }
.check-row { display: flex; gap: 14px; flex-wrap: wrap; }
.check-row label { display: inline-flex; align-items: center; gap: 8px; font-weight: 900; }
.check-row input { width: auto; }

.link-grid, .ranking-layout, .stats-grid, .admin-actions, .mini-grid { display: grid; gap: 16px; }
.link-card { padding: 18px; display: grid; gap: 10px; }
.link-card p { color: #4b5563; margin: 0; }
.link-card small { color: #6b7280; font-weight: 900; }
.ranking-card { padding: 18px; }
.ranking-card.danger { border-top: 6px solid var(--danger); }
.ranking-card.ok { border-top: 6px solid var(--ok); }
.rank-row { display: grid; grid-template-columns: 44px 1fr; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid #f1f5f9; }
.rank-row strong { font-size: 1.1rem; }
.rank-row span small { display: block; color: var(--muted); margin-top: 4px; }
.rank-row em { grid-column: 2; font-style: normal; font-weight: 1000; color: #374151; }

.stats-grid { grid-template-columns: repeat(2, 1fr); margin-bottom: 18px; }
.stats-grid div { padding: 18px; }
.stats-grid strong { display: block; font-size: 2rem; letter-spacing: -.06em; }
.stats-grid span { color: var(--muted); font-weight: 1000; }
.admin-actions { grid-template-columns: 1fr; margin-bottom: 18px; }
.admin-actions a { padding: 18px; font-weight: 1000; }
.table-wrap { overflow: auto; border-radius: 16px; }
table { width: 100%; border-collapse: collapse; min-width: 760px; }
th, td { padding: 12px 10px; border-bottom: 1px solid #e5e7eb; text-align: left; vertical-align: top; }
th { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: #6b7280; }
td small { display: block; color: #6b7280; margin-top: 4px; }
.row-actions { display: flex; gap: 8px; flex-wrap: wrap; }

.flash { padding: 14px 16px; border-radius: 18px; margin-bottom: 16px; font-weight: 1000; }
.flash-ok { background: #dcfce7; color: #166534; }
.flash-warn { background: #fef3c7; color: #92400e; }
.flash-error { background: #fee2e2; color: #991b1b; }
.empty-state { padding: 26px; text-align: center; }
.empty-state p { color: var(--muted); }
.mini-card { padding: 18px; }
.mini-card p { color: #4b5563; }
.code-box { background: #0b1020; color: #f8fafc; border-radius: 18px; padding: 14px; overflow: auto; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }

.bottom-nav {
    position: fixed;
    z-index: 60;
    left: 10px; right: 10px; bottom: 10px;
    min-height: 70px;
    background: rgba(17, 24, 39, .95);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 24px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.bottom-nav a { color: #d1d5db; display: grid; place-items: center; align-content: center; font-size: .68rem; font-weight: 1000; gap: 3px; }
.bottom-nav a span { display: block; font-size: 1.15rem; }
.bottom-nav a.is-active { color: var(--yellow); }
.bottom-nav .main-action { transform: translateY(-13px); background: var(--yellow); color: #111827; width: 62px; height: 62px; border-radius: 22px; justify-self: center; box-shadow: 0 16px 34px rgba(250,204,21,.3); }

.chat-toggle { position: fixed; z-index: 58; right: 16px; bottom: 94px; width: 54px; height: 54px; border-radius: 18px; border: 0; background: var(--yellow); box-shadow: var(--shadow); font-size: 1.5rem; cursor: pointer; }
.chatbot { position: fixed; z-index: 70; right: 14px; bottom: 156px; width: min(360px, calc(100% - 28px)); background: #fff; border-radius: 24px; box-shadow: 0 28px 80px rgba(0,0,0,.35); overflow: hidden; transform: translateY(16px); opacity: 0; pointer-events: none; transition: .18s ease; }
.chatbot.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.chatbot-head { background: #111827; color: #fff; padding: 14px 16px; display: flex; justify-content: space-between; align-items: center; }
.chatbot-head button { background: rgba(255,255,255,.12); color: #fff; border: 0; border-radius: 10px; width: 32px; height: 32px; cursor: pointer; }
.chatbot-body { padding: 16px; }
.chatbot-body button { width: 100%; margin: 6px 0; padding: 11px; border: 1px solid #e5e7eb; background: #f8fafc; border-radius: 14px; cursor: pointer; font-weight: 900; }
.chatbot-result { margin-top: 10px; padding: 12px; background: #fffbeb; border: 1px solid #fde68a; border-radius: 14px; line-height: 1.45; }
.footer-note { width: min(1180px, calc(100% - 28px)); margin: 20px auto 100px; color: #6b7280; font-size: .88rem; }

@media (min-width: 720px) {
    .desktop-nav { display: flex; }
    .hero { grid-template-columns: 1.26fr .74fr; align-items: center; }
    .admin-head { grid-template-columns: 1fr auto; align-items: center; }
    .filter-card { grid-template-columns: 1.5fr .8fr .9fr .8fr auto; align-items: end; }
    .filter-card.compact { grid-template-columns: 1fr auto; }
    .feed-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .card-actions { grid-template-columns: 1fr 1fr; }
    .detail-layout { grid-template-columns: minmax(0, 1fr) 330px; align-items: start; }
    .form-page { grid-template-columns: .8fr 1.2fr; }
    .form-page.wide { grid-template-columns: .65fr 1.35fr; }
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
    .link-grid, .ranking-layout, .mini-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
    .admin-actions { grid-template-columns: repeat(5, 1fr); }
    .bottom-nav { display: none; }
    body { padding-bottom: 0; }
    .chat-toggle { bottom: 24px; }
    .chatbot { bottom: 88px; }
    .rank-row { grid-template-columns: 44px 1fr auto; }
    .rank-row em { grid-column: auto; }
}

@media (min-width: 1060px) {
    .feed-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 420px) {
    .brand small { display: none; }
    .topbar { padding-inline: 12px; }
    .app-shell { width: min(100% - 20px, 1180px); }
    .hero, .page-hero, .detail-header, .form-intro, .admin-head { border-radius: 22px; }
    h1 { font-size: clamp(1.8rem, 11vw, 2.6rem); }
}

/* ===== v7 beta público: legibilidade, filtros avançados e transparência ===== */
.hero-readable h1,
.hero-readable p,
.page-hero h1,
.page-hero p,
.form-intro h1,
.form-intro p,
.detail-header h1,
.detail-header p,
.admin-head h1,
.admin-head p {
    text-shadow: 0 2px 18px rgba(0,0,0,.25);
}

.quick-status-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: -8px 0 20px;
}
.quick-status-grid > div {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    padding: 16px;
}
.quick-status-grid strong {
    display: block;
    color: #111827;
    font-size: 1.9rem;
    line-height: 1;
    letter-spacing: -.05em;
}
.quick-status-grid span {
    display: block;
    color: #4b5563;
    font-weight: 900;
    margin-top: 6px;
}

.filter-card-advanced {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
}
.filter-card-advanced .span-2 { grid-column: span 2; }
.filter-actions { display: flex; gap: 10px; align-items: end; }
.filter-actions .btn { flex: 1; }

.notice-inline {
    margin: 10px 0;
    padding: 10px 12px;
    border-radius: 14px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #78350f;
    font-weight: 850;
    line-height: 1.45;
}
.warning-card {
    border-top: 6px solid var(--yellow);
}
.selectable-card {
    display: grid;
    gap: 6px;
    cursor: pointer;
}
.selectable-card input { width: auto; }
.selectable-card span { color: #4b5563; font-size: .92rem; }
.content-grid-2 {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
    margin-bottom: 18px;
}
.big-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.table-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    overflow: auto;
    padding: 12px;
}
.inline-form {
    display: grid;
    gap: 8px;
    min-width: 260px;
}
.footer-note {
    padding-bottom: 92px;
}

@media (max-width: 760px) {
    .quick-status-grid,
    .filter-card-advanced,
    .big-stats {
        grid-template-columns: 1fr;
    }
    .filter-card-advanced .span-2 { grid-column: span 1; }
    .filter-actions { flex-direction: column; }
    .filter-actions .btn { width: 100%; }
    .hero { border-radius: 24px; }
    h1 { font-size: clamp(2rem, 11vw, 3rem); }
}

@media (min-width: 900px) {
    .content-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* v7 — fila de e-mail, SMTP e respostas oficiais */
.inline-form{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    align-items:end;
}
.inline-form label{min-width:130px;display:flex;flex-direction:column;gap:6px;font-weight:800;color:#111827}
.inline-form input{border:1px solid var(--line);border-radius:14px;padding:12px;background:#fff;color:#111827}
.action-stack{display:flex;gap:6px;flex-wrap:wrap;align-items:center}
.action-stack form{margin:0}
.mini-btn{border:0;border-radius:10px;background:#111827;color:#fff;padding:7px 10px;font-weight:800;cursor:pointer}
.mini-btn.danger{background:#b91c1c}
.chip{display:inline-flex;align-items:center;gap:6px;padding:9px 12px;border-radius:999px;background:#fff;border:1px solid var(--line);color:#111827;text-decoration:none;font-weight:900;margin:4px}
.chip.active{background:#111827;color:#fff;border-color:#111827}
.compact-filter{padding:14px}
.danger-check{border:1px solid rgba(220,38,38,.25);background:#fff7f7;border-radius:14px;padding:12px}
code{background:#f3f4f6;border:1px solid #e5e7eb;border-radius:8px;padding:2px 6px;color:#111827}
.table-wrap small{display:block;color:#6b7280;margin-top:4px}
@media (max-width: 720px){
    .inline-form{display:block}
    .inline-form .btn{width:100%;margin-top:8px}
    .action-stack{display:grid;grid-template-columns:1fr;gap:6px}
    .mini-btn{width:100%}
}


/* v7 — comunidade, alertas e manual */
.community-actions{display:grid;grid-template-columns:1fr;gap:12px;margin-top:14px}
.follow-count{font-size:.9rem;color:#4b5563;font-weight:900;text-align:center;margin-top:8px}
.summary-list{display:grid;gap:10px;margin-top:12px}
.summary-pill{display:flex;justify-content:space-between;gap:12px;align-items:center;border:1px solid var(--line);border-radius:16px;background:#fff;padding:12px 14px;font-weight:900;color:#111827}
.summary-pill span:last-child{background:#111827;color:#fff;border-radius:999px;padding:5px 10px}
.consent-box{background:#f8fafc;border:1px solid #dbeafe;border-radius:16px;padding:12px;color:#1f2937;font-size:.95rem;line-height:1.45}
.queue-message{background:#f9fafb;border-left:5px solid var(--yellow);padding:10px 12px;border-radius:12px;margin:8px 0;color:#111827}
.manual-link-card{background:#111827;color:#fff;border-radius:24px;padding:18px;box-shadow:var(--shadow-soft)}
.manual-link-card a{color:var(--yellow);font-weight:900}
@media(min-width:760px){.community-actions{grid-template-columns:1fr 1fr}}


/* v7 — assistente guiado, IA local e duplicidades */
.assistant-callout{display:flex;gap:12px;align-items:center;justify-content:space-between;flex-wrap:wrap;background:#111827;color:#fff;border-radius:22px;padding:16px;margin:0 0 18px;box-shadow:var(--shadow-soft)}
.assistant-callout span{color:#e5e7eb;font-weight:750;flex:1;min-width:220px}.assistant-callout .btn{white-space:nowrap}
.assistant-page{display:grid;gap:18px}.assistant-hero{background:linear-gradient(135deg,#111827,#1f2937);color:#fff;border-radius:30px;padding:clamp(22px,5vw,46px);box-shadow:var(--shadow-strong)}.assistant-hero p{color:#e5e7eb;max-width:780px;font-weight:700;line-height:1.6}.assistant-chat{background:#fff;border:1px solid var(--line);border-radius:28px;padding:18px;box-shadow:var(--shadow-soft);display:grid;gap:16px}.bot-message{background:#f9fafb;border-left:6px solid var(--yellow);border-radius:18px;padding:14px;color:#111827;line-height:1.45}.choice-row{display:flex;gap:8px;flex-wrap:wrap}.choice-row button{border:1px solid var(--line);background:#fff;border-radius:999px;padding:10px 13px;font-weight:900;color:#111827;cursor:pointer}.choice-row button.selected,.choice-row button:hover{background:#111827;color:#fff;border-color:#111827}.assistant-result-grid{display:grid;grid-template-columns:1fr;gap:12px;margin:12px 0}.assistant-result-grid>div{border:1px solid var(--line);border-radius:18px;padding:14px;background:#fff}.assistant-result-grid h3{margin:0 0 8px}.assistant-result-grid p{margin:0;color:#1f2937;line-height:1.5}.badge-danger{background:#fee2e2;color:#991b1b}.badge-warn{background:#fef3c7;color:#92400e}.badge-ok{background:#dcfce7;color:#166534}.badge-blue{background:#dbeafe;color:#1e40af}.textarea-mono textarea, textarea[readonly]{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;line-height:1.45}.admin-actions a[href*="triagem"],.admin-actions a[href*="duplicidades"],.admin-actions a[href*="assistente_email"]{background:#111827;color:#fff;border-color:#111827}.admin-actions a[href*="triagem"]:hover,.admin-actions a[href*="duplicidades"]:hover,.admin-actions a[href*="assistente_email"]:hover{transform:translateY(-2px)}
@media(min-width:820px){.assistant-result-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
