* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: #f1f5f9;
  background-image: radial-gradient(circle at 50% 0%, #ffffff 0%, #f1f5f9 85%);
  color: #1e293b;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 24px 16px 40px 16px;
}

.main-wrapper {
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* ==========================================
   Top Status Badge (Live & Secure)
   ========================================== */
.top-status-badge {
  background: #e6f9f0;
  border: 1px solid #86efac;
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(0, 168, 89, 0.08);
}

.live-pulse-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
  animation: pulseDot 1.8s infinite;
}

.status-badge-text {
  font-size: 11.5px;
  font-weight: 700;
  color: #065f46;
  letter-spacing: 0.2px;
}

/* ==========================================
   Header Section
   ========================================== */
.header {
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.brand-logo-container {
  width: 220px;
  max-width: 85%;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  padding: 4px;
  border-radius: 16px;
}

.brand-logo-container:hover {
  transform: scale(1.03);
}

.recupera-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 4px 12px rgba(0, 43, 102, 0.07));
  border-radius: 12px;
  image-rendering: -webkit-optimize-contrast;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.main-title {
  color: #0f172a;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.main-subtitle {
  color: #475569;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.2px;
  margin-bottom: 12px;
}

.header-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.highlight-item {
  font-size: 11px;
  font-weight: 700;
  color: #334155;
  background: #e2e8f0;
  padding: 4px 10px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
}

/* ==========================================
   Card Section
   ========================================== */
.card-container {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 26px 20px 22px 20px;
  width: 100%;
  box-shadow: 0 15px 35px -5px rgba(0, 32, 70, 0.08);
  position: relative;
  margin-bottom: 22px;
}

.card-title {
  color: #0f172a;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: -0.2px;
}

/* ==========================================
   Carousel Section
   ========================================== */
.platform-carousel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 0 6px;
}

.nav-btn {
  background: transparent;
  border: none;
  color: #64748b;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, color 0.2s ease;
}

.nav-btn:hover {
  color: #0f172a;
  transform: scale(1.15);
}

.nav-btn:active {
  transform: scale(0.95);
}

.platform-display {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 600px;
}

.platform-circle {
  width: 124px;
  height: 124px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.35s ease, border-color 0.35s ease;
  user-select: none;
  overflow: hidden;
  border: 2px solid #e2e8f0;
}

.platform-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.platform-logo-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-img {
  width: 100%;
  height: 100%;
  max-width: 95px;
  max-height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s ease;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 22px;
}

.indicator-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cbd5e1;
  transition: all 0.25s ease;
}

.indicator-dot.active {
  background: #00a859;
  width: 18px;
  border-radius: 4px;
}

/* ==========================================
   Form Section
   ========================================== */
.consult-form {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
  line-height: 1.35;
}

.required-star {
  color: #dc2626;
  font-weight: 800;
  margin-left: 2px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.form-input {
  width: 100%;
  background-color: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  padding: 13px 15px;
  color: #0f172a;
  font-size: 14.5px;
  font-weight: 600;
  transition: all 0.2s ease;
  outline: none;
}

.form-input::placeholder {
  color: #94a3b8;
  font-size: 13.5px;
  font-weight: 400;
}

.form-input:focus {
  border-color: #00a859;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 168, 89, 0.15);
}

.form-input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.input-loading-spinner {
  position: absolute;
  right: 14px;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 168, 89, 0.2);
  border-top-color: #00a859;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}

.input-loading-spinner.active {
  display: block;
}

.input-error-msg {
  display: none;
  color: #dc2626;
  font-size: 12px;
  font-weight: 600;
  margin-top: 5px;
}

.input-error-msg.visible {
  display: block;
}

/* Auto Fetched Name Display Box */
.auto-name-box {
  margin-top: 10px;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 12px;
  padding: 12px 14px;
  animation: fadeInDown 0.3s ease;
}

.auto-name-box.hidden {
  display: none;
}

.name-box-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: #15803d;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.name-display-view {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.name-label {
  font-size: 11px;
  color: #64748b;
  font-weight: 600;
}

.name-val {
  font-size: 14.5px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.3px;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 15px 20px;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.submit-btn.disabled, .submit-btn:disabled {
  background: #e2e8f0;
  color: #94a3b8;
  cursor: not-allowed;
  box-shadow: none;
}

.submit-btn.active-btn, .submit-btn:not(:disabled) {
  background: #1155cc;
  background-image: none;
  color: #ffffff;
  cursor: pointer;
  box-shadow: none;
}

.submit-btn:not(:disabled):hover {
  background: #0d47a1;
  box-shadow: none;
  transform: translateY(-1px);
}

.submit-btn:not(:disabled):active {
  transform: translateY(1px);
}

/* Trust Features Grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
  padding-top: 14px;
  border-top: 1px solid #e2e8f0;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
}

.trust-item span {
  font-size: 10.5px;
  font-weight: 700;
  color: #475569;
  line-height: 1.25;
}

/* Security Footer */
.security-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.shield-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-icon svg {
  stroke: #00a859;
}

.security-text {
  color: #64748b;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.45;
  max-width: 320px;
}

/* ==========================================
   "Como Funciona" Section
   ========================================== */
.how-it-works-section {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 22px 18px;
  margin-bottom: 22px;
  box-shadow: 0 10px 25px rgba(0, 32, 70, 0.05);
}

.section-title {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.2px;
}

.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px;
}

