/* ============================================================
   LC Sistemas — Landing Page "Seja uma Revenda"
   Cores em variáveis: troque aqui quando a identidade oficial chegar.
   ============================================================ */

:root {
  color-scheme: light;   /* campos/autofill do navegador seguem o tema claro */
  /* Marca — paleta oficial LC Sistemas */
  --cor-primaria: #643296;   /* roxo LC */
  --cor-primaria-forte: #4B2373;
  --preto: #1C1C1C;
  --tinta: #1C1C1C;          /* texto principal */
  --tinta-suave: #5C5663;    /* texto secundário */
  --papel: #FFFFFF;
  --papel-suave: #F6F3FA;

  /* Produtos */
  --cor-lcweb: #643296;      /* roxo: LC WEB */
  --cor-lcweb-escura: #4B2373;
  --cor-lcweb-tinta: #2E1547;
  --cor-lcweb-fundo: #F1EAF8;

  --cor-lcerp: #FFB300;      /* âmbar: LC ERP */
  --cor-lcerp-escura: #8F6400;  /* âmbar escuro p/ textos */
  --cor-lcerp-hover: #E6A100;
  --cor-lcerp-tinta: #3D2C00;
  --cor-lcerp-fundo: #FFF4DC;

  /* Tipografia (Gotham como principal; Montserrat como fallback livre próximo) */
  --fonte: "Gotham", "Montserrat", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", "Menlo", monospace;

  --raio: 14px;
  --sombra: 0 18px 50px -18px rgba(28, 28, 28, .28);
  --largura-max: 1160px;
}

/* ---------- Reset básico ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Rolagem suave NÃO é aplicada globalmente: o smooth no <html> briga com a
   rodinha do mouse/trackpad e faz a página "tremer/pular" perto do rodapé.
   O efeito suave dos cliques do menu é feito via JS (respeitando reduced-motion). */
html {
  overscroll-behavior-y: none;
  /* Compensa a topbar fixa ao rolar para âncoras (#seções), para o título
     da seção não ficar escondido atrás do cabeçalho. A altura real é medida
     por JS e escrita em --topbar-h; o valor abaixo é só um fallback. */
  scroll-padding-top: calc(var(--topbar-h, 64px) + 16px);
}

body {
  font-family: var(--fonte);
  color: var(--tinta);
  background: var(--papel);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-y: none;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
  max-width: var(--largura-max);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ---------- Tipografia ---------- */
h1, h2 {
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--cor-primaria);
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }

/* título do hero: maior parte em preto, final em roxo (estilo da referência) */
.hero__title {
  color: var(--tinta);
  font-weight: 800;
}
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }

h1 em, h2 em {
  font-style: normal;
  color: var(--cor-lcweb);
}

.produto--erp h2 em { color: var(--cor-lcerp-escura); }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--tinta-suave);
  margin-bottom: 14px;
}

.eyebrow--web { color: var(--cor-lcweb-escura); }
.eyebrow--erp { color: var(--cor-lcerp-escura); }

.grifo {
  background: linear-gradient(transparent 62%, rgba(255, 179, 0, .45) 62%);
}

/* ---------- Botões ---------- */
.btn {
  display: inline-block;
  font-family: inherit;
  font-weight: 650;
  font-size: .94rem;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 12px 24px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--cor-lcweb); outline-offset: 3px; }

.btn:disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn--primary {
  background: var(--cor-primaria);
  color: #fff;
  box-shadow: var(--sombra);
}
.btn--primary:hover { background: var(--cor-primaria-forte); }

.btn--ghost {
  border-color: rgba(28, 28, 28, .25);
  color: var(--cor-primaria);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--cor-primaria); }

.btn--web { background: var(--cor-lcweb); color: #fff; }
.btn--web:hover { background: var(--cor-lcweb-escura); }

.btn--erp { background: var(--cor-lcerp); color: var(--preto); }
.btn--erp:hover { background: var(--cor-lcerp-hover); }

.btn--small { padding: 9px 18px; font-size: .85rem; border-radius: 10px; background: var(--cor-primaria); color: #fff; }
.btn--full { width: 100%; }

/* botão âmbar do topo (Seja uma revenda) */
.btn--topo {
  padding: 6px 18px;
  background: var(--cor-lcerp);
  color: var(--preto);
  font-weight: 700;
}
.btn--topo:hover { background: var(--cor-lcerp-hover); }

/* ---------- Topbar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #3d3d3d;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 5px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
}

/* Logo original (arquivo em assets/); o texto é reserva enquanto não existir */
.brand__img { height: 46px; width: auto; }
.topbar .brand__img { height: 40px; }
.brand__img.img-indisponivel { display: none; }
.brand__texto { display: none; align-items: center; gap: 10px; }
.brand__img.img-indisponivel + .brand__texto { display: inline-flex; }

.brand__mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--cor-primaria);
  color: #fff;
  font-size: .95rem;
  letter-spacing: .02em;
}

.brand__name {
  color: var(--cor-primaria);
  font-size: 1.05rem;
  letter-spacing: .01em;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: #EDEBF6 url("../assets/site/seção hero.webp") center / cover no-repeat;
  overflow: hidden;
}


.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: center;
  gap: 56px;
  padding-block: 120px 140px;
}

/* eyebrow técnico (mono, pílula, ponto pulsante) */
.eyebrow--tech {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cor-primaria);
  background: var(--cor-lcweb-fundo);
  border: 1px solid rgba(100, 50, 150, .14);
  padding: 7px 15px;
  border-radius: 999px;
}

.eyebrow--tech .ping {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cor-lcerp);
  box-shadow: 0 0 0 0 rgba(255, 179, 0, .55);
  animation: ping 2.2s ease-out infinite;
}

@keyframes ping {
  0%   { box-shadow: 0 0 0 0 rgba(255, 179, 0, .5); }
  70%, 100% { box-shadow: 0 0 0 9px rgba(255, 179, 0, 0); }
}

.hero__subtitle {
  font-size: 1.13rem;
  color: var(--tinta-suave);
  margin-top: 20px;
  max-width: 34rem;
}

.hero__subtitle strong { color: var(--tinta); }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* indicador dos dois sistemas (mono) */
.hero__sistemas {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(28, 28, 28, .1);
  font-family: var(--mono);
  font-size: .82rem;
}

.hero__sistemas li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  color: var(--tinta);
}

.hero__sistemas em {
  font-style: normal;
  font-weight: 400;
  color: var(--tinta-suave);
}

.hero__sistemas .dot { width: 9px; height: 9px; border-radius: 50%; }
.dot--web { background: var(--cor-lcweb); }
.dot--erp { background: var(--cor-lcerp); }

/* ---------- Visual do hero: palco (print + pills + linhas) ---------- */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.palco {
  position: relative;
  width: 100%;
  max-width: 600px;
}

/* brilho suave atrás do produto, dando profundidade */
.palco::before {
  content: "";
  position: absolute;
  inset: 8% 4% 10%;
  z-index: 0;
  background:
    radial-gradient(closest-side, rgba(120, 62, 176, .14), transparent 72%),
    radial-gradient(closest-side at 70% 80%, rgba(255, 179, 0, .12), transparent 70%);
  filter: blur(22px);
  pointer-events: none;
}

.hero__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 34px 55px rgba(28, 28, 28, .22));
}

@keyframes entrarDireita {
  0%   { opacity: 0; transform: translateX(115%); }
  30%  { opacity: 1; }
  100% { opacity: 1; transform: translateX(0); }
}

/* linhas curvas que se desenham */
.palco__linhas {
  position: absolute;
  inset: -6% -4%;
  width: 108%;
  height: 112%;
  z-index: 0;
  overflow: visible;
}

.linha {
  fill: none;
  stroke: var(--cor-primaria);
  stroke-width: 2;
  stroke-linecap: round;
  opacity: .3;
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
  animation: desenhar 1.6s ease forwards .4s;
}

.linha--2 { stroke: var(--cor-lcerp); animation-delay: .8s; }

@keyframes desenhar { to { stroke-dashoffset: 0; } }

