/* ============================================================
   SECTIONS — hero, jornada, canais, agente, flow, infra,
   analytics, developers, cta
   ============================================================ */

/* ================= HERO ================= */
.hero {
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: calc(var(--section-pad) + 3rem);
}
.hero-grid {
  display: grid;
  /* coluna do celular = largura do aparelho; o resto é do texto */
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start; /* texto e celular alinhados pelo topo */
}
.hero-title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 0.55rem;
  text-wrap: balance;
}
.hero-title .grad-text { display: block; } /* frase em gradiente tem linha própria */

/* Linha de categoria dentro do H1: ocupa o lugar do antigo eyebrow solto.
   Fica no H1 (e não fora dele) para que a palavra-chave conte como
   cabeçalho principal — visualmente é a mesma pílula de antes. */
.hero-title .hero-kicker {
  display: flex;          /* bloco: garante linha própria, como o antigo <p> */
  width: fit-content;     /* mas encolhe até o conteúdo, mantendo a pílula */
  font-size: var(--fs-tiny);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.14em;
  margin-bottom: 0.95rem;
}
.hero-sub {
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  max-width: 42rem;
  margin-bottom: 1.4rem;
}
.hero-copy .eyebrow { margin-bottom: 0.95rem; }
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; align-items: center; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: clamp(1.2rem, 3vw, 2.6rem);
  margin-top: 2.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--stroke);
  width: fit-content;
}
.hero-stats dt {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.2rem);
  font-weight: 600; line-height: 1.1;
  color: var(--ink);
}
.hero-stats dd { font-size: var(--fs-tiny); color: var(--ink-mute); max-width: 12ch; margin-top: 0.2rem; }

/* Console de eventos do hero — altura própria, centrado na linha
   (stretch acompanhava a coluna do texto e esticava demais) */
.hero-console {
  overflow: hidden;
  align-self: center;
  display: flex; flex-direction: column;
  height: clamp(420px, 58vh, 540px);
  width: 100%;
}
.console-body {
  flex: 1;
  padding: 1rem 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem; line-height: 1.9;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(180deg, transparent 0%, #000 12%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 12%);
}
.ev { display: flex; gap: 0.7rem; white-space: nowrap; opacity: 0.9; }
.ev .t { color: var(--ink-dim); }
.ev .badge { font-weight: 500; }
.ev .badge.ok { color: var(--accent-4); }
.ev .badge.route { color: var(--accent-2); }
.ev .badge.click { color: var(--accent-3); }
.ev .badge.queue { color: #7aa2ff; }
.ev .m { color: var(--ink-soft); overflow: hidden; text-overflow: ellipsis; }

/* Feed humano: conversas acontecendo agora */
.feed-title {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: var(--fs-tiny);
  color: var(--ink-mute); letter-spacing: 0.05em;
}
.feed-body {
  flex: 1;
  padding: 1rem 1.05rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  gap: 0.55rem;
  overflow: hidden;
  mask-image: linear-gradient(180deg, transparent 0%, #000 16%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 16%);
}
.feed-item {
  display: flex; gap: 0.65rem; align-items: flex-start;
  padding: 0.6rem 0.75rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--stroke);
  animation: feedIn 0.5s var(--ease-out);
}
@keyframes feedIn { from { opacity: 0; transform: translateY(14px) scale(0.98); } }
.feed-item .fa {
  flex-shrink: 0;
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1rem;
  background: linear-gradient(135deg, rgba(73, 121, 255, 0.3), rgba(139, 123, 255, 0.2));
  border: 1px solid var(--stroke-strong);
}
.feed-item b { display: block; font-size: 0.7rem; color: var(--ink-mute); font-weight: 600; letter-spacing: 0.02em; }
.feed-item p { font-size: 0.83rem; color: var(--ink); line-height: 1.4; }
.feed-item .ft {
  margin-left: auto;
  font-family: var(--font-mono); font-size: 0.62rem;
  color: var(--ink-dim); white-space: nowrap;
}
.feed-item .ft em { color: var(--accent-2); font-style: normal; }
.feed-item.hl {
  border-color: rgba(255, 178, 122, 0.55);
  box-shadow: 0 0 24px rgba(255, 178, 122, 0.14);
}
.feed-item.hl .fa {
  background: linear-gradient(135deg, rgba(255, 178, 122, 0.4), rgba(255, 126, 157, 0.24));
}

.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  width: 24px; height: 40px;
  border: 1.5px solid var(--stroke-strong);
  border-radius: 14px;
}
.scroll-hint span {
  position: absolute; top: 7px; left: 50%;
  width: 4px; height: 8px; margin-left: -2px;
  border-radius: 4px;
  background: var(--accent-2);
  animation: hint 2s var(--ease-soft) infinite;
}
@keyframes hint {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-console { height: 360px; }
  .hero-stats { grid-template-columns: repeat(2, auto); }
}

/* ================= TRUSTBAR ================= */
.trustbar { padding-block: 2.5rem; border-block: 1px solid var(--stroke); background: rgba(5, 8, 16, 0.4); }
.trust-label {
  text-align: center; font-size: var(--fs-tiny);
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-dim); margin-bottom: 1.1rem;
}
.trust-items {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.6rem 2.4rem;
}
.trust-items li {
  font-family: var(--font-mono); font-size: var(--fs-tiny);
  color: var(--ink-mute); letter-spacing: 0.03em;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.trust-items li::before { content: "◆"; font-size: 0.5rem; color: var(--accent); }

/* ================= JORNADA ================= */
.journey { padding-block: 0; }
.journey-pin {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding-block: clamp(4rem, 8vh, 6rem);
  overflow: hidden;
}
.journey-head { margin-bottom: clamp(1.5rem, 4vh, 3rem); position: relative; }
.journey-hud {
  position: absolute; right: 0; top: 0.4rem;
  display: flex; flex-direction: column; align-items: flex-end; gap: 0.2rem;
}
.hud-stage {
  font-family: var(--font-mono); font-size: var(--fs-tiny);
  color: var(--accent-2); letter-spacing: 0.15em;
}
.hud-name {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.05rem; color: var(--ink);
}

.journey-viewport { position: relative; }
.journey-line {
  position: absolute; top: -30px; left: 0;
  width: 4200px; height: 120px;
  z-index: 0; overflow: visible;
}
#journeyPath {
  stroke: rgba(73, 121, 255, 0.35);
  stroke-width: 1.5;
  stroke-dasharray: 6 10;
}
#journeyPathDone {
  stroke: var(--accent-2);
  stroke-width: 2.5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 7px rgba(73, 121, 255, 0.75));
}
#journeyPacket {
  fill: var(--accent-2);
  filter: drop-shadow(0 0 8px rgba(73, 121, 255, 0.9));
}

