/*
====================================================
GAINOVO ONBOARDING - VERSIÓN PREMIUM 2.0
====================================================
*/

* {
    box-sizing: border-box;
}

:root {
    --arb-primary: #0F52AA;
    --arb-primary-light: #167BFF;
    --arb-primary-dark: #0a1a3a;
    --arb-success: #28a745;
    --arb-error: #dc3545;
    --arb-warning: #ffc107;
    --arb-text: #ffffff;
    --arb-text-light: rgba(255, 255, 255, 0.85);
    --arb-text-dim: rgba(255, 255, 255, 0.5);
    --arb-border: rgba(255, 255, 255, 0.12);
    --arb-border-hover: rgba(255, 255, 255, 0.25);
    --arb-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    --arb-radius: 20px;
    --arb-card-bg: linear-gradient(145deg, #0F2B5C, #0a1a3a);
}

#gv-onboarding {
    display: flex;
    min-height: 700px;
    background: var(--arb-primary-dark);
    border-radius: 24px;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    box-shadow: var(--arb-shadow);
    max-width: 1100px;
    margin: 20px auto;
    border: 1px solid var(--arb-border);
}

/* =====================================================
SIDEBAR
===================================================== */

.gv-sidebar {
    width: 280px;
    background: linear-gradient(180deg, #0a1a3a, #0F2B5C);
    color: #fff;
    padding: 40px 28px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--arb-border);
    flex-shrink: 0;
}

.gv-logo-wrapper {
    margin-bottom: 50px;
}

.gv-logo {
    width: 180px;
    max-width: 100%;
    display: block;
}

.gv-stepper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

.gv-step {
    display: flex;
    align-items: center;
    opacity: 0.4;
    transition: opacity 0.3s ease, transform 0.3s ease;
    cursor: default;
}

.gv-step.active {
    opacity: 1;
    transform: translateX(4px);
}

.gv-step.completed {
    opacity: 0.7;
}

.gv-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 15px;
    margin-right: 15px;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.gv-step.active .gv-circle {
    background: linear-gradient(135deg, var(--arb-primary), var(--arb-primary-light));
    color: #fff;
    border-color: var(--arb-primary-light);
    box-shadow: 0 4px 15px rgba(22, 123, 255, 0.25);
}

.gv-step.completed .gv-circle {
    background: rgba(40, 167, 69, 0.2);
    border-color: var(--arb-success);
    color: var(--arb-success);
}

.gv-text {
    display: flex;
    flex-direction: column;
}

.gv-text strong {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.gv-text span {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 1px;
    color: rgba(255,255,255,0.7);
}

.gv-sidebar-footer {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--arb-border);
}

.gv-security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--arb-text-dim);
    background: rgba(255, 255, 255, 0.04);
    padding: 8px 14px;
    border-radius: 36px;
    border: 1px solid var(--arb-border);
}

/* =====================================================
CONTENIDO
===================================================== */

.gv-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 50px;
    background: var(--arb-card-bg);
    min-height: 600px;
}

.gv-page {
    width: 100%;
    max-width: 700px;
    display: none;
    animation: gvFade 0.4s ease;
}

.gv-page.active {
    display: block;
}

/* =====================================================
CARD
===================================================== */

