body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  margin: 0;
  display: flex;
  background-color: #f5f5f5;
  justify-content: center;
  user-select: none;
}
html,
body {
  overflow-x: hidden;
  overscroll-behavior-y: none;
}
* {
  -webkit-touch-callout: none;
}

a[href^="tel"] {
  color: inherit !important;
  text-decoration: none !important;
  pointer-events: none; /* impede o click */
}

/* Remove estilização de link automático em números de telefone */
.telefone,
.telefone a {
  color: #000 !important;
  text-decoration: none !important;
  pointer-events: none;
}

/* Desabilita detecção automática de telefone em Safari/iOS */
a[x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none !important;
}

/* === regras SPA: controlar visibilidade das screens === */
.screen {
  display: none;
}
.screen.is-active {
  display: block;
}

/* Quando estiver escondida, marque aria-hidden para leitores */
.screen[aria-hidden="true"] {
  display: none;
}

button {
  border: 0;
  box-shadow: none; /* Remove qualquer sombra */
}

/* Remove o contorno azul/preto que aparece ao clicar */
button:focus {
  outline: none;
}
/* .screen {
  border-bottom: 4px solid #ddd;
  padding: 40px 20px;
  min-height: 100vh;
} */
.title {
  text-align: center;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#screens {
  width: 100%;
}
#one {
  background-color: #f5f5f5;
  padding-bottom: 110px; /* Espaço para o sticky popup não cobrir o conteúdo */
  padding-left: 12px;
  padding-right: 12px;
  box-sizing: border-box;
}
/* ===========================
   Card do saldo (container)
   =========================== */
.saldo {
  padding: 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 18.4px 0 rgba(0, 0, 0, 0.03);
  width: 100%;
  max-width: none;
  margin: 0 auto;
  box-sizing: border-box;
  /* Removido height fixo: agora adapta à altura do conteúdo */
}

/* Flex wrapper que organiza esquerda (info) e direita (ação) */
.container-saldo {
  display: flex;
  align-items: flex-end; /* centraliza verticalmente */
  justify-content: space-between; /* empurra o botão para a direita */
  gap: 16px;
}

/* Lado esquerdo: coluna com label e valor */
.saldo-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0; /* evita overflow do texto em flex */
}

/* linha com "Seu saldo" e ícone */
.saldo-label {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #444;
  font-size: 14px;
  font-weight: 500;
}

/* ícone pequeno ao lado do label */
.p-saldo {
}

/* valor principal: melhor controle tipográfico */
.saldo-valor {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 0; /* removido padding vertical para centralizar */
}

