/* ============================================= */
/* PRE-RELEASE FRONTEND - ESTILOS ESPECÍFICOS   */
/* Paleta: Preto (#000/#111/#1A1A1A) + Dourado  */
/* ============================================= */

/* CSS Variables */
:root {
  --pr-black: #000000;
  --pr-dark: #111111;
  --pr-dark-alt: #1A1A1A;
  --pr-gold: #FFD700;
  --pr-gold-light: #FDB931;
  --pr-gold-dark: #D4AF37;
  --pr-text-white: #FFFFFF;
  --pr-text-gray: #B1BBD4;
  --pr-success: #00d084;
  --pr-error: #ff4757;
  --pr-warning: #ffa502;
}

/* ============================================= */
/* MODAL (login/signup — debug API, erros)       */
/* ============================================= */

.pr-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 20px;
}

.pr-modal-box {
  background: var(--pr-dark);
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: 16px;
  padding: 24px 28px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.1);
}

.pr-modal-box-wide {
  max-width: min(920px, 95vw);
}

.pr-modal-title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
}

.pr-modal-title.success {
  color: var(--pr-success);
}

.pr-modal-title.error {
  color: var(--pr-error);
}

.pr-modal-message {
  margin: 0 0 20px;
  color: var(--pr-text-gray);
  font-size: 14px;
  line-height: 1.5;
}

.pr-modal-debug-label {
  margin: 16px 0 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--pr-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pr-modal-debug {
  margin: 0 0 8px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 8px;
  color: var(--pr-text-gray);
  font-size: 12px;
  line-height: 1.4;
  white-space: pre-wrap;
  word-break: break-all;
  max-height: 200px;
  overflow-y: auto;
}

.pr-modal-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================= */
/* LAYOUT BASE                                   */
/* ============================================= */

.pre-release-page {
  min-height: 100vh;
  background: radial-gradient(circle at 50% 0%, #1a1a1a 0%, #000000 85%);
  background-attachment: fixed;
  font-family: 'Montserrat', sans-serif;
}

.pre-release-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.pre-release-header {
  text-align: center;
  margin-bottom: 40px;
}

.pre-release-header h1 {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.pre-release-header p {
  color: var(--pr-text-gray);
  font-size: 16px;
}

/* ============================================= */
/* PROGRESS STEPPER                              */
/* ============================================= */

.progress-stepper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  gap: 0;
}

.step-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid var(--pr-gold);
  background: transparent;
  color: var(--pr-gold);
}

.step-indicator.active .step-circle {
  background: linear-gradient(135deg, var(--pr-gold) 0%, var(--pr-gold-light) 100%);
  color: var(--pr-black);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.step-indicator.completed .step-circle {
  background: var(--pr-success);
  border-color: var(--pr-success);
  color: white;
}

.step-label {
  color: var(--pr-text-gray);
  font-size: 14px;
  font-weight: 500;
  display: none;
}

@media (min-width: 768px) {
  .step-label {
    display: block;
  }
}

.step-indicator.active .step-label {
  color: var(--pr-gold);
}

.step-indicator.completed .step-label {
  color: var(--pr-success);
}

.step-line {
  width: 60px;
  height: 2px;
  background: rgba(255, 215, 0, 0.3);
  margin: 0 10px;
}

.step-line.completed {
  background: var(--pr-success);
}

/* ============================================= */
/* CARDS / BLOCOS                                */
/* ============================================= */

.pr-card {
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 215, 0, 0.1);
}

.pr-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.pr-card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--pr-gold) 0%, var(--pr-gold-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pr-black);
}

.pr-card-icon svg {
  width: 24px;
  height: 24px;
}

.pr-card-title {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--pr-text-white);
  margin: 0;
}

.pr-card-subtitle {
  font-size: 13px;
  color: var(--pr-text-gray);
  margin: 5px 0 0 0;
}

/* ============================================= */
/* TABS                                          */
/* ============================================= */

.pr-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}