.step-number {
  width: 28px;
  height: 28px;
  background: #e6f9f0;
  border: 1.5px solid #00a859;
  border-radius: 50%;
  color: #00a859;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-info h4 {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

.step-info p {
  font-size: 11.5px;
  color: #475569;
  line-height: 1.35;
}

/* ==========================================
   Live Recent Payouts Feed
   ========================================== */
.recent-payouts-section {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 20px 16px;
  margin-bottom: 22px;
  box-shadow: 0 10px 25px rgba(0, 32, 70, 0.05);
}

.recent-payouts-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e8f0;
}

.header-live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-dot-green {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
  animation: pulseDot 1.6s infinite;
}

.section-title-sm {
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.2px;
}

.live-count-badge {
  font-size: 10.5px;
  font-weight: 700;
  color: #047857;
  background: #e6f9f0;
  border: 1px solid #86efac;
  padding: 3px 8px;
  border-radius: 12px;
}

.payouts-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 270px;
  overflow: hidden;
  position: relative;
}

.payout-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 9px 11px;
  transition: all 0.3s ease;
  animation: fadeInDown 0.4s ease;
}

.payout-item:hover {
  background: #f1f5f9;
  border-color: #86efac;
}

.payout-avatar {
  width: 32px;
  height: 32px;
  background: #e6f9f0;
  border: 1.5px solid #00a859;
  border-radius: 50%;
  color: #00a859;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.payout-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.payout-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.payout-name {
  font-size: 12.5px;
  font-weight: 700;
  color: #0f172a;
}

.payout-val {
  font-size: 13px;
  font-weight: 800;
  color: #00a859;
}

.payout-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.payout-tag {
  font-size: 10.5px;
  color: #64748b;
}

.payout-status {
  font-size: 10px;
  color: #059669;
  font-weight: 700;
}

/* ==========================================
   Compliance Footer
   ========================================== */
.compliance-footer {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
}

.compliance-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.badge-pill {
  background: #e2e8f0;
  border: 1px solid #cbd5e1;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  color: #475569;
}

.copyright-text {
  font-size: 11px;
  color: #94a3b8;
  line-height: 1.4;
}

/* ==========================================
   Real-Time Social Proof Toast Notification
   ========================================== */
.live-proof-toast {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: #ffffff;
  border: 1.5px solid #86efac;
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 900;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 90%;
  width: 360px;
}

.live-proof-toast.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast-avatar {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #00c95a, #008e43);
  color: #ffffff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 168, 89, 0.25);
}

.toast-content {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-align: left;
}

.toast-text {
  font-size: 12px;
  color: #0f172a;
  line-height: 1.25;
}

.toast-text strong {
  color: #00a859;
}

.toast-time {
  font-size: 10.5px;
  color: #64748b;
}

/* ==========================================
   Interactive Modal
   ========================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.7); /* Removido o backdrop-filter blur */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px 22px;
  width: 100%;
  max-width: 390px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  position: relative;
  text-align: center;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: #0f172a;
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 16px;
  background: transparent;
  border: none;
  color: #64748b;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.modal-close-btn:hover {
  color: #0f172a;
}

/* Modal Persistent Brand Header (Recupera Brasil) */
.modal-brand-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f1f5f9;
}

.modal-brand-logo {
  width: 145px;
  max-width: 75%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 2px 8px rgba(0, 43, 102, 0.05));
  border-radius: 8px;
  image-rendering: -webkit-optimize-contrast;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.modal-step.hidden {
  display: none;
}

/* Radar Spinner */
.radar-spinner {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 10px auto 18px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #00a859;
  animation: radarPulse 1.8s ease-out infinite;
}

.pulse-ring.delay {
  animation-delay: 0.6s;
}

.center-icon {
  background: #e6f9f0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(0, 168, 89, 0.2);
}

.center-icon svg {
  stroke: #00a859;
}

.modal-title {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #0f172a;
}

.modal-title.success {
  color: #00a859;
}

.modal-status-text {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 18px;
}

.progress-bar-container {
  width: 100%;
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #34d399, #00a859);
  border-radius: 4px;
  transition: width 0.3s ease;
}