/* se quiser separar inteiro e decimal (opcional no HTML atual) */
.valor-int {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.valor-dec {
  font-size: 16px;
  font-weight: 700;
  transform: translateY(-2px);
}

/* Lado direito: botão */
.saldo-action {
  display: flex;
}

.btn-sacar {
  width: 81px;
  height: 27px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 99px;
  background: #fe2b54;
  border: 0;
  position: relative;
}
.btn-text {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.saldo-text {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: flex;
  align-items: center; /* vertical centralization */
}
.p-bg {
  display: inline-flex;
  width: 13px;
  height: 13px;
  padding: 1.3px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 185.529px;
  border-bottom: 0.371px solid #faa21c;
  background: #fedc60;
}
.p-txt {
  color: #ffe56a;
  text-shadow: 0 0 1.114px rgba(0, 0, 0, 0.25);
  font-size: 7.851px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  z-index: 10;
}
.valor-currency {
  color: #000;
  font-family: Inter;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.pix-badge {
  position: absolute;
  top: -8px;
  right: -3px;
}
.pix-badge img {
  width: 31px;
  height: 11px;
  padding: 2px 4px;
  border-radius: 6px 6px 6px 0;
  background: #edf2f1;
}
.parabens {
  display: flex;
  box-sizing: border-box;
}

.parabens-img {
  align-self: flex-start;
  will-change: transform;
  margin-top: -20px;
  max-width: 100%;
}

.parabens-txtum {
  display: block;
  width: 100%;
}
.parabens-txtum,
.parabens-txtdois {
  color: #000;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.parabens-valor {
  color: #fe2b54;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: block;
}
.bloco-dois {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  background: #fff;
  /* flex-wrap: wrap; */
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  padding: 20px;
  margin: 20px auto;
}

.nobreak {
  white-space: nowrap;
}
.line {
  width: 100%;
  height: 1px; /* controla a espessura */
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1); /* cor bem suave */
  /* margin: 20px 0; */
}
.entre {
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
}
.entre-txt {
  width: 244px;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  flex: 1 1 0;
  min-width: 0;
}
.entre-pts {
  display: block;
  color: #fe2b54;
}

.btn-concluido-text {
  color: #d4d4d4;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.btn-concluido {
  width: 89px;
  height: 35px;
  display: inline-flex;
  border-radius: 99px;
  background: #f1f1f3;
  justify-content: center;
  align-items: center;
  pointer-events: none; /* Torna o botão não clicável */
}
.entre-data {
  display: block;
  color: #ce425f;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 6px;
}
.concluiu {
  height: 26px;
  border-radius: 6px;
  background: #f8f9fb;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}
.concluiu-txt {
  width: 288px;
  color: #848486;
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px;
  padding: 6px 12px;
}
/* day tracker */
/* Reset básico para garantir que o padding não estoure o tamanho */
.dia,
.line-dois {
  margin-top: 20px;
  text-align: center;
}
.day-tracker * {
  box-sizing: border-box;
  font-family: "Inter", sans-serif; /* Certifique-se de ter a fonte Inter importada */
}

/* Container Principal */
.day-tracker {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

/* Coluna do dia individual */
.day-tracker__item {
  width: 45px;
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
}

/* Caixa principal do ícone (fundo) */
.day-tracker__box {
  align-self: stretch;
  height: 45px;
  position: relative;
  background: #f8f9fb;
  overflow: hidden;
  border-radius: 8.82px;
}

/* Conteúdo interno (Moeda + Valor) */
.day-tracker__content {
  width: 45px;
  position: absolute;
  left: 0px;
  top: 6px;
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
}

/* Moeda (Círculo Externo) */
.day-tracker__coin {
  width: 16px;
  height: 16px;
  position: relative;
  background: #fedc60;
  overflow: hidden;
  border-radius: 50%; /* 228.34px no original arredondado para 50% */
  border-bottom: 0.46px solid #faa21c;
}

/* Moeda (Círculo Interno) */
.day-tracker__coin-inner {
  width: 12.8px;
  height: 12.8px;
  position: absolute;
  left: 1.6px;
  top: 1.6px;
  background: #ffa31a;
  overflow: hidden;
  border-radius: 50%;
  outline: 0.23px solid #feae0f;
}

/* Efeito de brilho/sombra na moeda */
.day-tracker__coin-effect {
  width: 15.77px;
  height: 15.77px;
  position: absolute;
  left: -1.6px;
  top: -1.6px;
  background: #d9d9d9;
  box-shadow: -0.23px 1.37px 1.14px 0.46px #dc8019;
  border-radius: 9999px;
}

/* Letra "P" dentro da moeda */
.day-tracker__coin-text {
  position: absolute;
  left: 3.43px;
  top: 0.69px;
  color: #ffe56a;
  font-size: 9.66px;
  font-weight: 700;
  text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.25);
}

/* Texto do valor ("50") */
.day-tracker__value {
  align-self: stretch;
  text-align: center;
  color: black;
  font-size: 11px;
  font-weight: 600;
}

/* Overlay (Camada rosa por cima) */
.day-tracker__overlay {
  width: 45px;
  height: 45px; /* Forçado altura para cobrir o box */
  padding: 13px;
  position: absolute;
  left: 0px;
  top: 0px;
  background: rgba(255, 240, 243, 0.9);
  overflow: hidden;
  border-radius: 8.82px;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

/* Ícone dentro do overlay */
.day-tracker__icon-wrapper {
  width: 19px;
  height: 19px;
  position: relative;
  overflow: hidden;
}

.day-tracker__icon-shape {
  /* width: 18.3px;
  height: 13.32px;
  position: absolute;
  left: 0.35px;
  top: 3.64px;
  background: #fe2b54; */
}

/* Texto inferior ("Dia 01") */
.day-tracker__label {
  align-self: stretch;
  text-align: center;
  color: #a4a4a4;
  font-size: 10px;
  font-weight: 600;
}
.entre-txt-dois {
  padding-right: 18px;
}
.entre-txt-dois .entre-pts {
  display: inline;
}
.assista {
  margin-left: 6px;
  width: 118px;
  height: 19px;
  display: inline-flex;
  border-radius: 99px;
  background: #f1f1f1;
  justify-content: center;
  align-items: center;
  position: relative; /* Cria o contexto de posicionamento */
  overflow: visible; /* Garante que o SVG possa sair para fora da caixa */
}
.assista-tail {
  position: absolute;
  left: 25px; /* A distância que você pediu */
  top: 100%; /* Cola exatamente na borda de baixo */

  /* Dica Pro: Sobe 1 pixel para evitar uma linha branca fina entre o balão e o bico */
  margin-top: -1px;
}
/* .assista::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 25px;
  width: 0;
  height: 0;
  border-left: 4.5px solid transparent;
  border-right: 4.5px solid transparent;
  border-top: 9px solid #f1f1f1;
} */
.assista-txt {
  color: #444;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
}
/* Container Principal */
.progress-bar {
  position: relative; /* Necessário para a linha absoluta funcionar */
  display: flex;
  justify-content: space-between; /* Espalha os itens igualmente */
  align-items: flex-start;
  width: 100%;
  margin-top: 11px; /* Espaçamento superior */
  padding: 0 10px; /* Um respiro nas laterais */
  box-sizing: border-box;
}

/* A Linha Cinza (Track) */
.progress-bar::before {
  content: "";
  position: absolute;
  top: 12px; /* Ajuste vertical: metade da altura do ícone (ex: 24px / 2) */
  left: 0;
  right: 0;
  height: 5px; /* Espessura da linha */
  background-color: #f1f1f1; /* Cor da linha */
  border-radius: 10px;
  z-index: 0; /* Fica atrás das moedas */
}

/* Cada bloco (Ícone + Texto) */
.progress-step {
  position: relative;
  z-index: 1; /* Garante que fique SOBRE a linha */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px; /* Distância entre a moeda e o texto */
}

/* Wrapper do Ícone (Moeda) */
.step-icon {
  width: 24px; /* Ajuste o tamanho conforme seu SVG real */
  height: 24px;
  background-color: #fff; /* IMPORTANTE: Esconde a linha atrás da moeda */
  border-radius: 50%; /* Garante que o fundo branco seja redondo */
  display: flex;
  justify-content: center;
  align-items: center;
  /* Opcional: se o SVG for menor que o wrapper, use padding */
}

.step-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

/* Texto dos pontos */
.step-text {
  color: #a4a4a4;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
}
.hide {
  visibility: hidden;
}
.posicao-direita {
  align-self: flex-end; /* Para flex-direction: column */
  margin-left: auto; /* Para flex-direction: row */
}

/* Opcional: Faz a setinha (tail) ficar na direita também */
.posicao-direita .assista-tail {
  left: auto; /* Desliga o posicionamento esquerdo */
}
.assista {
  display: flex;
}
.taildois {
  position: absolute;
  right: 39px;
  top: 100%; /* Cola exatamente na borda de baixo */

  /* Dica Pro: Sobe 1 pixel para evitar uma linha branca fina entre o balão e o bico */
  margin-top: -1px;
}
.obtem-txt {
  margin-top: 20px;
  margin-left: 9px;
  display: inline-block;
  width: 288px;
  color: #848486;
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px;
}
.popup {
  padding: 20px;
  text-align: center;
  width: 320px;
  height: 287px;
  box-sizing: border-box;
  overflow: visible;
  border-radius: 16px;
  background: linear-gradient(180deg, #fdffe6 5.57%, #fff 100%);
  position: relative;
  margin: 12px auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.gol {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding-top: 5px;
  display: block;
}
.gol-img {
  width: 129px;
  height: 95px;
  position: absolute;
  top: -75px;
  left: 50%;
  transform: translateX(-50%);
}
.gol-txt {
  padding-top: 12px;
  width: 270px;
  display: inline-flex;
  color: #403f3a;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: center;
}
.gol-valor {
  display: inline-flex;
  padding-top: 20px;
  margin-bottom: 10px;
  color: #000;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.timer-wrapper {
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.timer-clock {
  gap: 4px;
  display: flex; /* 1. Transforma em um container flexível */
  align-items: center; /* 2. Alinha todos os filhos (caixas E separadores) verticalmente */
  justify-content: center; /* 3. Alinha horizontalmente no centro */
}
.timer-box {
  display: flex;
  padding: 4px;
  border-radius: 2px;
  background: #f1f1f3;
  justify-content: center;
  align-items: center;
  font-size: 10px;
}
.timer-label {
  color: #403f3a;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: center;
}

.btn-obrigado {
  width: 270px;
  height: 53px;
  justify-content: center;
  align-items: center;
  border-radius: 99px;
  background: #fe2b54;
  border: 0;
  display: flex;
  margin: 12px auto 0 auto; /* adiciona espaçamento acima e centraliza */
  cursor: pointer;
}

/* Botão dentro do popup deve respeitar o padding-bottom */
.popup > .btn-obrigado {
  margin-bottom: 0;
  margin-top: auto; /* empurra para baixo se necessário */
}
.saldo-dois {
  width: 100%;
  height: 130px;
  overflow: hidden;
  border-radius: 10px;
  /* border-bottom: 1px dashed #303030; */
  flex-shrink: 0;
  background: #000;
  box-sizing: border-box;
}
.saldo-text-dois {
  color: #fff;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.valor-currency-dois {
  color: #fff;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.total-pontos {
  color: #828282;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.saldo-valor-dois {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.saldo-info-dois {
  gap: 8px;
}
.saldo-tres {
  display: flex;
  width: 100%;
  overflow: hidden;
  padding: 10px 20px;
  border-radius: 10px;
  background: #000;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  box-sizing: border-box;
}
.total-pontos-dois {
  color: #828282;
  font-family: Inter;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

#three {
  background-color: #f5f5f5;
  padding-left: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  box-sizing: border-box;
}
.saldo-dois {
  --display: flex;
  --min-height: 117px;
  --flex-direction: row;
  --container-widget-width: calc(
    (1 - var(--container-widget-flex-grow)) * 100%
  );
  --container-widget-height: 100%;
  --container-widget-flex-grow: 1;
  --container-widget-align-self: stretch;
  --flex-wrap-mobile: wrap;
  --align-items: center;
  border-style: dashed;
  --border-style: dashed;
  border-width: 0px 0px 1px 0px;
  --border-top-width: 0px;
  --border-right-width: 0px;
  --border-bottom-width: 1px;
  --border-left-width: 0px;
  border-color: #303030;
  --border-color: #303030;
  --border-radius: 12px 12px 12px 12px;
  --padding-top: 0px;
  --padding-bottom: 0px;
  --padding-left: 0px;
  --padding-right: 0px;
}
.saldo-sacar {
  margin-top: 16px;
}
.saldo-sacar-text {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.transferencia-txt {
  color: #828282;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.pix-logo-transf {
  width: 40px;
  height: 13.684px;
  padding-left: 4px;
}

.saldo-valor-tres {
  height: 34px;
  gap: 16px;
  display: flex;
  align-items: center;
  gap: 6px; /* espaçamento entre itens */
  /* opcional: evitar quebra */
  /* flex-wrap: nowrap; */
  border-bottom: 1px solid #e2e2e4;
  padding-bottom: 5px;
  margin-bottom: 12px;
}

/* garante que o texto e os ícones internos fiquem em linha e centrados */
.transferencia-txt {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.saldo-info-sacar {
  gap: 16px;
}

.widget-container {
  /* Define uma largura para o container principal */
  margin-top: 21px;
}

.botoes-row {
  display: flex; /* Alinha os botões em linha */
  gap: 8px; /* Espaço entre os botões */
  margin-bottom: 10px; /* Espaço abaixo da linha de botões */
}

.btn-valor {
  flex: 1; /* Faz os botões dividirem o espaço igualmente */

  /* Cor de fundo cinza claro */
  background-color: #f0f2f5;

  /* Borda transparente para evitar que o layout "pule" ao adicionar a borda ativa */
  border: 1.5px solid transparent;

  border-radius: 6px; /* Cantos arredondados */
  padding: 12px 0; /* Espaçamento interno (vertical, horizontal) */
  font-size: 16px;
  font-weight: bold;
  color: #333; /* Cor do texto (escuro) */
  cursor: pointer;
  transition: all 0.2s ease; /* Efeito de transição suave */
}

/* Estilo do botão ativo (selecionado) */
.btn-valor.btn-active {
  background-color: #fff6f7; /* Fundo rosa bem claro */
  border-color: #f84d63; /* Cor da borda rosa/vermelho */
  color: #f84d63; /* Cor do texto rosa/vermelho */
}
.botoes-row > .btn-valor {
  color: #000;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.botoes-row > .btn-active {
  color: #f82e5a;
}
.display-total {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  height: 50px;
  background-color: #f0f2f5; /* Mesmo cinza dos botões */
  border-radius: 8px; /* Mesmos cantos arredondados */
  text-align: center;
  font-size: 16px; /* Fonte maior */
  font-weight: 700;
  padding: 10px;
  color: #000; /* Cor do texto */
}
.botoes-row-sacar {
  margin-bottom: 8px;
}
.btn-sacar-dois {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  height: 41px;
  border-radius: 8px;
  background: #fe2b54;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.obtem-sacar > .obtem-txt {
  color: #747378;
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.btn-textdois-sacar {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.obtenha-title {
  gap: 8px;
}
.moedas-txt {
  width: 251px;
  color: #747378;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/* Inverte apenas quando houver a flor dentro do bloco de saque */
.saldo-sacar .container-saldo {
  align-items: center; /* centra verticalmente texto e imagem */
}
.flor {
  width: 82px;
  height: 82px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  margin-right: -20px;
}
.saldo-sacar .flor {
  order: 2; /* manda a imagem para o fim do flex container (direita) */
  align-self: center;
  margin-left: -30px; /* espaço entre texto e imagem */
  flex-shrink: 0; /* evita que a imagem encolha */
}
.saldo-sacar .obtenha-title {
  order: 1; /* garante que o texto venha antes da imagem */
}
.btn-sacar-indisponivel {
  display: flex;
  width: 100%;
  height: 41px;
  padding: 12px 10px;
  border-radius: 8px;
  background: #f1f1f3;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: not-allowed;
  pointer-events: none; /* 🔥 evita clique */
  opacity: 0.6; /* deixa visualmente bloqueado */
}
.btn-indis {
  color: #d4d4d4;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.ddd,
.telefone {
  color: #ababab !important;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.linha-ddd {
  width: 1px;
  height: 18px;
  background: #e4e4e4;
}
.obtem-sacar > .recarga-txt {
  color: #747378;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: center;
}
.border-none {
  border: 0;
}
.saque-title {
  overflow: hidden;
  background: #fefefe;
  border-bottom: 1px solid #e0e0e0;
}
.saque-popup {
  height: 300px;
  margin: 0 auto;
  box-sizing: border-box;
  background-color: #fefefe;
  /* border-radius: 10px 10px 0 0; */
  border-radius: 10px;
  overflow: hidden;
}
#five .saque-popup,
#six .saque-popup {
  height: auto !important;
  min-height: 300px;
}
#four {
}
#four a {
  text-decoration: none;
}
.pix-solo {
  width: 13px;
  height: 13px;
}
.pix-title {
  align-self: stretch;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.pix-subtitle {
  align-self: stretch;
  color: #747378;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.pix-icon {
  display: flex;
  width: 30px;
  height: 19px;
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid #e3e3e3;
  box-sizing: border-box;
  background: #fefeff;
  justify-content: center;
  align-items: center;
}
.pix-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  background-color: #fefefe;
  height: 42px;
  padding: 16px;
  cursor: pointer;
  transition: background-color 0.15s ease;
  user-select: none;
}

.pix-item:hover {
  background-color: #f8f8f8;
}

.pix-item:active {
  background-color: #e8e8e8;
}
.pix-details {
  display: flex;
  flex-direction: column;
}
.pix-subtitle {
  margin-top: 8px;
}
.pix-arrow {
  margin-left: auto; /* empurra para a direita */
  align-self: flex-start; /* cola no topo do container flex */
  /* já tem width/height, ajuste se precisar */
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
} /* Define uma fonte base e um fundo para melhor visualização */

/* O contêiner principal do nosso formulário */
.form-container {
  box-sizing: border-box;
  padding: 20px;
  background-color: #ffffff;
}

/* Espaçamento entre os grupos de campos */
.form-group {
  margin-bottom: 24px;
}
.form-group:last-child {
  margin-bottom: 0;
}

/* Estilo dos rótulos (Nome, Chave PIX) */
.field-label {
  font-size: 16px;
  font-weight: 600; /* Um "negrito" suave */
  color: #1c1e21; /* Cor preta/cinza escuro */
  display: block;
}

/* Estilo do campo de input (Nome completo) */
input[type="text"] {
  width: 100%;
  border: none; /* Remove todas as bordas */
  border-bottom: 1px solid #ddd; /* Adiciona apenas a linha inferior */
  font-size: 16px;

  background-color: transparent; /* Fundo transparente */
}

/* Cor do texto do placeholder */
input[type="text"]::placeholder {
  color: #999;
  opacity: 1;
}

/* Remove a borda azul padrão ao focar no input */
input[type="text"]:focus {
  outline: none;
  border-bottom-color: #555; /* Pode mudar a cor da linha ao focar */
}

/* Estilo do 'botão' seletor de Chave PIX */
.pix-selector {
  margin-top: 20px;
  padding-bottom: 16px;
  width: 100%;
  border: none;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  background-color: transparent;

  /* Mágica do layout: alinha o texto e a seta */
  display: flex;
  justify-content: space-between;
  align-items: center;

  cursor: pointer; /* Muda o mouse para 'mãozinha' */
  transition: background-color 0.2s ease;
}

/* Efeito suave ao passar o mouse */
.pix-selector:hover {
  background-color: #f9f9f9;
}

/* Texto 'Escolha o tipo...' */
.pix-selector .placeholder-text {
  color: #999; /* Mesma cor do placeholder */
}

/* A seta '>' */
.pix-selector .arrow {
  color: #999;
  font-weight: bold;
  font-size: 18px;
}
.field-label {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
input.nome-completo {
  margin-top: 20px;
  padding-bottom: 16px;
}
input.nome-completo,
.placeholder-text {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.arrow-tois {
  margin-left: auto; /* empurra para a direita */
  align-self: flex-start;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4.857px;
  height: 8.943px;
  flex-shrink: 0;
}
.btn-vincular {
  margin-top: -5px;
}

/* Botão dentro da #five deve ter width 100% */
#five .btn-vincular,
#five .btn-sacar-dois {
  width: 100%;
  max-width: 100%;
} /* O contêiner principal para a lista de seleção */
.selection-container {
  width: 100%;
  max-width: 400px;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden; /* Garante que as bordas fiquem bonitas */
}

/* Cada linha de opção */
.option-row {
  /* Define o "container" para nossa linha falsa */
  position: relative;
}

/* "Desenha" a linha falsa como um elemento ::after */
.option-row::after {
  content: "";
  position: absolute;
  bottom: 0; /* Alinha na parte de baixo */
  height: 1px;
  background-color: #ddd; /* A cor da sua linha */

  /* A MÁGICA: Define o recuo de 20px em cada lado */
  left: 20px;
  right: 20px;
}

/* Esconde a linha falsa do último item da lista */
.option-row:last-child::after {
  /* display: none; */
}
/* O 'label' é o nosso contêiner flexível */
.option-row label {
  display: flex;
  justify-content: space-between; /* Joga o texto para a esquerda e o rádio para a direita */
  align-items: center;
  padding: 20px 20px 0px 20px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  /* border-bottom: 1px solid #ddd; */
}

.option-row label:hover {
  /* background-color: #f9f9f9; */
}

/* O texto (CPF, E-mail, etc.) */
.option-text {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/* 1. ESCONDEMOS O RÁDIO ORIGINAL */
.option-row input[type="radio"] {
  display: none;
}

/* 2. CRIAMOS O NOSSO RÁDIO FALSO (O CÍRCULO) */
.custom-radio {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%; /* Deixa redondo */

  /* Estilo "Não selecionado" (borda cinza, fundo branco) */
  border: 2px solid #e0e0e0;
  background-color: #fff;
  box-sizing: border-box;
  transition: all 0.2s ease-in-out; /* Animação suave */
}

/* 3. A MÁGICA: MUDAMOS O ESTILO DO RÁDIO FALSO QUANDO O ORIGINAL ESTÁ :checked */
.option-row input[type="radio"]:checked + .custom-radio {
  border-color: #fff; /* Borda rosa */
  background-color: #ff2657; /* <--- Mude aqui para a cor rosa */
  box-shadow: 0 0 0 1px #ff2657; /* Brilho externo */
  box-sizing: border-box;
  border-width: 2.5px;
}
.option-row label {
  padding-bottom: 13px;
}
/* =========================================
   Estilos para a nova tela de loading (#seven)
   ========================================= */

/* Preloader fake (sem animação de spin) */
#preloader-fake {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  visibility: visible; /* Inicia visível */
  opacity: 1; /* Inicia com opacidade total */
  transition: opacity 0.5s ease, visibility 0.5s ease; /* Animação para ocultar */
}

/* Estilo da página de carregamento após o preloader fake */
#loading-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Alinha os itens ao fundo */
  align-items: flex-start; /* Alinha os itens à esquerda */
  padding-left: 20px;
  padding-right: 20px;
  z-index: 9998;
  visibility: hidden; /* Inicialmente oculto */
  opacity: 1; /* Opacidade total no início */
  transition: opacity 1s ease, visibility 1s ease; /* Animação de fade out */
  box-sizing: border-box;
}

/* Barra de progresso */
.progress-bar-loading {
  width: 100%;
  height: 8px;
  background-color: #d8d8d8;
  border-radius: 4px;
  margin-top: 48px;
  margin-bottom: 100px;
  position: relative;
  overflow: hidden;
  min-width: 0;
  flex-shrink: 1;
}

.progress-bar-fill {
  height: 100%;
  width: 0%; /* Começa com 0% */
  background-color: #fe2b54;
  transition: width 2s ease; /* Animação de transição suave para a largura da barra */
}

/* Status text */
.status-text {
  font-family: "Inter", sans-serif;
  font-weight: 900; /* Fonte mais grossa */
  font-size: 28px;
  color: black;
  margin-top: 48px;
  width: 100%;
  text-align: left; /* Alinhado à esquerda */
  transform: translateY(20px); /* Começa ligeiramente abaixo */
  opacity: 0; /* Começa invisível */
  transition: transform 0.5s ease, opacity 0.5s ease; /* Animação de deslizar para cima */
  min-width: 0;
  flex-shrink: 1;
}

/* Quando #seven estiver ativo, permite overflow hidden no body */
body.loading-active {
  overflow: hidden;
}

/* Garante que #seven ocupe toda a tela */
#seven {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 10000;
}

/* =========================================
   Estilos para a página de confirmação (#nine)
   ========================================= */
#nine {
  background-color: #ffffff;
  padding: 0;
  overflow-y: auto;
  height: 100dvh; /* Use dynamic viewport height */
  min-height: 100dvh;
  box-sizing: border-box;
  position: relative;
}

/* Garante que #nine comece no topo quando exibida */
#nine.is-active {
  scroll-behavior: auto;
}

.confirmation-container {
  padding-top: 16px;
  padding-left: 16px;
  padding-right: 16px;
  max-width: 480px;
  margin: 0 auto;
  box-sizing: border-box;
  padding-bottom: 0;
  width: 100%;
  overflow-x: hidden; /* Previne overflow horizontal */
}

.confirmation-section {
  box-sizing: border-box;
  width: 100%;
}

.confirmation-header {
  padding: 16px 16px 12px;
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
}

.confirmation-logo {
  height: 28px;
  display: inline-block;
  margin-bottom: 12px;
}

.confirmation-logo img {
  height: 100%;
  width: auto;
}

.confirmation-section {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 16px;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  overflow: hidden; /* Previne que filhos ultrapassem */
}

.confirmation-balance {
  background: linear-gradient(135deg, #000000, #1a1a1a);
  color: white;
  border: none;
}

.confirmation-section-title {
  font-size: 13px;
  font-weight: 500;
  color: #666666;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.confirmation-balance-title {
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 6px;
}

.confirmation-balance-amount {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.confirmation-balance-subtitle {
  font-size: 12px;
  opacity: 0.9;
  font-weight: 400;
}

.confirmation-fee-amount {
  font-size: 22px;
  font-weight: 600;
  color: #ea445a;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.confirmation-fee-description {
  font-size: 13px;
  color: #666666;
  line-height: 1.4;
}

.confirmation-receipt-grid {
  display: grid;
  gap: 12px;
}

.confirmation-receipt-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e5e5;
}

.confirmation-receipt-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.confirmation-receipt-label {
  font-size: 12px;
  color: #666666;
  font-weight: 400;
}

.confirmation-receipt-value {
  font-size: 12px;
  font-weight: 500;
  color: #1a1a1a;
  text-align: right;
}

.confirmation-pix-key {
  background: #f8f8f8;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  padding: 12px;
  font-family: "Monaco", "Menlo", monospace;
  font-size: 11px;
  text-align: center;
  color: #1a1a1a;
  margin-top: 6px;
  word-break: break-all;
}

.confirmation-divider {
  height: 1px;
  background: #e5e5e5;
  margin: 16px 0;
}

.confirmation-requirements-grid {
  display: grid;
  gap: 16px;
}

.confirmation-requirement-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.confirmation-requirement-icon {
  background: rgba(234, 68, 90, 0.1);
  color: #ea445a;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
}

.confirmation-requirement-icon.confirmation-reembolso {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.confirmation-requirement-content {
  flex: 1;
}

.confirmation-requirement-title {
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 3px;
}

.confirmation-requirement-title.confirmation-reembolso {
  color: #10b981;
}

.confirmation-requirement-description {
  font-size: 12px;
  color: #666666;
  line-height: 1.4;
}

.confirmation-cta-button {
  background: #ea445a;
  color: white;
  border: none;
  border-radius: 7px;
  padding: 16px;
  font-size: 15px;
  font-weight: 500;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
  text-decoration: none;
  display: block;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
  outline: none;
  box-shadow: none;
}

.confirmation-cta-button:focus,
.confirmation-cta-button:active,
.confirmation-cta-button:visited,
.confirmation-cta-button:hover {
  outline: none;
  border: none;
  text-decoration: none;
  color: white;
}

.confirmation-cta-button:hover {
  opacity: 0.95;
}

.confirmation-timer {
  font-size: 11px;
  color: #10b981;
  font-weight: 500;
  text-align: center;
  margin-top: 12px;
}

.confirmation-success-message {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 6px;
  padding: 12px;
  text-align: center;
  color: #10b981;
  font-weight: 500;
  font-size: 13px;
  margin-top: 12px;
  display: none;
}

.confirmation-reembolso-badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  margin-left: 6px;
}

.confirmation-security-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin: 20px 0;
}

.confirmation-security-item {
  text-align: center;
}

.confirmation-security-icon {
  font-size: 14px;
  color: #ea445a;
  margin-bottom: 6px;
}

.confirmation-security-label {
  font-size: 10px;
  color: #999999;
  font-weight: 400;
}

.confirmation-footer {
  text-align: center;
  padding: 16px 0;
  border-top: 1px solid #e5e5e5;
}

.confirmation-footer-text {
  font-size: 11px;
  color: #999999;
  margin-bottom: 6px;
}

.confirmation-footer-link {
  color: #ea445a;
  text-decoration: none;
  font-weight: 500;
  font-size: 11px;
}
.expira-saldo {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
}
.timer-wrapper {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  /* Cor de fundo cinza, como na imagem */
  background-color: #e6e6e6;
  border-radius: 4px;
  height: 36px;
}

#countdown-text {
  color: #000;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

#timer {
  color: #000;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.saldo-dois {
  margin-top: 20px;
}
.sticky-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0; /* Garante que o margin: 0 auto funcione para centralizar */
  margin: 0 auto; /* Centraliza no desktop */
  width: 100%;
  max-width: 350px; /* Mesma largura do container principal (.saldo) */
  z-index: 99;
  transform: translateY(100%); /* Escondido por padrão */
  transition: transform 0.3s ease-in-out;
  display: block;
  pointer-events: none; /* Evita bloquear cliques quando escondido (se transform falhar) */
}

.sticky-popup.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

.saldo-popup,
.expira-em-popup {
  background-color: white;
  margin: 0 auto; /* Centraliza o conteúdo se tiver max-width */
  max-width: 100%; /* Garante que ocupe a largura */
}

.saldo-popup {
  border-radius: 0;
  padding-bottom: 20px; /* Espaço extra para segurança em mobile */
}

.expira-em-popup {
  border-radius: 8px 8px 0 0;
  width: fit-content; /* O timer só ocupa o necessário */
  padding: 0 15px; /* Padding lateral */
  margin: 0 auto; /* Centraliza horizontalmente (para o popup #two) */
}

/* Ajuste específico para o sticky popup (#popup-um) */
#popup-um .expira-em-popup {
  width: 100%; /* Ocupa 100% da largura */
  display: flex;
  justify-content: center; /* Centraliza o conteúdo interno */
  margin: 0; /* Remove margem auto pois width é 100% */
  box-sizing: border-box;
}
.line-expira {
}
.expira-em-popup {
  --display: flex;
  --min-height: 117px;
  --flex-direction: row;
  --container-widget-width: calc(
    (1 - var(--container-widget-flex-grow)) * 100%
  );
  --container-widget-height: 100%;
  --container-widget-flex-grow: 1;
  --container-widget-align-self: stretch;
  --flex-wrap-mobile: wrap;
  --align-items: center;
  border-style: dashed;
  --border-style: dashed;
  border-width: 0px 0px 1px 0px;
  --border-top-width: 0px;
  --border-right-width: 0px;
  --border-bottom-width: 1px;
  --border-left-width: 0px;
  border-color: #f5f5f5;
  --border-color: #f5f5f5;
  --border-radius: 12px 12px 12px 12px;
  --padding-top: 0px;
  --padding-bottom: 0px;
  --padding-left: 0px;
  --padding-right: 0px;
}
.timer-separator {
  width: 3px;
  height: 7px;
  color: #000;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 53%;
  text-align: center;
}
.btn-txt-obrigado {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.popup > .timer-wrapper {
  background: none;
}

/* === modal popup (section id="two") === */
.screen.is-modal {
  position: fixed;
  inset: 0; /* top:0; right:0; bottom:0; left:0; */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.45); /* overlay */
  padding: 1.5rem;
  box-sizing: border-box;
}

/* Conteúdo interno do modal — adapte conforme seu HTML dentro da section#two */
.screen.is-modal .modal-inner {
  max-width: 720px;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  padding: 1.5rem;
  box-sizing: border-box;
  position: relative;
}

/* Se já existir .is-active, forçamos display (caso a regra .screen {display:none} esconda tudo) */
.screen.is-modal.is-active {
  display: flex;
}

/* Evita scroll do body quando modal aberto */
body.modal-open {
  overflow: hidden;
}

/* Pequeno ajuste para o clique "fora" dentro do modal: garantir que o conteúdo interno não propague clique */
.screen.is-modal .modal-inner * {
  pointer-events: auto;
}
#two > .modal-inner {
  background: none;
  box-shadow: none;
  margin: 0;
  padding: 0;
}
button:hover {
  cursor: pointer;
}

/* sera */
/* sera */
.modal-screen {
  position: fixed;
  inset: 0; /* ocupa a tela inteira */
  background: rgba(0, 0, 0, 0.45);
  display: none; /* começa escondida */
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-screen.is-active {
  display: flex; /* aparece como popup */
}
/* === modal popup #four — colado na parte inferior, full width === */
#four.is-modal,
#four.is-modal.is-active {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: flex-end; /* Alinha na parte inferior */
  background: rgba(0, 0, 0, 0.45);
  padding: 0; /* Remove padding para full width */
  box-sizing: border-box;
}
/* garante que o conteúdo do modal continue acima do overlay */
#four .modal-inner {
  position: relative;
  z-index: 10000;
  width: 100%; /* Full width */
  max-width: 100%; /* Remove limite de largura */
  border-radius: 12px 12px 0 0; /* Sem border-radius bottom */
  margin: 0;
  padding: 1.5rem;
  background: #fff;
  box-sizing: border-box;
}
.bold {
  font-weight: bold;
}

/* transforma sections com class .modal em overlay */
.modal {
  position: fixed;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  display: none; /* escondido por padrão */
  justify-content: center;
  align-items: center;
  z-index: 9999;
  pointer-events: none; /* evita interação quando fechado */
}

/* quando o modal for ativado pelo JS */
.modal.is-modal.is-active,
.modal.is-active.is-modal {
  display: flex;
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.55); /* escurece o fundo */
  backdrop-filter: blur(6px) saturate(120%); /* opcional: desfoque do fundo */
  -webkit-backdrop-filter: blur(6px) saturate(120%);
}

/* #four usa o mesmo estilo do popup inicial #two (sem blur) */
#four.is-modal.is-active,
#four.is-active.is-modal {
  background: rgba(0, 0, 0, 0.45); /* mesmo overlay do popup #two */
  backdrop-filter: none; /* remove blur */
  -webkit-backdrop-filter: none;
}

