@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

* {
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, #1e3a8a 0%, transparent 60%),
    linear-gradient(180deg, #020617, #020617);
  color: #fff;
  min-height: 100vh;
}

/* APP */
.app {
  max-width: 420px;
  margin: 0 auto;
  padding: 16px;
  position: relative;
}

/* TOPBAR */
.kyro-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 4px;
}

.kyro-logo {
  font-weight: 700;
  letter-spacing: 1px;
}

.kyro-user {
  font-size: 22px;
}

/* TÍTULO */
h2 {
  font-size: 20px;
  margin: 16px 0;
}

/* GLASS CARD */
.card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 16px;
  margin-bottom: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
}

.card span {
  font-size: 13px;
  opacity: 0.85;
}

.card strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
  font-weight: 700;
}

/* DESTAQUE DINHEIRO */
.card.saldo strong {
  font-size: 26px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* VALOR EM DESTAQUE */
.card strong {
  color: #f5c76a;
}

/* AÇÕES */
.acoes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.btn {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 12px 8px;
  text-align: center;
  font-size: 13px;
  color: #fff;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: all .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.2);
}

/* BARRA BOTTOM */
.barra-bottom {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.btn-sair {
  background: rgba(255,255,255,0.15);
  padding: 14px 30px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
}

/* MENSAGENS */
.msg {
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 10px;
  font-size: 14px;
}

.msg.sucesso {
  background: rgba(34,197,94,.2);
  border: 1px solid rgba(34,197,94,.4);
}

.msg.erro {
  background: rgba(239,68,68,.2);
  border: 1px solid rgba(239,68,68,.4);
}

/* MODAL */
#modalBonus > div {
  background: rgba(15, 23, 42, 0.9) !important;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
}

/* BOTÃO FLUTUANTE TELEGRAM */
a[href*="t.me"] {
  box-shadow: 0 0 35px rgba(34,158,217,.9) !important;
}

/* ==== FUNDO ESPACIAL MAIS RICO ==== */
body {
  background:
    radial-gradient(circle at 20% 10%, rgba(56,189,248,.15), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(99,102,241,.12), transparent 45%),
    linear-gradient(180deg, #020617, #020617);
}

/* ==== CARDS GLASS PREMIUM ==== */
.card {
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.14),
    rgba(255,255,255,0.04)
  );
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.15),
    0 12px 28px rgba(0,0,0,.45);
}

/* ==== CARDS PRINCIPAIS ==== */
.card.saldo {
  padding: 20px;
}

.card.saldo strong {
  font-size: 28px;
}

/* ==== GRID MAIS SOLTO ==== */
.grid {
  gap: 14px;
  margin-top: 6px;
}

/* ==== BOTÕES FLUTUANTES ==== */
.btn {
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 8px 22px rgba(0,0,0,.35);
}

.btn:hover {
  transform: translateY(-3px);
}

/* ==== BOTÃO INVESTIR EM DESTAQUE ==== */
.acoes a:last-child {
  background: radial-gradient(circle at top, #38bdf8, #2563eb);
  box-shadow: 0 0 30px rgba(56,189,248,.6);
}

/* ==== BOTÃO SAIR MAIS CLEAN ==== */
.btn-sair {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
}

/* ===============================
   BACKGROUND 100% FINTECH
================================ */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    url("/assets/img/bg-space.png") center/cover no-repeat,
    radial-gradient(circle at 30% 10%, rgba(56,189,248,.18), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(99,102,241,.14), transparent 45%);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, transparent 60%, rgba(0,0,0,.55));
  z-index: -1;
}

/* ===============================
   CARDS ULTRA GLASS
================================ */
.card {
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.16),
    rgba(255,255,255,0.03)
  );
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.25),
    0 20px 40px rgba(0,0,0,.55);
}

/* ===============================
   CARDS GRANDES (CAPITAL / SALDO)
================================ */
.card.saldo {
  padding: 22px;
}

.card.saldo span {
  font-size: 14px;
}

.card.saldo strong {
  font-size: 30px;
}

/* ===============================
   TEXTO E CORES
================================ */
.card strong {
  color: #facc6b;
  text-shadow: 0 0 8px rgba(250,204,107,.35);
}

/* ===============================
   GRID MAIS ELEGANTE
================================ */
.grid {
  margin-top: 10px;
  gap: 16px;
}

/* ===============================
   BOTÕES ESTILO iOS
================================ */
.btn {
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.22),
    rgba(255,255,255,0.08)
  );
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.25),
    0 10px 25px rgba(0,0,0,.45);
}

.btn:active {
  transform: scale(.97);
}

