/* ==========================================================
   We Ads Lab · site v3
   ========================================================== */

:root {
  /* Paleta: azul marinho, ciano escuro e branco (com tons derivados) */
  --marinho: #000080;
  --marinho-profundo: #02022E;
  --ciano: #008B8B;
  --ciano-hover: #007373;
  --ciano-claro: #5CCFCF;
  --ciano-bg: #E0F2F2;

  --tinta: #02022E;
  --tinta-2: #07074A;
  --tinta-3: #0B0B5C;
  --indigo: #008B8B;
  --indigo-hover: #007373;
  --lavanda: #5CCFCF;
  --lima: #5CCFCF;
  --gelo: #F2F7F9;
  --branco: #FFFFFF;
  --t2-escuro: #AEB3DA;
  --t-apoio-escuro: #D6D9EE;
  --t2-claro: #3F4270;
  --borda-clara: #DCE6EC;
  --borda-escura: rgba(255, 255, 255, 0.12);
  --whats: #008B8B;
  --whats-hover: #007373;

  --display: 'Montserrat', system-ui, sans-serif;
  --texto: 'IBM Plex Sans', system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;

  --largura: 1200px;
  --respiro: clamp(72px, 10vw, 124px);
  --lateral: clamp(20px, 5vw, 40px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--texto); font-size: 17px; line-height: 1.6;
  color: var(--tinta); background: var(--tinta); -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
h1, h2, h3, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; }
button { font: inherit; }

:focus-visible { outline: 3px solid var(--lavanda); outline-offset: 3px; border-radius: 6px; }
.claro :focus-visible { outline-color: var(--indigo); }

.pular {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--branco); color: var(--tinta); padding: 10px 16px; border-radius: 999px;
  font-weight: 600; text-decoration: none;
}
.pular:focus { top: 16px; }
.container { width: 100%; max-width: var(--largura); margin: 0 auto; padding-inline: var(--lateral); }

.escuro { background: var(--tinta); color: var(--branco); }
.claro { background: var(--gelo); color: var(--tinta); }
.branco { background: var(--branco); color: var(--tinta); }
.indigo { background: var(--marinho); color: var(--branco); }
.secao { padding-block: var(--respiro); }

.titulo {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(30px, 3.6vw, 46px); line-height: 1.08; letter-spacing: -0.02em;
  text-wrap: balance;
}
.lead { font-size: clamp(17px, 1.6vw, 20px); line-height: 1.55; max-width: 34em; }
.escuro .lead { color: var(--t-apoio-escuro); }
.claro .lead, .branco .lead { color: var(--t2-claro); }
.claro .titulo, .branco .titulo, .claro .marcas__titulo { color: var(--marinho); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 56px; padding: 0 28px; border-radius: 14px; border: 0; cursor: pointer;
  font-family: var(--texto); font-weight: 600; font-size: 16px; line-height: 1.2;
  text-decoration: none; text-align: center;
  transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.btn--primario { background: var(--indigo); color: var(--branco); box-shadow: 0 10px 30px -12px rgba(0, 139, 139, .55); }
.btn--primario:hover { background: var(--indigo-hover); }
.btn--claro { background: var(--branco); color: var(--marinho); }
.btn--claro:hover { background: var(--gelo); }
.btn:active { transform: translateY(1px); }
.btn__icone { flex: none; }
.btn--pequeno { min-height: 44px; padding: 0 18px; font-size: 15px; border-radius: 12px; }
.link-simples {
  font-weight: 600; text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1.5px;
}
.escuro .link-simples { text-decoration-color: var(--lavanda); }
.claro .link-simples { text-decoration-color: var(--indigo); }
.acoes { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px; margin-top: 36px; }

/* ==========================================================
   Cabeçalho
   ========================================================== */
.cabecalho {
  position: sticky; top: 0; z-index: 50;
  background: rgba(2, 2, 46, 0.82);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--borda-escura);
}
.cabecalho__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.cabecalho__logo img { width: 168px; height: auto; }

/* ==========================================================
   Hero
   ========================================================== */