/* === modal popup #five — colado na parte inferior, full width === */
#five.is-modal,
#five.is-modal.is-active {
  position: fixed;
  inset: 0;
  z-index: 10001; /* maior que #four (9999) para ficar por cima */
  display: flex;
  justify-content: center;
  align-items: flex-end; /* Alinha na parte inferior */
  background: transparent; /* Remove overlay para não escurecer mais */
  padding: 0; /* Remove padding para full width */
  box-sizing: border-box;
}

/* garante que o conteúdo do modal #five continue acima do overlay */
#five .modal-inner {
  position: relative;
  z-index: 10002;
  max-width: 100%; /* Full width */
  width: 100%;
  background: #fff;
  border-radius: 12px 12px 0 0; /* Sem border-radius bottom */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  padding: 1.5rem;
  margin: 0;
  box-sizing: border-box;
}

/* === modal popup #six — colado na parte inferior, full width === */
#six.is-modal,
#six.is-modal.is-active {
  position: fixed;
  inset: 0;
  z-index: 10003; /* maior que #five (10001) para ficar por cima */
  display: flex;
  justify-content: center;
  align-items: flex-end; /* Alinha na parte inferior */
  background: transparent; /* Remove overlay para não escurecer mais */
  padding: 0; /* Remove padding para full width */
  box-sizing: border-box;
}