.gv-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--arb-radius);
    padding: 40px 45px;
    border: 1px solid var(--arb-border);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.gv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.gv-card h1 {
    margin: 18px 0 8px;
    font-size: 30px;
    color: var(--arb-text);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.gv-card p {
    margin: 0 0 20px;
    color: var(--arb-text-light);
    line-height: 1.7;
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.gv-subtitle {
    font-size: 18px;
    color: var(--arb-text-light);
    font-weight: 400;
    margin: 0 0 6px;
    position: relative;
    z-index: 1;
}

/* =====================================================
ILUSTRACIONES
===================================================== */

.gv-illustration {
    display: block;
    width: 180px;
    max-width: 100%;
    margin: 0 auto 10px;
    position: relative;
    z-index: 1;
}

.gv-illustration-small {
    display: block;
    width: 100px;
    max-width: 100%;
    margin: 0 auto 10px;
    position: relative;
    z-index: 1;
}

/* =====================================================
BADGES
===================================================== */

.gv-step-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.06);
    padding: 4px 16px;
    border-radius: 36px;
    font-size: 11px;
    font-weight: 600;
    color: var(--arb-text-light);
    border: 1px solid var(--arb-border);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.gv-badge-premium {
    background: linear-gradient(135deg, #28a745, #218838);
    color: #fff;
    border: none;
}

/* =====================================================
FOMO BANNERS
===================================================== */

.gv-fomo-banner {
    background: rgba(255, 193, 7, 0.06);
    border-left: 3px solid var(--arb-warning);
    padding: 10px 16px;
    border-radius: 8px;
    margin: 6px 0 20px;
    font-size: 13px;
    color: var(--arb-text-light);
    position: relative;
    z-index: 1;
}

.gv-fomo-warning {
    border-left-color: var(--arb-primary-light);
    background: rgba(22, 123, 255, 0.06);
}

.gv-fomo-urgent {
    border-left-color: var(--arb-error);
    background: rgba(220, 53, 69, 0.06);
}

.gv-social-proof {
    text-align: center;
    font-size: 13px;
    color: var(--arb-text-dim);
    padding: 10px 0 0;
    border-top: 1px solid var(--arb-border);
    margin-top: 16px;
    position: relative;
    z-index: 1;
}

/* =====================================================
BENEFICIOS
===================================================== */

.gv-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 16px 0 12px;
    position: relative;
    z-index: 1;
}

.gv-benefit-item {
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    font-size: 14px;
    border: 1px solid var(--arb-border);
    color: var(--arb-text-light);
    transition: 0.2s;
}

.gv-benefit-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--arb-border-hover);
}

.gv-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 12px 0 16px;
    position: relative;
    z-index: 1;
}

.gv-benefit-grid-item {
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    font-size: 13px;
    border: 1px solid var(--arb-border);
    color: var(--arb-text-light);
}

/* =====================================================
FORMULARIOS
===================================================== */

.gv-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 16px 0 12px;
    position: relative;
    z-index: 1;
}

.gv-field {
    display: flex;
    flex-direction: column;
}

.gv-field label {
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--arb-text-light);
    font-size: 13px;
}

.gv-field input,
.gv-field select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--arb-border);
    border-radius: 12px;
    font-size: 14px;
    transition: 0.25s;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: inherit;
}

.gv-field input::placeholder {
    color: var(--arb-text-dim);
}

.gv-field input:focus,
.gv-field select:focus {
    outline: none;
    border-color: var(--arb-primary-light);
    box-shadow: 0 0 0 4px rgba(22, 123, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
}

.gv-field select option {
    background: #0a1a3a;
    color: #fff;
}

.gv-required {
    color: var(--arb-error);
}

/* =====================================================
TERMS / CHECKBOX
===================================================== */

.gv-terms {
    margin: 6px 0 10px;
    position: relative;
    z-index: 1;
}

.gv-terms label {
    font-size: 12px;
    color: var(--arb-text-light);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.gv-checkbox {
    margin: 12px 0 10px;
    position: relative;
    z-index: 1;
}

.gv-checkbox label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: var(--arb-text-light);
}

.gv-checkbox input[type="checkbox"],
.gv-terms input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--arb-primary-light);
    cursor: pointer;
    flex-shrink: 0;
}

/* =====================================================
KYC - BOTÓN DE ACCIÓN (redirige a Didit)
===================================================== */

.gv-kyc-action-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--arb-primary), var(--arb-primary-light));
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
    min-width: 180px;
}

.gv-kyc-action-btn:hover {
    background: linear-gradient(135deg, var(--arb-primary-light), #4a9eff);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 82, 170, 0.3);
    color: #fff;
    text-decoration: none;
}

.gv-kyc-action-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.gv-kyc-action-btn.pending {
    background: #f59e0b;
}

.gv-kyc-action-btn.approved {
    background: linear-gradient(135deg, #28a745, #218838);
}

.gv-kyc-action-btn.rejected {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

/* =====================================================
PASO 2 - FONDEO
===================================================== */

.gv-wallet-info-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 20px 24px;
    border: 1px solid var(--arb-border);
    margin: 12px 0 16px;
    position: relative;
    z-index: 1;
}

.gv-wallet-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.gv-wallet-icon {
    font-size: 20px;
}

.gv-wallet-title {
    color: var(--arb-text);
    font-size: 15px;
    font-weight: 600;
}

.gv-wallet-address-container {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 10px 14px;
    border: 1px solid var(--arb-border);
}

.gv-wallet-address {
    flex: 1;
    color: var(--arb-text-light);
    font-size: 13px;
    font-family: 'Monaco', 'Menlo', 'Courier New', monospace;
    word-break: break-all;
    line-height: 1.4;
}

.gv-wallet-copy-btn {
    background: rgba(255, 255, 255, 0.06);
    border: none;
    color: var(--arb-text-light);
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.gv-wallet-copy-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--arb-text);
}

.gv-wallet-copy-btn.copied {
    background: rgba(40, 167, 69, 0.2);
    color: var(--arb-success);
}

.gv-wallet-qr-container {
    display: flex;
    justify-content: center;
    padding: 12px 0 8px;
}

.gv-wallet-qr-container img,
.gv-wallet-qr-container canvas {
    border-radius: 8px;
    background: #fff;
}

.gv-wallet-balance-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    margin-top: 8px;
    border-top: 1px solid var(--arb-border);
}