.journey-track {
  display: flex; gap: clamp(1.2rem, 2.5vw, 2.2rem);
  padding-inline: var(--gutter);
  width: max-content;
  will-change: transform;
}
.jr-card {
  width: min(78vw, 460px);
  flex-shrink: 0;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  position: relative;
  opacity: 0.75;
  transform: scale(0.96);
  transition: opacity 0.5s var(--ease-soft), transform 0.5s var(--ease-soft), border-color 0.5s;
  background: rgba(12, 18, 34, 0.68);
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.jr-card.is-active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(73, 121, 255, 0.4);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.32), 0 0 36px rgba(73, 121, 255, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.jr-num {
  font-family: var(--font-mono); font-size: var(--fs-tiny);
  color: var(--accent-2); letter-spacing: 0.2em;
}
.jr-card h3 {
  font-family: var(--font-display); font-size: var(--fs-h3);
  font-weight: 600; margin: 0.5rem 0 0.7rem;
}
.jr-card p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 1rem; }

.jr-code {
  font-family: var(--font-mono); font-size: 0.74rem; line-height: 1.75;
  color: var(--ink-soft);
  background: rgba(2, 4, 10, 0.6);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  overflow-x: auto;
  white-space: pre;
}
.jr-code .ok { color: var(--accent-4); }
.jr-code .dim { color: var(--ink-dim); }

/* mini-conversa dentro dos momentos do dia */
.jr-chat { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.jr-b {
  max-width: 90%;
  padding: 0.6rem 0.85rem;
  border-radius: 15px;
  font-size: 0.85rem; line-height: 1.45;
}
.jr-b.in {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--stroke);
  border-radius: 15px 15px 15px 4px;
  color: var(--ink);
}
.jr-b.out {
  align-self: flex-end;
  background: linear-gradient(135deg, rgba(73, 121, 255, 0.42), rgba(73, 121, 255, 0.24));
  border: 1px solid rgba(73, 121, 255, 0.4);
  border-radius: 15px 15px 4px 15px;
}
.jr-b.sys {
  align-self: center;
  font-family: var(--font-mono); font-size: 0.64rem;
  color: var(--accent-2);
  background: rgba(73, 121, 255, 0.07);
  border: 1px dashed rgba(73, 121, 255, 0.35);
  border-radius: 999px;
  padding: 0.25rem 0.85rem;
}
.jr-quick { display: flex; gap: 0.45rem; align-self: flex-start; flex-wrap: wrap; }
.jr-quick span {
  font-size: 0.74rem; font-weight: 600; color: #cfe0ff;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(73, 121, 255, 0.5);
  background: rgba(73, 121, 255, 0.1);
}

.jr-list li {
  position: relative; padding-left: 1.3rem;
  font-size: 0.9rem; color: var(--ink-soft);
  margin-bottom: 0.45rem;
}
.jr-list li::before {
  content: "→"; position: absolute; left: 0; color: var(--accent-2);
}

/* filas animadas */
.jr-queues { display: flex; flex-direction: column; gap: 0.55rem; }
.jr-queues .q {
  position: relative; height: 26px;
  background: rgba(2, 4, 10, 0.55);
  border: 1px solid var(--stroke);
  border-radius: 8px;
  overflow: hidden;
}
.jr-queues .q i {
  position: absolute; inset: 0;
  width: var(--w);
  background: linear-gradient(90deg, rgba(73, 121, 255, 0.16), rgba(73, 121, 255, 0.34));
  border-radius: 8px;
}
.jr-queues .q i::after {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 14px, rgba(255, 255, 255, 0.09) 14px 16px);
  animation: qflow 1.2s linear infinite;
}
@keyframes qflow { to { transform: translateX(16px); } }
.jr-queues .q b {
  position: absolute; left: 0.7rem; top: 50%; transform: translateY(-50%);
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 500;
  color: var(--ink-soft); letter-spacing: 0.06em;
}