/* garante que o conteúdo do modal #six continue acima do overlay */
#six .modal-inner {
  position: relative;
  z-index: 10004;
  max-width: 100%; /* Full width */
  width: 100%;
  background: #fff;
  border-radius: 12px 12px 0 0; /* Sem border-radius bottom */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  padding: 20px;
  margin: 0;
  height: 320px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Ajusta o saque-popup dentro do #six para estar centralizado */
#six .saque-popup {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

/* Ajusta o selection-container dentro do #six */
#six .selection-container {
  width: 100%;
  max-width: 100%;
}

/* pix-selector com data-open-modal deve ter cursor pointer */
.pix-selector[data-open-modal] {
  cursor: pointer;
}

/* garante que o conteúdo do modal fique acima do overlay */
.modal .modal-inner {
  position: relative;
  z-index: 10000;
}
.valor-currency-tres {
  color: #000;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.valor-currency-quatro {
  color: #000;
  font-size: 36px !important;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
/* === Button Feedback (Hover/Active) === */
.btn-sacar,
.btn-obrigado,
.btn-sacar-dois,
.btn-vincular {
  transition: transform 0.1s ease, opacity 0.1s ease;
}

.btn-sacar:hover,
.btn-obrigado:hover,
.btn-sacar-dois:hover,
.btn-vincular:hover {
  opacity: 0.95;
}

.btn-sacar:active,
.btn-obrigado:active,
.btn-sacar-dois:active,
.btn-vincular:active {
  transform: scale(0.98);
  opacity: 0.9;
}

/* === Media Query para Desktop === */
@media (min-width: 768px) {
  /* Popups no desktop têm max-width igual ao conteúdo principal */
  #four .modal-inner,
  #five .modal-inner,
  #six .modal-inner {
    max-width: 350px; /* Mesma largura do .saldo e .bloco-dois */
    width: 100%;
  }

  #one,
  #three {
    max-width: 450px;
    margin: 0 auto;
  }

  #popup-um {
    max-width: 426px;
    margin: 0 auto;
    border-radius: 8px;
  }
  #popup-um .saldo {
    border-radius: 8px;
  }
}