/* ===============================
   BOTÃO INVESTIR (DESTAQUE TOTAL)
================================ */
.acoes a:last-child {
  background: radial-gradient(circle at top, #60a5fa, #2563eb);
  border: none;
  box-shadow:
    0 0 35px rgba(96,165,250,.8),
    inset 0 1px 0 rgba(255,255,255,.35);
}

/* ===============================
   BOTÃO FLUTUANTE TELEGRAM
================================ */
a[href*="t.me"] {
  background: radial-gradient(circle at top, #38bdf8, #0284c7) !important;
  box-shadow: 0 0 40px rgba(56,189,248,.95) !important;
}

/* ===============================
   BOTÃO SAIR CLEAN PREMIUM
================================ */
.btn-sair {
  background: rgba(255,255,255,0.14);
  border-radius: 30px;
  padding: 16px 40px;
  font-size: 14px;
}

.btn-suporte {
  position: fixed;
  right: 20px;
  bottom: 110px; /* exatamente acima do botão sair */
  z-index: 4000;

  width: 70px;
  height: 70px;
  border-radius: 50%;

  background: radial-gradient(circle, #38bdf8, #2563eb);
  box-shadow: 0 0 35px rgba(56,189,248,.8);

  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-suporte img,
.btn-suporte i {
  font-size: 28px;
  color: #fff;
}


.topo {
  position: sticky;
  top: 0;
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 14px 18px;

  background: rgba(5,10,30,.65);
  backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(255,255,255,.15);
}

.logo {
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 18px;
}

.topo-acoes i {
  margin-left: 14px;
  font-size: 20px;
  opacity: .9;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

* {
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, #1e3a8a 0%, transparent 60%),
    linear-gradient(180deg, #020617, #020617);
  color: #fff;
  min-height: 100vh;
}

/* APP */
.app {
  max-width: 420px;
  margin: 0 auto;
  padding: 16px;
  position: relative;
}

/* TOPBAR */
.kyro-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 4px;
}

.kyro-logo {
  font-weight: 700;
  letter-spacing: 1px;
}

.kyro-user {
  font-size: 22px;
}

/* TÍTULO */
h2 {
  font-size: 20px;
  margin: 16px 0;
}

/* GLASS CARD */
.card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 16px;
  margin-bottom: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
}

.card span {
  font-size: 13px;
  opacity: 0.85;
}

.card strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
  font-weight: 700;
}

/* DESTAQUE DINHEIRO */
.card.saldo strong {
  font-size: 26px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* VALOR EM DESTAQUE */
.card strong {
  color: #f5c76a;
}

/* AÇÕES */
.acoes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.btn {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 12px 8px;
  text-align: center;
  font-size: 13px;
  color: #fff;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: all .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.2);
}

/* BARRA BOTTOM */
.barra-bottom {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.btn-sair {
  background: rgba(255,255,255,0.15);
  padding: 14px 30px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
}

/* MENSAGENS */
.msg {
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 10px;
  font-size: 14px;
}

.msg.sucesso {
  background: rgba(34,197,94,.2);
  border: 1px solid rgba(34,197,94,.4);
}

.msg.erro {
  background: rgba(239,68,68,.2);
  border: 1px solid rgba(239,68,68,.4);
}

/* MODAL */
#modalBonus > div {
  background: rgba(15, 23, 42, 0.9) !important;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
}

/* BOTÃO FLUTUANTE TELEGRAM */
a[href*="t.me"] {
  box-shadow: 0 0 35px rgba(34,158,217,.9) !important;
}

/* ==== FUNDO ESPACIAL MAIS RICO ==== */
body {
  background:
    radial-gradient(circle at 20% 10%, rgba(56,189,248,.15), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(99,102,241,.12), transparent 45%),
    linear-gradient(180deg, #020617, #020617);
}

/* ==== CARDS GLASS PREMIUM ==== */
.card {
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.14),
    rgba(255,255,255,0.04)
  );
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.15),
    0 12px 28px rgba(0,0,0,.45);
}

/* ==== CARDS PRINCIPAIS ==== */
.card.saldo {
  padding: 20px;
}

.card.saldo strong {
  font-size: 28px;
}

/* ==== GRID MAIS SOLTO ==== */
.grid {
  gap: 14px;
  margin-top: 6px;
}

/* ==== BOTÕES FLUTUANTES ==== */
.btn {
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 8px 22px rgba(0,0,0,.35);
}

.btn:hover {
  transform: translateY(-3px);
}

/* ==== BOTÃO INVESTIR EM DESTAQUE ==== */
.acoes a:last-child {
  background: radial-gradient(circle at top, #38bdf8, #2563eb);
  box-shadow: 0 0 30px rgba(56,189,248,.6);
}

/* ==== BOTÃO SAIR MAIS CLEAN ==== */
.btn-sair {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
}

/* ===============================
   BACKGROUND 100% FINTECH
================================ */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    url("/assets/img/bg-space.png") center/cover no-repeat,
    radial-gradient(circle at 30% 10%, rgba(56,189,248,.18), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(99,102,241,.14), transparent 45%);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, transparent 60%, rgba(0,0,0,.55));
  z-index: -1;
}

/* ===============================
   CARDS ULTRA GLASS
================================ */
.card {
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.16),
    rgba(255,255,255,0.03)
  );
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.25),
    0 20px 40px rgba(0,0,0,.55);
}

/* ===============================
   CARDS GRANDES (CAPITAL / SALDO)
================================ */
.card.saldo {
  padding: 22px;
}

