.footerpag {
  position: sticky;
  bottom: 0;
  box-sizing: border-box;
  width: min(980px, calc(100vw - 32px));
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  align-self: center;
  min-height: 88px;
  padding: 14px 18px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 8;
}

.footerpag--home {
  margin-bottom: 0;
  position: sticky;
}

.footerpag_GeneralAsk {
  width: 100%;
  min-height: 60px;
  max-width: 920px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  
  
}

.footerpag__qr,
.footerpag__voice,
.footerpag__send {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.footerpag::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  }

.footerpag__qr {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 999px;
  border: 0;
  background: #1677ff;
  color: #ffffff;
  flex: 0 0 auto;
}

.footerpag__qr svg {
  width: 24px;
  height: 24px;
}

.footerpag__input {
  height: 54px;
  border: 0;
  outline: none;
  padding: 0 18px;
  font-size: 18px;
  background: #eef0f3;
  color: #6b7280;
  flex: 1 1 auto;
  min-width: 0;
  border-radius: 999px;
 box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.9), inset 0 -1px 1px rgba(203, 213, 225, 0.65);
}

.footerpag__input::placeholder {
  color: #8b9098;
}

.footerpag__voice {
  width: 44px;
  height: 44px;
  margin-left: 10px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: #6b7280;
  flex: 0 0 auto;
}

.footerpag__voice svg {
  width: 24px;
  height: 24px;
}

.footerpag__send {
  width: 46px;
  height: 46px;
  margin-left: 2px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  flex: 0 0 auto;
  transition: background 160ms ease, transform 120ms ease;
}

.footerpag__send svg {
  width: 24px;
  height: 24px;
  color: #9aa0a6;
}

.footerpag__voice:hover,
.footerpag__send:hover {
  background: rgba(241, 245, 249, 0.95);
}

.footerpag__send:active {
  transform: translateY(1px);
}

@media (max-width: 640px) {
  .footerpag {
    width: calc(100vw - 20px);
    min-height: 78px;
    padding: 10px;
  }

  .footerpag_GeneralAsk {
    padding: 8px 10px;
    gap: 10px;
  }

  .footerpag__qr {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }

  .footerpag__input {
    font-size: 16px;
    height: 48px;
    padding: 0 14px;
  }

  .footerpag__send {
    display: none;
  }
}