button.btn-obrigado.btn-sacar-dois.btn-sacar-indisponivel,
button.btn-obrigado.btn-sacar-dois.btn-sacar-indisponivel:active,
button.btn-obrigado.btn-sacar-dois.btn-sacar-indisponivel:focus {
  width: 100%;
  transform: none;
  opacity: 1;
}
.btn-three-saque,
.btn-three-saque:active,
.btn-three-saque:focus {
  width: 100%;
  transform: none;
  opacity: 1;
}
.obtem.obtem-sacar {
  text-align: center;
}
.sacar-dinheiro span {
  width: 299px;
  text-align: center;
}
.ctn-flor {
  margin-bottom: 19px;
}
.saldo-info.obtenha-title {
  width: 100%;
}
@media (max-width: 767px) {
  #popup-um {
    width: 100%;
    max-width: none;
    border-radius: 0;
    margin-left: 0;
    margin-right: 0;
    left: 0;
    right: 0;
  }
  #popup-um .saldo {
    width: 100%;
    max-width: none;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
  }
}
#popup-um .container-saldo {
  padding: 0 20px;
}
.p-saldo-maior {
  width: 69px;
  height: 69px;
}
.modal-inner.inner-pop {
  padding: 0 !important;
}
.parabens-img {
  width: 148px;
  height: 148px;
}