/* pontos nas pontas das linhas */
.ponto {
  fill: var(--cor-primaria);
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: popPonto .5s ease forwards 1.6s;
}
.ponto--2 { fill: var(--cor-lcerp); animation-delay: 2.1s; }

@keyframes popPonto {
  from { opacity: 0; transform: scale(0); }
  to   { opacity: .9; transform: scale(1); }
}

/* pills flutuantes (entrada + flutuação contínua) */
.pill {
  position: absolute;
  z-index: 2;
  opacity: 0;
  transform: translateY(16px) scale(.96);
  animation: entrarPill .6s cubic-bezier(.2, .7, .2, 1) forwards var(--d, .3s);
}

@keyframes entrarPill { to { opacity: 1; transform: translateY(0) scale(1); } }

.pill__box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--tinta);
  font-weight: 600;
  font-size: .9rem;
  white-space: nowrap;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(28, 28, 28, .06);
  box-shadow: 0 14px 32px -12px rgba(28, 28, 28, .3);
  animation: flutuarPill 5s ease-in-out infinite;
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: default;
}

.pill:hover .pill__box {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -14px rgba(28, 28, 28, .38);
}

@keyframes flutuarPill {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.pill svg { width: 18px; height: 18px; flex: none; }
.pill--web { top: 2%; left: -7%; }
.pill--web svg { color: var(--cor-lcweb); }
.pill--erp { top: 44%; right: -8%; }
.pill--erp svg { color: var(--cor-lcerp-escura); }
.pill--erp .pill__box { animation-duration: 6s; animation-delay: .6s; }
.pill--extra { bottom: 4%; left: 4%; }
.pill--extra svg { color: var(--cor-lcweb); }
.pill--extra .pill__box { animation-duration: 5.5s; animation-delay: 1s; }

@media (prefers-reduced-motion: reduce) {
  .linha { animation: none; stroke-dashoffset: 0; }
  .ponto { animation: none; opacity: .9; }
  .pill { animation: none; opacity: 1; transform: none; }
  .pill__box { animation: none; }
}

.screen-placeholder__logo {
  color: #fff;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: .06em;
}

.screen-placeholder__sub {
  color: rgba(255, 255, 255, .75);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* ---------- Seções (base) ---------- */
.section { padding-block: 92px; }

.section__head {
  max-width: 44rem;
  margin-bottom: 52px;
}

.section__lead {
  margin-top: 16px;
  font-size: 1.1rem;
  color: var(--tinta-suave);
}

/* ---------- Segmentos ---------- */
.section--seg .section__head,
.section__head--seg {
  max-width: 50rem;
  margin-inline: auto;
  margin-bottom: 44px;
  text-align: center;
}
.segmentos-grid {
  list-style: none;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(8px, 1vw, 16px);
  width: fit-content;
  max-width: 100%;
  /* um único quadro em volta de todos os ícones */
  background: var(--papel);
  border: 1px solid var(--borda);
  border-radius: 24px;
  padding: clamp(26px, 3vw, 40px) clamp(14px, 2vw, 26px);
}
[data-theme="dark"] .segmentos-grid { background: var(--superficie); }
.segmento {
  flex: 0 0 auto;
  width: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 12px 8px;
  text-align: center;
  color: var(--tinta);
  outline: none;
}
.segmento__ico {
  width: 74px;
  height: 74px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  color: var(--cor-primaria);
  background:
    linear-gradient(160deg,
      color-mix(in srgb, var(--cor-primaria) 16%, transparent),
      color-mix(in srgb, var(--cor-primaria) 5%, transparent));
  border: 1px solid color-mix(in srgb, var(--cor-primaria) 15%, transparent);
  transition: transform .28s cubic-bezier(.2, .7, .2, 1), background .28s ease,
              color .28s ease, border-color .28s ease;
}
.segmento__ico svg { width: 34px; height: 34px; transition: transform .28s cubic-bezier(.2, .7, .2, 1); }
.segmento__nome { font-size: .98rem; font-weight: 600; }

/* hover: o bloco fica parado — só o ícone aumenta e fica roxo mais claro */
.segmento:hover .segmento__ico,
.segmento:focus-visible .segmento__ico { color: #8946AB; }
.segmento:hover .segmento__ico svg,
.segmento:focus-visible .segmento__ico svg { transform: scale(1.22); }
.segmento:focus-visible .segmento__ico { outline: 2px solid var(--cor-primaria); outline-offset: 3px; }

/* tema escuro: lilás bem clarinho, e branco ao passar o mouse */
[data-theme="dark"] .segmento__ico {
  color: #d7c6f5;
  background:
    linear-gradient(160deg,
      color-mix(in srgb, #d7c6f5 18%, transparent),
      color-mix(in srgb, #d7c6f5 5%, transparent));
  border-color: color-mix(in srgb, #d7c6f5 22%, transparent);
}
[data-theme="dark"] .segmento:hover .segmento__ico,
[data-theme="dark"] .segmento:focus-visible .segmento__ico { color: #ffffff; }

/* link "e muito mais..." dentro do quadro, na linha de baixo */
.segmentos-mais {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  margin-top: -10px;   /* sobe o link (ajuste feito no editor) */
}
.segmentos-link {
  font-weight: 400;
  color: var(--cor-primaria);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color .2s ease;
}
.segmentos-link:hover { color: var(--cor-primaria-forte); }
[data-theme="dark"] .segmentos-link { color: #d7c6f5; }
[data-theme="dark"] .segmentos-link:hover { color: #ffffff; }

@media (prefers-reduced-motion: reduce) {
  .segmento:hover .segmento__ico svg,
  .segmento:focus-visible .segmento__ico svg { transform: none; }
}

/* ---------- Dois sistemas ---------- */
.section--sistemas { background: linear-gradient(180deg, #ffffff 0%, var(--papel-suave) 100%); }
[data-theme="dark"] .section--sistemas { background: linear-gradient(180deg, var(--papel) 0%, var(--papel-suave) 100%); }

.section--sistemas .section__head {
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
}

.section--sistemas .section__lead {
  max-width: 40rem;
  margin-inline: auto;
  text-wrap: balance;
}

.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 28px;
}

.duo__divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.duo__divider span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cor-primaria);
  color: #fff;
  font-weight: 750;
  font-style: italic;
  font-size: 1.15rem;
  box-shadow: var(--sombra);
}

.card {
  background: var(--papel);
  border-radius: var(--raio);
  padding: 34px 30px;
  border-top: 5px solid;
  box-shadow: 0 10px 34px -18px rgba(28, 28, 28, .2);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.card--web { border-color: var(--cor-lcweb); }
.card--erp { border-color: var(--cor-lcerp); }

/* imagem do sistema no topo do card */
.card__tela {
  margin: -6px -6px 4px;
  display: flex;
  justify-content: center;
}

.card__tela-img {
  width: 100%;
  max-width: 460px;
  height: auto;
  aspect-ratio: 1120 / 891;   /* reserva o espaço antes de carregar (evita "pulo" de layout) */
  filter: drop-shadow(0 16px 30px rgba(28, 28, 28, .16));
}

.card__tela-img.img-indisponivel { display: none; }

.card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.card__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: .01em;
  color: var(--preto);
}

.card__logo b { font-weight: 500; }

/* Logo original (arquivo em assets/); o texto ao lado é só reserva
   enquanto o arquivo não existir */
.card__logo-img { height: 54px; width: auto; }
.card__logo-img.img-indisponivel { display: none; }
.card__logo-texto { display: none; align-items: center; gap: 10px; }
.card__logo-img.img-indisponivel + .card__logo-texto { display: inline-flex; }

.card__pipe {
  width: 2px;
  height: 1.3em;
  background: var(--preto);
  border-radius: 2px;
}

.chip {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

.chip--web { background: var(--cor-lcweb-fundo); color: var(--cor-lcweb-escura); }
.chip--erp { background: var(--cor-lcerp-fundo); color: var(--cor-lcerp-escura); }

.card__list {
  list-style: none;
  display: grid;
  gap: 12px;
  flex: 1;
}

.card__list li {
  position: relative;
  padding-left: 26px;
  color: var(--tinta-suave);
}

.card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 800;
}

.card--web .card__list li::before { color: var(--cor-lcweb); }
.card--erp .card__list li::before { color: var(--cor-lcerp); }

.card__link {
  font-weight: 700;
  text-decoration: none;
  font-size: .98rem;
}

.card--web .card__link { color: var(--cor-lcweb-escura); }
.card--erp .card__link { color: var(--cor-lcweb-escura); }
.card__link:hover { text-decoration: underline; }

/* ---------- Seções de produto ---------- */
.produto--web { background: var(--cor-lcweb-fundo); }
.produto--erp { background: var(--papel); }
/* fundo transparente para revelar o fundo animado global do site
   (.bg-aura), o mesmo efeito da seção de segmentos */
.produto--pay { background: transparent; }

/* LC PAY dentro de um "bloquinho" (cartão) igual ao do formulário */
.produto--pay .produto__grid {
  position: relative;
  background: var(--superficie);
  border: 1px solid var(--borda);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 56px);
  box-shadow: var(--sombra);
  overflow: hidden;
}
.produto--pay .produto__grid::before {
  content: "";
  position: absolute; top: 0; right: 0; width: 55%; height: 100%;
  background: radial-gradient(circle at 82% 22%, var(--glow-primary), transparent 60%);
  pointer-events: none;
}
/* conteúdo acima do brilho */
.produto--pay .sistema-card,
.produto--pay .produto__media { position: relative; z-index: 1; }

.produto__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.produto__content > p {
  margin-top: 18px;
  color: var(--tinta-suave);
  font-size: 1.06rem;
  max-width: 32rem;
}

.produto--web .produto__content h2 { color: var(--cor-lcweb-tinta); }
.produto--erp .produto__content h2 { color: var(--cor-lcerp-tinta); }

.feature-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-block: 28px 34px;
}

.feature-list li {
  position: relative;
  padding-left: 30px;
  color: var(--tinta-suave);
}

.feature-list li strong { color: var(--tinta); }

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  transform: rotate(45deg);
}

.produto--web .feature-list li::before { background: var(--cor-lcweb); }
.produto--erp .feature-list li::before { background: var(--cor-lcerp); }

.produto__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.produto__img {
  width: 100%;
  max-width: 560px;
  height: auto;
  aspect-ratio: 1120 / 891;   /* reserva o espaço antes de carregar (evita "pulo" de layout) */
  filter: drop-shadow(0 26px 45px rgba(28, 28, 28, .2));
}
/* a imagem do LC PAY tem proporção um pouco diferente */
.produto--pay .produto__img { aspect-ratio: 1200 / 848; }

.produto__img.img-indisponivel { display: none; }

.media-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.media-placeholder--web { background: linear-gradient(150deg, var(--cor-lcweb), var(--cor-lcweb-escura)); }
.media-placeholder--erp { background: linear-gradient(150deg, var(--cor-lcerp), var(--cor-lcerp-hover)); }
.media-placeholder--erp .screen-placeholder__logo { color: var(--preto); }
.media-placeholder--erp .screen-placeholder__sub { color: rgba(28, 28, 28, .65); }

/* ---------- Formulário ---------- */
.section--form {
  background:
    radial-gradient(800px 400px at 10% 0%, rgba(100, 50, 150, .45), transparent 60%),
    radial-gradient(800px 400px at 95% 100%, rgba(255, 179, 0, .12), transparent 60%),
    var(--preto);
}

.form-wrap { max-width: 780px; }

.section__head--claro h2 { color: #fff; }
.section__head--claro .section__lead { color: rgba(255, 255, 255, .72); }
.section__head--claro .eyebrow { color: var(--cor-lcerp); }

.form {
  background: var(--papel);
  border-radius: 18px;
  padding: 32px 30px;
  box-shadow: var(--sombra);
  display: grid;
  gap: 22px;
}

/* barra de progresso em 2 segmentos (concluído = roxo, atual = âmbar, futuro = cinza) */
.form__progresso {
  display: flex;
  gap: 8px;
}
.form__seg {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: #E1DEE8;
  transition: background-color .3s ease;
}
.form__seg.seg--ativo { background: var(--cor-lcerp); }
.form__seg.seg--feito { background: var(--cor-primaria); }

.form__etapa {
  display: grid;
  gap: 2px;
}
.form__etapa[hidden] { display: none; }

.form__titulo {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--preto);
}

/* formulário sempre alinhado à esquerda (vence "centralizar" salvo no editor) */
.form, .form__etapa, .form__titulo, .form__sub,
.form__field, .form__field label, .form__radios,
.form__sucesso { text-align: left !important; }
.form__sub {
  margin-top: -12px;
  font-size: .95rem;
  color: var(--tinta-suave);
}

/* ajustes finos do editor visual (F4): sobe o título/subtítulo da etapa 1 */
.form__etapa[data-etapa="1"] .form__titulo { transform: translateY(-12px); }
.form__etapa[data-etapa="1"] .form__sub { transform: translateY(-8px); }

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form__field { display: grid; gap: 6px; }

.form__field label {
  font-size: .92rem;
  font-weight: 600;
  color: var(--tinta);
}

/* rótulo oculto visualmente (mantém acessibilidade p/ leitores de tela) */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form__field input:not([type="radio"]),
.form__field textarea,
.form__field select {
  font-family: inherit;
  font-size: 1rem;
  color: var(--tinta);
  border: 1.5px solid rgba(28, 28, 28, .18);
  border-radius: 10px;
  padding: 13px 14px;
  background: #fff;
  width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}

/* mantém o fundo do campo (não deixa o autofill do navegador pintar de branco/amarelo) */
.form__field input:-webkit-autofill,
.form__field input:-webkit-autofill:hover,
.form__field input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  -webkit-text-fill-color: var(--tinta);
  caret-color: var(--tinta);
  transition: background-color 99999s ease-in-out 0s;
}
[data-theme="dark"] .form__field input:-webkit-autofill,
[data-theme="dark"] .form__field input:-webkit-autofill:hover,
[data-theme="dark"] .form__field input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px var(--papel-suave) inset;
}

.form__field input::placeholder,
.form__field textarea::placeholder { color: #9a95a3; }

.form__field input:not([type="radio"]):focus,
.form__field textarea:focus,
.form__field select:focus {
  outline: none;
  border-color: var(--cor-lcweb);
  box-shadow: 0 0 0 3px rgba(100, 50, 150, .18);
}

.form__field.campo-invalido input:not([type="radio"]),
.form__field.campo-invalido textarea,
.form__field.campo-invalido select { border-color: #D33A2C; }

/* opções de rádio (preferência de contato) */
.form__radios {
  display: flex;
  gap: 26px;
  padding-top: 2px;
}
.radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: var(--tinta);
  cursor: pointer;
}
.radio input { accent-color: var(--cor-primaria); width: 18px; height: 18px; cursor: pointer; }
.form__field.campo-invalido .form__radios { outline: none; }

/* botão verde "Falar no WhatsApp" */
.btn--whats {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
}
.btn--whats:hover { background: #1EBE5A; }
.btn--whats svg { width: 22px; height: 22px; }

/* botão "Receber ligação" (roxo LC) */
.btn--call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--cor-primaria);
  color: #fff;
}
.btn--call:hover { background: var(--cor-primaria-forte); }
.btn--call svg { width: 22px; height: 22px; }

/* select com seta customizada */
.select-wrap { position: relative; }
.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;
  cursor: pointer;
  color: var(--tinta);
}
.form__field select option { color: var(--tinta); }
.form__field select option[disabled] { color: #9a95a3; }
.select-wrap::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translateY(-70%) rotate(45deg);
  border-right: 2px solid #6b6675;
  border-bottom: 2px solid #6b6675;
  pointer-events: none;
}
.select-wrap select:disabled { background: #F4F2F7; color: #9a95a3; cursor: not-allowed; }

.form__error {
  min-height: 1em;
  font-size: .8rem;
  color: #D33A2C;
}

.form__acoes {
  display: flex;
  gap: 12px;
}
.form__acoes .btn--ghost { flex: none; }
.form__acoes .btn--primary,
.form__acoes .btn--whats,
.form__acoes .btn--call { flex: 1; }

.form__success {
  text-align: center;
  font-weight: 650;
  color: #1B7F4B;
  background: #E7F6EE;
  border-radius: 10px;
  padding: 14px;
}

/* ---------- Rodapé ---------- */
.footer {
  background: #1c1c1c;
  color: #fff;
  /* camada própria: isola o rodapé do fundo fixo borrado, evitando o
     "salto"/tremor ao forçar a rolagem no fim da página. */
  position: relative;
  z-index: 1;
  transform: translateZ(0);
  isolation: isolate;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-block: 30px;
}
.footer .brand__img { height: 52px; }

.brand--footer .brand__mark { background: #fff; color: var(--cor-primaria); }
.brand--footer .brand__name { color: #fff; }

/* lista de links/contato à direita */
.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__links a,
.footer__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  font-size: 15px;
  transition: color .2s ease;
}
.footer__links a:hover { color: var(--cor-lcerp); }
.footer__ico { width: 20px; height: 20px; flex: none; color: var(--cor-lcerp); }

/* barra inferior com o copyright */
.footer__base { border-top: 1px solid rgba(255, 255, 255, .1); }
.footer__copy {
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
  padding-block: 14px;
  margin: 0;
}

@media (max-width: 640px) {
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 24px; }
}

/* ---------- Animações de entrada ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visivel {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn { transition: none; }
  .hero__img,
  .eyebrow--tech .ping,
  .brilho,
  .spark { animation: none; }
}

/* ---------- Responsivo ---------- */
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    padding-block: 56px 64px;
    gap: 56px;
  }

  .hero__visual { max-width: 520px; margin-inline: auto; width: 100%; }
  .pill { font-size: .82rem; padding: 8px 13px; }
  .pill--web { left: -2%; }
  .pill--erp { right: -3%; }

  .duo { grid-template-columns: 1fr; }

  .duo__divider { order: 0; }

  .produto__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* LC WEB e LC ERP: o computador aparece logo após o título.
     display:contents achata o card para intercalar a figura entre os itens. */
  .produto--web .produto__grid,
  .produto--erp .produto__grid,
  .produto--pay .produto__grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  /* LC PAY: respiro extra entre a bordinha do card e a borda da tela */
  .produto--pay .produto__grid {
    margin-inline: 8px;
    padding: clamp(20px, 5vw, 28px);
  }
  .produto--web .sistema-card,
  .produto--erp .sistema-card,
  .produto--pay .sistema-card { display: contents; }
  /* no mobile o brilho é escondido (o card vira coluna com display:contents) */
  .produto--pay .produto__grid::before { display: none; }
  .produto--web .sistema-card__logo,
  .produto--erp .sistema-card__logo,
  .produto--pay .sistema-card__logo    { order: 1; }
  .produto--web .sistema-card__titulo,
  .produto--erp .sistema-card__titulo,
  .produto--pay .sistema-card__titulo  { order: 2; }
  .produto--web .produto__media,
  .produto--erp .produto__media,
  .produto--pay .produto__media        { order: 3; margin-block: 6px; }
  .produto--web .sistema-card__desc,
  .produto--erp .sistema-card__desc,
  .produto--pay .sistema-card__desc    { order: 4; }
  .produto--web .sistema-card__list,
  .produto--erp .sistema-card__list,
  .produto--pay .sistema-card__list    { order: 5; }
  .produto--web .sistema-card .btn,
  .produto--erp .sistema-card .btn,
  .produto--pay .sistema-card .btn      { order: 6; }

  .section { padding-block: 64px; }
}

@media (max-width: 560px) {
  /* Respiro lateral confortável e fontes um pouco menores no celular */
  .container { padding-inline: 22px; }
  .apps-explorer { padding-inline: 22px; }

  /* Seções de produto (LC WEB / LC ERP / LC PAY): conteúdo não colado na borda
     e imagem do sistema num tamanho equilibrado, centralizada (não gigante). */
  .produto__media { width: 100%; }
  .produto__img { max-width: 320px; margin-inline: auto; }
  .sistema-card__titulo { font-size: clamp(1.35rem, 6.2vw, 1.7rem); }
  .sistema-card__desc { font-size: 1rem; }
  .sistema-card__list li { font-size: .98rem; }
  h1 { font-size: clamp(1.8rem, 7vw, 3.4rem); }
  h2 { font-size: clamp(1.45rem, 6vw, 2.5rem); }
  .hero__title { font-size: clamp(1.8rem, 7.4vw, 51px); }

  .form__row { grid-template-columns: 1fr; }
  .form { padding: 28px 20px; }
  .brand__img { height: 34px; }
  .btn--small { padding: 9px 16px; font-size: .82rem; white-space: nowrap; }
  .palco__linhas { display: none; }
  .pill--extra { display: none; }
  .pill--web { top: -2%; left: -2%; }
  .pill--erp { top: 40%; right: -2%; }
}

/* ============================================================
   PREMIUM + ANIMAÇÕES (inspirado no LC Pay)
   ============================================================ */

/* ---------- Tokens extras (tema claro = padrão) ---------- */
:root {
  --superficie: #ffffff;
  --borda: #e7e2ef;
  --glow-primary: rgba(100, 50, 150, .16);
  --glow-accent: rgba(255, 179, 0, .18);
  --circ: rgba(100, 50, 150, .16);
  --circ-forte: rgba(100, 50, 150, .5);
  --orb: rgba(100, 50, 150, .10);
}

/* ---------- Tema escuro: redefine a paleta e o site inteiro vira ---------- */
[data-theme="dark"] {
  color-scheme: dark;   /* campos/autofill do navegador seguem o tema escuro */
  --cor-primaria: #643296;
  --cor-primaria-forte: #643296;
  --preto: #0c0915;
  --tinta: #f4f1fb;
  --tinta-suave: #a79fb8;
  --papel: #0c0915;
  --papel-suave: #12101c;

  --cor-lcweb: #643296;
  --cor-lcweb-escura: #643296;
  --cor-lcweb-tinta: #643296;
  --cor-lcweb-fundo: #171326;

  --cor-lcerp: #ffb300;
  --cor-lcerp-escura: #ffc94d;
  --cor-lcerp-hover: #ffca57;
  --cor-lcerp-tinta: #ffe6a8;
  --cor-lcerp-fundo: #211907;

  --superficie: #16111f;
  --borda: #271f3a;
  --glow-primary: rgba(100, 50, 150, .4);
  --glow-accent: rgba(255, 179, 0, .3);
  --circ: rgba(255, 255, 255, .14);
  --circ-forte: rgba(100, 50, 150, .9);
  --orb: rgba(100, 50, 150, .5);
  --sombra: 0 22px 60px -20px rgba(0, 0, 0, .7);
}

/* fundo base no html para o fundo animado aparecer atrás do conteúdo */
html { background: var(--papel); transition: background-color .35s ease; }
body { background: transparent; transition: color .35s ease; }

/* Ajustes pontuais que dependem de cores fixas no tema escuro */
[data-theme="dark"] .card { background: var(--superficie); border: 1.5px solid var(--neon-soft, var(--borda)); }
[data-theme="dark"] .card__logo { color: var(--tinta); }
[data-theme="dark"] .card__pipe { background: var(--tinta); }
[data-theme="dark"] .form { background: var(--superficie); }
[data-theme="dark"] .form__titulo { color: var(--tinta); }
[data-theme="dark"] .form__field input:not([type="radio"]),
[data-theme="dark"] .form__field textarea,
[data-theme="dark"] .form__field select { background: var(--papel-suave); color: var(--tinta); border-color: var(--borda); }
[data-theme="dark"] .select-wrap select:disabled { background: #17131f; }
/* Botões do hero com a cor idêntica à do modo claro (roxo da marca) */
[data-theme="dark"] .btn--primary { background: #643296; color: #fff; }
[data-theme="dark"] .btn--primary:hover { background: #4B2373; }
[data-theme="dark"] .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .55); }
[data-theme="dark"] .btn--ghost:hover { border-color: #fff; }
[data-theme="dark"] .pill__box { background: var(--superficie); color: var(--tinta); border-color: var(--borda); }
[data-theme="dark"] .form__seg { background: #2a2340; }
/* O hero tem uma imagem de fundo clara fixa: no escuro usamos a arte do modo escuro */
[data-theme="dark"] .hero { background: #0c0915 url("../assets/site/modo dark.webp") center / cover no-repeat; }

/* Logos LC WEB / LC ERP com versão própria para fundo escuro */
[data-theme="dark"] .card--web .card__logo-img,
[data-theme="dark"] .produto--web .sistema-card__logo {
  content: url("../assets/site/lcweb-escuro.png");
}
[data-theme="dark"] .card--erp .card__logo-img,
[data-theme="dark"] .produto--erp .sistema-card__logo {
  content: url("../assets/site/lcerp-escuro.png");
}
/* LC PAY: no fundo escuro usamos a logo com texto branco */
[data-theme="dark"] .produto--pay .sistema-card__logo--pay {
  content: url("../assets/site/LC PAY modo claro (1).png");
}

/* Tema escuro: o roxo dos títulos some no fundo escuro.
   Varia entre branco (texto) e âmbar (destaques). */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] .sistema-card__titulo,
[data-theme="dark"] .cta-copy h2 { color: var(--tinta); }

[data-theme="dark"] h1 em,
[data-theme="dark"] h2 em,
[data-theme="dark"] .cta-copy h2 em { color: var(--cor-lcerp); }

/* mantém o degradê do "cada cliente." no hero (igual ao modo claro) */
[data-theme="dark"] .hero__title em {
  color: transparent;
  background: linear-gradient(90deg, var(--cor-primaria), var(--cor-lcerp));
  -webkit-background-clip: text; background-clip: text;
}

/* marcadores ✓ das listas em âmbar no tema escuro */
[data-theme="dark"] .sistema-card__list li::before,
[data-theme="dark"] .cta-points li::before,
[data-theme="dark"] .card__list li::before { color: var(--cor-lcerp); }

/* chip "Sistema em nuvem" em âmbar no tema escuro */
[data-theme="dark"] .chip--web { color: var(--cor-lcerp); }

/* links "Conhecer o LC WEB/ERP" em âmbar no tema escuro */
[data-theme="dark"] .card__link { color: var(--cor-lcerp); }


/* ---------- Fundo animado (auras + circuito + orbs) ---------- */
/* transform + backface fixam o fundo numa camada própria de GPU: ele é
   rasterizado uma vez e só composto, evitando repinturas (o "salto" do
   rodapé ao forçar a rolagem no limite da página). */
.bg-aura { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; transform: translateZ(0); backface-visibility: hidden; contain: strict; }
.bg-aura .a1, .bg-aura .a2 { position: absolute; border-radius: 50%; filter: blur(90px); }
.bg-aura .a1 { width: 52vw; height: 52vw; top: -16vw; left: -10vw; background: radial-gradient(circle, var(--glow-primary), transparent 70%); }
.bg-aura .a2 { width: 42vw; height: 42vw; top: 34vh; right: -14vw; background: radial-gradient(circle, var(--glow-primary), transparent 70%); }
[data-theme="dark"] .bg-aura .a2 { background: radial-gradient(circle, var(--glow-accent), transparent 70%); }

.bg-circuit { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .55; }
.circuit-lines path { fill: none; stroke: var(--circ); stroke-width: 1.1; }
.circuit-nodes circle { fill: var(--circ); }
.circuit-ring { fill: none; stroke: var(--circ); stroke-width: 1.2; transform-box: fill-box; transform-origin: center; animation: ringPulse 7s ease-in-out infinite; }
@keyframes ringPulse { 0%, 100% { opacity: .4; transform: scale(1); } 50% { opacity: .75; transform: scale(1.04); } }
.circuit-pulses path { fill: none; stroke: var(--circ-forte); stroke-width: 2.2; stroke-linecap: round; stroke-dasharray: 5 95; stroke-dashoffset: 100; filter: drop-shadow(0 0 5px var(--circ-forte)); animation: pulseMove 4.6s linear infinite; }
@keyframes pulseMove { from { stroke-dashoffset: 100; } to { stroke-dashoffset: 0; } }

.orb { position: absolute; border-radius: 50%; background: radial-gradient(circle, var(--orb), transparent 70%); filter: blur(4px); transform: translate(-50%, -50%); will-change: transform; }
.o1 { width: 120px; height: 120px; top: 22%; left: 16%; animation: orbDrift 15s ease-in-out infinite; }
.o2 { width: 90px; height: 90px; top: 60%; left: 24%; animation: orbDrift 12s ease-in-out infinite 1.5s; }
.o3 { width: 60px; height: 60px; top: 76%; left: 12%; animation: orbDrift 13s ease-in-out infinite .8s; }
.o4 { width: 340px; height: 340px; top: 88%; left: 8%; animation: orbDrift 22s ease-in-out infinite .5s; }
.o5 { width: 360px; height: 360px; top: 52%; left: 94%; animation: orbDrift 24s ease-in-out infinite 1s; }
@keyframes orbDrift { 0%, 100% { transform: translate(-50%, -50%); } 50% { transform: translate(calc(-50% + 18px), calc(-50% - 22px)); } }

@media (prefers-reduced-motion: reduce) {
  .circuit-pulses path, .circuit-ring, .orb { animation: none; }
}

/* No celular: fundo estático (sem animações contínuas) e menos camadas borradas.
   Isso tira o custo de composição do GPU durante a rolagem = mais leve, sem travar,
   e economiza bateria no 4G — sem mudar a aparência do site. */
@media (max-width: 900px) {
  .circuit-pulses path, .circuit-ring, .orb { animation: none; }
  .orb { will-change: auto; }
  .o4, .o5 { display: none; }   /* os dois orbs grandes borrados são os mais caros */
  .bg-circuit { opacity: .35; }
}

/* ---------- Barra de progresso do scroll ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 200; transform: scaleX(0); transform-origin: 0 50%; background: linear-gradient(90deg, var(--cor-primaria), var(--cor-lcerp)); transition: transform .1s linear; }
@media (prefers-reduced-motion: reduce) { .scroll-progress { display: none; } }

/* ---------- Header premium (escuro nos dois temas p/ o logo branco) ---------- */
.topbar {
  background: color-mix(in srgb, #1b1526 95%, transparent);
  transition: box-shadow .3s ease, background-color .3s ease;
}
/* Altura fixa: encolher a barra (sticky) mudava a altura do documento e
   empurrava o rodapé ao rolar. Mantemos só o efeito de sombra/fundo. */
.topbar__inner { gap: 20px; min-height: 64px; }
.topbar.scrolled { box-shadow: 0 12px 34px rgba(0, 0, 0, .32); background: #1b1526; }

.nav { display: flex; gap: 26px; margin-left: auto; }
.nav a { position: relative; font-size: .92rem; font-weight: 400; letter-spacing: .01em; color: rgba(255, 255, 255, .72); text-decoration: none; transition: color .2s; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; border-radius: 2px; background: var(--cor-lcerp); transform: scaleX(0); transform-origin: 0 50%; transition: transform .25s; }
.nav a:hover, .nav a.ativo { color: #fff; }
.nav a:hover::after, .nav a.ativo::after { transform: scaleX(1); }
.nav__cta { display: none; }

/* botão hamburger (só no mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  cursor: pointer;
}
.nav-toggle__bar { display: block; width: 20px; height: 2px; margin: 0 auto; background: #fff; border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.topbar__actions { display: flex; align-items: center; gap: 12px; }
.tema-toggle { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 11px; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16); color: #fff; transition: border-color .2s, background-color .2s; }
.tema-toggle:hover { border-color: var(--cor-lcerp); background: rgba(255, 255, 255, .14); }
.tema-toggle .ico { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ico-lua { display: none; }
[data-theme="dark"] .ico-sol { display: none; }
[data-theme="dark"] .ico-lua { display: block; }

/* ---------- Título do hero com destaque em gradiente ---------- */
.hero__title em {
  background: linear-gradient(90deg, var(--cor-primaria), var(--cor-lcerp));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Reveal aprimorado (com leve desfoque) ---------- */
.reveal { filter: blur(3px); transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1), filter .7s; }
.reveal.visivel { filter: none; }
@media (prefers-reduced-motion: reduce) { .reveal { filter: none; } }

/* ---------- Cards com leve inclinação 3D no hover ---------- */
.duo { perspective: 1100px; }
.card { position: relative; transform-style: preserve-3d; transition: transform .25s cubic-bezier(.16, 1, .3, 1), box-shadow .25s, border-color .25s; }
.card > * { position: relative; transform: translateZ(0.01px); z-index: 1; }
@media (prefers-reduced-motion: reduce) { .card { transform: none !important; } }

/* ---------- Borda neon animada dos cards (aparece ao rolar) ---------- */
@property --neon-ang { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes neonGira { to { --neon-ang: 360deg; } }

/* remove o traço colorido do topo; borda vira um contorno neon suave em volta */
.card { border: 1.5px solid var(--neon-soft, rgba(28, 28, 28, .08)); }
.card--web { --neon: #8b5cf6; --neon-soft: rgba(139, 92, 246, .40); }
.card--erp { --neon: #ffb300; --neon-soft: rgba(255, 179, 0, .50); }
[data-theme="dark"] .card--web { --neon: #643296; --neon-soft: rgba(100, 50, 150, .55); }
[data-theme="dark"] .card--erp { --neon: #ffc94d; --neon-soft: rgba(255, 201, 77, .55); }
.card:hover { border-color: var(--neon-soft); }

/* arco de luz neon que corre ao redor da borda */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  /* cometa longo: ponto de luz com rastro comprido correndo pela borda */
  background: conic-gradient(from var(--neon-ang),
    transparent 0deg 250deg,
    color-mix(in srgb, var(--neon) 25%, transparent) 300deg,
    color-mix(in srgb, var(--neon) 70%, transparent) 345deg,
    var(--neon) 356deg,
    #fff 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  /* brilho neon (halo) em volta do cometa */
  filter: drop-shadow(0 0 2px #fff) drop-shadow(0 0 6px var(--neon)) drop-shadow(0 0 12px var(--neon));
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity .5s ease;
  animation: neonGira 11s linear infinite;
}
/* só acende quando os cards entram na tela (reveal do contêiner .duo) */
.duo.visivel .card::before { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .card::before { animation: none; } }

/* ---------- Faixa fina de números (abaixo do hero) ---------- */
.stats-bar { padding-block: 6px; position: relative; z-index: 1; background: var(--papel); }
.stats-bar__row {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  align-items: center;
  border-block: 1px solid var(--borda);
}
.stats-bar__item {
  position: relative;
  text-align: center;
  padding: 20px 16px;
}
/* divisória vertical em fio de cabelo entre os itens */
.stats-bar__item + .stats-bar__item::before {
  content: "";
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 46%;
  background: var(--borda);
}
.stats-bar__num {
  display: block;
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  font-weight: 800; line-height: 1; letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
  color: var(--tinta); /* #1C1C1C no claro; permanece legível no escuro */
}
.stats-bar__lbl {
  display: block; margin-top: 8px;
  font-size: .68rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--tinta-suave); font-weight: 600;
}

/* faixa intermediária: aperta um pouco a nav para caber os 6 links + CTA */
@media (min-width: 861px) and (max-width: 1040px) {
  .nav { gap: 18px; }
  .nav a { font-size: .86rem; }
  .btn--topo { padding-inline: 14px; }
}

/* ---------- Responsivo dos novos blocos ---------- */
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .btn--topo { display: none; }              /* CTA vai para o menu */
  /* menu vira painel suspenso */
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    margin: 0;
    padding: 12px 20px 18px;
    background: #1b1526;
    border-top: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 20px 40px -18px rgba(0, 0, 0, .6);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .nav.aberto { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav a { padding: 12px 4px; font-size: 1rem; border-bottom: 1px solid rgba(255, 255, 255, .06); }
  .nav a::after { display: none; }
  .nav__cta {
    display: inline-block;
    margin-top: 10px;
    text-align: center;
    background: var(--cor-lcerp);
    color: #1c1c1c !important;
    font-weight: 700;
    border: 0 !important;
    border-radius: 12px;
    padding: 13px !important;
  }
}
@media (max-width: 640px) {
  .stats-bar__item { padding: 16px 8px; }
  .stats-bar__lbl { font-size: .6rem; letter-spacing: .08em; }
}

/* ============================================================
   Efeito dos botões: preenchimento de baixo pra cima (#8946AB)
   Dispara no clique/foco — sem efeito ao passar o mouse.
   ============================================================ */
.btn { position: relative; z-index: 0; overflow: hidden; }
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;                 /* fica acima do fundo do botão, abaixo do texto */
  background: #8946AB;
  transform: scaleY(0);
  transform-origin: top;       /* cresce de cima pra baixo */
  transition: transform .32s cubic-bezier(.4, 0, .2, 1);
}
.btn:hover::before,
.btn:focus-visible::before { transform: scaleY(1); }

/* Sem "pulo": o único efeito é o preenchimento de baixo pra cima */
.btn:hover { transform: none; }
.btn--primary:hover { background: var(--cor-primaria); }
.btn--web:hover { background: var(--cor-lcweb); }
.btn--erp:hover { background: var(--cor-lcerp); }
.btn--topo:hover { background: var(--cor-lcerp); }
.btn--whats:hover { background: #25D366; }
[data-theme="dark"] .btn--primary:hover { background: #643296; }

/* Botão "fantasma": mantém a borda (sem alterá-la no hover) */
.btn--ghost:hover { border-color: rgba(28, 28, 28, .25); }
[data-theme="dark"] .btn--ghost:hover { border-color: rgba(255, 255, 255, .55); }

/* Botão "fantasma": ao preencher, o texto fica branco para contrastar */
.btn--ghost:hover, .btn--ghost:focus-visible { color: #fff; }

/* Botão amarelo: preenche com roxo (#643296) e texto branco ao passar o mouse */
.btn--erp::before, .btn--topo::before { background: #643296; }
.btn--erp:hover, .btn--erp:focus-visible,
.btn--topo:hover, .btn--topo:focus-visible { color: #fff; border-color: #643296; }
/* WhatsApp mantém o tom verde no preenchimento */
.btn--whats::before { background: #1EBE5A; }
/* Ligação: preenche com o roxo mais forte */
.btn--call::before { background: var(--cor-primaria-forte); }
.btn--call:hover { background: var(--cor-primaria); }

@media (prefers-reduced-motion: reduce) {
  .btn::before { transition: none; }
}

/* ============================================================
   Card de sistema (seção LC WEB) — estilo com logo + checklist
   ============================================================ */
.sistema-card {
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.sistema-card__logo { height: 46px; width: auto; }
.sistema-card__logo.img-indisponivel { display: none; }
/* Logo LC PAY vem com muita margem em branco no arquivo original:
   recorta o excesso vertical mantendo a marca centralizada. */
.sistema-card__logo--pay {
  height: 52px;
  aspect-ratio: 29 / 10;
  width: auto;
  object-fit: cover;
  object-position: center;
}
.sistema-card__titulo {
  color: var(--cor-lcweb);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800;
  letter-spacing: -.01em;
}
.sistema-card__desc { color: var(--tinta-suave); font-size: 1.06rem; max-width: 40ch; }
.sistema-card__list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 2px 0 6px;
  width: 100%;
}
.sistema-card__list li {
  position: relative;
  padding-left: 30px;
  color: var(--tinta);
  font-weight: 500;
}
.sistema-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cor-lcweb);
  font-weight: 800;
}
/* Card do LC ERP: mesmo formato e mesma cor de texto do LC WEB (roxo) */

/* mantém todo o conteúdo do card alinhado à esquerda */
.sistema-card, .sistema-card__desc,
.sistema-card__list, .sistema-card__list li { text-align: left !important; }

/* ============================================================
   Seção CTA + formulário (card compacto em 2 colunas)
   ============================================================ */
/* Espaçamento vertical enxuto para a seção do formulário caber inteira na
   tela ao pular pela âncora (#formulario), sem ficar cortada atrás do topo. */
.cta-section { padding-block: clamp(32px, 4.5vw, 48px); }
.cta-card {
  position: relative;
  background: var(--superficie);
  border: 1px solid var(--borda);
  border-radius: 24px;
  padding: clamp(24px, 3vw, 40px);
  box-shadow: var(--sombra);
  overflow: hidden;
}
.cta-card::before {
  content: "";
  position: absolute; top: 0; right: 0; width: 55%; height: 100%;
  background: radial-gradient(circle at 82% 22%, var(--glow-primary), transparent 60%);
  pointer-events: none;
}
.cta-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px); align-items: center;
}
.cta-copy h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin: 6px 0 14px; color: var(--tinta); }
.cta-copy h2 em { font-style: normal; color: var(--cor-primaria); }
.cta-text { color: var(--tinta-suave); font-size: 1.02rem; max-width: 42ch; }
.cta-points { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 12px; }
.cta-points li { position: relative; padding-left: 30px; color: var(--tinta); font-weight: 500; }
.cta-points li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--cor-primaria); font-weight: 800; }

/* coluna esquerda do formulário sempre alinhada à esquerda */
.cta-copy,
.cta-copy .eyebrow,
.cta-copy h2 { text-align: left !important; }

/* coluna esquerda: eyebrow/título no topo, foto colada na borda inferior */
.cta-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
}
.cta-copy__img {
  display: block;
  width: min(360px, 100%);
  height: auto;
  margin-top: auto;                                  /* empurra a foto para a base */
  margin-bottom: calc(-1 * clamp(24px, 3vw, 40px));  /* cola na borda inferior do card */
  margin-left: calc(-1 * clamp(24px, 3vw, 40px));    /* cola na margem esquerda do card */
}

/* ajustes finos feitos no editor visual (F4) — só no desktop */
@media (min-width: 861px) {
  .cta-copy__img {
    transform: translate(112px, -120px) scale(1.7);
    transform-origin: center;
  }
}

/* título da seção do formulário */
.cta-section .section__head {
  max-width: 48rem;
  margin-inline: auto;
  margin-bottom: 20px;
  text-align: center;
}

/* card do formulário (coluna direita) */
.form-card {
  background: color-mix(in srgb, var(--tinta) 4%, transparent);
  border: 1px solid var(--borda);
  border-radius: 16px;
  padding: clamp(20px, 2.5vw, 28px);
}
.form-card__titulo { font-size: 1.25rem; font-weight: 700; color: var(--tinta); }
.form-card__sub { color: var(--tinta-suave); font-size: .92rem; margin: 4px 0 6px; }
/* o form dentro do card não repete caixa (sem fundo/sombra/padding próprios) */
.form-card .form { background: transparent; box-shadow: none; padding: 0; border-radius: 0; gap: 16px; margin-top: 6px; }

@media (max-width: 860px) {
  .cta-grid { grid-template-columns: 1fr; }
  /* no mobile mostra só o formulário (esconde a foto) */
  .cta-copy { display: none; }
  /* remove o brilho que criava uma "linha" dividindo o card no mobile */
  .cta-card::before { display: none; }
}

/* Texto de apoio da 2ª seção mais largo (2 linhas), centralizado */
.section--sistemas .section__head { max-width: 60rem; }
.section--sistemas .section__lead { max-width: 56rem; }

/* ============================================================
   2ª seção: bloco único com linha divisória no meio
   ============================================================ */
.duo {
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
  perspective: none;
  background: var(--superficie);
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  box-shadow: var(--sombra);
}
/* metades sem caixa própria, sem borda, sem tilt e sem cometa neon; texto à esquerda */
.duo .card {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0;
  box-shadow: none !important;
  transform: none !important;
  text-align: left !important;
}
/* desliga o cometa de cada metade (ele corria por dentro); fica só o de fora */
.duo .card::before { content: none !important; }
/* chip no topo do card, encostado à esquerda */
.duo .card .chip { align-self: flex-start; }

/* linha divisória no meio (roxo → âmbar, com brilho suave) */
.duo::after {
  content: "";
  position: absolute;
  top: 30px; bottom: 30px; left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, var(--cor-lcweb) 16%, #b07be0 50%, var(--cor-lcerp) 84%, transparent);
  box-shadow: 0 0 12px rgba(139, 92, 246, .45), 0 0 12px rgba(255, 179, 0, .30);
  pointer-events: none;
}

/* cometa neon correndo pelo CONTORNO EXTERNO do bloco (só por fora) */
.duo::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from var(--neon-ang),
    transparent 0deg 120deg,
    rgba(139, 92, 246, .22) 150deg,
    #8b5cf6 174deg, #ffffff 180deg, transparent 186deg,
    transparent 300deg,
    rgba(255, 179, 0, .22) 330deg,
    #ffb300 354deg, #ffffff 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  filter: drop-shadow(0 0 2px #fff) drop-shadow(0 0 7px #8b5cf6) drop-shadow(0 0 12px #ffb300);
  pointer-events: none;
  z-index: 3;
  animation: neonGira 11s linear infinite;
}

@media (max-width: 900px) {
  .duo { grid-template-columns: 1fr; }
  .duo::after { display: none; }               /* no mobile empilha (some a linha do meio) */
  .duo .card + .card { border-top: 1px solid var(--borda) !important; }
}
@media (prefers-reduced-motion: reduce) {
  .duo::before { animation: none; }
}

/* ============================================================
   Ajustes finos do hero (feitos no editor visual F4)
   ============================================================ */
.hero__title { font-size: clamp(2.1rem, 8.5vw, 51px); width: auto; max-width: 601px; }
.hero__title em { font-size: inherit; }
.hero__actions .btn { transform: translateY(-4px); }
/* hero sempre alinhado à esquerda (ignora "centralizar" salvo no editor) */
.hero__content, .hero__title, .hero__subtitle { text-align: left !important; }
.hero__actions { justify-content: flex-start !important; }

/* ============================================================
   Seção Aplicativos — carrossel lento (marquee)
   ============================================================ */
.section--apps {
  position: relative;
  z-index: 1;
  background: var(--papel);
  overflow: hidden;           /* contém o carrossel full-bleed */
}
.section__head--apps {
  max-width: 46rem;
  margin-inline: auto;
  margin-bottom: 40px;
  text-align: center;
}

/* LC PAY: título (logo + frase) centralizado no topo, igual à seção de Apps */
.section__head--pay {
  max-width: 46rem;
  margin-inline: auto;
  margin-bottom: 36px;
  text-align: center;
}
.section__head--pay .sistema-card__logo--pay {
  margin: 0 auto 14px;
}


/* explorador de apps: menu à esquerda + descrição à direita */
.apps-explorer {
  max-width: var(--largura-max);
  margin-inline: auto;
  padding-inline: 24px;
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: stretch;   /* painel com a mesma altura do menu (bloco fixo) */
}

/* menu */
.apps-menu { display: flex; flex-direction: column; gap: 10px; }
.apps-menu__item {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 13px 16px;
  border-radius: 14px;
  background: var(--papel);
  border: 1px solid var(--borda);
  color: var(--tinta);
  font: inherit;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.apps-menu__item:hover { border-color: color-mix(in srgb, var(--cor-primaria) 40%, var(--borda)); }
.apps-menu__item:focus-visible { outline: 2px solid var(--cor-primaria); outline-offset: 2px; }
.apps-menu__ico { width: 30px; height: 30px; flex: none; border-radius: 7px; }
.apps-menu__name { flex: 1; }
.apps-menu__chev { width: 18px; height: 18px; flex: none; opacity: 0; transform: translateX(-4px); transition: opacity .2s ease, transform .2s ease; }
.apps-menu__item.is-active {
  background: var(--cor-primaria);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 12px 26px -14px color-mix(in srgb, var(--cor-primaria) 80%, transparent);
}
.apps-menu__item.is-active .apps-menu__chev { opacity: 1; transform: translateX(0); }

/* painel de descrição */
.apps-detail {
  border: 1px solid var(--borda);
  border-radius: 20px;
  background: var(--papel);
  box-shadow: 0 16px 40px -22px rgba(28, 28, 28, .35);
  padding: clamp(24px, 3vw, 44px);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;      /* referência para a imagem */
  overflow: hidden;        /* imagem que passar da borda fica escondida */
}
/* imagem dos apps: solta dentro do bloco (fora do fluxo, não altera o tamanho do bloco).
   Dá pra mover/redimensionar no editor (F4); o que passar da borda fica escondido. */
.apps-detail__img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  transform: translate(0px, 224px) scale(0.75);   /* posição/tamanho ajustados no editor (F4) */
  transform-origin: center;
}
.apps-panel[hidden] { display: none; }
/* todo o conteúdo do painel alinhado à esquerda */
.apps-detail, .apps-panel, .apps-panel__lead,
.apps-panel__list, .apps-panel__list li { text-align: left; }
.apps-panel__logo { margin-left: 0; margin-right: auto; }
.apps-panel__logo {
  display: block;
  width: 220px; max-width: 62%;
  aspect-ratio: 7 / 2;
  object-fit: cover; object-position: left center;
  margin-bottom: 20px;
}
.apps-panel__lead { color: var(--tinta-suave); font-size: 1.08rem; line-height: 1.6; max-width: 52ch; }
.apps-panel__list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 12px; }
.apps-panel__list li { position: relative; padding-left: 30px; color: var(--tinta); font-weight: 500; }
.apps-panel__list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--cor-primaria); font-weight: 800;
}
[data-theme="dark"] .apps-panel__list li::before { color: var(--cor-lcerp); }

/* troca das artes por tema (baixa só 1 imagem por card) */
[data-theme="dark"] .app-shot--balcao  { content: url("../assets/site/aplicativos/LC%20Balc%C3%A3o%20modo%20escuro.png"); }
[data-theme="dark"] .app-shot--coletor { content: url("../assets/site/aplicativos/LC%20Coletor%20modo%20escuro.png"); }
[data-theme="dark"] .app-shot--dash    { content: url("../assets/site/aplicativos/LC%20Dash%20modo%20escuro.png"); }
[data-theme="dark"] .app-shot--forca   { content: url("../assets/site/aplicativos/LC%20For%C3%A7a%20de%20vendas%20modo%20escuro.png"); }
[data-theme="dark"] .app-shot--gourmet { content: url("../assets/site/aplicativos/LC%20Gourmet%20modo%20escuro.png"); }
[data-theme="dark"] .app-shot--portal  { content: url("../assets/site/aplicativos/LC%20Portal%20modo%20escuro.png"); }

@media (max-width: 760px) {
  /* Acordeão: a descrição aparece logo abaixo do produto selecionado.
     display:contents "achata" menu e detalhe num só fluxo; a propriedade
     order intercala cada painel logo após o seu botão. */
  .apps-explorer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    grid-template-columns: none;
  }
  .apps-menu,
  .apps-detail { display: contents; }

  .apps-menu__item[data-app="balcao"]  { order: 1; }
  .apps-panel[data-app="balcao"]       { order: 2; }
  .apps-menu__item[data-app="coletor"] { order: 3; }
  .apps-panel[data-app="coletor"]      { order: 4; }
  .apps-menu__item[data-app="dash"]    { order: 5; }
  .apps-panel[data-app="dash"]         { order: 6; }
  .apps-menu__item[data-app="forca"]   { order: 7; }
  .apps-panel[data-app="forca"]        { order: 8; }
  .apps-menu__item[data-app="gourmet"] { order: 9; }
  .apps-panel[data-app="gourmet"]      { order: 10; }
  .apps-menu__item[data-app="portal"]  { order: 11; }
  .apps-panel[data-app="portal"]       { order: 12; }
  .apps-detail__img { order: 99; }

  /* o painel visível vira uma "gaveta" logo abaixo do botão ativo */
  .apps-panel:not([hidden]) {
    background: var(--papel);
    border: 1px solid var(--borda);
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 12px 30px -20px rgba(28, 28, 28, .35);
    animation: appsGaveta .24s ease;
  }
  /* chevron do botão ativo aponta para baixo (aberto) */
  .apps-menu__item.is-active .apps-menu__chev { transform: rotate(90deg); opacity: 1; }

  .apps-panel__logo { max-width: 240px; }
  /* imagem dos aparelhos volta ao fluxo normal (sem posição/transform de desktop) */
  .apps-detail { overflow: visible; }
  .apps-detail__img {
    position: static;
    transform: none;
    width: 100%;
    height: auto;
    margin-top: 18px;
  }
}

@keyframes appsGaveta {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   Botão flutuante WhatsApp
   ============================================================ */
.wa-fab {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  height: 60px; width: 60px;
  padding: 0;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .6), 0 4px 12px rgba(0, 0, 0, .25);
  transition: width .25s ease, padding .25s ease, gap .25s ease,
              opacity .3s ease, transform .3s ease, visibility .3s ease;
}
.wa-fab:hover { background: #1FB856; }
.wa-fab:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.wa-fab__ico { width: 32px; height: 32px; flex: none; position: relative; z-index: 1; }
/* anel pulsante */
.wa-fab__pulse {
  position: absolute; inset: 0;
  border-radius: inherit;
  background: #25D366;
  z-index: 0;
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: .55; }
  70%  { transform: scale(1.9); opacity: 0; }
  100% { transform: scale(1.9); opacity: 0; }
}
/* estado oculto (ao chegar/passar o mouse no formulário) */
.wa-fab.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px) scale(.7);
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .wa-fab__pulse { animation: none; opacity: 0; }
}

/* ============================================================
   Ajustes do editor visual LC
   ============================================================ */
body > main:nth-of-type(1) > section:nth-of-type(7) > div:nth-of-type(1) > div:nth-of-type(2) > div:nth-of-type(1) > div:nth-of-type(1) > img:nth-of-type(1) {
  transform: translate(112px, -120px) scale(1.7);
}

body > main:nth-of-type(1) > section:nth-of-type(4) > div:nth-of-type(2) > div:nth-of-type(2) > img:nth-of-type(1) {
  transform: translate(0px, 224px) scale(0.75);
}

body > footer:nth-of-type(1) > div:nth-of-type(1) > ul:nth-of-type(1) > li:nth-of-type(2) > a:nth-of-type(1) {
  transform: translate(0px, 8px) scale(1);
  font-size: 15px;
}

body > footer:nth-of-type(1) > div:nth-of-type(1) > ul:nth-of-type(1) > li:nth-of-type(1) > a:nth-of-type(1) {
  transform: translate(0px, 12px) scale(1);
  font-size: 15px;
}

body > footer:nth-of-type(1) > div:nth-of-type(1) > ul:nth-of-type(1) > li:nth-of-type(3) > span:nth-of-type(1) {
  font-size: 15px;
}

body > main:nth-of-type(1) > section:nth-of-type(6) > div:nth-of-type(1) > figure:nth-of-type(1) > div:nth-of-type(1) > span:nth-of-type(1) {
  transform: translate(0px, 8px) scale(1);
}

/* ============================================================
   Escala global no desktop: deixa o site com o mesmo "ar" do
   zoom de 90% do navegador, por padrão (sem o usuário mexer no zoom).
   Usa a propriedade `zoom` (bem suportada nos navegadores atuais e,
   diferente de `transform: scale`, mantém header fixo e botões no lugar).
   Só no desktop — no celular o layout já foi ajustado e fica como está.
   ============================================================ */
@media (min-width: 900px) {
  body { zoom: 0.85; }
}
