/* =================================================================
   ágora — landing "A praça onde o Brasil conversa com quem decide"
   Paleta do app (src/theme.ts). HTML/CSS/JS vanilla.
   Hero PRETO + cidadão claro + político escuro premium.
   ================================================================= */

:root {
  /* paleta restrita: PRETO · BRANCO · LARANJA (+ cinzas neutros, sem marrom/creme/dourado) */
  --ink: #111111;          /* preto */
  --ink-soft: #555555;     /* cinza neutro escuro */
  --paper: #ffffff;        /* branco */
  --cream: #f6f6f6;        /* cinza-branco neutro (era creme) */
  --muted: #8a8a8a;        /* cinza neutro */
  --line: #ececec;
  --border: #dcdcdc;
  --accent: #c2410c;       /* laranja */
  --accent-soft: #fbe8dc;  /* laranja claro (fundo de chip/destaque) */
  --positive: #c2410c;     /* sem verde — usa laranja */
  --gold: #c2410c;         /* sem dourado — usa laranja */
  --negative: #c2410c;     /* sem vermelho próprio — usa laranja */

  /* tons sobre o preto */
  --on-dark: #ffffff;      /* branco puro sobre preto */
  --on-dark-soft: #b0b0b0; /* cinza neutro claro */
  --dark-card: #1c1c1c;    /* cartão escuro neutro */
  --dark-line: #333333;    /* linha escura neutra */

  --serif: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
  --sans: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
  --logo: "Instrument Serif", Georgia, serif; /* a fonte da marca, igual ao app */

  --maxw: 1120px;
  --radius: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

.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;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.narrow { max-width: 720px; }
.center { text-align: center; }

/* ---------- Tipografia ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 900; line-height: 1.08; letter-spacing: -0.02em; }

h1 {
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  margin: 0.2em 0 0.4em;
  letter-spacing: -0.01em;
}
h1 em { color: var(--accent); font-style: italic; }

h2 {
  font-size: clamp(1.9rem, 4.6vw, 3rem);
  margin: 0 0 0.4em;
  letter-spacing: -0.01em;
}
.h2-light { color: var(--on-dark); }

h3 { font-size: 1.35rem; margin: 0 0 0.35em; }

.kicker {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}
.kicker-light { color: #e8956b; }
.kicker-gold { color: var(--gold); }

.lead {
  font-size: clamp(1.05rem, 2.2vw, 1.22rem);
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 0 1.6em;
}
.lead-light { color: var(--on-dark-soft); }
.lead strong { color: var(--ink); font-weight: 700; }
.lead-light strong { color: var(--on-dark); }

/* a palavra "ágora" em texto corrido usa a fonte da marca (logo) */
.marca { font-family: var(--logo); font-size: 1.12em; letter-spacing: 0.01em; }

.muted { color: var(--muted); }
.muted-light { color: var(--on-dark-soft); }
.small { font-size: 0.9rem; }
.center.small { margin-top: 2.4rem; }

.section-head { max-width: 64ch; margin-bottom: 2.6rem; }
.section-head.center { margin-left: auto; margin-right: auto; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85em 1.7em;
  border-radius: 999px;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 20px rgba(194, 65, 12, 0.35);
}
.btn-accent:hover { box-shadow: 0 10px 28px rgba(194, 65, 12, 0.45); }

.btn-ghost-light {
  background: transparent;
  color: var(--on-dark);
  border-color: rgba(246, 241, 234, 0.45);
}
.btn-ghost-light:hover { background: rgba(246, 241, 234, 0.08); border-color: var(--on-dark); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--accent); }