.pr-tab {
  flex: 1;
  padding: 15px 20px;
  background: transparent;
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  color: var(--pr-text-gray);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pr-tab:hover {
  border-color: var(--pr-gold);
  color: var(--pr-gold);
}

.pr-tab.active {
  background: linear-gradient(135deg, var(--pr-gold) 0%, var(--pr-gold-light) 100%);
  border-color: var(--pr-gold);
  color: var(--pr-black);
}

.pr-tab-content {
  display: none;
}

.pr-tab-content.active {
  display: block;
}

/* ============================================= */
/* FORMULÁRIOS                                   */
/* ============================================= */

.pr-form-group {
  margin-bottom: 20px;
}

.pr-form-label {
  display: block;
  color: var(--pr-text-white);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.pr-form-input {
  width: 100%;
  padding: 15px 18px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  color: var(--pr-text-white);
  font-size: 15px;
  transition: all 0.3s ease;
}

.pr-form-input::placeholder {
  color: rgba(177, 187, 212, 0.6);
}

.pr-form-input:focus {
  outline: none;
  border-color: var(--pr-gold);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.pr-form-input.error {
  border-color: var(--pr-error);
  box-shadow: 0 0 10px rgba(255, 71, 87, 0.2);
}

.pr-form-input.valid {
  border-color: var(--pr-success);
}

.pr-form-error {
  color: var(--pr-error);
  font-size: 12px;
  margin-top: 6px;
  display: none;
}

.pr-form-error.show {
  display: block;
}

.pr-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

@media (max-width: 576px) {
  .pr-form-row {
    grid-template-columns: 1fr;
  }
}

/* Checkbox */
.pr-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.pr-checkbox input {
  width: 20px;
  height: 20px;
  accent-color: var(--pr-gold);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.pr-checkbox-label {
  color: var(--pr-text-gray);
  font-size: 13px;
  line-height: 1.5;
}

.pr-checkbox-label a {
  color: var(--pr-gold);
  text-decoration: underline;
}

.pr-checkbox-label a:hover {
  color: var(--pr-gold-light);
}

/* ============================================= */
/* PREVENT OVERFLOW                              */
/* ============================================= */

* {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

img, video {
  max-width: 100%;
  height: auto;
}

/* RTL Support */
[dir="rtl"] {
  direction: rtl;
}

[dir="rtl"] .pr-card-header {
  flex-direction: row-reverse;
}

[dir="rtl"] .pr-tabs {
  flex-direction: row-reverse;
}

[dir="rtl"] .step-indicator {
  flex-direction: row-reverse;
}

[dir="rtl"] .pr-form-row {
  direction: rtl;
}

/* ============================================= */
/* BOTÕES                                        */
/* ============================================= */

.pr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  min-width: 140px;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

/* Botões com textos muito longos */
.pr-btn-long-text {
  padding: 14px 28px;
  font-size: 14px;
  min-width: 160px;
}

.pr-btn-primary {
  background: linear-gradient(135deg, var(--pr-gold) 0%, var(--pr-gold-light) 100%);
  color: var(--pr-black);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.pr-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.pr-btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.pr-btn-secondary {
  background: transparent;
  border: 2px solid var(--pr-gold);
  color: var(--pr-gold);
}

.pr-btn-secondary:hover {
  background: var(--pr-gold);
  color: var(--pr-black);
}

.pr-btn-secondary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pr-btn-block {
  width: 100%;
}

.pr-btn-loading {
  pointer-events: none;
}

.pr-btn-loading .btn-text {
  display: none;
}

.pr-btn-loading .btn-loader {
  display: inline-block;
}

.btn-loader {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================= */
/* PLANO / CHECKOUT                              */
/* ============================================= */

.plan-card {
  background: linear-gradient(145deg, rgba(26, 26, 26, 0.9) 0%, rgba(40, 40, 40, 0.6) 100%);
  border: 2px solid var(--pr-gold);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pr-gold), var(--pr-gold-light), var(--pr-gold));
}

.plan-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--pr-gold) 0%, var(--pr-gold-light) 100%);
  color: var(--pr-black);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.plan-title {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  color: var(--pr-text-white);
  margin-bottom: 10px;
}

.plan-price {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 5px;
}

.plan-period {
  color: var(--pr-text-gray);
  font-size: 14px;
  margin-bottom: 25px;
}

.plan-features {
  text-align: left;
  margin-bottom: 25px;
}

.plan-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--pr-text-gray);
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.plan-feature:last-child {
  border-bottom: none;
}

.plan-feature-icon {
  width: 20px;
  height: 20px;
  background: var(--pr-success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.plan-feature-icon svg {
  width: 12px;
  height: 12px;
  color: white;
}

/* ============================================= */
/* STATUS STATES                                 */
/* ============================================= */

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

.status-badge.pending {
  background: rgba(255, 165, 2, 0.15);
  border: 1px solid var(--pr-warning);
  color: var(--pr-warning);
}

.status-badge.success {
  background: rgba(0, 208, 132, 0.15);
  border: 1px solid var(--pr-success);
  color: var(--pr-success);
}

.status-badge.error {
  background: rgba(255, 71, 87, 0.15);
  border: 1px solid var(--pr-error);
  color: var(--pr-error);
}

.status-badge.disabled {
  background: rgba(177, 187, 212, 0.1);
  border: 1px solid rgba(177, 187, 212, 0.3);
  color: var(--pr-text-gray);
}

.status-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.status-badge.pending .status-pulse {
  background: var(--pr-warning);
  box-shadow: 0 0 10px var(--pr-warning);
}

.status-badge.success .status-pulse {
  background: var(--pr-success);
  box-shadow: 0 0 10px var(--pr-success);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

/* ============================================= */
/* KYC SECTION                                   */
/* ============================================= */

.kyc-locked {
  text-align: center;
  padding: 30px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  border: 1px dashed rgba(255, 215, 0, 0.3);
}

.kyc-locked-icon {
  width: 60px;
  height: 60px;
  background: rgba(177, 187, 212, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: var(--pr-text-gray);
}

.kyc-locked-icon svg {
  width: 28px;
  height: 28px;
}

.kyc-locked-text {
  color: var(--pr-text-gray);
  font-size: 14px;
}

.kyc-status-card {
  text-align: center;
  padding: 20px;
}

.kyc-status-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.kyc-status-icon.pending {
  background: rgba(255, 165, 2, 0.15);
  color: var(--pr-warning);
}

.kyc-status-icon.success {
  background: rgba(0, 208, 132, 0.15);
  color: var(--pr-success);
}

.kyc-status-icon.error {
  background: rgba(255, 71, 87, 0.15);
  color: var(--pr-error);
}

.kyc-status-icon svg {
  width: 40px;
  height: 40px;
}

/* ============================================= */
/* CONFIRMAÇÃO - CHECKLIST                       */
/* ============================================= */

.confirmation-checklist {
  margin: 30px 0;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
}

.checklist-item.completed {
  border-color: var(--pr-success);
}

.checklist-item.pending {
  border-color: var(--pr-warning);
}

.checklist-item.failed {
  border-color: var(--pr-error);
}

.checklist-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.checklist-item.completed .checklist-icon {
  background: var(--pr-success);
  color: white;
}

.checklist-item.pending .checklist-icon {
  background: var(--pr-warning);
  color: white;
}

.checklist-item.failed .checklist-icon {
  background: var(--pr-error);
  color: white;
}

.checklist-icon svg {
  width: 24px;
  height: 24px;
}

.checklist-content {
  flex: 1;
}

.checklist-title {
  color: var(--pr-text-white);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.checklist-desc {
  color: var(--pr-text-gray);
  font-size: 13px;
}

/* ============================================= */
/* ACTIVATION BADGE                              */
/* ============================================= */

.activation-badge {
  text-align: center;
  padding: 40px;
  background: linear-gradient(145deg, rgba(0, 208, 132, 0.1) 0%, rgba(0, 208, 132, 0.05) 100%);
  border: 2px solid var(--pr-success);
  border-radius: 20px;
  margin: 30px 0;
}

.activation-badge.pending {
  background: linear-gradient(145deg, rgba(255, 165, 2, 0.1) 0%, rgba(255, 165, 2, 0.05) 100%);
  border-color: var(--pr-warning);
}

.activation-icon {
  width: 80px;
  height: 80px;
  background: var(--pr-success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 30px rgba(0, 208, 132, 0.4);
}

.activation-badge.pending .activation-icon {
  background: var(--pr-warning);
  box-shadow: 0 0 30px rgba(255, 165, 2, 0.4);
}

.activation-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

.activation-title {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  color: var(--pr-success);
  margin-bottom: 10px;
}

.activation-badge.pending .activation-title {
  color: var(--pr-warning);
}

.activation-desc {
  color: var(--pr-text-gray);
  font-size: 15px;
  max-width: 400px;
  margin: 0 auto;
}

/* ============================================= */
/* ALERTS / AVISOS                               */
/* ============================================= */

.pr-alert {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 25px;
}

.pr-alert-warning {
  background: rgba(255, 165, 2, 0.1);
  border: 1px solid rgba(255, 165, 2, 0.3);
}

.pr-alert-info {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.pr-alert-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.pr-alert-warning .pr-alert-icon {
  color: var(--pr-warning);
}

.pr-alert-info .pr-alert-icon {
  color: var(--pr-gold);
}

.pr-alert-content {
  flex: 1;
}

.pr-alert-title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 5px;
}

.pr-alert-warning .pr-alert-title {
  color: var(--pr-warning);
}

.pr-alert-info .pr-alert-title {
  color: var(--pr-gold);
}

.pr-alert-text {
  color: var(--pr-text-gray);
  font-size: 13px;
  line-height: 1.5;
}

/* ============================================= */
/* FOOTER ACTIONS                                */
/* ============================================= */

.pr-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* ============================================= */
/* TOAST NOTIFICATIONS                           */
/* ============================================= */

.pr-toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pr-toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: var(--pr-dark);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: slideIn 0.3s ease;
  max-width: 350px;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.pr-toast.success {
  border-left: 4px solid var(--pr-success);
}

.pr-toast.error {
  border-left: 4px solid var(--pr-error);
}

.pr-toast.warning {
  border-left: 4px solid var(--pr-warning);
}

.pr-toast-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.pr-toast.success .pr-toast-icon {
  color: var(--pr-success);
}

.pr-toast.error .pr-toast-icon {
  color: var(--pr-error);
}

.pr-toast.warning .pr-toast-icon {
  color: var(--pr-warning);
}

.pr-toast-message {
  color: var(--pr-text-white);
  font-size: 14px;
  flex: 1;
}

.pr-toast-close {
  background: none;
  border: none;
  color: var(--pr-text-gray);
  cursor: pointer;
  padding: 0;
  font-size: 18px;
}

/* ============================================= */
/* RESPONSIVIDADE                                */
/* ============================================= */

@media (max-width: 768px) {
  .pre-release-container {
    padding: 20px 15px;
  }

  .pre-release-header h1 {
    font-size: 24px;
  }

  .pr-card {
    padding: 20px;
  }

  .pr-card-header {
    flex-direction: column;
    text-align: center;
  }

  .plan-price {
    font-size: 36px;
  }

  .pr-tabs {
    flex-direction: column;
  }

  .pr-actions {
    flex-direction: column;
  }

  .pr-btn-block-mobile {
    width: 100%;
  }
  
  .pr-btn {
    padding: 14px 24px;
    font-size: 14px;
    min-width: 120px;
  }
  
  .pr-btn-long-text {
    padding: 12px 24px;
    font-size: 13px;
    min-width: 140px;
  }

  .checklist-item {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .pr-btn {
    padding: 12px 20px;
    font-size: 13px;
    min-width: 100px;
  }
  
  .pr-btn-long-text {
    padding: 10px 18px;
    font-size: 12px;
    min-width: 120px;
  }
  
  /* Additional responsive adjustments */
  .pre-release-container {
    padding: 20px 15px;
  }
  
  .pre-release-header h1 {
    font-size: 24px;
  }
  
  .pr-card {
    padding: 20px;
  }
  
  .pr-card-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .pr-tabs {
    flex-direction: column;
  }
  
  .pr-tab {
    width: 100%;
  }
  
  /* Step indicator responsive */
  .step-indicator {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .step-circle {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  
  .step-label {
    font-size: 12px;
  }
}

/* ============================================= */
/* HEADER SIMPLIFICADO                           */
/* ============================================= */

.pr-header {
  padding: 20px 0;
  background: transparent;
  position: relative;
  z-index: 100;
}

.pr-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.pr-logo img {
  height: 40px;
}

.pr-header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.pr-header-link {
  color: var(--pr-text-gray);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s;
}

.pr-header-link:hover {
  color: var(--pr-gold);
}

/* ============================================= */
/* DIVIDER                                       */
/* ============================================= */

.pr-divider {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 25px 0;
}

.pr-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 215, 0, 0.2);
}

.pr-divider-text {
  color: var(--pr-text-gray);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================= */
/* FOOTER                                        */
/* ============================================= */

.pr-footer {
  text-align: center;
  padding: 30px 20px;
  color: var(--pr-text-gray);
  font-size: 13px;
}

.pr-footer-links {
  margin-top: 10px;
}

.pr-footer-links a {
  color: var(--pr-gold);
  text-decoration: none;
  transition: color 0.3s;
}

.pr-footer-links a:hover {
  color: var(--pr-gold-light);
}

/* ============================================= */
/* UTILITY CLASSES                               */
/* ============================================= */

.mt-0 { margin-top: 0 !important; }
.mb-20 { margin-bottom: 20px; }
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-inline-flex { display: inline-flex !important; }
.text-center { text-align: center; }

/* KYC Content visibility */
.kyc-content {
  display: none;
}

.kyc-content.visible {
  display: block;
}

/* KYC Status Card visibility */
.kyc-status-card {
  display: none;
}

.kyc-status-card.visible {
  display: block;
}

/* Payment actions margin */
.plan-card .pr-actions {
  margin-top: 0;
}

/* KYC info text */
.kyc-info-text {
  text-align: center;
  color: var(--pr-text-gray);
  font-size: 13px;
  margin-top: 20px;
}

/* Signup/Signin page utilities */
.pr-signup-link {
  color: var(--pr-text-gray);
  margin-top: 20px;
}

.pr-gold-link {
  color: var(--pr-gold);
  text-decoration: none;
}

.pr-gold-link:hover {
  color: var(--pr-gold-light);
  text-decoration: underline;
}

.pr-alert-mt {
  margin-top: 25px;
}
