html:not(.ck-ok) { overflow: hidden; }

.cookie-ov {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 16, 12, .55);
  display: grid;
  place-items: end center;
  padding: 16px 16px calc(24px + env(safe-area-inset-bottom));
}

html.ck-ok .cookie-ov { display: none !important; }

.cookie-card {
  width: min(480px, 100%);
  background: #f7f3ec;
  border-radius: 22px;
  padding: 22px 20px 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
}

.cookie-card h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.cookie-card p {
  font-size: 14px;
  line-height: 1.45;
  color: #5c5c5c;
  margin-bottom: 16px;
}

.cookie-ok {
  width: 100%;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #f4c4a6, #e07a55);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.pix-ov {
  position: fixed;
  inset: 0;
  z-index: 180;
  background: rgba(18, 14, 12, .55);
  display: grid;
  place-items: center;
  padding: 18px 12px calc(18px + env(safe-area-inset-bottom));
}

.pix-ov[hidden] { display: none !important; }

.pix-sheet {
  width: min(420px, 100%);
  max-height: min(92vh, 760px);
  overflow: auto;
  background: #f4f0e8;
  border-radius: 22px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .28);
}

.pix-head { position: relative; }

.pix-cover {
  height: 78px;
  overflow: hidden;
  background: #1a0a0a;
  border-radius: 22px 22px 0 0;
}

.pix-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
}

.pix-x {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  color: #555;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}

.pix-who {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  padding: 0 18px;
  margin-top: -30px;
  position: relative;
  z-index: 2;
}

.pix-who > img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  border: 3px solid #f4f0e8;
  background: #fff;
  flex-shrink: 0;
}

.pix-id {
  min-width: 0;
  padding: 34px 0 4px;
}

.pix-id strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.15;
}

.pix-id span {
  display: block;
  color: #8b8b8b;
  font-size: 13px;
  margin-top: 2px;
}

.pix-body { padding: 14px 18px 18px; }

.pix-body h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.pix-bens {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.pix-bens li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.pix-bens li::before {
  content: "✓";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e07b55;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.pix-price {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -.03em;
  margin: 8px 0 4px;
}

.pix-price-sub {
  font-size: 13px;
  font-weight: 600;
  color: #8b8b8b;
  margin: 0 0 14px;
}

.pix-price-sub[hidden] { display: none !important; }

.pix-usar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  margin: 0 0 16px;
  cursor: pointer;
}

.pix-usar[hidden] { display: none !important; }

.pix-usar-txt {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.pix-usar-txt strong {
  font-size: 14px;
  font-weight: 800;
}

.pix-usar-txt em {
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  color: #8b8b8b;
}

.pix-usar input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pix-switch {
  width: 46px;
  height: 28px;
  border-radius: 999px;
  background: #d8d3cb;
  position: relative;
  flex-shrink: 0;
  transition: background .2s;
}

.pix-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .18);
  transition: transform .2s;
}