.hero { position: relative; overflow: hidden; padding-block: clamp(56px, 8vw, 96px) clamp(72px, 9vw, 112px); }
.hero__grid {
  position: relative; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(40px, 5vw, 64px); align-items: center;
}
.hero__h1 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(36px, 4.3vw, 60px); line-height: 1.04; letter-spacing: -0.025em;
  text-wrap: balance;
}
.hero__h1 span { display: block; color: var(--lavanda); }
.hero .lead { margin-top: 28px; max-width: 30em; }

/* ---------- Animação do topo ---------- */
.demo { position: relative; height: 520px; width: 100%; max-width: 500px; margin-left: auto; }
.demo__anuncio, .demo__chat {
  position: absolute; background: var(--branco); color: var(--tinta);
  border-radius: 24px; box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .75);
  transition: transform .7s cubic-bezier(.2, .8, .2, 1), opacity .6s ease;
}
.demo__anuncio { left: 0; top: 20px; width: 290px; padding: 14px; z-index: 2; }
.demo__chat { right: 0; bottom: 10px; width: 330px; overflow: hidden; z-index: 3; }

.anuncio__topo { display: flex; align-items: center; gap: 10px; font-size: 13px; line-height: 1.2; }
.anuncio__avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--indigo); display: grid; place-items: center; }
.anuncio__nome { display: block; font-weight: 600; }
.anuncio__rede { margin-left: auto; color: var(--marinho); }
.anuncio__tipo { display: block; color: var(--t2-claro); font-size: 12px; }
.anuncio__midia {
  margin-top: 12px; height: 170px; border-radius: 16px; background: var(--tinta-3);
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end; justify-content: center; gap: 12px; padding-bottom: 30px;
}
.anuncio__midia::before {
  content: "Mais clientes no seu WhatsApp"; position: absolute; left: 16px; top: 16px; right: 16px;
  color: var(--branco); font-family: var(--display); font-weight: 700; font-size: 20px; line-height: 1.05; letter-spacing: -0.02em;
}
.anuncio__midia i { display: block; width: 18px; border-radius: 999px; background: var(--lavanda); }
.anuncio__midia i:nth-child(1) { height: 26px; }
.anuncio__midia i:nth-child(2) { height: 44px; }
.anuncio__midia i:nth-child(3) { height: 70px; background: var(--lima); }
.anuncio__legenda { margin-top: 10px; font-size: 13px; color: var(--t2-claro); line-height: 1.4; }
.anuncio__botao {
  position: relative; margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--gelo); border-radius: 12px; padding: 11px; font-size: 14px; font-weight: 600;
  transition: background-color .2s ease;
}
.anuncio__botao svg { color: var(--whats-hover); }
.demo.clicou .anuncio__botao { background: #DCEEEE; }

.demo__cursor {
  position: absolute; z-index: 5; width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255, 255, 255, .95); box-shadow: 0 0 0 6px rgba(255, 255, 255, .25), 0 6px 18px rgba(0, 0, 0, .4);
  left: 330px; top: 420px; opacity: 0;
  transition: left 1s cubic-bezier(.4, 0, .2, 1), top 1s cubic-bezier(.4, 0, .2, 1), opacity .3s ease, transform .15s ease;
}
.demo.cursor .demo__cursor { opacity: 1; left: 150px; top: 300px; }
.demo.clicou .demo__cursor { transform: scale(.75); }
.demo.conversa .demo__cursor { opacity: 0; }

.demo__chat { opacity: 0; transform: translateY(30px) scale(.96); }
.demo.conversa .demo__chat { opacity: 1; transform: none; }
.demo.conversa .demo__anuncio { transform: translate(-10px, -14px) scale(.92) rotate(-3deg); opacity: .55; }

