@font-face {
  font-family: 'Quicksand';
  src: url(/static/media/Quicksand-Regular.67e7ce07307c681fb49d.ttf) format('opentype');
  font-weight: normal;
  font-style: normal;
}


body {
  margin: 0;
  font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


code {
  font-family: 'Quicksand', source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}


/* Login.css */

.home-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: Arial, sans-serif;
  height: 100vh;
  background-color: #323232;
  position: relative;
}

.home-headerlogin {
  background-color: #141414;
  color: white;
  padding: 1.5em;
  width: 100%;
  height: 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.titulo {
  color: white;
  font-size: 40px;
  width: 40%;
  position: relative;
  left: 30%;
  bottom: 15%;
  text-align: center;
}

.Login {
  color: white;
  border: 1px solid white;
  background-color: rgba(0, 0, 0, 0.452);
  width: 400px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 20px;
  margin-top: 50px;
}

.label {
  color: #d6d6d6;
  font-size: 16px;
  margin-bottom: 5px;
  text-align: left;
  width: 80%;
}

.input-field {
  margin: 10px 0;
  padding: 10px;
  border: none;
  border-bottom: 1px solid #d6d6d6;
  background-color: transparent;
  color: white;
  width: 80%;
  text-align: center;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
}

.input-field:focus {
  border-bottom-color: #fff;
}

.password-container,
.twoFA-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 10px 0;
  flex-wrap: wrap;
}