.jr-mini-chart {
  display: flex; gap: 6px; align-items: flex-end; height: 74px;
}
.jr-mini-chart i {
  flex: 1; height: var(--h);
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, rgba(73, 121, 255, 0.75), rgba(73, 121, 255, 0.25));
  animation: chartPulse 2.6s var(--ease-soft) infinite;
}
.jr-mini-chart i:nth-child(2n) { animation-delay: 0.4s; }
.jr-mini-chart i:nth-child(3n) { animation-delay: 0.9s; }
@keyframes chartPulse { 50% { transform: scaleY(0.88); } }

/* Jornada — fallback vertical (mobile / sem pin) */
@media (max-width: 1023px) {
  .journey { padding-block: var(--section-pad); }
  .journey-pin { min-height: 0; padding-block: 0; }
  .journey-hud { display: none; }
  .journey-line { display: none; }
  .journey-track {
    flex-direction: column; width: 100%;
    padding-inline: 0;
  }
  .jr-card { width: 100%; opacity: 1; transform: none; }
}

/* ================= CANAIS ================= */
.ch-layout { margin-top: 2.5rem; display: grid; grid-template-columns: 0.9fr 1.7fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.ch-tabs { display: flex; flex-direction: column; gap: 0.6rem; position: sticky; top: 6rem; }
.ch-tab {
  text-align: left;
  padding: 1rem 1.2rem;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: var(--glass);
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-out);
}
.ch-tab b { display: block; font-family: var(--font-display); font-size: 1.02rem; }
.ch-tab span { font-size: var(--fs-tiny); color: var(--ink-mute); }
.ch-tab:hover { border-color: var(--stroke-strong); transform: translateX(4px); }
.ch-tab.is-active {
  border-color: rgba(73, 121, 255, 0.55);
  background: linear-gradient(135deg, rgba(73, 121, 255, 0.14), rgba(73, 121, 255, 0.05));
  box-shadow: 0 0 30px rgba(73, 121, 255, 0.12);
}
.ch-tab.is-active b { color: #fff; }

.ch-stage { display: grid; grid-template-columns: auto 1fr; gap: clamp(1.5rem, 3vw, 2.6rem); align-items: center; }

/* Phone mockup */
.phone {
  width: min(300px, 78vw);
  border-radius: 38px;
  padding: 12px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--stroke-strong);
  position: relative;
}
.phone-notch {
  position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 84px; height: 20px; border-radius: 12px;
  background: #05070f;
  z-index: 2;
}
.phone-screen {
  border-radius: 28px;
  min-height: 480px;
  padding: 3.4rem 1rem 1.4rem;
  background:
    radial-gradient(140% 100% at 50% 0%, rgba(73, 121, 255, 0.13), transparent 55%),
    linear-gradient(180deg, #0a0f1d, #070b16);
  overflow: hidden;
  position: relative;
}
.ch-panel { display: none; flex-direction: column; gap: 0.8rem; }
.ch-panel.is-active { display: flex; }
.bubble {
  max-width: 92%;
  padding: 0.75rem 0.95rem;
  border-radius: 16px 16px 16px 4px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--stroke);
  font-size: 0.82rem; line-height: 1.5;
  color: var(--ink);
}
.meta {
  margin-top: auto; padding-top: 1rem;
  font-family: var(--font-mono); font-size: 0.66rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent-4);
}
.rcs-card {
  border-radius: 16px; overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--stroke);
  font-size: 0.84rem;
}
.rcs-img {
  height: 110px;
  background:
    radial-gradient(80% 120% at 30% 20%, rgba(73, 121, 255, 0.5), transparent 60%),
    linear-gradient(135deg, #2f5fe0, #8b7bff);
}
.rcs-card b { display: block; padding: 0.7rem 0.9rem 0; }
.rcs-card p { padding: 0.2rem 0.9rem 0.7rem; color: var(--ink-soft); font-size: 0.78rem; }
.rcs-cta {
  display: block; text-align: center;
  margin: 0 0.9rem 0.9rem;
  padding: 0.55rem;
  border-radius: 10px;
  background: rgba(73, 121, 255, 0.25);
  border: 1px solid rgba(73, 121, 255, 0.5);
  color: #cfe0ff; font-weight: 600; font-size: 0.78rem;
}
.voice-call {
  text-align: center; padding: 1.6rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--stroke);
}
.voice-ava {
  width: 58px; height: 58px; margin: 0 auto 0.7rem;
  display: grid; place-items: center;
  font-size: 1.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(73, 121, 255, 0.25), rgba(73, 121, 255, 0.15));
  border: 1px solid rgba(73, 121, 255, 0.45);
}
.voice-call b { font-size: 0.95rem; }
.voice-call p { font-size: 0.72rem; color: var(--ink-mute); font-family: var(--font-mono); margin-top: 0.15rem; }
.wave { display: flex; gap: 3px; justify-content: center; align-items: center; height: 34px; margin-top: 0.8rem; }
.wave i {
  width: 3.5px; border-radius: 3px;
  background: var(--accent-4);
  animation: wave 1s ease-in-out infinite;
  height: 30%;
}
.wave i:nth-child(2n) { animation-delay: 0.15s; } .wave i:nth-child(3n) { animation-delay: 0.3s; }
.wave i:nth-child(4n) { animation-delay: 0.45s; } .wave i:nth-child(5n) { animation-delay: 0.6s; }
@keyframes wave { 50% { height: 100%; } }
.push-note {
  display: flex; gap: 0.7rem; align-items: flex-start;
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--stroke);
  font-size: 0.8rem;
}
.push-note.dim-note { opacity: 0.65; }
.push-note b { font-size: 0.8rem; }
.push-note p { color: var(--ink-soft); font-size: 0.75rem; line-height: 1.45; }
.push-ico {
  flex-shrink: 0;
  width: 30px; height: 30px; border-radius: 8px;
  display: grid; place-items: center;
  font-weight: 700; font-size: 0.85rem; color: #fff;
  background: linear-gradient(135deg, var(--accent), #2f5fe0);
}
.push-ico.b { background: linear-gradient(135deg, var(--accent-3), #5a4bd8); }
.mail-card {
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--stroke);
  font-size: 0.84rem;
}
.mail-card p { color: var(--ink-soft); font-size: 0.78rem; margin-top: 0.2rem; }

.fact-set { display: none; }
.fact-set.is-active { display: block; animation: factIn 0.5s var(--ease-out); }
@keyframes factIn { from { opacity: 0; transform: translateY(14px); } }
.fact-set h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 1rem; }

@media (max-width: 1024px) {
  .ch-layout { grid-template-columns: 1fr; }
  .ch-tabs { position: static; flex-direction: row; overflow-x: auto; padding-bottom: 0.5rem; }
  .ch-tab { min-width: 190px; flex-shrink: 0; }
  .ch-stage { grid-template-columns: 1fr; justify-items: center; }
}

/* ================= PUSHAGENT ================= */
.agent-grid {
  display: grid; grid-template-columns: 1fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.agent-points li {
  padding: 0.9rem 0 0.9rem 1.9rem;
  border-bottom: 1px solid var(--stroke);
  color: var(--ink-soft);
  font-size: 0.95rem;
  position: relative;
}
.agent-points li::before {
  content: "✦"; position: absolute; left: 0.2rem; top: 0.95rem;
  color: var(--accent-3);
}
.agent-demo { display: flex; flex-direction: column; gap: 1rem; }
.chat { overflow: hidden; }
.chat-head {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid var(--stroke);
}
.chat-ava {
  width: 36px; height: 36px; border-radius: 12px;
  display: grid; place-items: center;
  color: #fff; font-size: 1rem;
  background: linear-gradient(135deg, var(--accent-3), #5a4bd8);
  box-shadow: 0 0 20px rgba(139, 123, 255, 0.45);
}
.chat-head b { font-size: 0.92rem; display: block; }
.chat-head p { font-size: 0.72rem; color: var(--ink-mute); }
.chat-live {
  margin-left: auto;
  font-family: var(--font-mono); font-size: var(--fs-tiny);
  color: var(--accent-4);
  display: inline-flex; gap: 0.4rem; align-items: center;
}
.chat-body {
  min-height: 300px; max-height: 340px;
  padding: 1.1rem;
  display: flex; flex-direction: column; gap: 0.65rem;
  overflow-y: auto;
  scrollbar-width: none;
}
.chat-body::-webkit-scrollbar { display: none; }
.msg {
  max-width: 84%;
  padding: 0.65rem 0.9rem;
  font-size: 0.83rem; line-height: 1.5;
  border-radius: 15px;
  animation: msgIn 0.45s var(--ease-out);
}
@keyframes msgIn { from { opacity: 0; transform: translateY(10px) scale(0.97); } }
.msg.user {
  align-self: flex-end;
  background: linear-gradient(135deg, rgba(73, 121, 255, 0.4), rgba(73, 121, 255, 0.22));
  border: 1px solid rgba(73, 121, 255, 0.4);
  border-radius: 15px 15px 4px 15px;
}
.msg.bot {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--stroke);
  border-radius: 15px 15px 15px 4px;
  color: var(--ink-soft);
}
.msg.sys {
  align-self: center;
  font-family: var(--font-mono); font-size: 0.66rem;
  color: var(--accent-3);
  background: rgba(139, 123, 255, 0.1);
  border: 1px dashed rgba(139, 123, 255, 0.4);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
}
.typing { display: inline-flex; gap: 4px; padding: 0.75rem 0.95rem; }
.typing i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ink-mute);
  animation: typing 1.1s infinite;
}
.typing i:nth-child(2) { animation-delay: 0.18s; }
.typing i:nth-child(3) { animation-delay: 0.36s; }
@keyframes typing { 40% { transform: translateY(-5px); opacity: 1; } }