.chat__topo { display: flex; align-items: center; gap: 10px; padding: 14px 16px; background: var(--tinta); color: var(--branco); }
.chat__avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--indigo); display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 14px; }
.chat__nome { display: block; font-weight: 600; font-size: 14px; line-height: 1.2; }
.chat__status { display: block; font-size: 12px; color: var(--whats); }
.chat__corpo { display: flex; flex-direction: column; gap: 8px; padding: 16px; min-height: 236px; background: #EEF5F7; }
.msg {
  max-width: 82%; padding: 9px 12px 7px; border-radius: 14px; font-size: 14px; line-height: 1.4;
  opacity: 0; transform: translateY(8px); transition: opacity .35s ease, transform .35s ease;
}
.msg--ela { align-self: flex-start; background: var(--branco); border-top-left-radius: 4px; }
.msg--voce { align-self: flex-end; background: #D3F0EF; border-top-right-radius: 4px; }
.msg small { display: block; text-align: right; font-family: var(--mono); font-size: 10.5px; color: var(--t2-claro); margin-top: 2px; }
.msg.visivel { opacity: 1; transform: none; }
.digitando {
  align-self: flex-start; display: none; gap: 4px; padding: 12px 14px; background: var(--branco); border-radius: 14px; border-top-left-radius: 4px;
}
.digitando.visivel { display: inline-flex; }
.digitando i { width: 6px; height: 6px; border-radius: 50%; background: #9A9DB3; animation: pula 1s infinite; }
.digitando i:nth-child(2) { animation-delay: .15s; }
.digitando i:nth-child(3) { animation-delay: .3s; }
@keyframes pula { 0%, 60%, 100% { transform: none; opacity: .5; } 30% { transform: translateY(-3px); opacity: 1; } }
.confirmado {
  align-self: center; margin-top: 6px; display: inline-flex; align-items: center; gap: 8px;
  background: var(--tinta); color: var(--branco); border-radius: 999px; padding: 8px 14px; font-size: 13px; font-weight: 600;
  opacity: 0; transform: scale(.9); transition: opacity .35s ease, transform .35s cubic-bezier(.2, 1.4, .4, 1);
}
.confirmado svg { color: var(--lima); }
.confirmado.visivel { opacity: 1; transform: none; }
.demo.saindo .demo__chat, .demo.saindo .demo__anuncio { opacity: 0; }

/* ---------- Números ---------- */
.numeros {
  position: relative; margin-top: clamp(64px, 8vw, 104px);
  border-top: 1px solid var(--borda-escura);
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
}
.numero { padding: 36px 28px 44px 0; }
.numero + .numero { padding-left: 28px; border-left: 1px solid var(--borda-escura); }
.numero__valor {
  display: block; font-family: var(--display); font-weight: 700;
  font-size: clamp(44px, 5vw, 64px); line-height: 1; letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
}
.numero__valor em { font-style: normal; color: var(--lavanda); }
.numero__rotulo { display: block; margin-top: 12px; color: var(--t2-escuro); font-size: 15px; line-height: 1.45; max-width: 18em; }

/* ==========================================================
   Marcas
   ========================================================== */
.marcas { padding-block: clamp(56px, 7vw, 88px); }
.marcas__titulo {
  font-family: var(--display); font-weight: 700; font-size: clamp(26px, 2.6vw, 34px);
  letter-spacing: -0.02em; line-height: 1.1; text-align: center;
}
.marcas__sub { margin-top: 10px; text-align: center; color: var(--t2-claro); }
.marcas__lista {
  margin-top: 44px; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px;
}
.marca {
  position: relative; height: 104px; border-radius: 18px; background: var(--branco);
  border: 1px solid var(--borda-clara); display: grid; place-items: center; padding: 18px 22px;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.marca img { grid-area: 1 / 1; max-height: 50px; width: auto; max-width: 100%; transition: opacity .3s ease; }
.marca img.alto { max-height: 64px; }
.marca__mono { opacity: .7; }
.marca__cor { opacity: 0; }
.marca:hover { border-color: #C9DADF; box-shadow: 0 16px 34px -20px rgba(12, 14, 26, .35); }
.marca:hover .marca__mono { opacity: 0; }
.marca:hover .marca__cor { opacity: 1; }
@media (hover: none) {
  .marca__mono { opacity: 0; }
  .marca__cor { opacity: 1; }
}

/* ==========================================================
   Dores
   ========================================================== */
.problema__grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(40px, 6vw, 96px); }
.problema__texto .lead { margin-top: 24px; }
.dores__topo { max-width: 780px; margin: 0 auto; text-align: center; }
.dores__topo .lead { margin: 22px auto 0; }
.dores { margin-top: 56px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.dor {
  display: flex; flex-direction: column; background: var(--branco); border: 1px solid var(--borda-clara);
  border-radius: 20px; padding: 32px 28px; box-shadow: 0 20px 40px -32px rgba(0, 0, 128, .35);
}
.dor__icone { width: 56px; height: 56px; border-radius: 16px; background: var(--ciano-bg); display: grid; place-items: center; color: var(--ciano); }
.dor h3 { margin-top: 22px; font-family: var(--display); font-weight: 700; font-size: 20px; line-height: 1.25; letter-spacing: -0.01em; color: var(--marinho); }
.dor p { margin-top: 10px; color: var(--t2-claro); font-size: 16px; }

/* ==========================================================
   Solução
   ========================================================== */
.solucao__topo { max-width: 760px; }
.solucao__topo .lead { margin-top: 24px; }
.fluxo { margin-top: 64px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); position: relative; }
.fluxo::before {
  content: ""; position: absolute; left: 16%; right: 16%; top: 44px;
  border-top: 2px dashed rgba(92, 207, 207, 0.45);
}
.etapa { position: relative; text-align: center; padding: 0 16px; }
.etapa__icone {
  position: relative; z-index: 1; margin: 0 auto; width: 88px; height: 88px; border-radius: 26px;
  display: grid; place-items: center; background: var(--tinta-2); border: 1px solid var(--borda-escura); color: var(--lavanda);
}
.etapa--final .etapa__icone { background: var(--indigo); border-color: var(--indigo); color: var(--branco); }
.etapa h3 { margin-top: 20px; font-family: var(--display); font-weight: 700; font-size: 24px; letter-spacing: -0.02em; line-height: 1.15; }
.etapa p { margin-top: 6px; color: var(--t2-escuro); font-size: 15.5px; max-width: 24em; margin-inline: auto; }

/* ==========================================================
   Como funciona
   ========================================================== */
.passos { margin-top: 56px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(24px, 4vw, 56px); }
.passo { border-top: 2px solid rgba(255, 255, 255, 0.35); padding-top: 24px; }
.passo__num { display: block; font-family: var(--display); font-weight: 700; font-size: clamp(64px, 7vw, 96px); line-height: .85; letter-spacing: -0.02em; color: rgba(255, 255, 255, .45); }
.passo h3 { margin-top: 20px; font-family: var(--display); font-weight: 700; font-size: 26px; letter-spacing: -0.02em; line-height: 1.1; }
.passo p { margin-top: 8px; color: rgba(255, 255, 255, 0.9); }
.como__fecho {
  margin-top: 56px; display: flex; justify-content: center;
}
.como__fecho p { font-family: var(--display); font-weight: 700; font-size: clamp(24px, 2.6vw, 32px); letter-spacing: -0.02em; line-height: 1.1; }

/* ==========================================================
   Incluso
   ========================================================== */
.incluso__grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(40px, 6vw, 96px); align-items: start; }
.transparencia { margin-top: 36px; background: var(--tinta); color: var(--branco); border-radius: 24px; padding: 32px; }
.transparencia h3 { font-family: var(--display); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; }
.transparencia p { margin-top: 10px; color: var(--t-apoio-escuro); }
.transparencia .acoes { margin-top: 24px; }
.itens { border-top: 1px solid var(--borda-clara); }
.item {
  display: grid; grid-template-columns: 36px minmax(0, 1fr); gap: 16px; align-items: center;
  padding: 22px 0; border-bottom: 1px solid var(--borda-clara); font-size: 18px; font-weight: 500; line-height: 1.4;
}
.item__check { width: 36px; height: 36px; border-radius: 50%; background: #E0F2F2; color: var(--indigo); display: grid; place-items: center; }

/* ==========================================================
   Sobre
   ========================================================== */
.sobre__grid { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: clamp(40px, 7vw, 104px); align-items: center; }
.sobre__foto { position: relative; width: clamp(240px, 28vw, 340px); aspect-ratio: 1; }
.sobre__foto::before {
  content: ""; position: absolute; inset: -14px; border-radius: 50%;
  border: 2px dashed rgba(184, 176, 255, .45);
}
.sobre__foto img { position: relative; width: 100%; height: 100%; object-fit: cover; object-position: center 22%; border-radius: 50%; }
.sobre__texto p { margin-top: 20px; color: var(--t-apoio-escuro); max-width: 36em; }

/* ==========================================================
   FAQ
   ========================================================== */
.faq__grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(40px, 6vw, 96px); align-items: start; }
.faq__lateral { position: sticky; top: 110px; }
.faq__lateral p { margin-top: 20px; color: var(--t2-claro); }
.faq__lista { border-top: 1px solid var(--borda-clara); }
.faq__item { border-bottom: 1px solid var(--borda-clara); }
.faq__item summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 24px 0; font-family: var(--display); font-weight: 700; font-size: 21px; line-height: 1.25; letter-spacing: -0.015em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icone { flex: none; width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid #C9DADF; position: relative; transition: background-color .2s ease, border-color .2s ease; }
.faq__icone::before, .faq__icone::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 1.5px; background: var(--tinta);
  transform: translate(-50%, -50%); transition: transform .25s ease, background-color .2s ease;
}
.faq__icone::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__icone { background: var(--indigo); border-color: var(--indigo); }
.faq__item[open] .faq__icone::before, .faq__item[open] .faq__icone::after { background: var(--branco); }
.faq__item[open] .faq__icone::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq__resposta { padding: 0 60px 26px 0; color: var(--t2-claro); }

/* ==========================================================
   Chamada final
   ========================================================== */
.final__caixa {
  position: relative; overflow: hidden; border-radius: 32px; background: var(--indigo); color: var(--branco);
  padding: clamp(40px, 6vw, 80px);
  display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.5fr); gap: 40px; align-items: center;
}
.final__titulo { font-family: var(--display); font-weight: 700; font-size: clamp(34px, 4.6vw, 60px); line-height: 1; letter-spacing: -0.025em; text-wrap: balance; }
.final__titulo span { display: block; color: rgba(255, 255, 255, .72); }
.final__caixa .lead { margin-top: 24px; color: rgba(255, 255, 255, .9); }
.final__simbolo { width: 100%; max-width: 240px; margin-left: auto; height: auto; }

/* ==========================================================
   Rodapé
   ========================================================== */
.rodape { background: var(--tinta); color: var(--t2-escuro); border-top: 1px solid var(--borda-escura); padding-block: 48px; font-size: 15px; }
.rodape__grid { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; gap: 32px; }
.rodape__logo { width: 200px; height: auto; }
.rodape__marca p { margin-top: 14px; }
.rodape__links { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.rodape__links a { color: var(--branco); text-decoration: none; }
.rodape__links a:hover { text-decoration: underline; text-underline-offset: 4px; }
.rodape__legal { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--borda-escura); font-size: 13px; line-height: 1.7; }

/* ==========================================================
   Assistente de WhatsApp
   ========================================================== */
.assistente-botao {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 62px; height: 62px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--whats); color: var(--branco); display: grid; place-items: center;
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, .5); transition: transform .2s ease, background-color .2s ease;
}
.assistente-botao:hover { background: var(--whats-hover); transform: scale(1.05); }
.assistente-botao__badge {
  position: absolute; top: 2px; right: 2px; width: 20px; height: 20px; border-radius: 50%;
  background: #E5484D; color: var(--branco); font-size: 12px; font-weight: 600; display: grid; place-items: center;
  border: 2px solid var(--branco);
}
.assistente-botao[aria-expanded="true"] .assistente-botao__badge { display: none; }