.gv-wallet-balance-label {
    color: var(--arb-text-dim);
    font-size: 13px;
}

.gv-wallet-balance-value {
    color: var(--arb-text);
    font-weight: 600;
    font-size: 15px;
}

.gv-wallet-balance-value.has-balance {
    color: var(--arb-success);
}

.gv-requirement-box {
    display: flex;
    gap: 14px;
    background: rgba(255, 193, 7, 0.06);
    border: 1px solid rgba(255, 193, 7, 0.15);
    border-radius: 12px;
    padding: 16px 20px;
    margin: 12px 0 16px;
    position: relative;
    z-index: 1;
}

.gv-requirement-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.gv-requirement-content {
    color: var(--arb-text-light);
    font-size: 14px;
    line-height: 1.6;
}

.gv-requirement-content strong {
    color: var(--arb-text);
}

.gv-requirement-content ul {
    margin: 6px 0 0 0;
    padding-left: 20px;
    color: var(--arb-text-light);
}

.gv-requirement-content ul li {
    margin: 2px 0;
    color: var(--arb-text-light);
}

.gv-requirement-content ul li strong {
    color: #f59e0b;
}

.gv-gas-purchase-wrapper {
    margin: 8px 0 12px;
    position: relative;
    z-index: 1;
}

.gv-gas-purchase-wrapper .comprar-gas-usdc-wrapper {
    max-width: 100% !important;
}

.gv-gas-purchase-wrapper .gas-saldo-label {
    color: var(--arb-text-dim) !important;
}

.gv-gas-purchase-wrapper .gas-saldo-valor {
    color: var(--arb-success) !important;
}

.gv-gas-purchase-wrapper .gas-btn {
    background: linear-gradient(135deg, var(--arb-primary), var(--arb-primary-light)) !important;
    border: 1px solid rgba(15, 82, 170, 0.3) !important;
    color: #ffffff !important;
    font-family: inherit !important;
}

.gv-gas-purchase-wrapper .gas-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--arb-primary-light), #4a9eff) !important;
    box-shadow: 0 8px 25px rgba(15, 82, 170, 0.3) !important;
}

.gv-gas-purchase-wrapper .gas-btn:disabled {
    opacity: 0.4 !important;
}

/* =====================================================
TUTORIALES DE FONDEO
===================================================== */

.gv-tutorials-section {
    margin: 12px 0 8px;
    position: relative;
    z-index: 1;
}

.gv-tutorials-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed var(--arb-border);
    border-radius: 12px;
    color: var(--arb-text-light);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.gv-tutorials-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--arb-primary-light);
    color: var(--arb-text);
}

.gv-tutorials-toggle .gv-toggle-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.gv-tutorials-toggle.active .gv-toggle-arrow {
    transform: rotate(180deg);
}

.gv-tutorials-container {
    margin-top: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid var(--arb-border);
    animation: gvSlideDown 0.3s ease;
}

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

.gv-tutorials-intro {
    color: var(--arb-text-dim);
    font-size: 13px;
    text-align: center;
    margin: 0 0 14px 0;
}

.gv-tutorials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.gv-tutorial-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 10px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    border: 1px solid var(--arb-border);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gv-tutorial-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--arb-primary-light);
    transform: translateY(-2px);
    text-decoration: none;
}

.gv-tutorial-icon {
    font-size: 28px;
}

.gv-tutorial-name {
    color: var(--arb-text-light);
    font-size: 12px;
    font-weight: 600;
}