.card.saldo span {
  font-size: 14px;
}

.card.saldo strong {
  font-size: 30px;
}

/* ===============================
   TEXTO E CORES
================================ */
.card strong {
  color: #facc6b;
  text-shadow: 0 0 8px rgba(250,204,107,.35);
}

/* ===============================
   GRID MAIS ELEGANTE
================================ */
.grid {
  margin-top: 10px;
  gap: 16px;
}

/* ===============================
   BOTÕES ESTILO iOS
================================ */
.btn {
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.22),
    rgba(255,255,255,0.08)
  );
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.25),
    0 10px 25px rgba(0,0,0,.45);
}

.btn:active {
  transform: scale(.97);
}

/* ===============================
   BOTÃO INVESTIR (DESTAQUE TOTAL)
================================ */
.acoes a:last-child {
  background: radial-gradient(circle at top, #60a5fa, #2563eb);
  border: none;
  box-shadow:
    0 0 35px rgba(96,165,250,.8),
    inset 0 1px 0 rgba(255,255,255,.35);
}

/* ===============================
   BOTÃO FLUTUANTE TELEGRAM
================================ */
a[href*="t.me"] {
  background: radial-gradient(circle at top, #38bdf8, #0284c7) !important;
  box-shadow: 0 0 40px rgba(56,189,248,.95) !important;
}

/* ===============================
   BOTÃO SAIR CLEAN PREMIUM
================================ */
.btn-sair {
  background: rgba(255,255,255,0.14);
  border-radius: 30px;
  padding: 16px 40px;
  font-size: 14px;
}

.btn-suporte {
  position: fixed;
  right: 22px;
  bottom: 96px; /* mesma altura da referência */

  width: 62px;
  height: 62px;
  border-radius: 50%;

  background: radial-gradient(
    circle at top,
    #38bdf8,
    #2563eb
  );

  box-shadow:
    0 0 22px rgba(56,189,248,.75),
    inset 0 1px 0 rgba(255,255,255,.45);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 26px;
  color: #fff;
  text-decoration: none;

  z-index: 4000;
}


.topo {
  position: sticky;
  top: 0;
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 14px 18px;

  background: rgba(5,10,30,.65);
  backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(255,255,255,.15);
}

.logo {
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 18px;
}

.topo-acoes i {
  margin-left: 14px;
  font-size: 20px;
  opacity: .9;
}

.btn-sair {
  position: fixed;
  bottom: 14px; /* mais perto do rodapé */
  left: 50%;
  transform: translateX(-50%);

  width: 82%;
  max-width: 360px;

  padding: 13px 0; /* mais fino */
  border-radius: 28px;

  background: linear-gradient(
    180deg,
    rgba(37,99,235,.95),
    rgba(30,64,175,.95)
  );

  border: 1px solid rgba(255,255,255,.35);

  box-shadow:
    0 0 18px rgba(37,99,235,.6),
    inset 0 1px 0 rgba(255,255,255,.4);

  color: #fff;
  font-size: 15px;
  font-weight: 500;

  z-index: 3000;
}

.app {
  padding-bottom: 140px;
}

.card {
  background: linear-gradient(
    135deg,
    rgba(255,255,255,.18),
    rgba(255,255,255,.06)
  );
}

/* CONTORNO PARA MOSTRAR QUE O BÔNUS É CLICÁVEL */
.bolha-bonus {
  border: 2px solid rgba(250, 204, 107, 0.9);
  cursor: pointer;
}

.bolha-bonus:hover {
  border-color: rgba(250, 204, 107, 1);
}

/* BOTÃO PERFIL (TOPO) */
.btn-perfil {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 18px;
  padding: 6px 10px;
  border-radius: 50%;
  cursor: pointer;
}

/* FUNDO ESCURO */
.perfil-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 5000;
}

/* CAIXA BRANCA */
.perfil-box {
  background: linear-gradient(135deg,#1e3a8a,#2563eb);
  color: #fff;
  width: 85%;
  max-width: 320px;
  padding: 20px;
  border-radius: 18px;
  position: absolute;
  top: 90px;
  right: 20px;
  box-shadow: 0 0 30px rgba(0,0,0,.5);
}

.perfil-box h3 {
  margin-top: 0;
}

.perfil-box button {
  margin-top: 15px;
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 12px;
  background: #1d4ed8;
  color: #fff;
  font-size: 14px;
}

.perfil-btn {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #1e3a5f, #0f172a);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.perfil-btn:active {
  transform: scale(0.92);
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.perfil-btn {
  width: 38px !important;
  height: 38px !important;
  background: linear-gradient(135deg, #1e3a5f, #0f172a) !important;
  color: #fff !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 18px !important;
  cursor: pointer !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.35) !important;
}


 
  /* BOTÃO INDICAR DESATIVADO */
.btn-desativado {
  position: relative;
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

/* ETIQUETA EM BREVE */
.btn-desativado .em-breve {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  opacity: 0.8;
  text-transform: uppercase;
}