.assistente {
  position: fixed; right: 20px; bottom: 96px; z-index: 90; width: min(360px, calc(100vw - 32px));
  background: var(--branco); color: var(--tinta); border-radius: 22px; overflow: hidden;
  box-shadow: 0 30px 70px -20px rgba(12, 14, 26, .55), 0 0 0 1px rgba(12, 14, 26, .06);
  transform-origin: bottom right; opacity: 0; transform: translateY(12px) scale(.96); visibility: hidden;
  transition: opacity .3s ease, transform .3s cubic-bezier(.2, .8, .2, 1), visibility 0s linear .3s;
}
.assistente.aberto { opacity: 1; transform: none; visibility: visible; transition-delay: 0s; }
.assistente__topo { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--tinta); color: var(--branco); }
.assistente__foto { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; object-position: center 20%; }
.assistente__nome { display: block; font-weight: 600; font-size: 15px; line-height: 1.2; }
.assistente__status { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--t2-escuro); }
.assistente__status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--whats); }
.assistente__fechar {
  margin-left: auto; width: 36px; height: 36px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255, 255, 255, .08); color: var(--branco); display: grid; place-items: center;
}
.assistente__fechar:hover { background: rgba(255, 255, 255, .16); }
.assistente__corpo { background: #EEF5F7; padding: 16px; display: flex; flex-direction: column; gap: 8px; min-height: 140px; }
.assistente .msg { font-size: 14.5px; }
.assistente__opcoes { display: flex; flex-direction: column; gap: 8px; margin-top: 6px; opacity: 0; transform: translateY(6px); transition: opacity .3s ease, transform .3s ease; }
.assistente__opcoes.visivel { opacity: 1; transform: none; }
.opcao {
  display: block; text-align: left; text-decoration: none; background: var(--branco); color: var(--indigo);
  border: 1px solid #CFE6E6; border-radius: 12px; padding: 10px 14px; font-size: 14px; font-weight: 600;
  transition: background-color .2s ease, border-color .2s ease;
}
.opcao:hover { background: #EAF6F6; border-color: var(--indigo); }
.assistente__form { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--borda-clara); }
.assistente__form label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.assistente__form input {
  flex: 1; min-width: 0; height: 44px; border-radius: 12px; border: 1px solid var(--borda-clara); padding: 0 14px;
  font: inherit; font-size: 15px; background: var(--gelo); color: var(--tinta);
}
.assistente__form input:focus { outline: 2px solid var(--indigo); outline-offset: 0; border-color: transparent; }
.assistente__enviar {
  width: 44px; height: 44px; border-radius: 12px; border: 0; cursor: pointer; flex: none;
  background: var(--whats); color: var(--branco); display: grid; place-items: center;
}
.assistente__enviar:hover { background: var(--whats-hover); }
.assistente__nota { padding: 0 14px 12px; font-size: 12px; color: var(--t2-claro); }

/* ==========================================================
   Página de texto (política)
   ========================================================== */
.texto-legal { max-width: 760px; }
.texto-legal h2 { margin-top: 44px; font-family: var(--display); font-weight: 700; font-size: 26px; letter-spacing: -0.02em; line-height: 1.15; }
.texto-legal p, .texto-legal ul { margin-top: 14px; color: var(--t2-claro); }
.texto-legal ul { padding-left: 1.2em; list-style: disc; }
.texto-legal li + li { margin-top: 6px; }
.texto-legal a { color: var(--indigo); }
.texto-legal .atualizado { font-size: 14px; }




/* ---------- Céu animado (todas as seções) ---------- */
[data-ceu] { position: relative; isolation: isolate; overflow: hidden; }
.hero { background: var(--marinho-profundo); }
.ceu { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.ceu canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.ceu__brilho { position: absolute; border-radius: 50%; filter: blur(90px); }
.ceu__brilho--1 { width: 620px; height: 620px; right: -140px; top: -180px; background: var(--ciano); opacity: .40; animation: flutua 18s ease-in-out infinite alternate; }
.ceu__brilho--2 { width: 560px; height: 560px; left: -200px; bottom: -240px; background: #1A1AC8; opacity: .45; animation: flutua 22s ease-in-out infinite alternate-reverse; }
[data-ceu="claro"] .ceu__brilho--1 { opacity: .14; }
[data-ceu="claro"] .ceu__brilho--2 { opacity: .10; background: var(--marinho); }
@keyframes flutua { from { transform: translate(0, 0) scale(1); } to { transform: translate(-60px, 40px) scale(1.12); } }

/* ---------- Blocos que surgem ao rolar ---------- */
.js [data-revelar] { opacity: 0; }
.js [data-revelar].visivel { animation: surgir .9s cubic-bezier(.2, .8, .2, 1) both; animation-delay: var(--atraso, 0s); }
@keyframes surgir {
  from { opacity: 0; transform: translateY(36px); filter: blur(6px); }
  to { opacity: 1; transform: none; filter: none; }
}


/* ---------- Chamada final (só texto) ---------- */
.final__texto { max-width: 820px; text-align: center; }
.final__texto .titulo { font-size: clamp(30px, 3.6vw, 46px); }
.final__texto .lead { margin: 20px auto 0; }
.final__texto .acoes { justify-content: center; }

/* ---------- Plataformas Meta ---------- */
.plataformas { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; margin-top: 28px; font-size: 14px; color: var(--t2-escuro); }
.plataformas__icones { display: flex; align-items: center; gap: 6px; }
.plataformas__icone { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: rgba(255, 255, 255, .08); border: 1px solid var(--borda-escura); color: var(--branco); }
.plataformas__seta { color: var(--ciano-claro); }
.meta-selo {
  margin-top: 40px; display: flex; flex-wrap: wrap; align-items: center; gap: 14px 24px;
  padding: 20px 24px; border-radius: 18px; background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .16);
}
.meta-selo p { font-size: 15px; color: rgba(255, 255, 255, .9); flex: 1 1 260px; }
.meta-selo p strong { color: var(--branco); }
.meta-selo ul { display: flex; flex-wrap: wrap; gap: 10px; }
.meta-selo li { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: var(--branco); color: var(--marinho); font-weight: 600; font-size: 14px; }
.meta-selo li svg { color: var(--ciano); }
.cabecalho__acoes { display: flex; align-items: center; gap: 10px; }
.icone-insta {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  color: var(--branco); border: 1px solid var(--borda-escura); transition: background-color .2s ease;
}
.icone-insta:hover { background: rgba(255, 255, 255, .08); }

/* ==========================================================
   Movimento reduzido
   ========================================================== */
@media (prefers-reduced-motion: reduce) {
  /* Versão suave: sem deslocamentos grandes, só surgimento por opacidade */
  .js [data-revelar].visivel { animation-name: surgir-suave; animation-duration: .7s; }
  @keyframes surgir-suave { from { opacity: 0; } to { opacity: 1; } }
  .ceu__brilho { animation-duration: 40s; }
  html { scroll-behavior: auto; }
}

/* ==========================================================
   Responsivo
   ========================================================== */
@media (max-width: 980px) {
  .hero__grid, .problema__grid, .incluso__grid, .faq__grid { grid-template-columns: minmax(0, 1fr); }
  .demo { margin: 8px auto 0; }
  .marcas__lista { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .faq__lateral { position: static; }
  .sobre__grid { grid-template-columns: minmax(0, 1fr); justify-items: start; }
  .final__caixa { grid-template-columns: minmax(0, 1fr); }
  .final__simbolo { display: none; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .cabecalho__inner { height: 64px; }
  .cabecalho__logo img { width: 128px; }
  .btn { width: 100%; }
  .cabecalho .btn { width: auto; }
  .acoes { flex-direction: column; align-items: stretch; }
  .acoes .link-simples { text-align: center; }
  .demo { height: 470px; max-width: 360px; }
  .demo__anuncio { width: 240px; }
  .anuncio__midia { height: 130px; }
  .demo__chat { width: 290px; }
  .chat__corpo { min-height: 220px; }
  .demo.cursor .demo__cursor { left: 120px; top: 265px; }
  .numero { padding: 28px 16px 32px 0; }
  .numero + .numero { padding-left: 16px; }
  .numero__valor { font-size: 38px; }
  .numero__rotulo { font-size: 13px; }
  .marcas__lista { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .marca { height: 88px; }
  .dores { grid-template-columns: minmax(0, 1fr); }
  .dor { padding: 26px 24px; }
  .fluxo { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .fluxo::before { left: 50%; right: auto; top: 44px; bottom: 44px; border-top: 0; border-left: 2px dashed rgba(92, 207, 207, 0.45); }
  .passos { grid-template-columns: minmax(0, 1fr); gap: 36px; }

  .faq__item summary { font-size: 18px; }
  .faq__resposta { padding-right: 0; }
  .transparencia { padding: 26px; }
  .final__caixa { border-radius: 24px; }
  .assistente { right: 16px; bottom: 90px; }
  .assistente-botao { right: 16px; bottom: 16px; }
}