/* =========================================
   Novos estilos para validação de Chave PIX
   ========================================= */

/* Estado desabilitado do input */
/* Estado desabilitado do input */
.input-disabled {
  background-color: transparent !important; /* Fundo transparente para igualar aos outros */
  cursor: not-allowed;
  opacity: 1; /* Opacidade normal para não parecer diferente */
}

/* Padronização dos inputs e linhas */
input.nome-completo,
#pix-key-input,
.pix-selector {
  width: 100% !important;
  border: none;
  border-bottom: 1px solid #e5e5e5 !important; /* Linha padrão */
  border-radius: 0 !important; /* Remove arredondamento da linha */
  padding-left: 0 !important; /* Remove recuo esquerdo */
  padding-right: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  margin-left: 0 !important;
}

/* Remove padding extra do wrapper se houver */
#pix-key-wrapper {
  padding: 0 !important;
  margin: 0 !important;
}

/* Wrapper para capturar clique no input disabled */
.input-wrapper-disabled {
  position: relative;
  width: 100%;
}

/* Estado de erro (borda vermelha) 
.input-error {
  border: 1px solid #fe2b54 !important; 
  transition: border-color 0.2s ease;
}
*/
/* Animação de tremor (shake) */
@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }
  75% {
    transform: translateX(-5px);
  }
  100% {
    transform: translateX(0);
  }
}