.pix-usar input:checked + .pix-switch { background: #e07b55; }
.pix-usar input:checked + .pix-switch::after { transform: translateX(18px); }

.pix-pay-label {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pix-row {
  display: flex;
  align-items: stretch;
  border: 1.5px solid #e07b55;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  min-height: 48px;
}

.pix-code {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 12px 12px;
  font-size: 13px;
  font-family: ui-monospace, Consolas, monospace;
  color: #444;
  background: transparent;
  outline: none;
}

.pix-copy {
  border: 0;
  background: #e07b55;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  padding: 0 14px;
  white-space: nowrap;
  cursor: pointer;
}

.pix-copy:disabled { opacity: .55; cursor: wait; }

.pix-retry {
  width: 100%;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: #e07b55;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  margin: 4px 0 10px;
  cursor: pointer;
}

.pix-retry[hidden] { display: none !important; }

.pix-wait {
  font-size: 12px;
  color: #8b8b8b;
  margin: 8px 0 12px;
  min-height: 1em;
}

.pix-wait.is-ok { color: #1f7a3d; font-weight: 700; }
.pix-err { color: #c0392b; font-size: 12px; min-height: 1em; margin-bottom: 8px; }

.pix-alt {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 12px;
  background: #efeae2;
  color: #3a3a3a;
  font-size: 15px;
  font-weight: 700;
  margin-top: 8px;
  cursor: default;
}

.pix-alt--gpay {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 50px;
  border-radius: 999px;
  background: #000;
  border: 0;
  color: #fff;
}

.pix-alt--gpay.is-load {
  background: #e8e8e8;
  color: #8d8d8d;
  gap: 10px;
}

.gpay-spin {
  display: none;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border-radius: 50%;
  background: repeating-conic-gradient(#b5b5b5 0 18deg, transparent 18deg 45deg);
  -webkit-mask: radial-gradient(farthest-side, transparent 42%, #000 44%);
  mask: radial-gradient(farthest-side, transparent 42%, #000 44%);
  animation: gpay-spin .75s linear infinite;
}

.pix-alt--gpay.is-load .gpay-spin { display: block; }

@keyframes gpay-spin {
  to { transform: rotate(360deg); }
}

.gpay-g {
  width: 22px;
  height: 22px;
  display: block;
}

.pix-alt--gpay.is-load .gpay-g {
  filter: grayscale(.25) saturate(.7) brightness(1.12);
  opacity: .8;
}

.gpay-pay {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -.02em;
  color: #fff;
  line-height: 1;
}

.pix-alt--gpay.is-load .gpay-pay { color: #8d8d8d; }
.pix-sheet.is-wallet-only .pix-row,
.pix-sheet.is-wallet-only .pix-alt--gpay,
.pix-sheet.is-wallet-only #pixRetry {
  display: none !important;
}

.pix-alt--wallet {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px 0 12px;
  height: 54px;
  border-radius: 999px;
  cursor: default;
}

.wallet-main {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 700;
  color: #2a2a2a;
  cursor: pointer;
  min-width: 0;
  padding: 0;
}

.wallet-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  line-height: 1.15;
}

.wallet-name {
  display: inline-flex;
  align-items: flex-end;
  letter-spacing: -.02em;
}

.wallet-meta em {
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  color: #8b8b8b;
}

.wallet-dot {
  width: 5px;
  height: 5px;
  margin: 0 0 3px -1px;
  border-radius: 50%;
  background: #f07a3a;
  display: block;
  flex-shrink: 0;
}

.wallet-rec {
  border: 0;
  background: transparent;
  color: #e07b55;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  padding: 8px 10px;
  flex-shrink: 0;
}

.wallet-ov {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: #faf7f2;
  display: grid;
  justify-content: center;
}

.wallet-ov[hidden] { display: none !important; }

.wallet-sheet {
  width: min(480px, 100%);
  height: 100%;
  background: #faf7f2;
  display: flex;
  flex-direction: column;
  padding: 6px 22px calc(18px + env(safe-area-inset-bottom));
}

.wallet-top {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  min-height: 48px;
  margin-bottom: 28px;
}

.wallet-back {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #1a1a1a;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.wallet-top h2 {
  text-align: center;
  font-size: 17px;
  font-weight: 700;
}

.wallet-amt-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 12px 0 28px;
}

.wallet-step {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #e07b55;
  color: #fff;
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.wallet-step:disabled { opacity: .4; cursor: default; }

.wallet-amt {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -.04em;
  min-width: 7.2ch;
  text-align: center;
}

.wallet-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: #e4e0d8;
  border-radius: 999px;
  outline: none;
  margin: 8px 0 36px;
}

.wallet-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e07b55;
  border: 0;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .18);
}

.wallet-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e07b55;
  border: 0;
  cursor: pointer;
}

.wallet-resumo-tit {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
}

.wallet-resumo {
  display: grid;
}

.wallet-resumo > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #ece8e1;
  font-size: 15px;
}

.wallet-resumo dt { color: #3a3a3a; font-weight: 500; }
.wallet-resumo dd { font-weight: 600; color: #1a1a1a; }

.wallet-go {
  margin-top: auto;
  width: 100%;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: #e07b55;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.pix-legal {
  font-size: 11px;
  color: #8b8b8b;
  line-height: 1.4;
  margin: 14px 0 8px;
}

.pix-more {
  width: 100%;
  border: 0;
  background: transparent;
  color: #5c5c5c;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 0 4px;
  cursor: pointer;
}