.scores { padding: 1.1rem 1.2rem; }
.scores-title { font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; margin-bottom: 0.9rem; }
.scores-title span { color: var(--ink-mute); font-family: var(--font-mono); font-size: var(--fs-tiny); font-weight: 400; }
.score {
  display: grid; grid-template-columns: 120px 1fr 38px;
  gap: 0.8rem; align-items: center;
  margin-bottom: 0.6rem;
}
.score b { font-size: 0.78rem; font-weight: 500; color: var(--ink-soft); }
.score-bar {
  height: 7px; border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}
.score-bar i {
  display: block; height: 100%; width: 0;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
  box-shadow: 0 0 10px rgba(139, 123, 255, 0.5);
}
.score-bar.warn i { background: linear-gradient(90deg, var(--accent-4), #1fc48d); box-shadow: 0 0 10px rgba(73, 121, 255, 0.4); }
.score-val { font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink); text-align: right; }

@media (max-width: 1024px) {
  .agent-grid { grid-template-columns: 1fr; }
}

/* ================= FLOW ================= */
.flow-canvas {
  position: relative;
  margin-top: 2.5rem;
  height: clamp(340px, 44vw, 420px);
  overflow: hidden;
  background:
    radial-gradient(90% 120% at 50% 0%, rgba(73, 121, 255, 0.05), transparent 60%),
    var(--glass);
}
.flow-canvas::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(80% 80% at 50% 50%, #000 55%, transparent);
  -webkit-mask-image: radial-gradient(80% 80% at 50% 50%, #000 55%, transparent);
}
.flow-wires { position: absolute; inset: 0; width: 100%; height: 100%; }
.wire {
  fill: none;
  stroke: rgba(73, 121, 255, 0.55);
  stroke-width: 1.6;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(73, 121, 255, 0.35));
}
.wire-pulse {
  stroke: #9db8ff;
  stroke-width: 2.6;
  filter: drop-shadow(0 0 8px rgba(73, 121, 255, 0.9));
}
.flow-nodes { position: absolute; inset: 0; }
.fnode {
  position: absolute; left: var(--x); top: var(--y);
  width: min(230px, 44vw);
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(7, 11, 22, 0.85);
  border: 1px solid var(--stroke-strong);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.fnode b { display: block; font-size: 0.85rem; margin-top: 0.35rem; }
.fnode p { font-size: 0.7rem; color: var(--ink-mute); font-family: var(--font-mono); margin-top: 0.15rem; }
.fn-tag {
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.18rem 0.55rem; border-radius: 999px;
}
.t-ev   { color: var(--accent-4); background: rgba(73, 121, 255, 0.12); border: 1px solid rgba(73, 121, 255, 0.4); }
.t-wait { color: var(--warn); background: rgba(255, 176, 32, 0.1); border: 1px solid rgba(255, 176, 32, 0.35); }
.t-cond { color: var(--accent-2); background: rgba(73, 121, 255, 0.1); border: 1px solid rgba(73, 121, 255, 0.35); }
.t-sms  { color: #7aa2ff; background: rgba(73, 121, 255, 0.12); border: 1px solid rgba(73, 121, 255, 0.4); }
.t-voz  { color: var(--accent-3); background: rgba(139, 123, 255, 0.12); border: 1px solid rgba(139, 123, 255, 0.4); }

.flow-feats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem; margin-top: 1.4rem;
}
.feat { padding: 1.3rem 1.4rem; }
.feat b { font-family: var(--font-display); display: block; margin-bottom: 0.3rem; }
.feat p { color: var(--ink-soft); font-size: 0.9rem; }

@media (max-width: 900px) {
  .flow-canvas { height: auto; padding: 1.2rem; }
  .flow-wires { display: none; }
  .flow-nodes { position: static; display: flex; flex-direction: column; gap: 0.8rem; }
  .fnode { position: static; width: 100%; }
  .flow-feats { grid-template-columns: 1fr; }
}

/* ================= INFRA ================= */
.infra-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem; margin-top: 2.5rem;
}
.infra-card {
  padding: 1.7rem 1.6rem;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
  position: relative;
  overflow: hidden;
}
.infra-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(340px 200px at var(--mx, 50%) var(--my, 0%), rgba(73, 121, 255, 0.09), transparent 65%);
  opacity: 0; transition: opacity 0.4s;
}
.infra-card:hover::before { opacity: 1; }
.infra-card:hover { border-color: rgba(73, 121, 255, 0.35); transform: translateY(-4px); }
.infra-card .ic {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px;
  font-size: 1.2rem;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(73, 121, 255, 0.2), rgba(73, 121, 255, 0.08));
  border: 1px solid rgba(73, 121, 255, 0.35);
  margin-bottom: 1rem;
}
.infra-card h3 { font-family: var(--font-display); font-size: 1.08rem; margin-bottom: 0.5rem; }
.infra-card p { color: var(--ink-soft); font-size: 0.9rem; }

