.elementor-134 .elementor-element.elementor-element-22de993{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:60px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(min-width:768px){.elementor-134 .elementor-element.elementor-element-22de993{--width:100%;}}/* Start custom CSS for container, class: .elementor-element-22de993 */:root {
  --brand: #78c043; /* verde ZKTeco */
  --ink: #e8ecef;   /* texto em fundo escuro */
  --muted: #aab3bd;
  --bg: #2d3136;     /* fundo do rodapé */
  --bg2: #262a2f;    /* barra inferior */
  --line: rgba(255, 255, 255, .08);
  --max: 1200px;
}

.zk-footer {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  color: var(--ink);
  padding: 48px 20px 20px;
  border-top: 4px solid var(--brand);
}

.zk-footer__grid {
  max-width: var(--max);
  margin: auto;
  display: flex;  /* Alterado para flex */
  flex-wrap: wrap;  /* Permite que as colunas se ajustem em diferentes linhas se necessário */
  gap: 28px;
  justify-content: space-between;  /* Alinha as colunas no espaço disponível */
}

.zk-footer__brand {
  flex: 1 1 230px;  /* Coluna 1 - flexível, mas com largura mínima */
}

.zk-footer__title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .01em;
  margin: 0 0 12px;
  color: #fff;
}

.zk-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.zk-footer__list a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px dashed transparent;
  transition: color .2s, border-color .2s;
}

.zk-footer__list a:hover {
  color: #fff !important;  /* Garante que o texto continue branco */
  border-color: var(--brand);
}

.zk-footer__addr {
  font-style: normal;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 12px;
}

.zk-footer__btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(120, 192, 67, .15);
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(120, 192, 67, .35);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .18s, background .18s, border-color .18s;
}

.zk-footer__btn svg {
  width: 18px;
  height: 18px;
}

.zk-footer__btn:hover {
  transform: translateY(-2px);
  background: rgba(120, 192, 67, .24);
  border-color: var(--brand);
  color: #fff !important; /* Garante que o texto continue branco */
}

.zk-footer__social {
  display: flex;
  gap: 10px;
}

.zk-footer__social a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  transition: transform .18s, background .18s;
}

.zk-footer__social a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .12);
}

.zk-footer__social svg {
  width: 18px;
  height: 18px;
}

.zk-footer__bar {
  border-top: 1px solid var(--line);
  margin-top: 28px;
  padding-top: 16px;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max);
  margin-inline: auto;
  color: var(--muted);
}

.zk-footer__bar a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px dashed transparent;
}

.zk-footer__bar a:hover {
  color: #fff !important; /* Garante que o texto continue branco */
  border-color: var(--brand);
}

/* Responsivo */
@media (max-width: 768px) {
  .zk-footer {
    padding: 36px 16px 16px;
  }

  .zk-footer__bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  /* Ajusta a exibição para telas pequenas */
  .zk-footer__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}/* End custom CSS */