.shake-animation {
  animation: shake 0.4s ease-in-out;
}

/* Botão desabilitado */
/* Botão desabilitado */
.btn-disabled {
  opacity: 0.5;
  /* pointer-events: none; removido para permitir clique e validação */
  filter: grayscale(100%);
  cursor: not-allowed;
}

/* Ajuste de padding interno para o erro não colar no texto */
.input-error {
  padding: 10px !important;
  box-sizing: border-box !important; /* Garante que o padding não aumente o tamanho total */
}

/* Remove hover/active do botão Enviar PIX especificamente */
#btn-enviar-pix:hover,
#btn-enviar-pix:active,
#btn-enviar-pix:focus {
  transform: none !important;
  opacity: 1 !important;
  filter: none !important; /* Remove alteração de cor se houver */
}

/* Mantém o estilo disabled se estiver com a classe */
#btn-enviar-pix.btn-disabled {
  opacity: 0.5 !important;
  filter: grayscale(100%) !important;
  cursor: not-allowed !important;
}
.confirmation-security-label img {
  max-width: 100%;
}
.img-bacen {
  width: 50px;
}
.img-gov-br {
  width: 70px;
}
.img-receitafederal {
  width: 70px;
}

/* =========================================
   Novos Estilos para a tela de loading (#seven)
   ========================================= */