.pin-input {
  width: 40px;
  height: 50px;
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #d6d6d6;
  text-align: center;
  font-size: 18px;
  margin: 0 5px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.pin-input:focus {
  border-color: #fff;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.button-28 {
  -webkit-appearance: none;
          appearance: none;
  background-color: transparent;
  border: 2px solid #d6d6d6;
  border-radius: 15px;
  box-sizing: border-box;
  color: #d6d6d6;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  margin: 10px 0;
  min-height: 60px;
  outline: none;
  padding: 16px 24px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  -webkit-user-select: none;
          user-select: none;
  touch-action: manipulation;
  width: 80%;
  will-change: transform;
}

.button-28:hover {
  color: #fff;
  background-color: #1A1A1A;
  border: 2px solid #1A1A1A;
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

.button-28:active {
  box-shadow: none;
  transform: translateY(0);
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* ==========================
   Responsividade para Tablets e Mobile
   ========================== */

   /* Display dos pontos da senha */
.password-display {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 10px 0;
}

.numpad-empty {
  width: 80px;
  height: 60px;
}

@media (max-width: 480px) {
  .numpad-empty {
    width: 70px;
    height: 55px;
  }
}

.password-dot {
  width: 18px;
  height: 18px;
  background-color: rgba(255, 255, 255, 0.235);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: rgb(29, 29, 29);
}

/* Numpad container */
.numpad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  gap: 10px;
  width: 100%;
  justify-items: center;
  margin-bottom: 20px;
}

/* Numpad botão padrão */
.numpad-button {
  background-color: rgba(0, 0, 0, 0.6);
  border: 1px solid #d6d6d6;
  color: white;
  font-size: 20px;
  border-radius: 10px;
  width: 80px;
  height: 60px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
}

/* Hover e active */
.numpad-button:hover {
  background-color: #1a1a1a;
  transform: translateY(-2px);
}

.numpad-button:active {
  transform: translateY(0);
}

/* Botão delete ajustado */
.numpad-button.delete {
  background-color: rgba(255, 0, 0, 0.2);
  border-color: red;
  grid-column: span 3;
  width: 100%;
  height: 60px;
}

/* Responsivo */
@media (max-width: 480px) {
  .numpad-button {
    width: 70px;
    height: 55px;
    font-size: 18px;
  }

  .numpad-button.delete {
    height: 55px;
  }

  .password-dot {
    width: 14px;
    height: 14px;
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .titulo {
    width: 90%;
    left: 0;
    bottom: 0;
    font-size: 28px;
    margin-top: 20px;
    position: static;
  }

  .Login {
    width: 90%;
    padding: 20px;
    margin-top: 30px;
  }

  .label {
    font-size: 14px;
    width: 100%;
    text-align: left;
  }

  .input-field {
    width: 100%;
    font-size: 14px;
  }

  .pin-input {
    width: 35px;
    height: 45px;
    font-size: 16px;
    margin: 3px;
  }

  .password-container,
  .twoFA-container {
    gap: 5px;
  }

  .button-28 {
    width: 100%;
    font-size: 14px;
    padding: 12px 18px;
    min-height: 50px;
  }

  .home-headerlogin img {
    width: 180px;
  }
}

@media (max-width: 480px) {
  .titulo {
    font-size: 24px;
  }

  .Login {
    padding: 15px;
  }

  .pin-input {
    width: 30px;
    height: 40px;
    font-size: 14px;
  }

  .button-28 {
    font-size: 14px;
    min-height: 45px;
  }
}

/* Biometric Popup Styles */
.biometric-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.biometric-popup {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2rem;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.biometric-popup-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.biometric-popup-header h2 {
  color: var(--accent-gold);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.biometric-popup-text {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.biometric-popup-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.biometric-popup-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.biometric-popup-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
@media (min-width: 769px) and (max-width: 1199px) {
  .login-container {
    top: 110px;
  }
}

/* Home.css - Sistema Unificado - Tema Executivo Profissional */

/* ========== VARIÁVEIS - PALETA EXECUTIVA SÉRIA ========== */
:root {
  /* Backgrounds - Cinzas Corporativos */
  --primary-bg: #0A0A0A;
  --secondary-bg: #141414;
  --card-bg: #1C1C1C;
  --hover-bg: #242424;
  --border-color: #2A2A2A;
  
  /* Textos */
  --text-primary: #E8E8E8;
  --text-secondary: #A8A8A8;
  --text-muted: #606060;
  
  /* Dourados - Discretos e Profissionais */
  --accent-gold: #D4AF37;
  --accent-gold-dark: #B8961E;
  --accent-gold-darker: #9C7E15;
  --accent-bronze: #7A6510;
  
  /* Status Colors */
  --success: #0E9F6E;
  --warning: #D97706;
  --error: #DC2626;
  --info: #525252;
  
  /* Gradientes Discretos */
  --gradient-primary: #0A0A0A;
  --gradient-card: linear-gradient(180deg, #1C1C1C 0%, #171717 100%);
  --gradient-gold: linear-gradient(180deg, #D4AF37 0%, #B8961E 100%);
  
  /* Sombras Suaves */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 2px 6px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.7);
  
  /* Outros */
  --border-radius: 4px;
  --transition: all 0.2s ease;
  --pix-blue: #D4AF37;
  --pix-green: #B8961E;
  
  /* Status dinâmicos */
  --status-done: #0E9F6E;
  --status-paid: #0E9F6E;
  --status-pending: #D97706;
  --status-processing: #D97706;
  --status-refunded: #3B82F6;
  --status-partially-refunded: #3B82F6;
  --status-default: #525252;
}

/* ========== RESET E BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background: #0A0A0A !important;
  background: var(--primary-bg) !important;
  min-height: 100vh;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0A0A0A !important;
  background: var(--primary-bg) !important;
  color: #E8E8E8;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

#root {
  background: #0A0A0A !important;
  background: var(--primary-bg) !important;
  min-height: 100vh;
}

/* ========== CONTAINER PRINCIPAL ========== */
.home-container {
  min-height: 100vh;
  background: #0A0A0A;
  background: var(--primary-bg);
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

.home-container::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ========== HEADER UNIFICADO ========== */
.home-header {
  background: rgba(20, 20, 20, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid #2A2A2A;
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  box-shadow: var(--shadow-sm);
}

.header-content {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logoTreco {
  height: 35px !important;
  width: auto !important;
  transition: all 0.2s ease;
  transition: var(--transition);
}

.logoTreco:hover {
  opacity: 0.85;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.botaoSino {
  position: relative;
  padding: 0.6rem;
  cursor: pointer;
  transition: all 0.2s ease;
  transition: var(--transition);
  border-radius: 4px;
  border-radius: var(--border-radius);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.botaoSino:hover {
  background: rgba(212, 175, 55, 0.15);
}

.botaoSino img {
  width: 22px !important;
  height: 22px !important;
}

.notification-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #DC2626;
  color: white;
  font-size: 0.65rem;
  padding: 0.2rem 0.4rem;
  border-radius: 50%;
  min-width: 1.2rem;
  text-align: center;
  font-weight: 600;
  border: 2px solid #0A0A0A;
  border: 2px solid var(--primary-bg);
}

.botaoSair {
  background: rgba(220, 38, 38, 0.12);
  color: #DC2626;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  transition: var(--transition);
  border: 1px solid rgba(220, 38, 38, 0.25);
  font-size: 0.9rem;
}

.botaoSair:hover {
  background: rgba(220, 38, 38, 0.2);
  color: #ffffff;
}

/* ========== BODY ========== */
.body {
  max-width: 100%;
  margin: 0 auto;
  padding: 2rem 1rem;
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 80px);
  background: transparent;
  margin-top: 70px;
}

/* ========== NAVEGAÇÃO LATERAL (DESKTOP) ========== */
.ListaNavegacao {
  position: fixed;
  left: 0;
  top: 70px;
  width: 280px;
  height: calc(100vh - 70px);
  background: rgba(20, 20, 20, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-right: 1px solid #2A2A2A;
  border-right: 1px solid var(--border-color);
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 900;
}

.itemLista {
  list-style: none;
  margin: 0 1rem;
}

.itemLista a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  color: #A8A8A8;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: 4px;
  border-radius: var(--border-radius);
  transition: all 0.2s ease;
  transition: var(--transition);
  font-weight: 500;
}

.itemLista a:hover {
  background: #242424;
  background: var(--hover-bg);
  color: #E8E8E8;
  color: var(--text-primary);
}

.itemLista.active a {
  background: rgba(212, 175, 55, 0.12);
  color: #D4AF37;
  color: var(--accent-gold);
  border-left: 2px solid #D4AF37;
  border-left: 2px solid var(--accent-gold);
}

.iconeLista {
  width: 20px !important;
  height: 20px !important;
}

/* ========== CONTENT PRINCIPAL - CORRIGIDO PARA TELA CHEIA ========== */
.main-content {
  width: calc(100% - 320px);
  margin-left: 200px;
  margin-right: 20px;
  margin-top: 5rem;
  position: relative;
  z-index: 1;
  padding: 0;
}

/* ========== CONTAINER DE SALDO ========== */
.user-balance-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 1.5rem;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

/* ========== CARD PRINCIPAL DO USUÁRIO ========== */
.user-info-card {
  background: linear-gradient(180deg, #1C1C1C 0%, #171717 100%);
  background: var(--gradient-card);
  border: 1px solid #2A2A2A;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  transition: all 0.2s ease;
  transition: var(--transition);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.user-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #D4AF37;
  background: var(--accent-gold);
  opacity: 0;
  transition: all 0.2s ease;
  transition: var(--transition);
}

.user-info-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.user-info-card:hover::before {
  opacity: 1;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.usuario-perfil-icon {
  width: 3rem !important;
  height: 3rem !important;
  background: #0A0A0A;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: #D4AF37;
  color: var(--accent-gold);
  border: 1px solid #2A2A2A;
  border: 1px solid var(--border-color);
}

.BemVindo {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #E8E8E8;
  color: var(--text-primary);
  text-align: left;
}

.balance-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: rgba(42, 42, 42, 0.5);
  border-radius: 4px;
  border-radius: var(--border-radius);
  border: 1px solid #2A2A2A;
  border: 1px solid var(--border-color);
}

.saldo-text {
  font-size: 1.1rem;
  color: #D4AF37;
  color: var(--accent-gold);
  font-weight: 700;
}

.usuario-olho-icon {
  cursor: pointer;
  width: 25px !important;
  height: 18px !important;
  transition: all 0.2s ease;
  transition: var(--transition);
}

.usuario-olho-icon:hover {
  opacity: 0.7;
}

/* ========== CARD DE MOVIMENTAÇÃO ========== */
.entradas-saidas-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.entradas-box,
.saidas-box {
  background: linear-gradient(180deg, #1C1C1C 0%, #171717 100%);
  background: var(--gradient-card);
  border: 1px solid #2A2A2A;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  border-radius: var(--border-radius);
  padding: 1rem;
  text-align: center;
  transition: all 0.2s ease;
  transition: var(--transition);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  box-shadow: var(--shadow-sm);
}

.entradas-box:hover,
.saidas-box:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.entradas-text {
  color: #0E9F6E;
  color: var(--success);
  font-size: 1rem;
  font-weight: 600;
}

.saidas-text {
  color: #DC2626;
  color: var(--error);
  font-size: 1rem;
  font-weight: 600;
}

/* ========== CONTAINER EXTRATO CORRIGIDO ========== */
.ContainerExtrato {
  background: linear-gradient(180deg, #1C1C1C 0%, #171717 100%);
  background: var(--gradient-card);
  border: 1px solid #2A2A2A;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  box-shadow: var(--shadow-sm);
  margin-bottom: 4rem;
  position: relative;
  width: 100%;
  overflow: visible !important;
  z-index: 1;
}

.transacoes-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.extrato-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #D4AF37;
  color: var(--accent-gold);
}

.extrato-subtitle {
  color: #A8A8A8;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ========== BARRA DE PESQUISA MODERNA (PARA EXTRATO.JS) ========== */
.searchContainer {
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.95), rgba(23, 23, 23, 0.98));
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid #2A2A2A;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  border-radius: var(--border-radius);
  padding: 2rem;
  width: 100%;
  margin: 0 0 2rem 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  box-shadow: var(--shadow-sm);
}

.searchGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
  align-items: end;
}

.inputGroup {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.searchLabel {
  color: #D4AF37;
  color: var(--accent-gold);
  font-size: 0.9rem;
  font-weight: 600;
  font-size: 0.85rem;
    margin-bottom: 0.4rem;
}

.searchInput {
  outline: none;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  border-radius: 4px;
  border-radius: var(--border-radius);
  border: 1px solid #2A2A2A;
  border: 1px solid var(--border-color);
  background: rgba(245, 245, 245, 0.98);
  color: #1a1a1a;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  font-weight: 500;
  width: 100% !important;
    padding: 0.9rem 1.2rem;
    font-size: 0.95rem;
}

.searchInput:focus {
  border-color: #D4AF37;
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.15);
}

.buttonGroup {
  display: flex !important;
  flex-direction: row !important; /* Mantém horizontal */
  gap: 0.8rem !important;
  width: 100% !important;
  margin-top: 0.5rem !important; /* Reduzido */
}

.searchButton {
  padding: 1rem 2rem;
  border-radius: 4px;
  border-radius: var(--border-radius);
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  transition: var(--transition);
  background: linear-gradient(180deg, #D4AF37 0%, #B8961E 100%);
  background: var(--gradient-gold);
  color: #1a1a1a;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  box-shadow: var(--shadow-sm);
}

.searchButton:hover {
  background: #B8961E;
  background: var(--accent-gold-dark);
}

.clearButton {
  background: rgba(42, 42, 42, 0.8);
  color: #ffffff;
  border: 1px solid #2A2A2A;
  border: 1px solid var(--border-color);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  box-shadow: var(--shadow-sm);
}

.clearButton:hover {
  background: rgba(42, 42, 42, 1);
}

/* ========== TABELA RESPONSIVA CORRIGIDA ========== */
.table-container {
  background: transparent;
  border-radius: 4px;
  border-radius: var(--border-radius);
  overflow-x: auto;
  overflow-y: visible;
  margin-bottom: 2rem;
  border: 1px solid #2A2A2A;
  border: 1px solid var(--border-color);
  position: relative;
  z-index: 1;
}

.ContainerExtrato table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  background: transparent;
  table-layout: fixed;
}

.ContainerExtrato th,
.ContainerExtrato .Titulo {
  background: rgba(42, 42, 42, 0.9);
  color: #D4AF37;
  color: var(--accent-gold);
  padding: 1rem 0.8rem;
  text-align: left;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.8rem;
  border-bottom: 1px solid #2A2A2A;
  border-bottom: 1px solid var(--border-color);
  white-space: nowrap;
}

.ContainerExtrato th:nth-child(1),
.ContainerExtrato td:nth-child(1) {
  width: 30%;
}

.ContainerExtrato th:nth-child(2),
.ContainerExtrato td:nth-child(2) {
  width: 20%;
}

.ContainerExtrato th:nth-child(3),
.ContainerExtrato td:nth-child(3) {
  width: 20%;
}

.ContainerExtrato th:nth-child(4),
.ContainerExtrato td:nth-child(4) {
  width: 15%;
}

.ContainerExtrato th:nth-child(5),
.ContainerExtrato td:nth-child(5) {
  width: 15%;
}

.ContainerExtrato td {
  padding: 1rem 0.8rem;
  border-bottom: 1px solid rgba(42, 42, 42, 0.4);
  color: #A8A8A8;
  color: var(--text-secondary);
  background: transparent;
  vertical-align: middle;
  word-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ContainerExtrato tbody tr {
  cursor: pointer;
  transition: all 0.2s ease;
  transition: var(--transition);
  background: transparent;
  position: relative;
}

.ContainerExtrato tbody tr:hover {
  background: rgba(212, 175, 55, 0.05) !important;
}

.ContainerExtrato tbody tr[style*="background-color"] {
  position: relative;
  z-index: 100;
}

.ContainerExtrato tbody tr[style*="background-color"] td {
  padding: 0 !important;
  background: transparent !important;
  overflow: visible !important;
}

/* ========== STATUS BADGES DINÂMICOS ========== */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  border-radius: var(--border-radius);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-paid,
.status-done {
  background: rgba(14, 159, 110, 0.15);
  color: #0E9F6E;
  color: var(--status-paid);
  border: 1px solid rgba(14, 159, 110, 0.3);
}

.status-pending,
.status-processing {
  background: rgba(217, 119, 6, 0.15);
  color: #D97706;
  color: var(--status-pending);
  border: 1px solid rgba(217, 119, 6, 0.3);
}

.status-refunded,
.status-partially-refunded {
  background: rgba(59, 130, 246, 0.15);
  color: #3B82F6;
  color: var(--status-refunded);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.status-gerado {
  background: rgba(217, 119, 6, 0.15);
  color: #D97706;
  color: var(--warning);
  border: 1px solid rgba(217, 119, 6, 0.3);
}

.status-cancelado {
  background: rgba(82, 82, 82, 0.15);
  color: #525252;
  color: var(--info);
  border: 1px solid rgba(82, 82, 82, 0.3);
}

.status-partial-refund {
  background: rgba(168, 85, 247, 0.15);
  color: #A855F7;
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.status-unknown {
  background: rgba(82, 82, 82, 0.15);
  color: #606060;
  color: var(--text-muted);
  border: 1px solid rgba(82, 82, 82, 0.3);
}

/* ========== METHOD BADGES ========== */
.method-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  border-radius: var(--border-radius);
  font-size: 0.8rem;
  font-weight: 600;
}

.method-pix {
  background: rgba(212, 175, 55, 0.15);
  color: #D4AF37;
  color: var(--accent-gold);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.method-saque {
  background: rgba(220, 38, 38, 0.12);
  color: #F87171;
  border: 1px solid rgba(220, 38, 38, 0.25);
}

.method-other {
  background: rgba(82, 82, 82, 0.12);
  color: #9CA3AF;
  border: 1px solid rgba(82, 82, 82, 0.25);
}

/* ========== DETALHES EXPANDIDOS CORRIGIDOS ========== */
.DetalhesContent {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
  background: rgba(42, 42, 42, 0.95);
  border-radius: 4px;
  border-radius: var(--border-radius);
  opacity: 0;
  margin: 0;
  position: relative;
  z-index: 1000;
  width: 100%;
  box-sizing: border-box;
}

.DetalhesContent.expanded {
  max-height: 1200px;
  padding: 1.5rem;
  opacity: 1;
  border: 1px solid #2A2A2A;
  border: 1px solid var(--border-color);
  margin: 0.5rem 0 4rem 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1000;
  background: rgba(42, 42, 42, 0.98);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  overflow: visible !important;
  min-height: -webkit-fit-content;
  min-height: fit-content;
}

.DetalhesContent div {
  margin: 0.5rem 0;
  padding: 0.8rem;
  background: rgba(36, 36, 36, 0.7);
  border-radius: 4px;
  border-radius: var(--border-radius);
  border-left: 2px solid #2A2A2A;
  border-left: 2px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
  position: relative;
  word-wrap: break-word;
  overflow-wrap: break-word;
  width: 100%;
  box-sizing: border-box;
}

.DetalhesContent div:first-child {
  border-left-color: #D4AF37;
  border-left-color: var(--accent-gold);
}

.DetalhesContent div:nth-child(2) {
  border-left-color: #B8961E;
  border-left-color: var(--accent-gold-dark);
}

.DetalhesContent div:nth-child(3) {
  border-left-color: #7A6510;
  border-left-color: var(--accent-bronze);
}

.DetalhesContent strong {
  color: #D4AF37;
  color: var(--accent-gold);
  font-weight: 600;
  min-width: 120px;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.DetalhesContent div span:not(.monospace) {
  color: #A8A8A8;
  color: var(--text-secondary);
  font-weight: 500;
  word-wrap: break-word;
  overflow-wrap: break-word;
  flex: 1 1;
  max-width: 100%;
}

.monospace {
  font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
  background: rgba(212, 175, 55, 0.1);
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(212, 175, 55, 0.25);
  font-size: 0.8rem;
  color: #D4AF37;
  color: var(--accent-gold);
  font-weight: 500;
  word-break: break-all;
  overflow-wrap: break-word;
  max-width: 100%;
  display: inline-block;
}

/* ========== BOTÕES DE COMPROVANTE CORRIGIDOS ========== */
.BotoesComprovante {
  display: flex !important;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  visibility: visible !important;
  opacity: 1 !important;
}

.btn-primary,
.btn-secondary {
  padding: 0.8rem 1.2rem;
  border-radius: 4px;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  transition: var(--transition);
  border: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  min-width: 140px;
  justify-content: center;
  position: relative;
  z-index: 1001;
}

.btn-primary {
  background: linear-gradient(180deg, #D4AF37 0%, #B8961E 100%);
  background: var(--gradient-gold);
  color: #1a1a1a;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover:not(:disabled) {
  background: #B8961E;
  background: var(--accent-gold-dark);
}

.btn-primary:disabled {
  background: #606060;
  background: var(--text-muted);
  cursor: not-allowed;
  opacity: 0.6;
}

.btn-secondary {
  background: #1C1C1C;
  background: var(--card-bg);
  color: #A8A8A8;
  color: var(--text-secondary);
  border: 1px solid #2A2A2A;
  border: 1px solid var(--border-color);
}

.btn-secondary:hover:not(:disabled) {
  background: #242424;
  background: var(--hover-bg);
  color: #D4AF37;
  color: var(--accent-gold);
  border-color: #D4AF37;
  border-color: var(--accent-gold);
}

.btn-transfer {
  background: linear-gradient(180deg, #D4AF37 0%, #B8961E 100%);
  background: var(--gradient-gold);
  font-size: 1.2rem;
  padding: 1.2rem 2.5rem;
  min-width: 220px;
}

/* ========== BOTÕES DE AÇÃO PARA FATURA ========== */
.BotoesAcoes {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: flex-start;
}

.botao-continuar {
  padding: 0.7rem 1.5rem;
  background: #DC2626;
  background: var(--error);
  color: white;
  border: none;
  border-radius: 4px;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
  transition: var(--transition);
}

.botao-continuar:hover {
  background: #B91C1C;
}

/* ========== PAGINAÇÃO ========== */
.pagination2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #2A2A2A;
  border-top: 1px solid var(--border-color);
}

.anterior,
.proximo,
.botao-seta-esquerda,
.botao-seta-direita {
  background: #141414;
  background: var(--secondary-bg);
  border: 1px solid #2A2A2A;
  border: 1px solid var(--border-color);
  color: #A8A8A8;
  color: var(--text-secondary);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.2s ease;
  transition: var(--transition);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.anterior:hover,
.proximo:hover,
.botao-seta-esquerda:hover,
.botao-seta-direita:hover {
  background: #242424;
  background: var(--hover-bg);
  color: #D4AF37;
  color: var(--accent-gold);
  border-color: #D4AF37;
  border-color: var(--accent-gold);
}

.anterior:disabled,
.proximo:disabled,
.botao-seta-esquerda:disabled,
.botao-seta-direita:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-icon {
  width: 16px !important;
  height: 16px !important;
}

.pagination-info {
  background: #1C1C1C;
  background: var(--card-bg);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  border-radius: var(--border-radius);
  border: 1px solid #2A2A2A;
  border: 1px solid var(--border-color);
  color: #E8E8E8;
  color: var(--text-primary);
  font-weight: 500;
}

/* ========== LOADING STATES ========== */
.loading-row {
  text-align: center !important;
  padding: 20px !important;
  color: #606060;
  color: var(--text-muted);
}

.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #2A2A2A;
  border: 2px solid var(--border-color);
  border-top-color: #D4AF37;
  border-top-color: var(--accent-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 0.5rem;
}

/* ========== ESTILOS PIX - CONTAINER PRINCIPAL ========== */
.pix-container {
  background: linear-gradient(180deg, #1C1C1C 0%, #171717 100%);
  background: var(--gradient-card);
  border: 1px solid #2A2A2A;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  box-shadow: var(--shadow-sm);
  margin: 2rem 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.pix-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #D4AF37;
  background: var(--accent-gold);
}

/* ========== PIX HEADER ========== */
.pix-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
  border-bottom: 1px solid #2A2A2A;
  border-bottom: 1px solid var(--border-color);
}

.pix-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #D4AF37;
  color: var(--accent-gold);
}

.pix-subtitle {
  color: #A8A8A8;
  color: var(--text-secondary);
  font-size: 1.2rem;
  font-weight: 400;
}

/* ========== PIX SLIDER WRAPPER ========== */
.pix-slider-wrapper {
  background: rgba(42, 42, 42, 0.5);
  border-radius: 4px;
  border-radius: var(--border-radius);
  padding: 2rem;
  border: 1px solid #2A2A2A;
  border: 1px solid var(--border-color);
}

/* ========== PROGRESS DOTS ========== */
.pix-progress {
  margin-bottom: 3rem;
  position: relative;
}

.progress-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #2A2A2A;
  background: var(--border-color);
  transform: translateY(-50%);
  z-index: 1;
}

.progress-fill {
  height: 100%;
  background: #D4AF37;
  background: var(--accent-gold);
  transition: width 0.4s ease;
}

.progress-dots {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  position: relative;
  z-index: 2;
  padding: 0 2rem;
}

.progress-dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #1C1C1C;
  background: var(--card-bg);
  border: 2px solid #2A2A2A;
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: #606060;
  color: var(--text-muted);
  transition: all 0.2s ease;
  transition: var(--transition);
  position: relative;
}

.progress-dot.active {
  border-color: #D4AF37;
  border-color: var(--accent-gold);
  background: #D4AF37;
  background: var(--accent-gold);
  color: #1a1a1a;
}

.progress-dot.current {
  border-color: #B8961E;
  border-color: var(--accent-gold-dark);
  background: #B8961E;
  background: var(--accent-gold-dark);
  color: #1a1a1a;
}

/* ========== PIX SLIDER ========== */
.pix-slider {
  overflow: hidden;
  border-radius: 4px;
  border-radius: var(--border-radius);
  background: transparent;
}

.pix-slider-content {
  display: flex;
  width: 400%;
  transition: transform 0.4s ease;
}

/* ========== PIX STEPS ========== */
.pix-step {
  width: 25%;
  flex-shrink: 0;
  text-align: center;
  padding: 2rem;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 1.5rem;
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #D4AF37;
  color: var(--accent-gold);
}

.step-subtitle {
  color: #A8A8A8;
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  max-width: 100%;
  line-height: 1.5;
}

/* ========== INPUT STYLES ========== */
.input-wrapper {
  width: 100%;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pix-input {
  width: 100%;
  padding: 1.5rem 2rem;
  background: #1C1C1C;
  background: var(--card-bg);
  border: 1px solid #2A2A2A;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  border-radius: var(--border-radius);
  color: #E8E8E8;
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.2s ease;
  transition: var(--transition);
  outline: none;
}

.pix-input:focus {
  border-color: #D4AF37;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.15);
}

.pix-input::placeholder {
  color: #606060;
  color: var(--text-muted);
}

.pix-input-valor {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #D4AF37;
  color: var(--accent-gold);
}

.pix-input-chave {
  text-align: left;
  font-family: 'Monaco', 'Consolas', monospace;
  font-size: 1.1rem;
}

/* ========== BUTTON STYLES ========== */
.step-actions {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* ========== RESUMO CARD ========== */
.resumo-card {
  background: linear-gradient(180deg, #1C1C1C 0%, #171717 100%);
  background: var(--gradient-card);
  border: 1px solid #2A2A2A;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  border-radius: var(--border-radius);
  padding: 2rem;
  margin: 2rem 0;
  width: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  box-shadow: var(--shadow-sm);
}

.resumo-section {
  margin-bottom: 1rem; /* Reduzido */
}

.resumo-section:last-child {
  margin-bottom: 0;
}

.resumo-section h3 {
  color: #D4AF37;
  color: var(--accent-gold);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #2A2A2A;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.resumo-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(42, 42, 42, 0.4);
}

.resumo-item:last-child {
  border-bottom: none;
}

.resumo-item span {
  color: #A8A8A8;
  color: var(--text-secondary);
  font-weight: 500;
}

.resumo-item strong {
  color: #D4AF37;
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 1.1rem;
}

.resumo-item.total {
  border-top: 1px solid #2A2A2A;
  border-top: 1px solid var(--border-color);
  margin-top: 1rem;
  padding-top: 1rem;
  font-size: 1.1rem;
}

.resumo-item.total strong {
  color: #0E9F6E;
  color: var(--success);
  font-size: 1.3rem;
}

/* ========== SUCCESS ANIMATION ========== */
.success-animation {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 300px;
}

.success-gif {
  max-width: 200px;
  max-height: 200px;
  border-radius: 4px;
  border-radius: var(--border-radius);
}

.success-content {
  text-align: left;
}

.success-icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  color: #0E9F6E;
  color: var(--success);
}

/* ========== SUCCESS DETAILS ========== */
.success-details {
  background: rgba(14, 159, 110, 0.1);
  border: 1px solid rgba(14, 159, 110, 0.2);
  border-radius: 4px;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin: 2rem 0;
  width: 100%;
  text-align: left;
}

.success-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: left;
}

.success-item span {
  color: #A8A8A8;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 1rem;
}

.success-item strong {
  color: #0E9F6E;
  color: var(--success);
  font-weight: 600;
  font-size: 1.1rem;
  word-break: break-all;
  text-align: left;
}

.success-item strong[style*="monospace"] {
  font-family: 'Monaco', 'Consolas', monospace !important;
  background: rgba(14, 159, 110, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  line-height: 1.4;
  max-width: 100%;
  word-break: break-all;
  display: block;
  text-align: left;
}

/* ========== LOADING OVERLAY ========== */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.loading-content {
  text-align: center;
  background: #1C1C1C;
  background: var(--card-bg);
  padding: 3rem;
  border-radius: 4px;
  border-radius: var(--border-radius);
  border: 1px solid #2A2A2A;
  border: 1px solid var(--border-color);
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
  box-shadow: var(--shadow-lg);
}

.loading-video {
  max-width: 300px;
  max-height: 300px;
  border-radius: 4px;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
}

.loading-text h3 {
  color: #D4AF37;
  color: var(--accent-gold);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.loading-text p {
  color: #A8A8A8;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* ========== ESTILOS COBRANÇA PIX ========== */
.cobranca-methods-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1.5rem;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.cobranca-method-card {
  background: linear-gradient(180deg, #1C1C1C 0%, #171717 100%);
  background: var(--gradient-card);
  border: 1px solid #2A2A2A;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  border-radius: var(--border-radius);
  padding: 2rem 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  overflow: hidden;
  text-align: left;
}

.cobranca-method-card.selected {
  border-color: #D4AF37;
  border-color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.08);
}

.cobranca-method-card.disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.cobranca-method-card:not(.disabled):hover {
  border-color: #D4AF37;
  border-color: var(--accent-gold);
}

.method-icon-container {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: bold;
  transition: all 0.2s ease;
  transition: var(--transition);
  position: relative;
  z-index: 2;
}

.method-icon-container.pix-method {
  background: linear-gradient(180deg, #D4AF37 0%, #B8961E 100%);
  background: var(--gradient-gold);
  color: #1a1a1a;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  box-shadow: var(--shadow-sm);
}

.method-icon-container.boleto-method {
  background: linear-gradient(180deg, #666, #555);
  color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  box-shadow: var(--shadow-sm);
}

.method-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #D4AF37;
  color: var(--accent-gold);
  margin: 0;
  position: relative;
  z-index: 2;
}

.method-desc {
  font-size: 0.9rem;
  color: #A8A8A8;
  color: var(--text-secondary);
  text-align: left;
  margin: 0;
  position: relative;
  z-index: 2;
}

.coming-soon-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #DC2626;
  background: var(--error);
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  border-radius: var(--border-radius);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 3;
}

.cobranca-amount-section {
  margin-bottom: 2.5rem;
  text-align: left;
}

.cobranca-amount-label {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  color: #D4AF37;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  text-align: left;
}

.cobranca-success-alert {
  background: #0E9F6E;
  background: var(--success);
  color: white;
  padding: 1.5rem;
  border-radius: 4px;
  border-radius: var(--border-radius);
  text-align: left;
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 2;
}

/* ========== ANIMAÇÕES ========== */
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ========== RESPONSIVO ========== */
@media (max-width: 1200px) {
  .user-balance-container {
    grid-template-columns: 1fr;
  }
  
  .main-content {
    width: calc(100% - 300px);
    margin-left: 290px;
    margin-right: 10px;
  }
}

@media (max-width: 768px) {
  .body {
    padding: 1rem;
    margin-top: 80px; /* Mantém espaço do header */
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .header-content {
    padding: 0 1rem;
  }

  .logoTreco {
    width: 140px !important;
    height: 30px !important;
  }

  .header-right {
    gap: 1rem;
  }

  .botaoSair {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .botaoSino {
    padding: 0.5rem;
    width: auto !important;
    min-width: auto !important;
  }

  .botaoSino img {
    width: 20px !important;
    height: 20px !important;
  }

  .ListaNavegacao {
    flex-direction: row;
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    padding: 8px;
    justify-content: space-around;
    gap: 0;
    border-top: 1px solid #2A2A2A;
    border-top: 1px solid var(--border-color);
    border-right: none;
    overflow: hidden;
    background: rgba(20, 20, 20, 0.98);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
  
  .itemLista {
    flex: 1 1;
    min-width: 0;
    max-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
  }
  
  .itemLista a {
    padding: 0.5rem;
    font-size: 0.65rem;
    width: 100%;
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
  }
  
  .iconeLista {
    width: 22px !important;
    height: 22px !important;
  }

  .main-content {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
    margin-bottom: 120px; /* Espaço para nav inferior */
    overflow: visible;
    overflow-x: hidden;
    box-sizing: border-box;
    margin-top: 4rem !important; /* AUMENTADO - era 1.5rem */
    padding-top: 1rem; /* Padding extra no topo */
  }

  .user-balance-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .user-info-card {
    padding: 1.2rem;
  }

  .BemVindo {
    font-size: 1rem;
  }

  .usuario-perfil-icon {
    width: 50px !important;
    height: 50px !important;
  }

  .ContainerExtrato {
    padding: 0.8rem;
    margin-bottom: 120px;
    overflow: visible;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
    padding-top: 1rem; /* Reduzido */
  }

  .extrato-title {
    font-size: 1.4rem; /* Reduzido de 1.5rem */
    padding-top: 0.5rem;
    margin-bottom: 0.3rem;
  }

  .table-container {
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    border-radius: 4px;
    border-radius: var(--border-radius);
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
  }

  .ContainerExtrato table {
    min-width: 100%;
    width: 100%;
    font-size: 0.8rem;
    position: relative;
    z-index: 1;
    table-layout: fixed;
    max-width: 100%;
  }

  .ContainerExtrato th,
  .ContainerExtrato td,
  .ContainerExtrato .Titulo {
    padding: 0.6rem 0.3rem;
    font-size: 0.75rem;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .ContainerExtrato th:nth-child(1),
  .ContainerExtrato td:nth-child(1) {
    width: 30%;
    min-width: 70px;
  }

  .ContainerExtrato th:nth-child(2),
  .ContainerExtrato td:nth-child(2) {
    width: 20%;
    min-width: 50px;
  }

  .ContainerExtrato th:nth-child(3),
  .ContainerExtrato td:nth-child(3) {
    width: 25%;
    min-width: 60px;
  }

  .ContainerExtrato th:nth-child(4),
  .ContainerExtrato td:nth-child(4) {
    width: 25%;
    min-width: 70px;
  }

  .DetalhesContent.expanded {
    padding: 1rem;
    margin: 0.3rem 0 5rem 0;
    max-height: 1500px;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 100%;
    overflow: visible !important;
    box-sizing: border-box;
  }

  .DetalhesContent div {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.6rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .DetalhesContent strong {
    min-width: auto;
    margin-bottom: 0.3rem;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .DetalhesContent div span {
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: block;
    box-sizing: border-box;
  }

  .BotoesComprovante {
    flex-direction: column !important;
    gap: 0.8rem !important;
    margin-top: 1rem !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 1001 !important;
    position: relative !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .btn-primary,
  .btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0.8rem 1rem !important;
    font-size: 0.8rem !important;
    min-width: auto !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 1001 !important;
    position: relative !important;
    box-sizing: border-box !important;
  }

  .pagination2 {
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
  }

  .anterior span,
  .proximo span {
    display: none;
  }

  .anterior,
  .proximo {
    padding: 0.6rem;
    min-width: 50px;
  }

  .searchContainer {
    width: 100% !important;
    margin: 1rem 0 1.5rem 0 !important; /* Reduzido margem inferior */
    padding: 1.2rem 1rem !important; /* Reduzido padding */
    box-sizing: border-box !important;
  }
  
  .searchGrid {
    display: flex !important; /* Mudou de grid para flex */
    flex-direction: column !important;
    gap: 1rem !important;
    width: 100% !important;
  }
  
  .inputGroup {
    width: 100% !important;
  }
  
  .buttonGroup {
    flex-direction: column !important;
    gap: 0.5rem !important;
    width: 100% !important;
  }
  
  .searchButton,
  .clearButton {
    flex: 1 1 !important;
    width: auto !important;
    padding: 0.9rem 1rem !important;
    font-size: 0.9rem !important;
    margin: 0 !important;
  }

  /* ========== PIX MOBILE - ALINHAMENTO À ESQUERDA ========== */
  .pix-container {
     padding: 1rem;
    margin: 1rem 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding-top: 1.5rem;
  }

  .pix-header {
    text-align: left !important;
    margin-bottom: 1.5rem; /* Reduzido de 2rem */
    padding: 1rem 0; /* Reduzido de 1.5rem */
    border-bottom: 1px solid #2A2A2A;
    border-bottom: 1px solid var(--border-color);
  }

  .pix-title {
    font-size: 1.6rem; /* Reduzido de 1.8rem */
    padding-top: 0.5rem;
    text-align: left !important;
    margin-bottom: 0.3rem;
  }

  .pix-subtitle {
    font-size: 0.9rem;
    text-align: left !important;
  }

  .pix-slider-wrapper {
    padding: 1rem 0.8rem; /* Reduzido padding */
    width: 100%;
    box-sizing: border-box;
    overflow: visible !important;
    padding-bottom: 60px !important; /* Reduzido de 80px */
  }

  .progress-dots {
    padding: 0 0.5rem;
    margin-bottom: 1.5rem; /* Reduzido de padrão */
  }

  .progress-dot {
    width: 35px; /* Reduzido de 40px */
    height: 35px;
    font-size: 0.9rem;
  }

  .progress-dot span {
    font-size: 1rem;
  }

  .pix-slider {
    overflow-x: hidden !important;
    overflow-y: visible !important;
  }

  .pix-step {
    min-height: 350px !important; /* Reduzido de 400px */
    padding: 0.8rem 0.5rem; /* Reduzido */
    width: 100%;
    box-sizing: border-box;
    overflow: visible !important;
    text-align: left !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 0.8rem !important; /* Reduzido de 1rem */
  }

  .step-icon {
    font-size: 2.2rem; /* Reduzido de 2.5rem */
    margin-bottom: 0.2rem; /* Reduzido */
    align-self: flex-start;
  }

  .step-title {
    font-size: 1.4rem; /* Reduzido de 1.5rem */
    text-align: left !important;
    width: 100%;
    align-self: flex-start;
    margin-bottom: 0.2rem; /* Reduzido */
  }

  .step-subtitle {
    font-size: 0.85rem;
    text-align: left !important;
    width: 100%;
    align-self: flex-start;
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }

  .input-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 0 0.8rem 0; /* Reduzido de 1rem */
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
  }

  .pix-input {
    padding: 0.9rem 1rem; /* Reduzido */
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
    text-align: left !important;
  }

  .pix-input-valor {
    font-size: 1.3rem; /* Reduzido de 1.4rem */
    text-align: left !important;
    padding: 1rem 1.2rem;
  }

  .pix-input-chave {
    text-align: left !important;
  }

  .step-actions {
    flex-direction: row !important;
    gap: 0.8rem;
    width: 100%;
    position: relative !important;
    justify-content: flex-start !important;
    align-items: center !important;
    margin-top: 0.5rem; /* Reduzido */
  }
  
  .step-actions .btn-primary,
  .step-actions .btn-secondary {
    flex: 1 1;
    min-width: 0;
    justify-content: center;
    white-space: nowrap;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }
  
  .step-actions .btn-primary span,
  .step-actions .btn-secondary span {
    display: inline !important;
  }

  .resumo-card {
    padding: 1rem; /* Reduzido de 1.2rem */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0.5rem 0 !important; /* Reduzido margem */
    text-align: left;
  }

  .loading-video {
    max-width: 250px;
    max-height: 250px;
  }

  .cobranca-methods-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cobranca-method-card {
    padding: 1.5rem;
  }

  .method-icon-container {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  /* Alinhamento do conteúdo de sucesso à esquerda */
  .success-animation {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left !important;
    min-height: 300px;
  }

  .success-content {
    text-align: left !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    width: 100%;
  }

  .success-icon {
    align-self: flex-start;
  }

  .success-details {
    text-align: left !important;
    width: 100%;
  }

  .comprovante-actions {
    justify-content: flex-start !important;
    align-items: stretch !important;
    flex-direction: column !important;
    gap: 0.8rem !important;
  }

  .comprovante-actions button {
    width: 100% !important;
  }

  button,
  .btn-primary,
  .btn-secondary,
  [type="button"],
  [type="submit"],
  [class*="btn-"],
  [class*="button"],
  [class*="botao"] {
    display: inline-flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 10 !important;
    pointer-events: auto !important;
    overflow: visible !important;
  }

  .pix-container,
  .pix-step,
  .config-container,
  .cobranca-container,
  .step-actions,
  .form-actions,
  .button-group,
  .actions,
  [class*="actions"],
  [class*="button-container"] {
    overflow: visible !important;
  }

  form,
  .form-container,
  .content-container,
  [class*="step"],
  [class*="card"] {
    padding-bottom: 80px !important;
    margin-bottom: 20px !important;
    overflow: visible !important;
  }
}

@media (max-width: 480px) {
  .body {
    padding: 0.5rem;
    margin-top: 70px;
  }

  .home-header {
    padding: 0.8rem 0;
  }

  .ContainerExtrato table {
    font-size: 0.7rem;
    min-width: 100%;
    width: 100%;
    table-layout: fixed;
  }

  .ContainerExtrato th,
  .ContainerExtrato td {
    padding: 0.5rem 0.2rem;
    font-size: 0.7rem;
  }

  .ContainerExtrato th:nth-child(1),
  .ContainerExtrato td:nth-child(1) {
    width: 35%;
  }

  .ContainerExtrato th:nth-child(2),
  .ContainerExtrato td:nth-child(2) {
    width: 20%;
  }

  .ContainerExtrato th:nth-child(3),
  .ContainerExtrato td:nth-child(3) {
    width: 25%;
  }

  .ContainerExtrato th:nth-child(4),
  .ContainerExtrato td:nth-child(4) {
    width: 20%;
  }

  .ContainerExtrato {
    padding: 0.5rem;
    margin-bottom: 150px;
  }

  .main-content {
    padding: 0 0.5rem;
    margin-bottom: 150px;
  }

  .DetalhesContent.expanded {
    padding: 0.8rem;
    margin: 0.2rem 0 6rem 0;
  }

  .DetalhesContent div {
    padding: 0.5rem;
    margin: 0.3rem 0;
  }

  .DetalhesContent .monospace {
    font-size: 0.7rem;
    padding: 0.3rem;
  }

  .pagination2 {
    justify-content: space-between;
    gap: 0.5rem;
  }

  .pagination-info {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }

  .ListaNavegacao {
    height: 60px;
    padding: 5px;
  }

  .itemLista {
    max-width: 70px;
  }

  .itemLista a {
    font-size: 0.6rem;
    padding: 0.4rem 0.2rem;
  }

  .iconeLista {
    width: 20px !important;
    height: 20px !important;
  }

  .pix-container {
    padding: 0.8rem 0.5rem;
    margin: 0.5rem 0;
  }

  .pix-header {
    padding: 1rem 0;
    margin-bottom: 1.5rem;
  }

  .pix-title {
    font-size: 1.5rem;
  }

  .pix-subtitle {
    font-size: 0.85rem;
  }

  .pix-slider-wrapper {
    padding: 1rem 0.5rem;
  }

  .progress-dots {
    padding: 0 0.3rem;
  }

  .progress-dot {
    width: 35px;
    height: 35px;
  }

  .progress-dot span {
    font-size: 0.9rem;
  }

  .pix-step {
    min-height: 350px;
    padding: 0.8rem 0.3rem;
  }

  .step-icon {
    font-size: 2.2rem;
  }

  .step-title {
    font-size: 1.3rem;
  }

  .step-subtitle {
    font-size: 0.8rem;
  }

  .pix-input {
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
  }

  .pix-input-valor {
    font-size: 1.2rem;
  }

  .resumo-card {
    padding: 1rem;
  }

  .resumo-section h3 {
    font-size: 1.1rem; /* Reduzido */
    margin-bottom: 0.8rem;
  }

  .resumo-item {
    padding: 0.5rem 0;
  }

  .resumo-item span,
  .resumo-item strong {
    font-size: 0.9rem;
  }

  .loading-video {
    max-width: 200px;
    max-height: 200px;
  }

  .loading-text h3 {
    font-size: 1.2rem;
  }

  .loading-text p {
    font-size: 0.9rem;
  }

  .success-icon {
    font-size: 4rem;
  }

  .cobranca-method-card {
    padding: 1.2rem;
  }

  .method-icon-container {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
  }

  .method-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 360px) {
  .ListaNavegacao li a span {
    display: none;
  }
  
  .ListaNavegacao li {
    min-width: 45px;
  }
  
  .iconeLista {
    width: 24px !important;
    height: 24px !important;
  }

  .ContainerExtrato th:nth-child(1),
  .ContainerExtrato td:nth-child(1) {
    width: 40%;
  }

  .ContainerExtrato th:nth-child(2),
  .ContainerExtrato td:nth-child(2) {
    width: 20%;
  }

  .ContainerExtrato th:nth-child(3),
  .ContainerExtrato td:nth-child(3) {
    width: 20%;
  }

  .ContainerExtrato th:nth-child(4),
  .ContainerExtrato td:nth-child(4) {
    width: 20%;
  }
}

/* ========== SCROLLBAR CUSTOMIZATION ========== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #141414;
  background: var(--secondary-bg);
}

::-webkit-scrollbar-thumb {
  background: #2A2A2A;
  background: var(--border-color);
  border-radius: 4px;
  border-radius: var(--border-radius);
}

::-webkit-scrollbar-thumb:hover {
  background: #D4AF37;
  background: var(--accent-gold);
}

/* ========== CONFIGURAÇÕES ========== */
.config-toggle-slider {
  background-color: #2A2A2A;
  background-color: var(--border-color);
}

.config-toggle input:checked + .config-toggle-slider {
  background-color: #D4AF37;
  background-color: var(--accent-gold);
}

/* ========== LOGIN PAGE ========== */
.login-page {
  position: relative !important;
  min-height: 100vh;
  overflow-y: auto !important;
  overflow-x: hidden;
  background: #0A0A0A;
  background: var(--primary-bg);
}

.login-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(20, 20, 20, 0.9) 15%),
    radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.login-page .body,
.login-page .ListaNavegacao {
  display: none !important;
}

.background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.2;
  pointer-events: none;
}

.login-header {
  background: rgba(20, 20, 20, 0.98);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid #2A2A2A;
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.login-logo {
  height: 45px !important;
  width: auto !important;
  transition: all 0.2s ease;
  transition: var(--transition);
}

.login-logo:hover {
  opacity: 0.85;
}

.login-hero-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  text-align: center;
  color: #D4AF37;
  color: var(--accent-gold);
  letter-spacing: 2px;
  line-height: 1.2;
  max-width: 90%;
  opacity: 0.05;
  pointer-events: none;
}

.login-page .login-container {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 2;
  padding: 2rem;
  margin-top: 120px;
  min-height: calc(100vh - 120px);
  overflow: visible;
  height: auto;
}

.login-page .login-card {
  background: linear-gradient(180deg, 
    rgba(28, 28, 28, 0.98) 0%, 
    rgba(23, 23, 23, 0.98) 100%
  );
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid #2A2A2A;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.login-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #D4AF37;
  background: var(--accent-gold);
}

.login-page .login-header-card {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-page .login-title {
  font-size: 2rem;
  font-weight: 700;
  color: #D4AF37;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.login-page .login-subtitle {
  color: #A8A8A8;
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 400;
}

.login-page .login-form {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
}

.login-page .login-form > * {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-page .login-label {
  display: block;
  color: #D4AF37;
  color: var(--accent-gold);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.login-page .login-label-optional {
  color: #606060;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 400;
  margin-left: 0.5rem;
}

.login-page .login-input {
  margin-bottom: 1.5rem;
}

.login-page .login-alert {
  padding: 1rem;
  border-radius: 4px;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  font-weight: 500;
  text-align: center;
  font-size: 0.9rem;
}

.login-page .login-alert-success {
  background: rgba(14, 159, 110, 0.12);
  border: 1px solid rgba(14, 159, 110, 0.25);
  color: #0E9F6E;
  color: var(--success);
}

.login-page .login-alert-error {
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.25);
  color: #DC2626;
  color: var(--error);
}

.login-page .login-pin-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  width: 100%;
  max-width: 400px;
}

.login-page .login-pin-input {
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid #2A2A2A;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  border-radius: var(--border-radius);
  color: #E8E8E8;
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  transition: all 0.2s ease;
  transition: var(--transition);
  caret-color: #D4AF37;
  caret-color: var(--accent-gold);
}

.login-page .login-pin-input:focus {
  outline: none;
  border-color: #D4AF37;
  border-color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.12);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.15);
}

.login-page .login-pin-input::placeholder {
  color: rgba(212, 175, 55, 0.3);
  font-weight: 400;
}

.login-page .login-pin-input:not(:placeholder-shown) {
  color: #D4AF37;
  color: var(--accent-gold);
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.1);
}

.login-page .login-password-display {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  padding: 1.2rem;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 4px;
  border-radius: var(--border-radius);
  border: 1px solid #2A2A2A;
  border: 1px solid var(--border-color);
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.login-page .login-password-dot {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #D4AF37;
  color: var(--accent-gold);
  transition: all 0.2s ease;
  transition: var(--transition);
}

.login-page .login-numpad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
  gap: 1rem;
  margin-bottom: 1.5rem;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  align-content: center;
}

.login-page .login-numpad-button {
  width: 70px;
  height: 70px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid #2A2A2A;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: #E8E8E8;
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  box-shadow: var(--shadow-sm);
}

.login-page .login-numpad-button:hover:not(:disabled) {
  background: #D4AF37;
  background: var(--accent-gold);
  color: #1a1a1a;
  border-color: #D4AF37;
  border-color: var(--accent-gold);
}

.login-page .login-numpad-button:active {
  transform: scale(0.95);
}

.login-page .login-numpad-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.login-page .login-numpad-delete {
  background: rgba(220, 38, 38, 0.12);
  border-color: rgba(220, 38, 38, 0.25);
  color: #DC2626;
  color: var(--error);
}

.login-page .login-numpad-delete:hover:not(:disabled) {
  background: #DC2626;
  background: var(--error);
  color: white;
}

.login-page .login-numpad-empty {
  width: 70px;
  height: 70px;
}

.login-page .login-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
  width: 100%;
  max-width: 400px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.login-page .login-btn-primary {
  width: 100%;
  max-width: 280px;
  padding: 1.2rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  transition: var(--transition);
  margin: 0 auto;
}

.login-page .login-btn-primary:hover:not(:disabled) {
  background: #B8961E;
  background: var(--accent-gold-dark);
}

.login-page .login-btn-primary .loading-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(26, 26, 26, 0.3);
  border-top-color: #1a1a1a;
  margin-right: 0.5rem;
}

.login-page .login-btn-secondary {
  width: 100%;
  max-width: 280px;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  min-height: 50px;
  background: transparent;
  border: 1px solid #D4AF37;
  border: 1px solid var(--accent-gold);
  color: #D4AF37;
  color: var(--accent-gold);
  transition: all 0.2s ease;
  transition: var(--transition);
  margin: 0 auto;
}

.login-page .login-btn-secondary:hover:not(:disabled) {
  background: #D4AF37;
  background: var(--accent-gold);
  color: #1a1a1a;
}

.login-page .login-help-text {
  color: #606060;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  width: 100%;
  max-width: 400px;
}

.login-page .login-info-text {
  color: #606060;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
  margin: 0;
  line-height: 1.5;
  opacity: 0.8;
  width: 100%;
  max-width: 600px;
}

@media (max-width: 768px) {
  .login-page {
    position: relative !important;
    min-height: 100vh;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    background: #0A0A0A;
    background: var(--primary-bg);
  }
  
  .login-page .login-container {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    padding: 1rem;
    margin-top: 100px;
    display: block !important;
    min-height: calc(100vh - 100px);
    padding-bottom: 2rem;
    overflow: visible !important;
    height: auto !important;
  }
  
  .login-page .login-card {
    padding: 2rem 1.5rem;
    border-radius: 4px;
    border-radius: var(--border-radius);
    position: relative !important;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    margin: 0 auto 2rem auto;
    max-width: 100%;
  }
  
  .login-page .login-hero-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    opacity: 0.03;
    position: absolute;
    top: 40%;
  }
  
  .login-page .login-title {
    font-size: 1.8rem;
  }
  
  .login-page .login-subtitle {
    font-size: 0.9rem;
  }
  
  .login-page .login-pin-input {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
  
  .login-page .login-pin-container {
    gap: 0.5rem;
  }
  
  .login-page .login-password-display,
  .login-page .login-numpad {
    display: none !important;
  }
  
  .login-page .login-pin-container {
    display: flex !important;
  }
  
  .login-page .login-btn-primary {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
  
  .login-page .login-btn-secondary {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .background-video {
    height: 100vh;
    opacity: 0.15;
  }
}

@media (max-width: 480px) {
  .login-page .login-container {
    padding: 0.5rem;
    margin-top: 70px;
    padding-bottom: 3rem;
  }
  
  .login-page .login-card {
    padding: 1.5rem 1rem;
    margin-bottom: 3rem;
  }
  
  .login-page .login-title {
    font-size: 1.5rem;
  }
  
  .login-page .login-pin-input {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .login-page .login-pin-container {
    gap: 0.4rem;
  }
  
  .login-page .login-actions {
    gap: 0.8rem;
  }
  
  .login-page .login-btn-primary,
  .login-page .login-btn-secondary {
    padding: 0.9rem 1rem;
    font-size: 0.9rem;
  }
}

@media (min-width: 769px) and (max-width: 1199px) {
  .login-page .login-container {
    margin-top: 110px;
  }
}

@media (min-width: 769px) {
  .login-pin-container.password-mobile {
    display: none !important;
  }
  
  .login-password-display {
    display: flex !important;
  }
  
  .login-numpad {
    display: grid !important;
  }
  
  .login-card {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .login-page .login-container {
    margin-top: 100px;
  }
  
  .login-page .login-card {
    max-width: 900px;
    padding: 3rem;
  }
  
  .login-page .login-title {
    font-size: 2.2rem;
  }
}

.login-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
  box-shadow: var(--shadow-lg);
}

.login-pin-input:focus,
.login-btn-primary:focus,
.login-btn-secondary:focus,
.login-numpad-button:focus {
  outline: 2px solid #D4AF37 !important;
  outline: 2px solid var(--accent-gold) !important;
  outline-offset: 2px !important;
}

html, body {
  overflow-y: auto !important;
  overflow-x: hidden !important;
  height: auto !important;
  min-height: 100vh;
  position: relative !important;
}

body {
  -webkit-overflow-scrolling: touch;
}

.home-container.login-page {
  height: auto !important;
  min-height: 100vh !important;
  overflow: auto !important;
  position: relative !important;
}

@media (min-width: 769px) {
  .pix-input.login-input {
    padding: 1.5rem 2.5rem;
    font-size: 1.3rem;
    max-width: 500px;
    margin: 0 auto 1.5rem auto;
  }
  
  .input-wrapper {
    max-width: 500px;
    margin: 0 auto 2rem auto;
  }
}

.config-api-key-display {
    display: flex !important;
    flex-direction: row !important; /* HORIZONTAL */
    flex-wrap: wrap !important;
    gap: 0.3rem !important;
    padding: 1rem !important;
    background: #1C1C1C !important;
    background: var(--card-bg) !important;
    border-radius: 4px !important;
    border-radius: var(--border-radius) !important;
    border: 1px solid #2A2A2A !important;
    border: 1px solid var(--border-color) !important;
    word-break: break-all !important;
    font-family: 'Monaco', 'Consolas', monospace !important;
    font-size: 0.9rem !important;
    line-height: 1.8 !important;
    color: #D4AF37 !important;
    color: var(--accent-gold) !important;
    letter-spacing: 0.5px !important;
  }

  .config-api-key-display span {
    display: inline !important; /* INLINE para ficar horizontal */
  }

  /* HOME - Ajustes cards */
  .user-balance-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 0.5rem; /* Espaçamento do topo */
  }

  .user-info-card {
    padding: 1.2rem;
  }

  /* Success animation ajustes */
  .success-animation {
    min-height: 250px; /* Reduzido */
  }

  .success-content {
    gap: 0.8rem;
  }

  .success-icon {
    font-size: 3.5rem; /* Reduzido */
  }

  .success-details {
    margin: 1rem 0; /* Reduzido */
  }

  .comprovante-actions {
    gap: 0.8rem !important;
    margin-top: 1rem !important; /* Reduzido */
  }

/* By Snoop @ Side */
/* INICIO GERAL */

html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    background-color: #323232;
    font-family: 'Quicksand', Arial, sans-serif;
}

.body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    background-color: #323232;
}

.home-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: 'Quicksand', Arial, sans-serif;
    height: 100vh;
    
}

/* FIM GERAL */

/* INICIO CABECALHO */

.home-header {
    background-color: #181818;
    color: white;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.logoTreco {
    width: 170px;
    height: auto;
}

.header-left {
    display: flex;
    align-items: center;
    position: relative;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.botaoSino {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #2e2e2e;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.botaoSino:hover {
    background-color: #4E5066;
}

.botaoSino img {
    width: 30px;
    height: 30px;
}

.botaoSair {
    color: white;
    font-weight: bold;
    text-decoration: none;
    padding: 0.5rem;
    font-size: 1rem;
    
}

.botaoSair:hover {
    color: #ccc;
}

/* FIM CABECALHO */

/* INICIO LISTA LATERAL */

.ListaNavegacao {
    width: 12%;
    height: 100%;
    background-color: #2e2e2e;
    padding: 0;
    margin: 0;
    position: fixed;
    display: flex;
    flex-direction: column;
}

.itemLista1,
.itemLista2,
.itemLista3,
.itemLista4 {
    width: 100%;
    height: 60px;
    list-style: none;
    display: flex;
}

.itemLista1 a,
.itemLista2 a,
.itemLista3 a,
.itemLista4 a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.iconeLista {
    width: 35px;
    height: 35px;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 12px;
}

.itemLista1 a:hover,
.itemLista2 a:hover,
.itemLista3 a:hover,
.itemLista4 a:hover {
    background-color: #75757536;
}

ul li {
    position: relative;
    margin-top: 1%;
}

a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}

a:visited:hover {
    color: white;
}


/* =============================
   BITCOIN.CSS (com ajustes)
   ============================= */

/* SLIDER PRINCIPAL (semelhante ao Pix) */

/* 1) Container geral que deixa o slider e o extrato em "row" */

.saldo-resumoBTC{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    right: 15%;
}

/* Títulos */
.titulo-bitcoin {
  font-family: 'Quicksand';
  color: #fff;
  font-size: 10;
}

.usuario-infoBTC{
    display: flex;
      align-items: center;
      gap: 0.5rem;
      position: relative;
      right: 120%;
}

.usuario-perfil-icon{
    margin: 0;
      position: relative;
      right: 100px;
}

.dinheiroBTC{
    display: flex;
      align-items: center;
      gap: 0.5rem;
      position: relative;
      right: 45%;
}

.botao-seta-esquerdaBTC,
.botao-seta-direitaBTC {
  cursor: pointer;
  padding: 2%;
  border-radius: 5px;
  border: none;
  width: 10%;
  margin-inline: 25%;

}

.botao-seta-esquerdaBTC,
.botao-seta-direitaBTC {
  padding: 8px 16px;
  font-size: 1.2rem;
  border: none;
  border-radius: 4px;
  background-color: transparent;
  transition: background-color 0.2s ease;
}

/* Quando o botão estiver desabilitado */
.botao-seta-direitaBTC:disabled {
  /* cor do botão bloqueado */
  cursor: not-allowed;
  opacity: 0.6;
}

/* Quando o botão estiver habilitado */
.botao-seta-esquerdaBTC,
.botao-seta-direitaBTC :enabled {
  cursor: pointer;
}

/* Ao passar o mouse quando habilitado */
.botao-seta-esquerdaBTC,
.botao-seta-direitaBTC:enabled:hover {}

.botao-seta-esquerdaBTC {
  padding: 8px 16px;
  font-size: 1.2rem;
  border: none;
  border-radius: 4px;
  transition: background-color 0.2s ease;
  /* Aparência geral do botão esquerdo habilitado (se quiser) */
  cursor: pointer;
}

/* Quando o botão estiver desabilitado */
.botao-seta-esquerdaBTC:disabled {
  /* mesma cor do botão direito desabilitado */
  cursor: not-allowed;
  opacity: 1;
}

.bitcoin-content {
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 70%;
  padding: 2%;
  position: relative;
  left: 16%;
  bottom: 5%;
}

.sliderBTC {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    bottom: 50px;
    margin: 0 auto;
    background-color: #363636;
    border-radius: 8px;
    color: #fff;
    height: 650px; /* Ajuste de altura */
  }
  
  .slider-content {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    bottom: 12%;
  }
  
  .step {
    flex: 0 0 100%;
    padding: 20px;
    box-sizing: border-box;
    color: #fff;
    line-height: 1.4;
  }
  
  /* Bolinhas (dots) */
  .dotsBTC {
    display: flex;
    list-style: none;
    justify-content: center;
    margin: 10px 0;
    padding: 0;
    position: relative;
    top: 640px;
  }
  
  .dotsBTC li {
    width: 10px;
    height: 10px;
    border: 2px solid #ffffff80;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
  }
  
  .dotsBTC li:hover {
    border-color: #fff;
  }
  
  .dotsBTC li.active {
    background-color: #fff;
    border-color: #fff;
  }
  

    /* Botão Iniciar Transferencia*/
  
    .transferencia {
      position: relative;
      color: #b69322;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 10px 10px;
      font-size: 18px;
      margin: 5px;
      top: 18%;
      transition: background-color 0.2s ease;
      overflow: hidden;
      /* Caso as linhas ultrapassem */
    }

    .transferencia:hover {
      position: relative;
      color: #e6ba2c;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 10px 10px;
      font-size: 20px;
      margin: 5px;
      top: 18%;
      transition: background-color 0.2s ease;
      transition: .2s ease;
      overflow: hidden;
      /* Caso as linhas ultrapassem */
    }
  
    /* Linhas horizontais (topo e base) */
    .transferencia::before,
    .transferencia::after {
      content: "";
      position: absolute;
      height: 2px;
      /* espessura da borda */
      width: 0;
      /* começa sem largura */
      background: #ecc032;
      /* cor da borda */
      transition: 0.5s ease;
      /* tempo/transição */
    }
  
    /* ::before será a linha de cima (e depois a da direita) */
    .transferencia::before {
      top: 0;
      left: 0;
    }
  
    /* ::after será a linha de baixo (e depois a da esquerda) */
    .transferencia::after {
      bottom: 0;
      right: 0;
    }
  
    /* Ao HOVER, cada pseudo percorre duas bordas:
     A 'linha de cima' (top) vai para 'width: 100%' e depois 'height' (lado direito).
     A 'linha de baixo' (bottom) vai para 'width: 100%' e depois sobe pela esquerda.
     Para “simular” esse efeito, podemos usar keyframes ou transições encadeadas.
     Aqui faremos algo mais simples usando duas “fases” (largura e altura). */
  
    /* Usando keyframes para a ::before (top + right) */
    .transferencia:hover::before {
      animation: drawTopRight 1s forwards;
    }
  
    .transferencia:hover::after {
      animation: drawBottomLeft 1s forwards;
    }
  
    /* Keyframe 1: do topo à direita */
    @keyframes drawTopRight {
      0% {
        width: 0;
        left: 0;
        top: 0;
        height: 2px;
      }
  
      50% {
        width: 100%;
        left: 0;
        top: 0;
        height: 2px;
        /* percorre toda a parte de cima */
      }
  
      51% {
        width: 2px;
        left: 98%;
        top: 0;
        /* termina a largura, começa a “descer” */
      }
  
      100% {
        width: 2px;
        height: 100%;
        left: 98%;
        top: 0;
        /* desce até o canto inferior direito */
      }
    }
  
    /* Keyframe 2: de baixo à esquerda */
    @keyframes drawBottomLeft {
      0% {
        width: 0;
        right: 0;
        bottom: 0;
        height: 2px;
      }
  
      50% {
        width: 100%;
        right: 0;
        bottom: 0;
        height: 2px;
        /* percorre toda a parte de baixo */
      }
  
      51% {
        width: 2px;
        right: 98%;
        bottom: 0;
        /* termina a largura, começa a “subir” */
      }
  
      100% {
        width: 2px;
        height: 100%;
        right: 98%;
        bottom: 0;
        /* sobe até o canto superior esquerdo */
      }
    }
  
    .transferencia:not(:hover)::before,
    .transferencia:not(:hover)::after {
      animation: none;
      /* anula a animação */
      width: 0;
      /* volta ao estado inicial */
      height: 2px;
    }
  
  
    /* Botão padrão */
    .botao {
      padding: 10px 10px;
      font-size: 16px;
      border: none;
      border-radius: 5px;
      background-color: transparent;
      color: #ecc032;
      cursor: pointer;
      margin: 5px;
      transition: background-color 0.2s ease;
    }
  
    .botao:hover {
      opacity: .5;
      transition: opacity .2s ease;
    }

  /* CONTÊINER BOTOES / ETC */
.ContainerExtratoBTC {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 662px;
  padding: 2%;
  position: relative;
  margin-bottom: 50px;
  max-width: 600px;
  background-color: #383838;
  border-radius: 8px;
}

.DetalhesContent {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  padding: 1;
}

.DetalhesContent.expanded {
  max-height: 300px;
  padding: 1%;
  opacity: 1;
}
  
.tabelaExtrato {
  margin: 20px auto;
  border-radius: 10px;
  border-collapse: collapse;
  /* se quiser manter bordas colapsadas */
  margin-top: 20px;
}

.tabelaExtrato th,
.tabelaExtrato td {
  text-align: center;
  vertical-align: middle;
  padding: 12px 8px;
  /* para manter bordas internas, se desejar */
}

/* Exemplo de como reproduzir a cor/cabeçalho do extrato */
.tabelaExtrato th {
  background-color: #3b3b3b;
  color: #D5DDE5;
  border-bottom: 4px solid #424242;
  font-size: 1.2em;
  font-weight: 100;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.tabelaExtrato tr {
  color: #cccccc;
  font-size: 1em;
  font-weight: normal;
  text-shadow: 0 1px 1px rgba(256, 256, 256, 0.1);
}

.tabelaExtrato tr:hover {
  background-color: #555;
  cursor: pointer;
}

/* Linhas pares/ímpares */
.tabelaExtrato tr:nth-child(odd) td {
  background: #3b3b3b;
}

.tabelaExtrato tr:nth-child(odd):hover td {
  background: #525252;
}

.tabelaExtrato tr:nth-child(even) td {
  background: #464646;
}

.tabelaExtrato tr:nth-child(even):hover td {
  background: #525252;
}

/* Ajustes em td */
.tabelaExtrato td {
  padding: 1em;
  text-align: left;
  vertical-align: middle;
  font-weight: 300;
  font-size: 1em;
  text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.1);
}

/* Caso queira a parte de paginação "pagination2" e etc., copie também: */
.pagination2 {
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  gap: 1em;
}

.pagination2 button {
  border: none;
  padding: 0.8em 1.6em;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
  background: none;
}

.pagination2 button:hover:not(:disabled) {
  opacity: 0.5;
}

.pagination2 button:disabled {
  opacity: 0.8;
  cursor: not-allowed;
}

.pagination2 span {
  font-size: 1em;
}
  
  /* Inputs de moeda e chave */
.input-moeda,
.input-chave {
    outline: none;
    width: 100%;
    max-width: 400px;
    margin: 1rem 0 2rem 0;
    padding: 1.2rem 1.8rem;
    font-size: 1.2rem;
    text-align: center;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(240, 248, 255, 0.9));
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    color: #1a202c;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.input-moeda::before,
.input-chave::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(236, 192, 50, 0.4), transparent);
    transition: left 0.6s;
}

.input-moeda:focus,
.input-chave:focus {
    border-color: rgba(236, 192, 50, 0.6);
    background: linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(255, 248, 230, 0.95));
    box-shadow: 
        0 12px 40px rgba(236, 192, 50, 0.2),
        0 0 0 4px rgba(236, 192, 50, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transform: translateY(-3px) scale(1.02);
}

.input-moeda:focus::before,
.input-chave:focus::before {
    left: 100%;
}

.input-moeda:hover,
.input-chave:hover {
    border-color: rgba(236, 192, 50, 0.3);
    box-shadow: 
        0 10px 35px rgba(0, 0, 0, 0.15),
        0 0 20px rgba(236, 192, 50, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.input-moeda::placeholder,
.input-chave::placeholder {
    color: rgba(107, 114, 128, 0.8);
    font-weight: 400;
    transition: color 0.3s ease;
}

.input-moeda:focus::placeholder,
.input-chave:focus::placeholder {
    color: rgba(236, 192, 50, 0.6);
}
  
  /* Caixa de resumo */
  .resumo-transacao {
    background-color: #3A3F47;
    padding: 1.5em;
    border-radius: 4px;
    margin-bottom: 1.5em;
    text-align: left;
  }
  
  .resumo-transacao p {
    margin: 0.5em 0;
    color: #D5DDE5;
    font-size: 1em;
  }
  
  /* BOTÕES DE PRIORIDADE */
  .botao-priority {
    padding: 10px 16px;
    font-size: 16px;
    border: 2px solid #ecc032;
    border-radius: 5px;
    background-color: transparent;
    color: #ecc032;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    position: relative;
    left: 21%;
  }
  
  /* Quando estiver selecionado, muda cor de fundo e texto */
  .botao-priority.selected {
    background-color: #ecc032;
    color: #000; 
  }
  
  .botao-priority:hover {
    background-color: #ecc03250; /* leve destaque */
  }
  
  /* Ícone de informação */
  .info-icon {
    width: 20px;
    margin-left: 8px;
    cursor: pointer;
    vertical-align: middle; /* alinha com texto do botão */
  }
  
  /* Tooltip com o texto da transferência prioritária */
  .tooltip-info {
    position: absolute;
    top: 100%;
    right: -35px;
    background-color: #333;
    color: #fff;
    padding: 0.8em;
    border-radius: 4px;
    width: 280px;
    font-size: 0.85em;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    margin-top: 0.5em;
    z-index: 999;
  }
  
  /* Responsivo */
  @media (max-width: 768px) {
    .fundoBitcoin {
      width: 90%;
      margin: 0 auto;
    }
  
    .tabelaExtrato th,
    .tabelaExtrato td {
      font-size: 12px;
      padding: 8px;
    }
  
    .sliderBTC {
      height: 550px;
    }
  
    .dotsBTC {
      top: 380px;
    }
  }
  
  @media (max-width: 480px) {
    .fundoBitcoin {
      width: 95%;
    }
  
    .tabelaExtrato th,
    .tabelaExtrato td {
      font-size: 11px;
      padding: 6px;
    }
  
    .sliderBTC {
      height: 450px;
    }
  
    .dotsBTC {
      top: 320px;
    }
  
    .tooltip-info {
      width: 250px;
      font-size: 0.75em;
    }
  }
  
/* RESET */
* {
    font-family: 'Quicksand', Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CONTAINER */
.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 80px);
    width: 100%;
    padding: 2rem;
}

/* BOTÃO PRINCIPAL */
.custom-button {
    width: 100%;
    max-width: 420px;
    background-color: #ecc032;
    color: #000;
    padding: 1.8rem;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.custom-button:hover {
    background-color: #c5a026;
}

.button-title {
    font-weight: bold;
    font-size: 1.5rem;
}

.button-description {
    font-size: 1rem;
    color: #3a3a3a;
}

/* MENU NAV PADRÃO */
.ListaNavegacao {
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 66px;
    background-color: #181818;
    width: 80px;
    height: calc(100% - 66px);
    padding-top: 1rem;
    gap: 1.5rem;
    align-items: center;
    z-index: 90;
    box-shadow: 3px 0 8px rgba(0, 0, 0, 0.4);
}

.ListaNavegacao li {
    list-style: none;
}

.ListaNavegacao li a {
    color: white;
    font-size: 0.7rem;
    text-decoration: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    transition: color 0.3s;
}

.ListaNavegacao li a:hover {
    color: #ecc032;
}

.iconeLista {
    width: 30px;
    height: 30px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .ListaNavegacao {
        flex-direction: row;
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 70px;
        justify-content: space-around;
        background-color: #181818;
        padding: 0;
        box-shadow: 0 -3px 8px rgba(0, 0, 0, 0.4);
    }

    .button-container {
        height: calc(100vh - 70px);
        padding: 1rem;
    }

    .custom-button {
        width: 90%;
        padding: 1.5rem;
    }

    .button-title {
        font-size: 1.4rem;
    }

    .button-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .custom-button {
        width: 100%;
        padding: 1.2rem;
    }

    .button-title {
        font-size: 1.2rem;
    }

    .button-description {
        font-size: 0.85rem;
    }
}

.botaoFiltro{
    margin-bottom: '1%';
    position: 'relative';
    display: 'inline-block';
    left: 10%;
    width: 50px;
    height: 50px;
    background-color: #00000000;
    border-radius: 100%;
    border: none;
}

/*# sourceMappingURL=main.42c50891.css.map*/