/* Success Step */
.success-icon-badge {
  width: 60px;
  height: 60px;
  background: #e6f9f0;
  border: 2px solid #00a859;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px auto;
  box-shadow: 0 4px 15px rgba(0, 168, 89, 0.2);
}

.success-icon-badge svg {
  stroke: #00a859;
}

.result-info-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.row-label {
  color: #64748b;
  font-weight: 600;
}

.row-val {
  color: #0f172a;
  font-weight: 700;
  text-align: right;
  word-break: break-word;
}

.row-val.text-green {
  color: #00a859;
  font-size: 12px;
  white-space: normal;
  max-width: 200px;
  line-height: 1.25;
}

.platform-result-cell {
  display: flex;
  align-items: center;
  gap: 7px;
}

.mini-platform-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e84e1b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  padding: 2.5px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

.mini-platform-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.balance-card {
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: 14px;
  padding: 15px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.balance-label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #15803d;
  font-weight: 700;
}

.balance-value {
  font-size: 27px;
  font-weight: 800;
  color: #00a859;
}

.claim-btn {
  width: 100%;
  background: #00a859;
  background-image: linear-gradient(180deg, #00b852 0%, #009e47 100%);
  border: none;
  border-radius: 12px;
  padding: 15px;
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 168, 89, 0.35);
  transition: all 0.2s;
}

.claim-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(0, 168, 89, 0.45);
}

/* Step 3: Identity & Account Verification */
.shield-verify-badge {
  width: 58px;
  height: 58px;
  background: #e6f9f0;
  border: 2px solid #00a859;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px auto;
  box-shadow: 0 4px 15px rgba(0, 168, 89, 0.2);
}

.shield-verify-badge svg {
  stroke: #00a859;
}

.tax-info-alert {
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
}

.alert-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.alert-icon svg {
  stroke: #00a859;
}

.alert-text {
  font-size: 11.5px;
  color: #334155;
  line-height: 1.4;
}

.alert-text strong {
  color: #008e43;
}

.alert-text u {
  text-decoration-color: #00a859;
  text-underline-offset: 2px;
}

.total-refund-card {
  background: #e6f9f0;
  border-color: #00a859;
  box-shadow: 0 4px 16px rgba(0, 168, 89, 0.15);
}

.balance-subtext {
  font-size: 11.5px;
  color: #065f46;
  font-weight: 600;
  margin-top: 4px;
}

.pulse-glow {
  animation: pulseButton 2s infinite;
}

.back-link-btn {
  background: transparent;
  border: none;
  color: #64748b;
  font-size: 12px;
  font-weight: 600;
  margin-top: 14px;
  cursor: pointer;
  transition: color 0.2s ease;
  display: inline-block;
}

.back-link-btn:hover {
  color: #0f172a;
  text-decoration: underline;
}

/* Step 4: PIX Payment Display (FlevoPay) */
.pix-icon-header {
  width: 54px;
  height: 54px;
  background: #e6f9f0;
  border: 2px solid #00a859;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px auto;
  box-shadow: 0 4px 14px rgba(0, 168, 89, 0.2);
}

.pix-icon-header svg {
  stroke: #00a859;
}

.pix-qrcode-box {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 12px auto 14px auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.pix-qrcode-wrapper {
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.pix-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pix-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #e2e8f0;
  border-top-color: #00a859;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: none;
}

.pix-spinner.active {
  display: block;
}

.pix-value-tag {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 8px 12px;
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
}

.copia-cola-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.pix-copia-input {
  width: 100%;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  padding: 10px 12px;
  color: #1e293b;
  font-size: 12px;
  text-overflow: ellipsis;
  outline: none;
}

.btn-copiar-pix {
  background: #00a859;
  background-image: linear-gradient(180deg, #00b852 0%, #009e47 100%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 12px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(0, 168, 89, 0.35);
  transition: all 0.2s ease;
}

.btn-copiar-pix:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 168, 89, 0.45);
}

.btn-copiar-pix.copied {
  background: #065f46;
  color: #ffffff;
}

.pix-status-alert {
  background: #e6f9f0;
  border: 1px solid #86efac;
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11.5px;
  color: #065f46;
  font-weight: 600;
}

/* Animations */
@keyframes radarPulse {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(1.35); opacity: 0; }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseButton {
  0% { box-shadow: 0 4px 16px rgba(0, 168, 89, 0.35); }
  50% { box-shadow: 0 6px 24px rgba(0, 168, 89, 0.6); }
  100% { box-shadow: 0 4px 16px rgba(0, 168, 89, 0.35); }
}

@keyframes pulseDot {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 10px #10b981; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

/* Responsive adjustments */
@media (max-width: 380px) {
  .card-container { padding: 20px 14px; }
  .main-title { font-size: 22px; }
  .platform-circle { width: 110px; height: 110px; }
  .brand-logo-container { width: 190px; }
}