@media (max-width: 960px) { .infra-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .infra-grid { grid-template-columns: 1fr; } }

/* ================= ANALYTICS ================= */
.ana-grid {
  display: grid; grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.dash { padding: 1.4rem 1.5rem; }
.dash-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 1.1rem; }
.dash-head b { font-family: var(--font-display); font-size: 1.05rem; }
.dash-period { font-family: var(--font-mono); font-size: var(--fs-tiny); color: var(--ink-mute); }
.dash-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; margin-bottom: 1.1rem; }
.kpi {
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--stroke);
}
.kpi p { font-size: var(--fs-tiny); color: var(--ink-mute); }
.kpi b { font-family: var(--font-display); font-size: clamp(1rem, 0.8rem + 0.9vw, 1.4rem); }
#dashSpark { width: 100%; height: auto; margin-bottom: 1rem; }
.dash-bars { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.1rem; }
.dbar { display: grid; grid-template-columns: 44px 1fr; gap: 0.7rem; align-items: center; }
.dbar span { font-family: var(--font-mono); font-size: 0.68rem; color: var(--ink-mute); }
.dbar i {
  display: block; height: 8px; width: var(--w);
  border-radius: 6px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform-origin: 0 50%;
}
.dash-stream {
  border-top: 1px solid var(--stroke);
  padding-top: 0.8rem;
  font-family: var(--font-mono); font-size: 0.7rem; line-height: 1.9;
  height: 84px; overflow: hidden;
  mask-image: linear-gradient(180deg, #000 55%, transparent);
  -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent);
}
@media (max-width: 1024px) { .ana-grid { grid-template-columns: 1fr; } }