/* ===================== TOPBAR ===================== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  border-bottom: none;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand { display: inline-flex; align-items: baseline; gap: 8px; text-decoration: none; }
.brand-mark { font-family: var(--logo); font-size: 1.9rem; color: var(--on-dark); line-height: 1; }
.nav { display: flex; align-items: center; gap: 22px; }
.nav a { text-decoration: none; font-size: 0.92rem; font-weight: 600; color: var(--on-dark-soft); transition: color 0.15s; }
.nav a:hover { color: var(--on-dark); }
.nav-cta {
  background: var(--accent); color: #fff !important;
  padding: 0.5em 1.05em; border-radius: 999px;
}
.nav-cta:hover { background: #a83709; }

/* ===================== 1. HERO / APP EM DESTAQUE ===================== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: #f5f5f4;
  color: var(--ink);
}
.hero::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -2%;
  width: min(58vw, 760px);
  height: min(58vw, 760px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194, 65, 12, 0.14) 0%, rgba(194, 65, 12, 0.06) 34%, transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  gap: clamp(1rem, 3vw, 3rem);
  align-items: center;
  min-height: 610px;
}
.hero-text { position: relative; z-index: 3; }
.hero-text h1 {
  max-width: 650px;
  color: var(--ink);
  font-size: clamp(2.35rem, 3.7vw, 3rem);
  line-height: 1.01;
  letter-spacing: -0.045em;
}
.hero-title-line { display: block; white-space: nowrap; }
.hero .kicker-light { color: var(--ink-soft); }
.hero .lead-light { color: #5f6368; }
.hero .lead-light strong { color: var(--ink); }
.hero-fineprint {
  margin-top: 1.6rem;
  font-size: 0.86rem;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 0.4rem; }
.hero-store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(17, 17, 17, 0.14);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.hero-store:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 32px rgba(17, 17, 17, 0.2);
}
.hero-store svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-store small,
.hero-store strong { display: block; line-height: 1; }
.hero-store small {
  margin-bottom: 5px;
  color: #c9c9c9;
  font-size: 0.65rem;
  font-weight: 500;
}
.hero-store strong { font-size: 0.95rem; }
.hero-secondary {
  min-height: 64px;
  padding-inline: 1.45rem;
  border-radius: 14px;
  background: transparent;
}

/* visual do hero: celular grande em perspectiva, como vitrine do produto */
.hero-visual {
  position: relative;
  display: flex;
  min-height: 680px;
  align-items: center;
  justify-content: center;
  perspective: 1100px;
}
.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  left: 52%;
  bottom: 18px;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.16);
  transform: translateX(-50%);
  filter: blur(18px);
}
.hero-visual::before { width: 300px; height: 36px; }
.hero-visual::after {
  bottom: 4px;
  width: 350px;
  height: 62px;
  background: rgba(17, 17, 17, 0.08);
  filter: blur(30px);
}
.conn-art { display: none; }
.conn-art .draw { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.conn-art .side-citizen .draw { stroke: var(--accent); stroke-width: 2.4; }
.conn-art .side-rep .draw { stroke: var(--on-dark); stroke-width: 2.4; }
.conn-art .d-floor { stroke: var(--dark-line); stroke-width: 2; }
.conn-art .d-col { stroke: var(--on-dark-soft); stroke-width: 1.6; }
.conn-art .links .draw { stroke: var(--accent); stroke-width: 1.8; opacity: 0.85; }
.conn-art .bubbles .draw { stroke: var(--gold); stroke-width: 1.8; fill: none; }
.conn-art .bubbles .dot { fill: var(--gold); stroke: none; }

/* desenho animado (stroke-dashoffset), reduzido se prefers-reduced-motion */
.conn-art .draw {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: draw 2.4s ease forwards;
}
.conn-art .d-p1 { animation-delay: 0.3s; }
.conn-art .d-p2 { animation-delay: 0.5s; }
.conn-art .d-r1 { animation-delay: 0.4s; }
.conn-art .d-r2 { animation-delay: 0.6s; }
.conn-art .links .l1 { animation-delay: 1.0s; }
.conn-art .links .l2 { animation-delay: 1.2s; }
.conn-art .links .l3 { animation-delay: 1.4s; }
.conn-art .bubbles .d-bub1 { animation-delay: 1.6s; }
.conn-art .bubbles .dot { animation: pop 0.4s ease forwards; animation-delay: 2s; opacity: 0; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes pop { to { opacity: 1; } }

/* moldura de celular realista (frame escuro, ilha dinâmica, brilho) */
.hero-phone {
  position: relative;
  z-index: 2;
  width: 340px;
  max-width: 82vw;
  margin: 0 auto;
  padding: 7px;
  border-radius: 52px;
  background: linear-gradient(145deg, #767676 0%, #292929 15%, #050505 58%, #626262 100%);
  box-shadow:
    8px 3px 0 -5px #191919,
    12px 5px 0 -8px #5d5d5d,
    0 55px 90px -34px rgba(17, 17, 17, 0.68),
    inset 0 0 0 1px rgba(255, 255, 255, 0.42);
  transform: rotateY(-13deg) rotateX(2.5deg) rotateZ(1.8deg);
  transform-origin: 50% 72%;
  transform-style: preserve-3d;
}
/* ilha dinâmica / notch no topo */
.hero-phone::before {
  content: "";
  position: absolute;
  top: 15px; left: 50%;
  transform: translateX(-50%);
  width: 98px; height: 25px;
  background: #010101;
  border-radius: 999px;
  z-index: 50;
  box-shadow: 0 1px 1px rgba(255, 255, 255, 0.08);
}
.phone-screen {
  background: var(--paper);
  border: 6px solid #030303;
  border-radius: 46px;
  padding: 43px 16px 0;
  overflow: hidden;
  min-height: 650px;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.08);
}
.m-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.m-logo { font-family: var(--logo); font-size: 1.3rem; color: var(--ink); }
.m-topbar-right { display: flex; align-items: center; gap: 6px; }
.m-bell { width: 11px; height: 11px; color: var(--ink-soft); }
.m-feed { display: flex; flex-direction: column; gap: 7px; }

/* tab bar inferior do mock (igual ao app) */
.m-tabbar {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 8px 4px 10px;
  border-top: 1px solid var(--line);
  margin-left: -16px; margin-right: -16px;
  padding-left: 14px; padding-right: 14px;
}
.m-tab {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  color: var(--muted); flex: 1;
}
.m-tab svg { width: 17px; height: 17px; }
.m-tab span { font-size: 0.46rem; font-weight: 600; }
.m-tab.is-active { color: var(--ink); }
.m-tab-agir { color: var(--ink); }
.m-agir-dot {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--accent); color: #fff;
  margin-top: -10px;
  box-shadow: 0 4px 10px rgba(194, 65, 12, 0.4);
}
.m-agir-dot svg { width: 16px; height: 16px; }
.phone-screen { position: relative; }

.m-card {
  background: var(--cream);
  border-radius: 10px;
  padding: 8px 9px;
  border: 1px solid var(--line);
}
.m-card-reply { background: var(--accent-soft); border-color: #f3d6c4; }

/* avatares */
.m-avatar {
  flex: none; width: 17px; height: 17px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.5rem; font-weight: 700; color: #fff;
  background: var(--ink-soft); position: relative;
}
.m-avatar-me { width: 15px; height: 15px; background: var(--gold); font-size: 0.46rem; }
.m-avatar-pol { background: var(--accent); }
.m-seal {
  position: absolute; bottom: -2px; right: -3px;
  width: 9px; height: 9px; padding: 1px; border-radius: 50%;
  background: var(--positive); color: #fff; border: 1px solid var(--paper);
}

/* cabeçalho de card (avatar + nome + meta) */
.m-head { display: flex; align-items: center; gap: 6px; margin-bottom: 5px; }
.m-head-txt { min-width: 0; }
.m-name { font-size: 0.55rem; font-weight: 700; color: var(--ink); line-height: 1.2; }
.m-role { color: var(--positive); font-weight: 600; }
.m-meta {
  display: flex; align-items: center; gap: 3px;
  font-size: 0.46rem; color: var(--muted); margin-top: 1px;
}
.m-ico { width: 8px; height: 8px; flex: none; }

/* foto placeholder */
.m-photo {
  height: 30px; border-radius: 6px; margin-top: 5px;
  background: #efefef; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
}
.m-photo svg { width: 14px; height: 14px; }

.m-tag {
  display: inline-block; font-size: 0.5rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink-soft); background: #fff; border: 1px solid var(--border);
  padding: 1px 5px; border-radius: 5px; margin-bottom: 5px;
}
.m-tag.tag-accent { color: #fff; background: var(--accent); border-color: var(--accent); }
.m-card-title { font-size: 0.62rem; font-weight: 700; color: var(--ink); line-height: 1.25; }
.m-card-title.small { font-size: 0.58rem; }
.m-card-sub { font-size: 0.55rem; color: var(--ink-soft); margin-top: 3px; line-height: 1.3; }
.m-card-stats { font-size: 0.52rem; color: var(--positive); font-weight: 600; margin-top: 5px; }

/* chip "traduzido pela IA" */
.m-chip {
  display: inline-flex; align-items: center; gap: 3px; margin-top: 6px;
  font-size: 0.46rem; font-weight: 700; color: var(--accent);
  background: #fff; border: 1px solid #f3d6c4;
  padding: 2px 6px; border-radius: 999px;
}

/* ===================== DEMO ANIMADA NO MOCK ===================== */

/* toque/pulso no botão Agir */
.m-agir-dot { transition: transform 0.18s ease, box-shadow 0.18s ease; }
.m-tab-agir.is-tapped .m-agir-dot {
  transform: scale(0.84);
  box-shadow: 0 0 0 6px rgba(194, 65, 12, 0.18), 0 4px 10px rgba(194, 65, 12, 0.4);
}

/* card novo deslizando no topo do feed */
.m-card-new {
  border-color: #f3d6c4;
  box-shadow: 0 4px 14px rgba(194, 65, 12, 0.14);
}
.m-card-enter {
  animation: mCardIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes mCardIn {
  0%   { opacity: 0; transform: translateY(-14px); max-height: 0; margin-bottom: -7px; }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: translateY(0); max-height: 140px; margin-bottom: 0; }
}

/* overlay escurecendo o feed atrás da sheet */
.m-overlay {
  position: absolute; inset: 0;
  background: rgba(21, 17, 12, 0.45);
  opacity: 0; visibility: hidden;
  transition: opacity 0.32s ease, visibility 0.32s ease;
  z-index: 8; border-radius: 34px;
}
.m-overlay.is-on { opacity: 1; visibility: visible; }

/* bottom-sheet */
.m-sheet {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: var(--paper);
  border-radius: 20px 20px 34px 34px;
  padding: 9px 14px 16px;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.22);
  transform: translateY(102%);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 9;
}
.m-sheet.is-up { transform: translateY(0); }
.m-sheet-grip {
  width: 34px; height: 4px; border-radius: 999px;
  background: var(--line); margin: 0 auto 9px;
}
.m-sheet-title {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.66rem; font-weight: 700; color: var(--ink);
  margin-bottom: 9px;
}

/* panes: actions / form (crossfade) */
.m-sheet-pane { transition: opacity 0.28s ease; }
.m-sheet-form { display: none; }
.m-sheet.show-form .m-sheet-actions { display: none; }
.m-sheet.show-form .m-sheet-form { display: block; }

/* uma das 4 ações */
.m-act {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 7px 8px; border-radius: 10px;
  border: 1px solid var(--line); background: var(--paper);
  margin-bottom: 6px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.m-act:last-child { margin-bottom: 0; }
.m-act-ico {
  flex: none; width: 24px; height: 24px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent);
}
.m-act-ico svg { width: 14px; height: 14px; }
.m-act-ico-sm { width: 18px; height: 18px; border-radius: 6px; }
.m-act-ico-sm svg { width: 11px; height: 11px; }
.m-act-txt { min-width: 0; }
.m-act-name { display: block; font-size: 0.6rem; font-weight: 700; color: var(--ink); line-height: 1.2; }
.m-act-desc { display: block; font-size: 0.5rem; color: var(--muted); margin-top: 1px; line-height: 1.3; }
.m-act.is-picked {
  background: var(--accent-soft); border-color: var(--accent);
  transform: scale(0.98);
}
.m-act.is-picked .m-act-name { color: var(--accent); }

/* form de denúncia (multi-etapa) */
.m-form-head {
  display: flex; align-items: center; gap: 6px; margin-bottom: 10px;
}
.m-back {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; color: var(--ink-soft);
}
.m-back svg { width: 13px; height: 13px; }
.m-form-title { font-size: 0.68rem; font-weight: 700; color: var(--ink); }
.m-form-label {
  font-size: 0.46rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.07em; color: var(--muted); margin-bottom: 4px;
}
.m-form-label + * { margin-bottom: 8px; }

/* a. categoria — chips */
.m-chips { display: flex; flex-wrap: wrap; gap: 4px; }
.m-cat {
  display: inline-block; font-size: 0.5rem; font-weight: 600;
  padding: 3px 7px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--paper);
  color: var(--ink-soft);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
/* seleção da categoria (anima "Iluminação" = gold) */
.m-cat.is-on {
  font-weight: 700; transform: scale(1.04);
}
.m-cat-luz.is-on   { background: rgba(194, 65, 12,0.12);  border-color: var(--gold);     color: var(--gold); }
.m-cat-buraco.is-on{ background: rgba(179,38,30,0.10);   border-color: var(--negative); color: var(--negative); }
.m-cat-lixo.is-on  { background: var(--accent-soft);     border-color: var(--accent);   color: var(--accent); }
.m-cat-calcada.is-on{ background: var(--accent-soft);    border-color: var(--accent);   color: var(--accent); }
.m-cat-sinal.is-on { background: rgba(194, 65, 12,0.12);  border-color: var(--gold);     color: var(--gold); }
.m-cat-outros.is-on{ background: #f2f2f2;                border-color: var(--border);   color: var(--ink-soft); }

/* b. foto — vazio → preenchido */
.m-photo-form { height: 38px; margin-top: 0; gap: 5px; position: relative; }
.m-photo-form .m-photo-empty {
  display: inline-flex; align-items: center; gap: 5px;
  transition: opacity 0.3s ease;
}
.m-photo-form .m-photo-lbl { font-size: 0.5rem; font-weight: 600; }
.m-photo-fill {
  position: absolute; inset: 0; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  background: #e2e2e2; color: #777777;
  opacity: 0; transition: opacity 0.45s ease;
}
.m-photo-fill svg { width: 16px; height: 16px; }
.m-photo.is-filled .m-photo-empty { opacity: 0; }
.m-photo.is-filled .m-photo-fill  { opacity: 1; }
.m-photo.is-filled { border-color: var(--gold); }

/* c. descrição */
.m-field {
  min-height: 30px; border-radius: 8px;
  border: 1px solid var(--line); background: var(--cream);
  padding: 6px 8px;
  font-size: 0.56rem; color: var(--ink); line-height: 1.35;
}
.m-caret {
  display: inline-block; width: 1px; height: 0.72em;
  background: var(--accent); margin-left: 1px;
  transform: translateY(2px);
  animation: mCaret 0.9s steps(1) infinite;
}
@keyframes mCaret { 50% { opacity: 0; } }

/* d. vereador — quem resolve */
.m-vereador {
  display: flex; align-items: center; gap: 7px;
  padding: 7px 8px; border-radius: 10px;
  border: 1px solid var(--line); background: var(--paper);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.m-vereador .m-avatar { width: 19px; height: 19px; font-size: 0.55rem; }
.m-vereador-txt { min-width: 0; flex: 1; }
.m-vereador-name { display: block; font-size: 0.55rem; font-weight: 700; color: var(--ink); line-height: 1.2; }
.m-vereador-sub  { display: block; font-size: 0.46rem; color: var(--muted); margin-top: 1px; }
.m-vereador-check {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--positive); color: #fff;
  opacity: 0; transform: scale(0.4);
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.22,1,0.36,1);
}
.m-vereador-check svg { width: 9px; height: 9px; }
.m-vereador.is-on { background: var(--accent-soft); border-color: var(--accent); }
.m-vereador.is-on .m-vereador-check { opacity: 1; transform: scale(1); }

/* badge de categoria no card final */
.m-cat-badge {
  display: inline-block; font-size: 0.46rem; font-weight: 700;
  padding: 1px 6px; border-radius: 999px; margin: 4px 0 2px;
  background: rgba(194, 65, 12,0.12); border: 1px solid var(--gold); color: var(--gold);
}

.m-send {
  margin-top: 9px;
  width: 100%; border: none; cursor: default;
  background: var(--accent); color: #fff;
  font-size: 0.6rem; font-weight: 700; font-family: inherit;
  padding: 9px; border-radius: 999px;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.m-send.is-pressed {
  transform: scale(0.95);
  box-shadow: 0 0 0 5px rgba(194, 65, 12, 0.16);
}

/* reduced-motion: estado final estático (feed com a denúncia, sem animar) */
@media (prefers-reduced-motion: reduce) {
  .m-overlay, .m-sheet { display: none !important; }
  .m-agir-dot, .m-card-enter, .m-send, .m-act, .m-cat, .m-photo-fill, .m-photo-empty, .m-vereador, .m-vereador-check { animation: none !important; transition: none !important; }
  .m-card-static-new { display: block !important; }
}

/* ===================== 2. FAIXA DA ÁGORA ===================== */
.agora-band {
  background: var(--dark-card);
  color: var(--on-dark);
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid var(--dark-line);
}
.agora-quote {
  font-family: var(--logo);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  line-height: 1.3;
  color: var(--on-dark);
  margin: 0.4em auto 0.3em;
  max-width: 44ch;
}
.agora-quote em { color: var(--accent); font-style: italic; }
.agora-quote-2 {
  font-family: var(--logo);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--accent);
  margin: 0;
  max-width: 44ch;
  margin-left: auto; margin-right: auto;
}

/* ===================== PROVA DE COBERTURA ===================== */
.proof-strip {
  background: var(--ink);
  padding: 0;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.proof-item {
  min-width: 0;
  min-height: 174px;
  padding: 34px 30px;
  border-left: 1px solid var(--dark-line);
}
.proof-item:first-child { border-left: 0; }
.proof-item strong {
  display: block;
  max-width: 12ch;
  margin-top: 18px;
  color: var(--on-dark);
  font-size: 1.38rem;
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.proof-item > span:not(.proof-label) {
  display: block;
  max-width: 25ch;
  margin-top: 11px;
  color: var(--on-dark-soft);
  font-size: 0.8rem;
  line-height: 1.4;
}
.proof-item .proof-label {
  display: block;
  color: var(--accent);
  font-size: 0.62rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.proof-item .proof-number {
  font-family: var(--serif);
  font-size: 2.65rem;
  line-height: 0.86;
  letter-spacing: -0.055em;
}

/* ===================== Blocos genéricos ===================== */
.block { padding: clamp(3.4rem, 8vw, 6rem) 0; background: var(--paper); }
.block.alt { background: var(--cream); }
.block-dark {
  padding: clamp(3.4rem, 8vw, 6rem) 0;
  background: var(--ink);
  color: var(--on-dark);
  position: relative;
  overflow: hidden;
}
.block-dark::before {
  content: "";
  position: absolute;
  bottom: -30%; left: -10%;
  width: 55%; height: 90%;
  background: radial-gradient(circle, rgba(194, 65, 12, 0.14), transparent 70%);
  pointer-events: none;
}
.block-dark .container { position: relative; }

/* ===================== 3. CIDADÃO — grid de features ===================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(21, 17, 12, 0.08);
  border-color: var(--accent);
}
.feature-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature-icon svg {
  width: 24px; height: 24px;
  fill: none; stroke: var(--accent); stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.feature p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; }
.feature p strong { color: var(--ink); }
.section-cta { margin-top: 2.5rem; }
.section-cta p { margin: 0.8rem 0 0; }

/* ===================== 4. POLÍTICO — premium grid ===================== */
.premium-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.premium-card {
  background: linear-gradient(160deg, var(--dark-card), #161616);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  padding: 30px 28px;
  position: relative;
  transition: transform 0.18s ease, border-color 0.2s;
}
.premium-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.premium-num {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.premium-card h3 { color: var(--on-dark); }
.premium-card p { margin: 0; color: var(--on-dark-soft); font-size: 0.98rem; }
.premium-card p strong { color: var(--gold); }

/* ===================== 5. O CICLO (diagrama de conexão) ===================== */
.ciclo-diagrama {
  display: grid;
  grid-template-columns: 1fr minmax(180px, 0.85fr) 1fr;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
  max-width: 920px;
}

/* Painéis cidadão / político */
.ciclo-lado {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: 0 1px 2px rgba(17, 17, 17, 0.04);
}
.ciclo-lado-titulo {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 16px;
}
.ciclo-cidadao .ciclo-lado-titulo,
.ciclo-politico .ciclo-lado-titulo { color: var(--ink); }

.ciclo-itens { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.ciclo-itens li { display: flex; align-items: center; gap: 12px; }
.ciclo-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; flex: 0 0 38px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
}
.ciclo-ico svg { width: 20px; height: 20px; }
.ciclo-txt strong { font-size: 0.95rem; font-weight: 600; color: var(--ink); }

/* Centro: a ágora, a ponte */
.ciclo-centro {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.ciclo-fios {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.ciclo-fios .fio {
  stroke: var(--line);
  stroke-width: 2.5;
  stroke-linecap: round;
}
.ciclo-fios .fio-esq,
.ciclo-fios .fio-dir { stroke: url(#fioEsq); }
.ciclo-fios .pulso { fill: var(--accent); }

/* pulsos viajando nas linhas (bidirecional) */
.pulso-1 { animation: pulsoEsqDir 2.6s ease-in-out infinite; }
.pulso-2 { animation: pulsoDirEsq 2.6s ease-in-out infinite 0.4s; }
.pulso-3 { animation: pulsoSaiDir 2.6s ease-in-out infinite 1.3s; }
.pulso-4 { animation: pulsoSaiEsq 2.6s ease-in-out infinite 1.7s; }

@keyframes pulsoEsqDir {
  0% { transform: translateX(0); opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { transform: translateX(100px); opacity: 0; }
}
@keyframes pulsoDirEsq {
  0% { transform: translateX(0); opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { transform: translateX(-100px); opacity: 0; }
}
@keyframes pulsoSaiDir {
  0% { transform: translateX(0); opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { transform: translateX(100px); opacity: 0; }
}
@keyframes pulsoSaiEsq {
  0% { transform: translateX(0); opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { transform: translateX(-100px); opacity: 0; }
}

.ciclo-nucleo {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 30px rgba(194, 65, 12, 0.18);
  animation: cicloGlow 3s ease-in-out infinite;
}
@keyframes cicloGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(194, 65, 12, 0.28), 0 10px 30px rgba(17, 17, 17, 0.18); }
  50% { box-shadow: 0 0 0 14px rgba(194, 65, 12, 0), 0 10px 30px rgba(17, 17, 17, 0.18); }
}
.ciclo-marca { font-family: var(--logo); font-size: 1.85rem; line-height: 1; color: #fff; }
.ciclo-ponte {
  font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  .ciclo-nucleo { animation: none; }
  .pulso { animation: none !important; opacity: 0.85 !important; }
  .pulso-1, .pulso-3 { transform: translateX(50px); }
  .pulso-2, .pulso-4 { transform: translateX(-50px); }
}

/* ===================== 6. FONTES / PRIVACIDADE ===================== */
.sources { list-style: none; padding: 0; margin: 0 0 3rem; display: grid; gap: 2px; }
.sources li {
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 10px;
  background: var(--paper);
}
.sources strong { display: block; font-size: 1.05rem; }
.sources span { color: var(--muted); font-size: 0.88rem; }

.privacy {
  border-top: 1px solid var(--line);
  padding-top: 2.4rem;
}
.privacy-title { margin-bottom: 1.6rem; }
.privacy-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.privacy-col {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 22px 24px;
}
.privacy-yes { background: var(--accent-soft); border-color: transparent; }
.privacy-no { background: var(--cream); }
.privacy-col h4 { font-family: var(--sans); font-weight: 800; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin: 0 0 16px; }
.privacy-no h4 { color: var(--ink); }
.privacy-col ul { margin: 0; padding: 0; list-style: none; }
.privacy-col li {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px; color: var(--ink); font-size: 0.95rem; line-height: 1.45;
}
.privacy-col li:last-child { margin-bottom: 0; }
.pv-ico { width: 17px; height: 17px; flex-shrink: 0; margin-top: 3px; }
.privacy-yes .pv-ico { color: var(--accent); }
.privacy-no .pv-ico { color: var(--muted); }
.privacy-link { margin: 1.3rem 0 0; text-align: center; }
.privacy-link a { color: var(--accent); font-weight: 700; }

/* ===================== O APP POR DENTRO ===================== */
.product-tour { overflow: hidden; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.product-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.07);
}
.mini-screen {
  min-height: 390px;
  margin: 12px 12px 0;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--cream);
  color: var(--ink);
}
.mini-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  margin-bottom: 26px;
}
.mini-logo {
  font-family: var(--logo);
  font-size: 1.65rem;
  line-height: 1;
}
.mini-location,
.mini-menu {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mini-heading {
  max-width: 220px;
  margin-bottom: 18px;
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.mini-feed-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  margin-top: 10px;
  padding: 13px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.mini-feed-item strong {
  font-size: 0.82rem;
  line-height: 1.25;
}
.mini-feed-item small,
.mini-profile small {
  display: block;
  color: var(--muted);
  font-size: 0.67rem;
  line-height: 1.3;
}
.mini-chip {
  display: inline-flex;
  padding: 3px 7px;
  border-radius: 99px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.mini-chip-dark { background: var(--ink); color: var(--paper); }
.mini-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0 22px;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.mini-profile > div { min-width: 0; }
.mini-profile strong { display: block; font-size: 0.9rem; }
.mini-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
}
.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 20px;
  text-align: center;
}
.mini-stats span { padding: 0 5px; border-right: 1px solid var(--line); }
.mini-stats span:last-child { border-right: 0; }
.mini-stats strong { display: block; font-size: 0.92rem; }
.mini-stats small { display: block; color: var(--muted); font-size: 0.58rem; }
.mini-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
}
.mini-tabs span { padding-bottom: 8px; }
.mini-tabs .is-active { border-bottom: 2px solid var(--accent); color: var(--ink); }
.mini-profile-line {
  width: 100%;
  height: 52px;
  margin-bottom: 10px;
  border-radius: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.mini-profile-line.is-short { width: 72%; }
.mini-actions { display: grid; gap: 9px; }
.mini-actions span {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  font-size: 0.8rem;
  font-weight: 800;
}
.mini-actions b {
  color: var(--accent);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}
.mini-action-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.65rem;
  line-height: 1.4;
}
.product-copy { position: relative; padding: 24px; }
.product-copy h3 { padding-right: 38px; }
.product-copy p { margin: 0; color: var(--ink-soft); font-size: 0.92rem; }
.product-index {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.product-cta { margin-top: 30px; text-align: center; }

/* ===================== COMO FUNCIONA ===================== */
.flow-section { border-top: 1px solid var(--line); }
.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}
.flow-step {
  position: relative;
  min-height: 245px;
  padding: 28px 26px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-right: 0;
}
.flow-step:first-child { border-radius: 18px 0 0 18px; }
.flow-step:last-child { border-right: 1px solid var(--border); border-radius: 0 18px 18px 0; }
.flow-step::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 47px;
  right: -6px;
  width: 11px;
  height: 11px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  background: var(--paper);
  transform: rotate(45deg);
}
.flow-step:last-child::after { display: none; }
.flow-number {
  display: block;
  margin-bottom: 36px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.flow-step h3 { font-size: 1.18rem; }
.flow-step p { margin: 10px 0 0; color: var(--ink-soft); font-size: 0.9rem; }

/* ===================== FAQ ===================== */
.faq-list { max-width: 900px; }
.faq-list details {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 10px;
}
.faq-list summary {
  position: relative;
  padding: 20px 58px 20px 22px;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  line-height: 1.3;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%);
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details[open] summary { padding-bottom: 12px; }
.faq-list details p {
  max-width: 72ch;
  margin: 0;
  padding: 0 58px 20px 22px;
  color: var(--ink-soft);
}
.faq-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}
.faq-cta a { color: var(--accent); font-weight: 800; }

/* ===================== 7. CTA FINAL ===================== */
.cta-final { text-align: center; background: var(--ink); }
.cta-final::before { display: none; }
.cta-row-center { justify-content: center; margin-top: 2rem; }
.cta-note { color: var(--on-dark-soft); font-size: 0.82rem; margin: 1rem 0 0; }

/* ===================== PÁGINAS LEGAIS ===================== */
.legal-page { background: var(--cream); }
.legal-main { padding: clamp(2.5rem, 7vw, 5rem) 0; }
.legal-content {
  max-width: 800px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(28px, 6vw, 64px);
}
.legal-content h1 { margin-bottom: 0.2em; }
.legal-content h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin: 2.1rem 0 0.65rem;
}
.legal-content h3 {
  font-size: 1rem;
  margin: 1.25rem 0 0.25rem;
}
.legal-content p,
.legal-content li { color: var(--ink-soft); }
.legal-content a:not(.btn) { color: var(--accent); font-weight: 700; }
.legal-updated {
  margin: 0 0 1.5rem;
  color: var(--muted) !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.legal-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 2.5rem; }

/* ===================== RODAPÉ ===================== */
.footer { background: var(--ink); color: var(--on-dark); padding: 3rem 0 2rem; border-top: 0; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; }
.footer .brand-mark { color: var(--on-dark); }
.footer .muted { color: var(--on-dark-soft); }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-cols h4 { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin: 0 0 12px; }
.footer-cols p { margin: 0 0 6px; }
.footer-cols a { color: var(--on-dark-soft); text-decoration: none; font-size: 0.92rem; }
.footer-cols a:hover { color: var(--on-dark); }
.footer-bottom { margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid var(--dark-line); }
.footer-bottom .muted { color: var(--on-dark-soft); }

/* ===================== Animações de entrada ===================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .conn-art .draw { stroke-dashoffset: 0; animation: none; }
  .conn-art .bubbles .dot { opacity: 1; animation: none; }
  .hero-phone { transform: none; }
  .btn:hover, .feature:hover, .premium-card:hover { transform: none; }
}

/* ===================== Responsivo ===================== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-title-line { white-space: normal; }
  .hero { min-height: 0; padding-bottom: 3rem; }
  .hero-inner { min-height: 0; }
  .hero-visual { margin-top: 1.5rem; min-height: 670px; }
  .hero-phone { margin: 0 auto; width: 320px; }
  .conn-art { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .premium-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(odd) { border-left: 0; }
  .proof-item:nth-child(n + 3) { border-top: 1px solid var(--dark-line); }
  .product-grid { grid-template-columns: 1fr; }
  .mini-screen { min-height: 0; }
  .flow-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .flow-step,
  .flow-step:first-child,
  .flow-step:last-child {
    min-height: 220px;
    border: 1px solid var(--border);
    border-radius: 16px;
  }
  .flow-step::after { display: none; }
}

@media (max-width: 620px) {
  .nav { gap: 12px; }
  .nav a:not(.nav-cta) { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item {
    min-height: 0;
    padding: 28px 8px;
    border-left: 0;
  }
  .proof-item:nth-child(n + 2) { border-top: 1px solid var(--dark-line); }
  .hero-text h1 { font-size: clamp(2.25rem, 12vw, 3rem); }
  .hero-visual { min-height: 610px; }
  .hero-phone { width: 286px; transform: rotateY(-8deg) rotateX(1.5deg) rotateZ(1deg); }
  .phone-screen { min-height: 570px; }
  .hero-store,
  .hero-secondary { width: 100%; }
  .flow-grid { grid-template-columns: 1fr; }
  .flow-step,
  .flow-step:first-child,
  .flow-step:last-child { min-height: 0; }
  .flow-number { margin-bottom: 22px; }
  .faq-list summary { padding: 18px 48px 18px 18px; }
  .faq-list summary::after { right: 18px; }
  .faq-list details p { padding: 0 18px 18px; }
  .faq-cta { align-items: flex-start; flex-direction: column; }
  .privacy-cols { grid-template-columns: 1fr; gap: 22px; }
  .ciclo-diagrama { grid-template-columns: 1fr; gap: 4px; max-width: 360px; }
  .ciclo-centro { min-height: 130px; }
  /* Mobile: empilha cidadão / ágora / político, fios na vertical */
  .ciclo-fios { display: none; }
  .ciclo-centro::before,
  .ciclo-centro::after {
    content: ""; position: absolute; left: 50%; width: 2.5px;
    background: var(--line); transform: translateX(-50%); z-index: 0;
  }
  .ciclo-centro::before { top: 0; height: 32px; }
  .ciclo-centro::after { bottom: 0; height: 32px; }
  .ciclo-nucleo { width: 110px; height: 110px; }
  .ciclo-marca { font-size: 1.6rem; }
  .cta-row .btn { flex: 1 1 100%; }
}