.gv-tutorial-tag {
    font-size: 9px;
    text-transform: uppercase;
    color: var(--arb-primary-light);
    background: rgba(22, 123, 255, 0.1);
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.gv-tutorials-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--arb-border);
    font-size: 11px;
    color: var(--arb-text-dim);
}

/* =====================================================
MODAL DE TUTORIALES
===================================================== */

.gv-tutorial-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.gv-tutorial-modal[style*="display: block"] {
    display: flex !important;
}

.gv-tutorial-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 20, 50, 0.92);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    cursor: pointer;
}

.gv-tutorial-modal-content {
    position: relative;
    z-index: 1;
    background: linear-gradient(145deg, #0F2B5C, #0a1a3a);
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    border: 1px solid var(--arb-border);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6);
    animation: gvModalSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes gvModalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.gv-tutorial-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 20px;
    color: var(--arb-text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gv-tutorial-modal-close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--arb-text);
    transform: rotate(90deg);
}

.gv-tutorial-modal-body {
    padding: 32px 36px 36px;
    position: relative;
}

.gv-tutorial-modal-body .gv-tutorial-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--arb-border);
}

.gv-tutorial-modal-body .gv-tutorial-header-icon {
    font-size: 36px;
}

.gv-tutorial-modal-body .gv-tutorial-header-title {
    color: var(--arb-text);
    font-size: 22px;
    font-weight: 700;
}

.gv-tutorial-modal-body .gv-tutorial-header-subtitle {
    color: var(--arb-text-dim);
    font-size: 13px;
    margin-top: 2px;
}

.gv-tutorial-modal-body .gv-tutorial-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
    margin-bottom: 16px;
}

.gv-tutorial-modal-body .gv-tutorial-video-wrapper video,
.gv-tutorial-modal-body .gv-tutorial-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.gv-tutorial-modal-body .gv-tutorial-description {
    color: var(--arb-text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.gv-tutorial-modal-body .gv-tutorial-steps {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 16px 20px;
    border: 1px solid var(--arb-border);
}

.gv-tutorial-modal-body .gv-tutorial-steps-title {
    color: var(--arb-text-dim);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.gv-tutorial-modal-body .gv-tutorial-steps ol {
    margin: 0;
    padding-left: 20px;
    color: var(--arb-text-light);
    font-size: 13px;
    line-height: 1.8;
}

.gv-tutorial-modal-body .gv-tutorial-steps ol li {
    margin: 2px 0;
}

.gv-tutorial-modal-body .gv-tutorial-steps ol li strong {
    color: var(--arb-text);
}

.gv-tutorial-modal-body .gv-tutorial-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--arb-border);
}

.gv-tutorial-modal-body .gv-tutorial-actions .gv-tutorial-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-align: center;
    text-decoration: none;
}

.gv-tutorial-modal-body .gv-tutorial-actions .gv-tutorial-btn-primary {
    background: linear-gradient(135deg, var(--arb-primary), var(--arb-primary-light));
    color: #fff;
}

.gv-tutorial-modal-body .gv-tutorial-actions .gv-tutorial-btn-primary:hover {
    background: linear-gradient(135deg, var(--arb-primary-light), #4a9eff);
    transform: translateY(-2px);
}

.gv-tutorial-modal-body .gv-tutorial-actions .gv-tutorial-btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--arb-text-light);
    border: 1px solid var(--arb-border);
}

.gv-tutorial-modal-body .gv-tutorial-actions .gv-tutorial-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.10);
}

/* =====================================================
BOTÓN DE CONTACTO CON EJECUTIVO (siempre visible)
===================================================== */

.gv-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    font-family: inherit;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.gv-contact-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45);
    color: #fff;
    text-decoration: none;
}

.gv-contact-btn .gv-contact-icon {
    font-size: 20px;
}

.gv-contact-btn .gv-contact-text {
    font-size: 13px;
}

.gv-contact-btn .gv-contact-badge {
    background: #ff3b30;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    animation: gvPulse 2s infinite;
}

@keyframes gvPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* =====================================================
FONDEO - CONTENEDOR DE ESTADO
===================================================== */

#gv-funding-status-container {
    margin: 12px 0;
    padding: 12px 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--arb-border);
    background: rgba(255, 255, 255, 0.03);
}

#gv-funding-status-container .gv-funding-status-icon {
    font-size: 20px;
}

#gv-funding-status-container .gv-funding-status-text {
    color: var(--arb-text-light);
    font-size: 14px;
}