/* Header centralizado */
.loading-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1.5rem;
  height: 120px;
  width: 100%;
  box-sizing: border-box;
}

.loading-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.loading-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.loading-logo-text {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
}

/* Conte�do principal */
.loading-main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
}

.new-loading-container {
  text-align: center;
  width: 100%;
  max-width: 400px;
}

.new-loading-text {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #333;
  height: 2.5rem;
  transition: opacity 0.5s ease;
  font-weight: 500;
}

/* Barra de carregamento fluida */
.new-progress-track {
  width: 100%;
  height: 6px;
  background-color: #f5f5f5;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.new-progress-bar {
  height: 100%;
  width: 0%;
  background-color: #fe2c55;
  border-radius: 3px;
  transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.new-progress-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: shimmer 2s infinite;
  border-radius: 3px;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.new-progress-track::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(254, 44, 85, 0.1),
    transparent
  );
  animation: pulse 3s infinite;
  border-radius: 3px;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.7;
  }
}

/* Responsividade */
@media (max-width: 480px) {
  .loading-header {
    padding: 1.5rem;
    height: 100px;
  }

  .loading-logo-img {
    width: 35px;
    height: 35px;
  }

  .loading-logo-text {
    font-size: 1.5rem;
  }

  .new-loading-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .new-progress-track {
    height: 5px;
  }
}

/* Garante que #seven ocupe toda a tela e tenha fundo branco */
#seven {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 10000;
  display: flex;
  flex-direction: column;
}

/* Oculta quando n�o ativo (j� tratado pela classe .screen, mas refor�ando) */
#seven[aria-hidden="true"] {
  display: none;
}
.loading-logo-img {
  width: 96px;
}