/* ================= DEVELOPERS ================= */
.dev-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 1024px) { .dev-grid { grid-template-columns: 1fr; } }

/* ================= CTA ================= */
.cta { padding-bottom: calc(var(--section-pad) * 0.8); }
.cta-inner {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(70% 120% at 50% 0%, rgba(73, 121, 255, 0.16), transparent 60%),
    var(--glass);
}
.cta-inner .lead { margin-inline: auto; }
.cta-inner .hero-actions { justify-content: center; margin-top: 0.5rem; }

/* ============================================================
   MOBILE POLISH — ajustes finos para telas pequenas
   ============================================================ */

/* feed: nunca estourar horizontalmente (texto flexível) */
.feed-item > span:nth-child(2) { flex: 1; min-width: 0; }
.feed-item p { overflow-wrap: break-word; }

@media (max-width: 640px) {
  /* tipografia: deixa o texto quebrar naturalmente */
  .hero-title br, .h2 br { display: none; }
  .hero-title .grad-text { display: block; margin-top: 0.4rem; }

  /* hero */
  .hero { min-height: auto; padding-top: 6.5rem; padding-bottom: 3.2rem; }
  .hero-grid { gap: 2.2rem; }
  .hero-sub { font-size: 1rem; }
  .hero-actions { gap: 0.6rem; }
  .hero-actions .btn-lg { flex: 1 1 100%; justify-content: center; padding: 0.9rem 1.2rem; }
  .hero-stats { width: 100%; grid-template-columns: 1fr 1fr; gap: 1.1rem 1rem; margin-top: 2rem; }
  .hero-stats dd { max-width: none; }
  .scroll-hint { display: none; }
  .hero-console { height: 340px; }
  .feed-body { max-height: 290px; padding: 0.8rem; }
  .console-bar { flex-wrap: wrap; row-gap: 0.45rem; }

  /* trustbar */
  .trustbar { padding-block: 1.8rem; }

  /* jornada (momentos) */
  .jr-card { padding: 1.25rem 1.1rem; }
  .jr-b { font-size: 0.82rem; }

  /* canais: tabs em fita deslizante de borda a borda */
  .ch-tabs {
    gap: 0.5rem;
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .ch-tabs::-webkit-scrollbar { display: none; }
  .ch-tab { min-width: 168px; padding: 0.8rem 0.9rem; }
  .phone-screen { min-height: 430px; }

  /* pushagent */
  .score { grid-template-columns: 92px 1fr 32px; gap: 0.55rem; }
  .score b { font-size: 0.72rem; }
  .chat-body { min-height: 240px; }

  /* analytics: KPIs compactos sem estourar */
  .dash { padding: 1.1rem; }
  .dash-kpis { gap: 0.55rem; }
  .kpi { padding: 0.6rem 0.65rem; }
  .kpi b { font-size: 0.95rem; letter-spacing: -0.01em; }
  .kpi p { font-size: 0.66rem; }

  /* developers */
  .code-body { font-size: 0.72rem; padding: 1rem; }

  /* flow */
  .flow-canvas { padding: 1rem; }
  .feat { padding: 1.1rem 1.15rem; }

  /* cta */
  .cta-inner { padding: 2.4rem 1.25rem; }
  .lead-form { gap: 0.55rem; }
  .lead-form input[type="email"] { max-width: none; flex-basis: 100%; }
  .lead-form .btn { flex: 1 1 100%; justify-content: center; }

  /* footer */
  .footer { padding-top: 2.6rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.6rem 1rem; padding-bottom: 2rem; }
  .footer-base { flex-direction: column; gap: 0.35rem; align-items: flex-start; }
}

/* telas muito estreitas */
@media (max-width: 400px) {
  :root {
    --fs-hero: clamp(1.85rem, 9.2vw, 2.25rem);
    --fs-h2: clamp(1.5rem, 7.6vw, 1.95rem);
    --fs-lead: 0.98rem;
  }
  .hero-stats { gap: 0.9rem 0.8rem; }
  .hero-stats dt { font-size: 1.35rem; }
  .trust-items { gap: 0.5rem 1.6rem; }
  .eyebrow { font-size: 0.66rem; padding: 0.36rem 0.7rem; }
  .phone { width: min(260px, 84vw); }
  .phone-screen { min-height: 400px; }
  .jr-quick span { font-size: 0.68rem; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   MOBILE — CENTRALIZAÇÃO, LEGIBILIDADE E TIPOGRAFIA
   ============================================================ */
@media (max-width: 640px) {
  /* ritmo vertical mais organizado */
  :root {
    --section-pad: 4.25rem;
    --ink-soft: #c5d0e6;   /* mais contraste p/ leitura sobre a cena 3D */
  }
  body { font-size: 1.0625rem; }  /* base 17px: leitura confortável no celular */

  /* ---- cabeçalhos de seção centralizados ---- */
  .eyebrow {
    display: flex;
    width: fit-content;
    margin-inline: auto;
  }
  .hero-title, .h2 {
    text-align: center;
    text-wrap: balance;
  }
  .lead, .hero-sub {
    text-align: center;
    margin-inline: auto;
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
  }
  .journey-head { text-align: center; }

  /* ---- tipografia com mais presença ---- */
  .hero-title {
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
  }
  .h2 { line-height: 1.18; margin-bottom: 0.9rem; }
  .jr-card p, .infra-card p, .feat p {
    font-size: 0.96rem;
    line-height: 1.65;
  }
  .jr-card h3, .fact-set h3 { text-align: center; }
  .jr-num { display: block; text-align: center; }
  .jr-chat { margin-top: 0.9rem; }

  /* ---- hero organizado e centrado ---- */
  .hero-copy { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats {
    margin-inline: auto;
    border-top: none;
    padding-top: 0.4rem;
  }
  .hero-stats > div {
    text-align: center;
    padding: 0.9rem 0.5rem;
    border: 1px solid var(--stroke);
    border-radius: 14px;
    background: var(--glass);
  }
  .hero-stats dd { margin-inline: auto; }

  /* ---- listas: bloco centralizado, texto alinhado ---- */
  .check-list {
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    text-align: left;
  }
  .agent-points { text-align: left; }

  /* ---- cards de infra e features do flow centrados ---- */
  .infra-card, .feat { text-align: center; }
  .infra-card .ic { margin-inline: auto; }

  /* ---- meta do mockup de celular centrada ---- */
  .meta { text-align: center; }
}

/* ============================================================
   LOGOS — clientes & integrações (marquee duplo)
   ============================================================ */
.logos {
  padding-block: 2.6rem 3rem;
  border-bottom: 1px solid var(--stroke);
  background: rgba(5, 8, 16, 0.35);
  overflow: hidden;
}
.logos .trust-label { margin-bottom: 1.7rem; }
.logos-rows {
  display: flex; flex-direction: column; gap: 1.2rem;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.logo-row {
  display: flex;
  width: max-content;
  gap: 3.2rem;
  animation: logosScroll 46s linear infinite;
}
.logo-row.reverse {
  animation-direction: reverse;
  animation-duration: 54s;
}
.logo-row:hover { animation-play-state: paused; }
.logo-track {
  display: flex; align-items: center;
  gap: 3.2rem;
  flex-shrink: 0;
}
.logo-track li {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  color: var(--ink-mute);
  white-space: nowrap;
  transition: color 0.3s, text-shadow 0.3s;
}
.logo-track li:hover {
  color: var(--ink);
  text-shadow: 0 0 22px rgba(73, 121, 255, 0.45);
}
.logo-track li::before {
  content: "◈";
  font-size: 0.6rem;
  color: rgba(73, 121, 255, 0.55);
}
@keyframes logosScroll {
  to { transform: translateX(calc(-50% - 1.6rem)); }
}

@media (max-width: 640px) {
  .logos { padding-block: 2rem 2.3rem; }
  .logo-row, .logo-track { gap: 2.1rem; }
  .logo-track li { font-size: 0.95rem; }
  @keyframes logosScroll {
    to { transform: translateX(calc(-50% - 1.05rem)); }
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-row { animation: none; width: 100%; flex-wrap: wrap; justify-content: center; }
  .logo-track { flex-wrap: wrap; justify-content: center; }
  .logo-track[aria-hidden] { display: none; }
  .logos-rows { mask-image: none; -webkit-mask-image: none; }
}

/* ============================================================
   HERO-LOGOS — marquee de clientes dentro do hero
   ============================================================ */
/* o marquee tem trilhas de largura max-content: sem min-width:0,
   a coluna do grid herda esse min-content e explode o layout */
.hero-grid > * { min-width: 0; }
.hero-logos {
  border: none;
  background: transparent;
  padding: 1.6rem 0 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.hero-logos .trust-label {
  text-align: left;
  margin-bottom: 1rem;
}
.hero-logos .logos-rows { gap: 0.9rem; }
.hero-logos .logo-row,
.hero-logos .logo-track { gap: 2.2rem; }
.hero-logos .logo-row {
  animation-name: logosScrollHero;
  animation-duration: 36s;
}
.hero-logos .logo-row.reverse { animation-duration: 42s; }
.hero-logos .logo-track li { font-size: 0.9rem; }
@keyframes logosScrollHero {
  to { transform: translateX(calc(-50% - 1.1rem)); }
}
.hero-copy .hero-stats { margin-top: 1.5rem; padding-top: 1.4rem; }

@media (max-width: 640px) {
  .hero-logos { padding-top: 1.5rem; }
  .hero-logos .trust-label { text-align: center; }
  .hero-logos .logo-track li { font-size: 0.85rem; }
  .hero-logos .logo-row,
  .hero-logos .logo-track { gap: 1.7rem; }
  @keyframes logosScrollHero {
    to { transform: translateX(calc(-50% - 0.85rem)); }
  }
}

/* ============================================================
   HERO PHONE — mockup realista de celular no hero
   ============================================================ */
.hero-device {
  display: flex; flex-direction: column; align-items: center;
  gap: 1.15rem;
  align-self: start;      /* topo do celular acompanha o topo do texto */
  justify-self: center;
  margin-top: 0.3rem;
}
.hero-phone {
  position: relative;
  width: min(316px, 80vw);
  height: clamp(540px, 64vh, 630px);
  border-radius: 52px;
  padding: 11px;
  background: linear-gradient(155deg, #55617f 0%, #1a2236 28%, #0d1322 68%, #39445f 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 44px 90px rgba(0, 0, 0, 0.55),
    0 6px 18px rgba(0, 0, 0, 0.4),
    inset 0 0 2px rgba(255, 255, 255, 0.28);
  will-change: transform;
}
/* botões laterais do aparelho */
.hp-btn {
  position: absolute;
  width: 3px; border-radius: 2px;
  background: linear-gradient(#5a6580, #232c42);
}
.hp-power { right: -3px; top: 152px; height: 62px; }
.hp-vol1 { left: -3px; top: 116px; height: 36px; }
.hp-vol2 { left: -3px; top: 160px; height: 36px; }

.hp-screen {
  position: relative;
  height: 100%;
  border-radius: 42px;
  overflow: hidden;
  display: flex; flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(130% 90% at 50% 0%, rgba(73, 121, 255, 0.16), transparent 55%),
    linear-gradient(180deg, #0b101f, #070b16);
}
.hp-status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.7rem 1.35rem 0.15rem;
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 600;
  color: #dbe4f5;
}
.hp-island {
  position: absolute; top: 11px; left: 50%; transform: translateX(-50%);
  width: 88px; height: 24px; border-radius: 14px;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.hp-icons {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.6rem; letter-spacing: 0.04em;
}
.hp-batt {
  position: relative;
  width: 20px; height: 10px;
  border: 1px solid rgba(219, 228, 245, 0.7);
  border-radius: 3px;
  display: inline-block;
}
.hp-batt::before {
  content: ""; position: absolute; inset: 1.5px;
  right: 5px;
  background: #4979ff; border-radius: 1.5px;
}
.hp-batt::after {
  content: ""; position: absolute;
  right: -3.5px; top: 2.5px;
  width: 2px; height: 5px;
  background: rgba(219, 228, 245, 0.7);
  border-radius: 0 2px 2px 0;
}

.hp-appbar {
  display: flex; gap: 0.7rem; align-items: center;
  padding: 0.85rem 1.1rem 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.hp-ava {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; font-size: 0.8rem; color: #fff;
  background: linear-gradient(135deg, #5c88ff, #2f5fe0);
  box-shadow: 0 0 16px rgba(73, 121, 255, 0.4);
}
.hp-appbar b {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.9rem; color: #eef2fb;
}
.hp-appbar b i { font-style: normal; color: #4979ff; font-size: 0.75rem; }
.hp-appbar p { font-size: 0.66rem; color: #7f8aa6; }
.hp-live { margin-left: auto; }

.hp-chat {
  flex: 1;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  gap: 0.5rem;
  padding: 0.8rem 0.8rem 0.55rem;
  mask-image: linear-gradient(180deg, transparent 0%, #000 14%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 14%);
}
/* feed dentro da tela: bolhas compactas de app de mensagens */
.hp-chat .feed-item {
  padding: 0.55rem 0.65rem;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.08);
}
.hp-chat .feed-item .fa { width: 30px; height: 30px; font-size: 0.9rem; }
.hp-chat .feed-item b { font-size: 0.62rem; color: #8794ad; }
.hp-chat .feed-item p { font-size: 0.78rem; color: #e9eef8; }
.hp-chat .feed-item .ft { font-size: 0.56rem; color: #5c6a85; }
.hp-chat .feed-item .ft em { color: #4979ff; }

.hp-inputbar {
  margin: 0.15rem 0.8rem 0.55rem;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #7f8aa6; font-size: 0.78rem;
}
.hp-inputbar i {
  font-style: normal;
  color: #4979ff;
  font-size: 0.9rem;
}
.hp-homebar {
  width: 108px; height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.35);
  margin: 0 auto 0.55rem;
}

/* botão de campanha abaixo do aparelho */
.hero-device .console-fire { margin-left: 0; }

@media (max-width: 1024px) {
  .hero-phone { height: clamp(480px, 58vh, 560px); }
}
@media (max-width: 640px) {
  .hero-phone { width: min(280px, 82vw); height: 500px; border-radius: 46px; }
  .hp-screen { border-radius: 37px; }
}

/* ---------- FAQ da home ----------
   O acordeão em si vem de components.css (compartilhado com as
   páginas internas). Aqui só o enquadramento da seção. */
.faq-home .faq-group { max-width: 60rem; margin-top: 2.2rem; }
.faq-home .lead a { color: var(--accent-2); text-decoration: underline; text-underline-offset: 3px; }