/* =====================================================
ROI / PRICE
===================================================== */

.gv-roi-box {
    background: rgba(40, 167, 69, 0.06);
    border: 1px solid rgba(40, 167, 69, 0.15);
    border-radius: 12px;
    padding: 12px 16px;
    text-align: center;
    font-size: 14px;
    color: var(--arb-success);
    margin: 10px 0 14px;
    position: relative;
    z-index: 1;
}

.gv-price-tag {
    text-align: center;
    padding: 16px 0;
    border-top: 1px solid var(--arb-border);
    border-bottom: 1px solid var(--arb-border);
    margin: 12px 0 14px;
    position: relative;
    z-index: 1;
}

.gv-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--arb-text);
    display: block;
}

.gv-price-label {
    font-size: 13px;
    color: var(--arb-text-dim);
    margin-top: 2px;
}

/* =====================================================
PASO 3 - BONO Y CONTADOR (cuenta regresiva)
===================================================== */

.gv-bonus-banner {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(40, 167, 69, 0.06);
    border: 1px solid rgba(40, 167, 69, 0.15);
    border-radius: 12px;
    padding: 12px 16px;
    margin: 8px 0 16px;
    position: relative;
    z-index: 1;
}

.gv-bonus-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.gv-bonus-text {
    flex: 1;
}

.gv-bonus-text strong {
    display: block;
    color: var(--arb-text);
    font-size: 14px;
}

.gv-bonus-text span {
    color: var(--arb-text-dim);
    font-size: 12px;
}

.gv-bonus-timer {
    text-align: center;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.04);
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid var(--arb-border);
}

.gv-timer-label {
    display: block;
    font-size: 9px;
    color: var(--arb-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gv-timer-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--arb-text);
    font-family: 'SF Mono', 'Monaco', monospace;
}

.gv-timer-value.expired {
    color: #dc3545;
}

/* =====================================================
PASO 3 - PRUEBA SOCIAL
===================================================== */

.gv-social-proof-step3 {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    margin: 6px 0 12px;
    border: 1px solid var(--arb-border);
    position: relative;
    z-index: 1;
}

.gv-social-proof-avatars {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.gv-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--arb-border);
    font-size: 12px;
    margin-right: -8px;
}

.gv-avatar:last-child {
    margin-right: 0;
}

.gv-avatar-plus {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.2);
    font-size: 10px;
    font-weight: 700;
    color: var(--arb-success);
    margin-left: 2px;
}

.gv-social-proof-text {
    font-size: 12px;
    color: var(--arb-text-dim);
}

/* =====================================================
PASO 3 - PRECIO DESTACADO
===================================================== */

.gv-price-tag-enhanced {
    text-align: center;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid var(--arb-border);
    margin: 12px 0 16px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.gv-price-tag-enhanced::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(40, 167, 69, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.gv-price-old {
    font-size: 14px;
    color: var(--arb-text-dim);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.gv-price-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 4px 0;
}

.gv-price-currency {
    font-size: 20px;
    color: var(--arb-text);
    font-weight: 300;
}

.gv-price-amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--arb-text);
    line-height: 1;
}

.gv-price-label {
    font-size: 16px;
    color: var(--arb-text-dim);
    font-weight: 500;
    margin-left: 2px;
}

.gv-price-badge {
    display: inline-block;
    background: linear-gradient(135deg, #28a745, #218838);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 14px;
    border-radius: 20px;
    margin: 4px 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gv-price-sub {
    font-size: 12px;
    color: var(--arb-text-dim);
}

/* =====================================================
PASO 3 - GARANTÍA
===================================================== */

.gv-guarantee-box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin: 10px 0 16px;
    position: relative;
    z-index: 1;
}

.gv-guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid var(--arb-border);
    font-size: 11px;
    color: var(--arb-text-light);
}

.gv-guarantee-item span:first-child {
    font-size: 16px;
    flex-shrink: 0;
}

/* =====================================================
PASO 3 - MEMBRESÍA WRAPPER
===================================================== */

.gv-membership-wrapper {
    margin: 12px 0 8px;
    position: relative;
    z-index: 1;
}

.gv-membership-wrapper .gainovo-modal-trigger {
    width: 100%;
    padding: 16px 24px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #28a745, #218838);
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gv-membership-wrapper .gainovo-modal-trigger:hover {
    background: linear-gradient(135deg, #218838, #1a7a30);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.gv-membership-wrapper .gainovo-modal-content {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid var(--arb-border) !important;
    border-radius: 12px !important;
    padding: 16px 20px !important;
    color: var(--arb-text-light) !important;
}

/* =====================================================
BOTONES
===================================================== */

.gv-buttons {
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.gv-buttons button {
    cursor: pointer;
    border: none;
    border-radius: 12px;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s ease;
    font-family: inherit;
}

.gv-next {
    background: linear-gradient(135deg, var(--arb-primary), var(--arb-primary-light));
    color: #fff;
}

.gv-next:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--arb-primary-light), #4a9eff);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 82, 170, 0.3);
}

.gv-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.gv-prev {
    background: rgba(255, 255, 255, 0.06);
    color: var(--arb-text-light);
    border: 1px solid var(--arb-border) !important;
}

.gv-prev:hover {
    background: rgba(255, 255, 255, 0.10);
    transform: translateY(-2px);
}

#gv-finish {
    background: linear-gradient(135deg, #28a745, #218838);
    color: #fff;
}

#gv-finish:hover {
    background: linear-gradient(135deg, #218838, #1a7a30);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.gv-buttons button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* =====================================================
ANIMACIONES
===================================================== */

@keyframes gvFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

/* =====================================================
RESPONSIVE
===================================================== */

@media (max-width: 992px) {
    #gv-onboarding {
        flex-direction: column;
        border-radius: 16px;
        margin: 10px;
    }

    .gv-sidebar {
        width: 100%;
        padding: 24px 28px;
        border-right: none;
        border-bottom: 1px solid var(--arb-border);
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 16px;
    }

    .gv-logo-wrapper {
        margin-bottom: 0;
        flex: 0 0 auto;
    }

    .gv-logo {
        width: 130px;
    }

    .gv-stepper {
        flex-direction: row;
        gap: 16px;
        flex: 1;
        justify-content: flex-end;
    }

    .gv-text {
        display: none;
    }

    .gv-circle {
        width: 36px;
        height: 36px;
        font-size: 13px;
        margin-right: 0;
    }

    .gv-sidebar-footer {
        display: none;
    }

    .gv-content {
        padding: 28px 24px;
        min-height: auto;
    }

    .gv-card {
        padding: 28px 24px;
    }

    .gv-card h1 {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .gv-form {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .gv-benefits-grid {
        grid-template-columns: 1fr;
    }

    .gv-buttons {
        flex-direction: column-reverse;
        gap: 10px;
    }

    .gv-buttons button,
    .gv-kyc-action-btn {
        width: 100%;
        justify-content: center;
        min-width: auto;
    }

    .gv-card h1 {
        font-size: 22px;
    }

    .gv-card p {
        font-size: 14px;
    }

    .gv-illustration {
        width: 140px;
    }

    .gv-illustration-small {
        width: 80px;
    }

    .gv-price {
        font-size: 28px;
    }

    .gv-stepper {
        gap: 10px;
    }

    .gv-circle {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .gv-content {
        padding: 16px;
    }

    .gv-card {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .gv-wallet-info-card {
        padding: 16px;
    }

    .gv-wallet-address {
        font-size: 11px;
    }

    .gv-requirement-box {
        flex-direction: column;
        gap: 8px;
        padding: 14px 16px;
    }

    .gv-requirement-icon {
        font-size: 20px;
    }

    .gv-requirement-content {
        font-size: 13px;
    }

    .gv-wallet-qr-container canvas {
        width: 120px !important;
        height: 120px !important;
    }

    .gv-contact-btn {
        bottom: 16px;
        right: 16px;
        padding: 10px 16px;
        font-size: 12px;
    }

    .gv-tutorials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gv-tutorials-toggle {
        font-size: 13px;
        padding: 10px 16px;
    }
    
    .gv-tutorial-item {
        padding: 12px 8px;
    }
    
    .gv-tutorial-icon {
        font-size: 22px;
    }
    
    .gv-tutorial-name {
        font-size: 11px;
    }

    .gv-tutorial-modal {
        padding: 10px;
    }
    
    .gv-tutorial-modal-body {
        padding: 24px 20px 28px;
    }
    
    .gv-tutorial-modal-body .gv-tutorial-header-title {
        font-size: 18px;
    }
    
    .gv-tutorial-modal-body .gv-tutorial-header-icon {
        font-size: 28px;
    }
    
    .gv-tutorial-modal-close {
        top: 12px;
        right: 14px;
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
    
    .gv-tutorial-modal-body .gv-tutorial-actions {
        flex-direction: column;
    }
    
    .gv-tutorial-modal-body .gv-tutorial-steps ol {
        font-size: 12px;
        padding-left: 16px;
    }

    .gv-bonus-banner {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .gv-bonus-text {
        text-align: center;
    }

    .gv-bonus-timer {
        width: 100%;
    }

    .gv-guarantee-box {
        grid-template-columns: 1fr;
    }

    .gv-price-amount {
        font-size: 36px;
    }

    .gv-social-proof-step3 {
        flex-direction: column;
        text-align: center;
    }

    .gv-membership-wrapper .gainovo-modal-trigger {
        font-size: 15px;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .gv-sidebar {
        padding: 16px;
        gap: 10px;
    }

    .gv-logo {
        width: 100px;
    }

    .gv-circle {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }

    .gv-stepper {
        gap: 6px;
    }

    .gv-card h1 {
        font-size: 20px;
        margin-top: 10px;
    }

    .gv-card {
        padding: 16px 12px;
    }

    .gv-illustration {
        width: 100px;
    }

    .gv-illustration-small {
        width: 60px;
    }

    .gv-price {
        font-size: 24px;
    }

    .gv-fomo-banner {
        font-size: 12px;
        padding: 8px 12px;
    }

    .gv-benefit-item,
    .gv-benefit-grid-item {
        font-size: 12px;
        padding: 8px 12px;
    }

    .gv-field input,
    .gv-field select {
        padding: 10px 14px;
        font-size: 13px;
    }

    .gv-contact-btn .gv-contact-text {
        display: none;
    }

    .gv-contact-btn {
        padding: 12px 14px;
        border-radius: 50%;
    }

    .gv-tutorials-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .gv-price-amount {
        font-size: 28px;
    }

    .gv-price-old {
        font-size: 12px;
    }

    .gv-timer-value {
        font-size: 14px;
    }
}
/* =====================================================
BOTÓN DE CONTINUAR LUEGO
===================================================== */

.gv-skip-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--arb-text-dim);
    border: 1px solid var(--arb-border);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    font-family: inherit;
    cursor: pointer;
}

.gv-skip-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--arb-text);
    border-color: var(--arb-border-hover);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Responsive para el botón skip */
@media (max-width: 768px) {
    .gv-skip-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Asegurar que el orden en móvil sea correcto */
    .gv-buttons {
        flex-direction: column-reverse;
        gap: 10px;
    }
    
    .gv-buttons .gv-skip-btn {
        order: 2;
    }
    
    .gv-buttons .gv-prev {
        order: 1;
    }
    
    .gv-buttons .gv-next {
        order: 3;
    }
}
/* =====================================================
BOTÓN DE TUTORIAL FLOTANTE "GUÍA RÁPIDA"
===================================================== */

.gv-tutorial-float-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: fixed;
    bottom: 90px;
    right: 30px;
    z-index: 99998;
    background: linear-gradient(135deg, #0F52AA, #167BFF);
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(15, 82, 170, 0.35);
    transition: all 0.3s ease;
    font-family: inherit;
    text-decoration: none;
}

.gv-tutorial-float-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(15, 82, 170, 0.45);
    background: linear-gradient(135deg, #167BFF, #4a9eff);
    color: #fff;
}

.gv-tutorial-float-icon {
    font-size: 18px;
}

.gv-tutorial-float-text {
    font-size: 12px;
}

/* =====================================================
RESPONSIVE - BOTÓN FLOTANTE
===================================================== */

@media (max-width: 992px) {
    .gv-tutorial-float-btn {
        bottom: 80px;
        right: 16px;
        padding: 10px 14px;
    }
    
    .gv-tutorial-float-text {
        display: none;
    }
}

@media (max-width: 768px) {
    .gv-tutorial-float-btn {
        bottom: 76px;
        right: 16px;
        padding: 10px 14px;
        border-radius: 50%;
        width: 48px;
        height: 48px;
        justify-content: center;
    }

    .gv-tutorial-float-text {
        display: none;
    }

    .gv-tutorial-float-icon {
        font-size: 22px;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .gv-tutorial-float-btn {
        width: 44px;
        height: 44px;
        bottom: 70px;
        right: 12px;
        padding: 10px;
    }

    .gv-tutorial-float-icon {
        font-size: 20px;
    }
}