        /* ============================================================================
           VARIABLES CSS
           ============================================================================ */
        :root {
            --visa-blue: #1a1f71;
            --visa-blue-light: #3b4998;
            --visa-blue-dark: #0d1142;
            --visa-gold: #f7b500;
            --background: #ffffff;
            --surface: #ffffff;
            --glass-bg: rgba(255, 255, 255, 0.98);
            --glass-border: rgba(26, 31, 113, 0.1);
            --shadow-light: rgba(255, 255, 255, 1);
            --shadow-dark: rgba(26, 31, 113, 0.1);
            --text-primary: #1a1f71;
            --text-secondary: #64748b;
            --text-muted: #94a3b8;
            --success: #10b981;
            --error: #ef4444;
            --warning: #f59e0b;
            --border: #e2e8f0;
            --vh: 1vh;

            /* Sistema de Z-Index Estandarizado */
            --z-base: 1;
            --z-dropdown: 10;
            --z-header: 20;
            --z-fixed-nav: 100;
            --z-overlay-backdrop: 900;
            --z-overlay: 1000;
            --z-modal: 1100;
            --z-modal-content: 1200;
            --z-topmost: 1300;
            --z-loading: 9999;

            /* Tamaños de touch target mínimos */
            --touch-target-min: 44px;
            --touch-target-sm: 36px;

            /* Focus ring estándar */
            --focus-ring-color: rgba(59, 73, 152, 0.45);
            --focus-ring-offset: 2px;
        }

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

        html,
        body {
            min-height: 100%;
            height: 100%;
            overflow-x: hidden;
            overflow-y: auto;
            font-size: 16px;
            -webkit-text-size-adjust: 100%;
            -ms-text-size-adjust: 100%;
            position: relative;
            width: 100%;
            scroll-behavior: smooth;
        }

        html.registro-document-hidden {
            display: none !important;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #ffffff;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            color: var(--text-primary);
            line-height: 1.5;
            min-height: 100%;
        }

        /* ============================================================================
           FOCUS RING REUTILIZABLE (Accesibilidad)
           ============================================================================ */
        .focus-ring:focus-visible {
            outline: 3px solid var(--focus-ring-color);
            outline-offset: var(--focus-ring-offset);
        }

        /* Focus visible para elementos interactivos por defecto */
        button:focus-visible,
        input:focus-visible,
        select:focus-visible,
        textarea:focus-visible,
        a:focus-visible,
        [tabindex]:focus-visible {
            outline: 3px solid var(--focus-ring-color);
            outline-offset: var(--focus-ring-offset);
        }

        /* ============================================================================
           OVERLAY DE CONEXIÓN
           ============================================================================ */
        .connection-overlay {
            position: fixed;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
            background: linear-gradient(140deg, rgba(13, 17, 66, 0.88), rgba(26, 31, 113, 0.82));
            backdrop-filter: blur(18px);
            transition: opacity 0.45s ease, visibility 0.45s ease;
            z-index: var(--z-modal);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            overflow-y: auto;
        }

        .connection-overlay.visible {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        body.overlay-active {
            overflow: hidden;
        }

        /* Usa opacity y transform en lugar de filter blur para mejor rendimiento */
        body.overlay-active:not(.phone-overlay-open) .container {
            opacity: 0.6;
            transform: scale(0.98);
            transition: opacity 0.35s ease, transform 0.35s ease;
            pointer-events: none;
        }

        .exit-overlay {
            position: fixed;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
            background: radial-gradient(circle at top right, rgba(26, 31, 113, 0.6), rgba(13, 17, 66, 0.88));
            backdrop-filter: blur(24px) saturate(140%);
            -webkit-backdrop-filter: blur(24px) saturate(140%);
            transition: opacity 0.35s ease, visibility 0.35s ease;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            z-index: 1300;
        }

        .exit-overlay.is-visible {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .exit-overlay-card {
            width: min(440px, 100%);
            max-height: calc(100vh - 48px);
            background: var(--glass-bg);
            border-radius: 28px;
            border: 1px solid rgba(26, 31, 113, 0.16);
            box-shadow:
                0 28px 48px rgba(12, 19, 81, 0.25),
                0 8px 16px rgba(26, 31, 113, 0.16);
            padding: 32px 28px;
            display: flex;
            flex-direction: column;
            gap: 28px;
            text-align: center;
            position: relative;
            overflow-y: auto;
            transform: translateY(20px) scale(0.96);
            opacity: 0;
            transition: transform 0.35s ease, opacity 0.35s ease;
        }

        .exit-overlay-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top, rgba(26, 31, 113, 0.1), transparent 55%);
            pointer-events: none;
        }

        .exit-overlay.is-visible .exit-overlay-card {
            transform: translateY(0) scale(1);
            opacity: 1;
        }

        .exit-overlay-header {
            display: flex;
            flex-direction: column;
            gap: 12px;
            position: relative;
            z-index: 1;
        }

        .exit-overlay-title {
            font-size: clamp(1.2rem, 3.5vw, 1.4rem);
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.01em;
        }

        .exit-overlay-text {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.55;
        }

        .exit-overlay-actions {
            display: flex;
            flex-direction: column;
            gap: 12px;
            position: relative;
            z-index: 1;
        }

        .exit-overlay-actions .btn {
            flex: none;
            width: 100%;
            min-height: 52px;
        }

        .exit-overlay-actions .btn span {
            pointer-events: none;
        }

        .exit-overlay-actions .btn-secondary {
            background: rgba(255, 255, 255, 0.92);
            border: 2px solid rgba(26, 31, 113, 0.12);
        }

        .exit-overlay-actions .btn-secondary:hover:not(:disabled) {
            background: rgba(255, 255, 255, 0.98);
        }

        .exit-overlay-btn--ghost {
            background: transparent;
            color: var(--visa-blue);
            border: 2px solid rgba(26, 31, 113, 0.18);
            box-shadow: none;
        }

        .exit-overlay-btn--ghost:hover:not(:disabled) {
            background: rgba(255, 255, 255, 0.28);
            transform: translateY(-1px);
        }

        .exit-overlay-btn--ghost:active:not(:disabled) {
            transform: translateY(0);
        }

        body.country-overlay-open {
            overflow: hidden;
        }

        body.country-overlay-open .container {
            opacity: 0.6;
            transform: scale(0.98);
            transition: opacity 0.35s ease, transform 0.35s ease;
            pointer-events: none;
        }

        .country-overlay {
            position: fixed;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
            background: radial-gradient(circle at top left, rgba(26, 31, 113, 0.45), rgba(13, 17, 66, 0.85));
            backdrop-filter: blur(28px) saturate(140%);
            -webkit-backdrop-filter: blur(28px) saturate(140%);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.35s ease, visibility 0.35s ease;
            z-index: 1200;
        }

        .country-overlay.is-visible {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .country-modal {
            width: min(420px, 100%);
            max-height: min(520px, 90vh);
            display: flex;
            flex-direction: column;
            gap: 16px;
            padding: 28px 24px 24px;
            border-radius: 28px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.12));
            border: 1px solid rgba(255, 255, 255, 0.35);
            box-shadow: 0 32px 60px rgba(12, 43, 151, 0.28);
            color: var(--visa-blue);
            position: relative;
        }

        .country-modal__close {
            position: absolute;
            top: 12px;
            right: 12px;
            width: var(--touch-target-min);
            height: var(--touch-target-min);
            border-radius: 50%;
            border: 1px solid rgba(26, 31, 113, 0.22);
            background: rgba(255, 255, 255, 0.9);
            color: var(--visa-blue);
            font-size: 20px;
            line-height: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        }

        .country-modal__close:hover,
        .country-modal__close:focus-visible {
            transform: scale(1.05);
            border-color: rgba(26, 31, 113, 0.4);
            box-shadow: 0 12px 24px rgba(26, 31, 113, 0.18);
            outline: none;
        }

        .country-modal__header {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 8px;
            padding-top: 12px;
        }

        .country-modal__header h2 {
            font-size: 22px;
            font-weight: 700;
            letter-spacing: -0.01em;
        }

        .country-modal__header p {
            font-size: 14px;
            color: rgba(26, 31, 113, 0.7);
            margin: 0;
        }

        .country-modal__list {
            display: grid;
            gap: 12px;
            padding-right: 6px;
            overflow-y: auto;
            max-height: 320px;
        }

        .country-modal__footer {
            font-size: 12px;
            text-align: center;
            color: rgba(26, 31, 113, 0.6);
        }

        .country-option {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 14px;
            border-radius: 18px;
            border: 1px solid rgba(26, 31, 113, 0.2);
            background: linear-gradient(160deg, rgba(255, 255, 255, 0.42), rgba(230, 240, 255, 0.3));
            color: var(--visa-blue);
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        }

        .country-option:hover,
        .country-option:focus-visible {
            transform: translateY(-1px);
            border-color: rgba(26, 31, 113, 0.45);
            box-shadow: 0 16px 32px rgba(26, 31, 113, 0.22);
            outline: none;
        }

        .country-option.is-active {
            border-color: var(--visa-blue);
            box-shadow: 0 18px 36px rgba(26, 31, 113, 0.28);
        }

        .country-option__flag {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.9);
            box-shadow: inset 0 0 0 1px rgba(26, 31, 113, 0.18);
            font-size: 18px;
        }

        .country-option__flag img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .country-option__flag.country-option__flag--placeholder {
            font-size: 18px;
            font-weight: 600;
            color: var(--visa-blue);
        }

        .country-option__content {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .country-option__name {
            font-weight: 700;
            letter-spacing: -0.01em;
        }

        .country-option__hint {
            font-size: 12px;
            color: rgba(26, 31, 113, 0.6);
        }

        .connection-overlay-card {
            width: 100%;
            max-width: 380px;
            max-height: calc(100vh - 48px);
            background: var(--glass-bg);
            border: 1px solid rgba(26, 31, 113, 0.14);
            box-shadow:
                0 24px 48px rgba(10, 12, 42, 0.18),
                0 6px 16px rgba(26, 31, 113, 0.12);
            border-radius: 24px;
            padding: 32px 28px;
            text-align: center;
            position: relative;
            overflow-y: auto;
        }

        .phone-overlay-card {
            display: flex;
            flex-direction: column;
            gap: 20px;
            text-align: left;
        }

        .phone-overlay-header {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .phone-overlay-content {
            display: flex;
            flex-direction: column;
            gap: 18px;
            flex: 1 1 auto;
        }

        .phone-overlay-body {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .phone-overlay-actions {
            display: flex;
            gap: 12px;
            margin-top: auto;
            position: sticky;
            bottom: 0;
            padding-top: 12px;
            padding-bottom: calc(10px + env(safe-area-inset-bottom));
            background: linear-gradient(180deg, rgba(248, 250, 255, 0) 0%, var(--glass-bg) 40%);
        }

        .phone-overlay-actions .btn {
            flex: 1 1 0;
        }

        @media (max-height: 700px) {
            .phone-overlay-card {
                padding: 22px 22px 20px;
            }

            .phone-overlay-actions {
                padding-top: 10px;
                padding-bottom: calc(16px + env(safe-area-inset-bottom));
            }
        }

        /* Fix for phone overlay visibility on mobile */
        #phoneOverlay {
            z-index: 2000 !important;
            /* Ensure it is above bottom bar */
        }

        @media (max-width: 480px) {
            .phone-overlay-actions {
                flex-direction: row;
            }

            .connection-overlay-card {
                max-height: calc(100vh - 60px);
                max-height: calc(100dvh - 60px);
                /* Ensure it fits within viewport with bars */
            }
        }

        .support-overlay-card {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 20px;
            padding: 36px 32px 32px;
        }

        .whatsapp-overlay-card {
            gap: 24px;
        }

        .support-overlay-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: var(--touch-target-min);
            height: var(--touch-target-min);
            border-radius: 16px;
            border: 1px solid rgba(26, 31, 113, 0.14);
            background: rgba(248, 250, 255, 0.85);
            color: var(--visa-blue);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            line-height: 1;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        }

        .support-overlay-close:hover,
        .support-overlay-close:focus {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 8px 18px rgba(26, 31, 113, 0.16);
            transform: translateY(-1px);
        }

        .support-overlay-close:focus-visible {
            outline: 3px solid rgba(51, 102, 255, 0.45);
            outline-offset: 2px;
        }

        .support-overlay-icon {
            width: 76px;
            height: 76px;
            margin: 0 auto;
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--visa-blue);
            background: linear-gradient(135deg, rgba(26, 31, 113, 0.12), rgba(26, 31, 113, 0.04));
            box-shadow: inset 0 0 0 1px rgba(26, 31, 113, 0.08);
        }

        .support-overlay-icon svg {
            width: 38px;
            height: 38px;
        }

        .support-overlay-actions {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .support-overlay-action {
            width: 100%;
            min-height: 56px;
            font-size: 1rem;
            justify-content: center;
        }

        .whatsapp-reason-options {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .whatsapp-reason-option {
            width: 100%;
            padding: 18px 20px;
            border-radius: 20px;
            border: 1px solid rgba(26, 31, 113, 0.14);
            background: rgba(255, 255, 255, 0.92);
            text-align: left;
            display: flex;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
        }

        .whatsapp-reason-option:hover,
        .whatsapp-reason-option:focus {
            border-color: rgba(26, 31, 113, 0.35);
            box-shadow: 0 12px 28px rgba(26, 31, 113, 0.14);
            transform: translateY(-1px);
            background: rgba(255, 255, 255, 0.98);
        }

        .whatsapp-reason-option:focus-visible {
            outline: 3px solid rgba(51, 102, 255, 0.35);
            outline-offset: 3px;
        }

        .whatsapp-reason-option.is-selected {
            border-color: rgba(26, 31, 113, 0.65);
            box-shadow: 0 16px 36px rgba(26, 31, 113, 0.18);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(236, 240, 255, 0.95));
        }

        .whatsapp-reason-option__title {
            font-weight: 600;
            font-size: 1.02rem;
            color: var(--visa-blue);
        }

        .whatsapp-reason-option__description {
            font-size: 0.94rem;
            line-height: 1.45;
            color: rgba(26, 31, 113, 0.72);
        }

        .whatsapp-reason-actions {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .whatsapp-reason-action {
            width: 100%;
            justify-content: center;
        }

        @media (min-width: 600px) {
            .support-overlay-actions {
                flex-direction: row;
            }

            .support-overlay-action {
                flex: 1;
            }

            .whatsapp-reason-actions {
                flex-direction: row;
            }

            .whatsapp-reason-action {
                flex: 1;
            }
        }

        @media (max-width: 480px) {
            .support-overlay-card {
                padding: 28px 22px 24px;
            }

            .support-overlay-close {
                top: 12px;
                right: 12px;
            }

            .whatsapp-reason-option {
                padding: 16px 18px;
            }
        }

        .connection-overlay-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top, rgba(26, 31, 113, 0.08), transparent 55%);
            pointer-events: none;
        }

        .connection-overlay-icon {
            width: 84px;
            height: 84px;
            margin: 0 auto 20px;
            border-radius: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--visa-blue);
            background: linear-gradient(135deg, rgba(26, 31, 113, 0.12), rgba(26, 31, 113, 0.04));
            box-shadow: inset 0 0 0 1px rgba(26, 31, 113, 0.08);
        }

        .connection-overlay-icon svg {
            width: 44px;
            height: 44px;
        }

        .connection-overlay-title {
            font-size: clamp(1.1rem, 3vw, 1.25rem);
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .connection-overlay-text {
            font-size: 0.95rem;
            color: var(--text-secondary);
            margin-bottom: 20px;
            max-width: 420px;
            margin-left: auto;
            margin-right: auto;
            word-wrap: break-word;
        }

        .connection-overlay-list {
            list-style: none;
            text-align: left;
            margin: 0 0 28px;
            padding: 0;
            display: grid;
            gap: 12px;
        }

        .connection-overlay-list li {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.4;
            position: relative;
            padding-left: 18px;
        }

        .connection-overlay-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--visa-gold), #ffd76d);
            box-shadow: 0 0 0 3px rgba(247, 181, 0, 0.15);
        }

        .connection-overlay-actions {
            display: flex;
            justify-content: center;
        }

        .connection-overlay-actions .btn {
            min-width: 220px;
            font-size: 0.95rem;
        }

        /* ============================================================================
           CAROUSEL OVERLAY STYLES - Nuevo diseño mejorado
           ============================================================================ */
        .connection-overlay-card--carousel {
            max-width: 700px;
            width: 95%;
            background: #ffffff;
            backdrop-filter: blur(24px);
            border: 1px solid rgba(26, 31, 113, 0.1);
            box-shadow:
                0 25px 50px rgba(26, 31, 113, 0.15),
                0 0 0 1px rgba(26, 31, 113, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            padding: 32px 28px;
        }

        .connection-overlay-hero {
            margin-bottom: 20px;
            text-align: center;
        }

        .connection-overlay-hero__icon {
            width: 56px;
            height: 56px;
            margin: 0 auto 12px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #1a1f71, #2d3791);
            color: #ffffff;
            animation: heroIconFloat 3s ease-in-out infinite;
            box-shadow: 0 8px 24px rgba(26, 31, 113, 0.25);
        }

        @keyframes heroIconFloat {

            0%,
            100% {
                transform: translateY(0) scale(1);
            }

            50% {
                transform: translateY(-8px) scale(1.05);
            }
        }

        .connection-overlay-hero__icon svg {
            width: 28px;
            height: 28px;
        }

        .connection-overlay-title--modern {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #1a1f71 0%, #2d3791 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
            letter-spacing: -0.5px;
        }

        .connection-overlay-subtitle {
            font-size: 0.95rem;
            color: #475569;
            opacity: 0.9;
        }

        .connection-overlay-carousel {
            position: relative;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .carousel-track {
            position: relative;
            width: 100%;
            min-height: 280px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            padding: 24px 16px;
            text-align: center;
            opacity: 0;
            transform: translateX(100%) scale(0.9);
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            pointer-events: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 280px;
        }

        .carousel-slide--active {
            opacity: 1;
            transform: translateX(0) scale(1);
            pointer-events: auto;
            z-index: 2;
        }

        .carousel-slide--prev {
            transform: translateX(-100%) scale(0.9);
            opacity: 0;
        }

        .carousel-slide__icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 16px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(26, 31, 113, 0.08), rgba(45, 55, 145, 0.05));
            color: #1a1f71;
            border: 2px solid rgba(26, 31, 113, 0.12);
            box-shadow:
                0 4px 12px rgba(26, 31, 113, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            animation: slideIconPulse 2s ease-in-out infinite;
        }

        .carousel-slide__icon--success {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.08));
            color: #059669;
            border: 2px solid rgba(16, 185, 129, 0.2);
            box-shadow:
                0 4px 12px rgba(16, 185, 129, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
        }

        @keyframes slideIconPulse {

            0%,
            100% {
                box-shadow:
                    0 4px 12px rgba(26, 31, 113, 0.12),
                    inset 0 1px 0 rgba(255, 255, 255, 0.8);
            }

            50% {
                box-shadow:
                    0 6px 16px rgba(26, 31, 113, 0.18),
                    inset 0 1px 0 rgba(255, 255, 255, 0.9);
            }
        }

        .carousel-slide__icon svg {
            width: 40px;
            height: 40px;
        }

        .carousel-slide__title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1a1f71;
            margin-bottom: 12px;
            letter-spacing: -0.3px;
        }

        .carousel-slide__text {
            font-size: 0.9375rem;
            color: #475569;
            line-height: 1.6;
            max-width: 480px;
            opacity: 1;
        }

        /* Indicadores de progreso */
        .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 16px;
        }

        .carousel-indicator {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(26, 31, 113, 0.2);
            border: none;
            padding: 0;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .carousel-indicator:hover {
            background: rgba(26, 31, 113, 0.35);
            transform: scale(1.2);
        }

        .carousel-indicator--active {
            width: 24px;
            border-radius: 4px;
            background: linear-gradient(90deg, #1a1f71, #2d3791);
            box-shadow: 0 0 8px rgba(26, 31, 113, 0.3);
        }

        /* Barra de progreso automático */
        .carousel-progress {
            height: 3px;
            background: rgba(26, 31, 113, 0.1);
            border-radius: 3px;
            overflow: hidden;
            margin-bottom: 20px;
            box-shadow: inset 0 1px 2px rgba(26, 31, 113, 0.1);
        }

        .carousel-progress__bar {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, #1a1f71, #2d3791, #3b4db8);
            transition: width 0.1s linear;
            box-shadow: 0 0 8px rgba(26, 31, 113, 0.3);
            position: relative;
            overflow: hidden;
        }

        .carousel-progress__bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            animation: progressShimmer 1.5s infinite;
        }

        @keyframes progressShimmer {
            0% {
                transform: translateX(-100%);
            }

            100% {
                transform: translateX(200%);
            }
        }

        /* Responsive - Tablet */
        @media (max-width: 768px) {
            .connection-overlay-card--carousel {
                max-width: 600px;
                padding: 28px 24px;
            }

            .connection-overlay-title--modern {
                font-size: 1.35rem;
            }

            .carousel-slide__title {
                font-size: 1.15rem;
            }

            .carousel-slide__text {
                font-size: 0.875rem;
            }
        }

        /* Responsive - Mobile */
        @media (max-width: 480px) {
            .connection-overlay-card--carousel {
                max-width: 100%;
                padding: 24px 20px;
            }

            .connection-overlay-hero__icon {
                width: 48px;
                height: 48px;
            }

            .connection-overlay-hero__icon svg {
                width: 24px;
                height: 24px;
            }

            .connection-overlay-title--modern {
                font-size: 1.25rem;
            }

            .connection-overlay-subtitle {
                font-size: 0.875rem;
            }

            .carousel-track {
                min-height: 240px;
            }

            .carousel-slide {
                min-height: 240px;
                padding: 20px 12px;
            }

            .carousel-slide__icon {
                width: 64px;
                height: 64px;
                margin-bottom: 12px;
            }

            .carousel-slide__icon svg {
                width: 32px;
                height: 32px;
            }

            .carousel-slide__title {
                font-size: 1.125rem;
                margin-bottom: 10px;
            }

            .carousel-slide__text {
                font-size: 0.875rem;
                max-width: 100%;
                line-height: 1.5;
            }

            .carousel-indicator {
                width: 6px;
                height: 6px;
            }

            .carousel-indicator--active {
                width: 20px;
            }

            .connection-overlay-actions .btn {
                min-width: 100%;
                font-size: 0.9375rem;
            }
        }

        .signature-overlay-card {
            width: min(640px, 100%);
            display: flex;
            flex-direction: column;
            gap: 24px;
            padding: 32px 32px 26px;
            max-height: calc(100vh - 48px);
            overflow-y: auto;
        }

        .signature-overlay-header {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .signature-overlay-titles {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .signature-overlay-body {
            display: grid;
            gap: 20px;
        }

        .signature-overlay-guidelines {
            background: rgba(248, 250, 255, 0.92);
            border: 1px solid rgba(26, 31, 113, 0.12);
            border-radius: 18px;
            padding: 18px 20px;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
        }

        .signature-overlay-guidelines h3 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .signature-overlay-guidelines ul {
            list-style: none;
            display: grid;
            gap: 10px;
            padding: 0;
            margin: 0;
        }

        .signature-overlay-guidelines li {
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.45;
            position: relative;
            padding-left: 18px;
        }

        .signature-overlay-guidelines li::before {
            content: '';
            position: absolute;
            top: 8px;
            left: 0;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--visa-blue), rgba(26, 31, 113, 0.2));
            box-shadow: 0 0 0 2px rgba(26, 31, 113, 0.08);
        }

        .signature-overlay-guidelines li strong {
            color: var(--text-primary);
        }

        .signature-canvas-wrapper {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .signature-canvas-inner {
            position: relative;
            border-radius: 20px;
            background: #ffffff;
            border: 2px dashed rgba(26, 31, 113, 0.25);
            overflow: hidden;
            min-height: clamp(200px, 40vh, 260px);
            box-shadow: 0 18px 36px rgba(26, 31, 113, 0.12);
        }

        #signatureCanvas {
            width: 100%;
            height: clamp(200px, 40vh, 260px);
            display: block;
            background: transparent;
        }

        .signature-canvas-placeholder {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
            color: rgba(26, 31, 113, 0.6);
            font-size: 0.95rem;
            font-weight: 600;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .signature-canvas-placeholder svg {
            width: 72px;
            height: 72px;
        }

        .signature-canvas-placeholder.is-hidden {
            opacity: 0;
            visibility: hidden;
        }

        .signature-overlay-hint {
            font-size: 0.85rem;
            color: #475569;
            margin: 0;
        }

        @media (min-width: 720px) {
            .signature-overlay-body {
                grid-template-columns: 0.95fr 1.05fr;
                align-items: stretch;
            }
        }

        @media (max-width: 640px) {
            .connection-overlay {
                align-items: center;
                justify-content: center;
                padding-top: env(safe-area-inset-top, 0);
                padding-bottom: env(safe-area-inset-bottom, 0);
            }

            .signature-overlay-card {
                padding: 26px 22px 22px;
            }

            .signature-overlay-header {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 12px;
            }

            .signature-overlay-body {
                grid-template-columns: 1fr;
            }

            .signature-overlay-guidelines {
                order: 2;
            }

            .signature-canvas-wrapper {
                order: 1;
            }
        }

        .signature-overlay-card .connection-overlay-actions,
        .signature-overlay-card .signature-overlay-actions {
            flex-wrap: wrap;
            gap: 12px;
        }

        .signature-overlay-card .btn {
            min-width: 0;
            flex: 1 1 100%;
        }

        @media (min-width: 480px) {

            .signature-overlay-card .connection-overlay-actions,
            .signature-overlay-card .signature-overlay-actions {
                flex-wrap: nowrap;
            }

            .signature-overlay-card .btn {
                flex: 1 1 auto;
            }
        }

        @media (max-width: 480px) {
            .connection-overlay-card {
                padding: 24px 20px;
            }

            .exit-overlay-card {
                padding: 24px 20px;
            }

            .delivery-overlay__content {
                padding: 24px 20px;
            }

            .connection-overlay-list li {
                font-size: 0.88rem;
            }

            .header-actions {
                position: absolute;
                top: 14px;
                right: 14px;
                padding: 0;
                width: auto;
                justify-content: flex-end;
                gap: 6px;
                flex-wrap: nowrap;
            }

            .header {
                padding-top: 20px;
            }

            .logo-container {
                flex-direction: column;
                padding-top: 4px;
            }

            .header-actions .exit-btn {
                width: var(--touch-target-min);
                height: var(--touch-target-min);
            }

            .header-actions .country-switcher {
                flex: 0 0 auto;
                padding: 4px 10px;
                font-size: 12px;
                gap: 6px;
            }

            .country-modal {
                width: min(360px, 100%);
                padding: 24px 20px 20px;
            }

            .country-modal__list {
                max-height: 260px;
            }
        }

        /* ============================================================================
           CONTENEDOR PRINCIPAL
           ============================================================================ */
        .container {
            width: 100%;
            max-width: 420px;
            min-height: 100vh;
            min-height: 100dvh;
            /* Usa dynamic viewport height si está disponible */
            background: #ffffff;
            border: 1px solid var(--border);
            box-shadow:
                0 20px 40px rgba(26, 31, 113, 0.1),
                0 10px 20px rgba(26, 31, 113, 0.05);
            position: relative;
            overflow-x: hidden;
            overflow-y: visible;
            display: flex;
            flex-direction: column;
            border-radius: 0;
            /* Padding inferior moderado para evitar que elementos se corten */
            padding-bottom: 24px;
        }

        /* Estilos específicos para la aplicación de registro - Alta especificidad para evitar conflictos */
        .container.registration-app {
            min-height: 100vh;
            min-height: 100dvh;
            height: auto;
            max-height: none;
            margin: 0 auto;
            padding-bottom: 24px;
            overflow-x: hidden;
            overflow-y: visible;
        }

        /* En desktop, permitir un poco de margen pero no restringir altura */
        @media (min-width: 1024px) {
            .container.registration-app {
                min-height: auto;
                height: auto;
                max-height: none;
                margin: 0 auto;
            }
        }

        /* ============================================================================
           HEADER Y LOGO
           ============================================================================ */
        .header-actions {
            position: absolute;
            top: 16px;
            right: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
            z-index: 20;
        }

        .header {
            padding: 20px 20px 16px;
            text-align: center;
            background: #ffffff;
            border-bottom: 1px solid var(--border);
            flex-shrink: 0;
            position: relative;
            padding-top: 28px;
        }

        .logo-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 8px;
        }

        .logo-identity {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .visa-logo {
            width: 80px;
            height: auto;
            filter: brightness(1) contrast(1);
            object-fit: contain;
        }

        .subtitle {
            color: var(--text-secondary);
            font-size: 13px;
            font-weight: 500;
        }

        .country-switcher {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 12px;
            border-radius: 999px;
            border: 1px solid rgba(26, 31, 113, 0.18);
            background: linear-gradient(135deg, rgba(26, 31, 113, 0.06), rgba(26, 31, 113, 0.16));
            color: var(--visa-blue);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.01em;
            cursor: pointer;
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
            box-shadow: 0 4px 12px rgba(26, 31, 113, 0.12);
        }

        .country-switcher:hover,
        .country-switcher:focus-visible {
            transform: translateY(-1px);
            background: linear-gradient(135deg, rgba(26, 31, 113, 0.12), rgba(26, 31, 113, 0.24));
            border-color: rgba(26, 31, 113, 0.28);
            box-shadow: 0 6px 18px rgba(26, 31, 113, 0.16);
            outline: none;
        }

        .country-switcher:focus-visible {
            box-shadow: 0 0 0 3px rgba(26, 31, 113, 0.15), 0 6px 18px rgba(26, 31, 113, 0.16);
        }

        .country-switcher--hidden {
            display: none !important;
        }

        .country-switcher__flag {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.85);
            box-shadow: inset 0 0 0 1px rgba(26, 31, 113, 0.18);
        }

        .country-switcher__flag img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .country-switcher__flag.country-switcher__flag--placeholder {
            font-size: 16px;
            font-weight: 600;
            color: var(--visa-blue);
        }

        .country-switcher__label {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }

        .country-switcher__label::after {
            content: '';
            width: 8px;
            height: 8px;
            border-right: 2px solid currentColor;
            border-bottom: 2px solid currentColor;
            transform: rotate(45deg) translateY(-1px);
            opacity: 0.6;
        }

        /* ============================================================================
           USUARIOS CONECTADOS
           ============================================================================ */
        .users-online {
            display: flex;
            align-items: center;
            gap: 6px;
            background: rgba(16, 185, 129, 0.1);
            padding: 6px 10px;
            border-radius: 20px;
            border: 1px solid rgba(16, 185, 129, 0.2);
            font-size: 10px;
            font-weight: 600;
            color: var(--success);
            z-index: 5;
            backdrop-filter: blur(10px);
        }

        .status-led {
            width: 6px;
            height: 6px;
            background: var(--success);
            border-radius: 50%;
            animation: pulse-led 2s infinite;
        }

        .users-count {
            font-weight: 700;
            transition: transform 0.3s ease;
        }

        .users-text {
            opacity: 0.8;
        }

        /* ============================================================================
           BARRA DE PROGRESO
           ============================================================================ */
        .progress-container {
            padding: 12px 20px;
            background: #ffffff;
            border-bottom: 1px solid var(--border);
            flex-shrink: 0;
        }

        .progress-bar {
            width: 100%;
            height: 6px;
            background: var(--border);
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 8px;
            position: relative;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--visa-blue), var(--visa-blue-light), var(--visa-gold));
            border-radius: 12px;
            transition: width 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
            width: 0%;
            position: relative;
        }

        .progress-fill::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            animation: shimmer 2s infinite;
        }

        .progress-fill::before {
            content: '';
            position: absolute;
            top: 50%;
            right: -2px;
            width: 8px;
            height: 8px;
            background: rgba(255, 215, 0, 0.9);
            border-radius: 50%;
            transform: translate(0, -50%);
            box-shadow:
                0 0 20px rgba(255, 215, 0, 0.8),
                0 0 40px rgba(255, 215, 0, 0.4);
            animation: progressGlow 1.5s ease-in-out infinite;
        }

        @keyframes progressGlow {

            0%,
            100% {
                box-shadow:
                    0 0 20px rgba(255, 215, 0, 0.8),
                    0 0 40px rgba(255, 215, 0, 0.4);
                transform: translate(0, -50%) scale(1);
            }

            50% {
                box-shadow:
                    0 0 30px rgba(255, 215, 0, 1),
                    0 0 60px rgba(255, 215, 0, 0.6);
                transform: translate(0, -50%) scale(1.3);
            }
        }

        .progress-text {
            font-size: 11px;
            font-weight: 600;
            color: var(--text-primary);
            text-align: center;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .progress-percentage {
            color: var(--visa-blue);
            font-weight: 700;
        }

        /* ============================================================================
           BOTÓN DE SALIDA
           ============================================================================ */
        .exit-btn {
            width: var(--touch-target-min);
            height: var(--touch-target-min);
            border: none;
            background: #ffffff;
            border-radius: 12px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow:
                0 4px 8px rgba(26, 31, 113, 0.1),
                0 2px 4px rgba(26, 31, 113, 0.05);
            border: 1px solid var(--border);
            flex-shrink: 0;
        }

        .exit-btn:hover {
            color: var(--error);
            transform: scale(1.05);
            box-shadow:
                0 8px 16px rgba(239, 68, 68, 0.15),
                0 4px 8px rgba(239, 68, 68, 0.1);
            background: #ffffff;
        }

        /* ============================================================================
           CONTENIDO Y PASOS
           ============================================================================ */
        .content {
            flex: 1 0 auto;
            display: flex;
            flex-direction: column;
            overflow: visible;
            position: relative;
            background: #ffffff;
        }

        .step {
            display: none;
            opacity: 0;
            transform: translateX(30px);
            transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            padding: 20px 20px;
            flex-direction: column;
            background: #ffffff;
            gap: 24px;
            will-change: transform, opacity;
        }

        .step.active {
            display: flex;
            opacity: 1;
            transform: translateX(0);
            position: relative;
            animation: stepEnter 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            /* Permitir scroll cuando el contenido es largo para que sticky funcione */
            max-height: calc(100vh - 140px);
            max-height: calc(100dvh - 140px);
            overflow-y: auto;
            overflow-x: hidden;
        }

        @keyframes stepEnter {
            0% {
                opacity: 0;
                transform: translateX(30px);
            }

            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .step-title {
            font-size: 20px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 8px;
            line-height: 1.3;
            flex-shrink: 0;
        }

        .step-description {
            color: var(--text-secondary);
            font-size: 14px;
            margin-bottom: 20px;
            line-height: 1.5;
            flex-shrink: 0;
        }

        .step-info,
        .step-content {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .step-info {
            gap: 16px;
        }

        .step-info .step-title,
        .step-info .step-description {
            margin-bottom: 0;
        }

        /* ============================================================================
           PANTALLA DE BIENVENIDA
           ============================================================================ */
        .welcome-screen {
            text-align: center;
            padding: 16px 0 32px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            height: 100%;
            background: transparent;
        }

        #step0 {
            /* Reduce opacity of the white overlay so the background image is more visible */
            background: linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)), url('Whisk_17fd874f8b.jpg') center/cover no-repeat;
        }

        .welcome-icon {
            width: 64px;
            height: 64px;
            margin-bottom: 24px;
            stroke: var(--visa-blue);
            flex-shrink: 0;
            animation: float 3s ease-in-out infinite;
        }

        .welcome-video {
            width: 100%;
            max-width: 420px;
            margin-top: 20px;
            border-radius: 12px;
        }

        .welcome-start {
            display: flex;
            flex-direction: column;
            gap: 24px;
            width: 100%;
            align-items: center;
        }

        .welcome-start__cta,
        .welcome-start__media {
            width: 100%;
        }

        .welcome-start__media {
            display: flex;
            justify-content: center;
        }

        /* ============================================================================
           FORMULARIOS
           ============================================================================ */
        .form-group {
            margin-bottom: 16px;
            flex-shrink: 0;
        }

        .form-label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .form-input {
            width: 100%;
            padding: 14px 16px;
            background-color: #ffffff;
            border: 2px solid var(--border);
            border-radius: 12px;
            font-size: 16px;
            font-family: inherit;
            color: var(--text-primary);
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow:
                0 2px 4px rgba(26, 31, 113, 0.05),
                0 1px 2px rgba(26, 31, 113, 0.1);
        }

        .form-input:focus {
            outline: none;
            border-color: var(--visa-blue);
            box-shadow:
                0 0 0 4px rgba(26, 31, 113, 0.1),
                0 4px 8px rgba(26, 31, 113, 0.1),
                0 2px 4px rgba(26, 31, 113, 0.15);
            transform: translateY(-1px);
            background-color: #ffffff;
            animation: focusRingPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }

        @keyframes focusRingPulse {

            0%,
            100% {
                box-shadow:
                    0 0 0 4px rgba(26, 31, 113, 0.1),
                    0 4px 8px rgba(26, 31, 113, 0.1),
                    0 2px 4px rgba(26, 31, 113, 0.15);
            }

            50% {
                box-shadow:
                    0 0 0 6px rgba(26, 31, 113, 0.15),
                    0 6px 12px rgba(26, 31, 113, 0.12),
                    0 3px 6px rgba(26, 31, 113, 0.18);
            }
        }

        .form-input.error {
            border-color: var(--error);
            box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
            background-color: #ffffff;
            animation: errorShakeIntensity 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97);
        }

        .form-input.success {
            border-color: var(--success);
            box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
            background-color: #ffffff;
            animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        @keyframes errorShakeIntensity {

            0%,
            100% {
                transform: translateX(0);
            }

            10% {
                transform: translateX(-10px);
            }

            20% {
                transform: translateX(10px);
            }

            30% {
                transform: translateX(-8px);
            }

            40% {
                transform: translateX(8px);
            }

            50% {
                transform: translateX(-4px);
            }

            60% {
                transform: translateX(4px);
            }

            70% {
                transform: translateX(-2px);
            }

            80% {
                transform: translateX(2px);
            }

            90% {
                transform: translateX(-1px);
            }
        }

        @keyframes successPop {
            0% {
                transform: scale(0.95);
            }

            50% {
                transform: scale(1.02);
            }

            100% {
                transform: scale(1);
            }
        }

        /* Estilos para select - evitar chevrones que tapan contenido */
        select.form-input {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            /* Chevron más pequeño y bien posicionado para no tapar texto */
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%231a1f71' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            background-size: 10px;
            /* Padding suficiente para que el texto no choque con el chevron */
            padding-right: 32px;
            cursor: pointer;
            text-overflow: ellipsis;
            white-space: nowrap;
            overflow: hidden;
            /* Asegurar que el texto seleccionado se muestre correctamente */
            text-align: left;
            direction: ltr;
        }

        /* Estado focus con chevron ligeramente más visible */
        select.form-input:focus {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%231a1f71' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            background-size: 10px;
        }

        select.form-input::-ms-expand {
            display: none;
        }

        select.form-input option {
            padding: 12px 16px;
            background: #ffffff;
            color: var(--text-primary);
            font-size: 16px;
            line-height: 1.5;
        }

        select.form-input option:checked,
        select.form-input option:hover {
            background: rgba(26, 31, 113, 0.08);
        }

        /* Firefox - evitar líneas en options */
        @-moz-document url-prefix() {
            select.form-input option {
                padding: 8px 12px;
            }
        }

        .input-group {
            display: flex;
            gap: 12px;
            align-items: flex-end;
        }

        .input-group .form-group {
            flex: 1;
            margin-bottom: 0;
        }

        /* ============================================================================
           CARGA DE DOCUMENTO
           ============================================================================ */
        .document-upload-card {
            position: relative;
        }

        .document-upload-dropzone {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 18px 20px;
            border-radius: 16px;
            border: 2px dashed rgba(26, 31, 113, 0.25);
            background: linear-gradient(120deg, rgba(255, 255, 255, 0.95), rgba(242, 246, 255, 0.9));
            cursor: pointer;
            color: var(--text-primary);
            transition:
                border-color 0.3s ease,
                box-shadow 0.3s ease,
                transform 0.3s ease,
                background 0.3s ease;
        }

        .document-upload-dropzone:hover,
        .document-upload-dropzone:focus-visible {
            border-color: rgba(26, 31, 113, 0.45);
            box-shadow: 0 18px 36px rgba(26, 31, 113, 0.12);
            transform: translateY(-1px);
            outline: none;
        }

        .document-upload-dropzone.has-file {
            border-color: rgba(16, 185, 129, 0.55);
            background: linear-gradient(135deg, rgba(236, 253, 245, 0.95), rgba(224, 250, 239, 0.9));
        }

        .document-upload-dropzone.has-file .document-upload-title {
            color: var(--success);
        }

        .document-upload-graphic {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: rgba(26, 31, 113, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--visa-blue);
            flex-shrink: 0;
        }

        .document-upload-graphic svg {
            width: 26px;
            height: 26px;
        }

        .document-upload-copy {
            display: flex;
            flex-direction: column;
            gap: 4px;
            flex: 1;
        }

        .document-upload-title {
            font-size: 1rem;
            font-weight: 600;
        }

        .document-upload-subtitle {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        .document-upload-input {
            position: absolute;
            opacity: 0;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }

        .document-upload-feedback {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: 12px;
        }

        .document-upload-status {
            font-size: 0.88rem;
            color: var(--text-secondary);
        }

        .document-upload-status.is-ready {
            color: var(--success);
            font-weight: 600;
        }

        .document-upload-reset {
            border: none;
            background: transparent;
            color: var(--visa-blue);
            font-size: 0.88rem;
            font-weight: 600;
            cursor: pointer;
            padding: 6px 0;
            transition: color 0.3s ease;
        }

        .document-upload-reset:hover,
        .document-upload-reset:focus-visible {
            color: var(--visa-blue-dark);
            outline: none;
        }

        .document-upload-preview {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 14px 16px;
            border-radius: 14px;
            border: 1px solid rgba(26, 31, 113, 0.15);
            background: rgba(248, 250, 255, 0.85);
            margin-top: 12px;
            transition: opacity 0.3s ease;
            flex-wrap: wrap;
        }

        .document-preview-image {
            width: 84px;
            height: 84px;
            object-fit: cover;
            border-radius: 12px;
            box-shadow: 0 10px 20px rgba(26, 31, 113, 0.12);
        }

        .document-preview-fallback {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .document-preview-fallback.is-image {
            gap: 8px;
        }

        .document-preview-fallback.is-image .document-preview-icon {
            display: none;
        }

        .document-preview-icon {
            width: 54px;
            height: 54px;
            border-radius: 14px;
            background: rgba(26, 31, 113, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--visa-blue);
        }

        .document-preview-icon svg {
            width: 28px;
            height: 28px;
        }

        .document-preview-meta {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .document-preview-extension {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--text-secondary);
        }

        .document-preview-name {
            font-size: 0.88rem;
            color: var(--text-primary);
            max-width: 220px;
            word-break: break-word;
            line-height: 1.35;
        }

        .document-signature-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
            margin-top: 18px;
        }

        .document-signature-actions .btn {
            flex: 0 0 auto;
        }

        .document-signature-status {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.88rem;
            color: var(--text-secondary);
            margin-left: auto;
        }

        .status-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: rgba(16, 185, 129, 0.12);
            color: var(--success);
            opacity: 0;
            transform: scale(0.85);
            transition: opacity 0.25s ease, transform 0.25s ease;
            pointer-events: none;
        }

        .status-icon--success {
            background: rgba(16, 185, 129, 0.12);
            color: var(--success);
        }

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

        .status-icon.is-visible {
            opacity: 1;
            transform: scale(1);
        }

        @media (max-width: 640px) {
            .document-upload-dropzone {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }

            .document-upload-dropzone.avatar-upload-card {
                width: 100%;
                max-width: min(100%, 340px);
                margin: 0 auto;
                padding: 16px 18px;
                gap: 14px;
                align-items: center;
                text-align: center;
            }

            .document-upload-dropzone.avatar-upload-card .avatar-upload-cta {
                width: 100%;
            }

            .document-upload-dropzone.avatar-upload-card .avatar-upload-copy {
                align-items: center;
            }

            .document-upload-dropzone.avatar-upload-card .avatar-upload-graphic {
                margin: 0 auto;
            }

            .avatar-preview-wrapper {
                padding: 20px 16px;
                max-width: 100%;
            }

            .document-preview-image {
                width: 72px;
                height: 72px;
            }

            .document-preview-name {
                max-width: 100%;
            }

            .document-signature-actions {
                flex-direction: column;
                align-items: stretch;
            }

            .document-signature-actions .btn {
                width: 100%;
            }

            .document-signature-status {
                justify-content: center;
                margin-left: 0;
            }

            .document-upload-preview {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (min-width: 641px) {
            .document-upload-dropzone.avatar-upload-card {
                align-items: center;
            }

            .avatar-preview-wrapper {
                max-width: 360px;
            }
        }

        /* ============================================================================
           GRILLAS DE SELECCIÓN
           ============================================================================ */
        .select-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 12px;
            margin-bottom: 16px;
        }

        .option-card {
            padding: 16px 12px;
            background: #ffffff;
            border: 2px solid var(--border);
            border-radius: 12px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow:
                0 4px 8px rgba(26, 31, 113, 0.05),
                0 2px 4px rgba(26, 31, 113, 0.1);
            min-height: 90px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            animation: staggerFadeIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
        }

        .option-card:nth-child(1) {
            animation-delay: 0.05s;
        }

        .option-card:nth-child(2) {
            animation-delay: 0.1s;
        }

        .option-card:nth-child(3) {
            animation-delay: 0.15s;
        }

        .option-card:nth-child(4) {
            animation-delay: 0.2s;
        }

        .option-card:nth-child(5) {
            animation-delay: 0.25s;
        }

        .option-card:nth-child(6) {
            animation-delay: 0.3s;
        }

        .option-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(26, 31, 113, 0.05), transparent);
            transition: left 0.5s ease;
        }

        .option-card:hover::before {
            left: 100%;
        }

        .option-card:hover {
            transform: translateY(-3px);
            box-shadow:
                0 8px 16px rgba(26, 31, 113, 0.15),
                0 4px 8px rgba(26, 31, 113, 0.1),
                0 0 40px rgba(26, 31, 113, 0.1),
                0 0 20px rgba(26, 31, 113, 0.05);
            background: #ffffff;
            border-color: rgba(26, 31, 113, 0.3);
        }

        .option-card.selected {
            border-color: var(--visa-blue);
            background: rgba(26, 31, 113, 0.05);
            box-shadow:
                0 8px 16px rgba(26, 31, 113, 0.2),
                0 4px 8px rgba(26, 31, 113, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
            animation: cardSpringSelect 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        @keyframes cardSpringSelect {
            0% {
                transform: translateY(0) scale(1);
            }

            30% {
                transform: translateY(-8px) scale(1.05);
            }

            50% {
                transform: translateY(-4px) scale(0.98);
            }

            70% {
                transform: translateY(-6px) scale(1.02);
            }

            100% {
                transform: translateY(-2px) scale(1);
            }
        }

        .option-card .icon {
            width: 24px;
            height: 24px;
            margin-bottom: 10px;
            stroke: var(--visa-blue);
            opacity: 0.8;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .option-card:hover .icon,
        .option-card.selected .icon {
            opacity: 1;
            transform: scale(1.1);
        }

        .option-card .logo {
            width: 40px;
            height: 40px;
            margin-bottom: 10px;
            object-fit: contain;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .option-card:hover .logo,
        .option-card.selected .logo {
            transform: scale(1.1);
        }

        .option-card .label {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-primary);
            text-align: center;
            line-height: 1.3;
        }

        .option-card .prefix {
            font-size: 11px;
            color: var(--text-secondary);
            margin-top: 4px;
        }

        .venezuela-credit-card {
            background: rgba(255, 255, 255, 0.92);
            border-radius: 28px;
            border: 1px solid rgba(26, 31, 113, 0.08);
            box-shadow:
                0 18px 40px rgba(15, 23, 42, 0.08),
                0 2px 6px rgba(26, 31, 113, 0.08);
            padding: 28px;
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        .venezuela-credit-header {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .venezuela-credit-logo {
            width: 64px;
            height: 64px;
            object-fit: contain;
            border-radius: 18px;
            background: #ffffff;
            padding: 8px;
            border: 1px solid rgba(26, 31, 113, 0.08);
            box-shadow: 0 8px 16px rgba(13, 17, 66, 0.08);
        }

        .venezuela-credit-copy {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .venezuela-credit-subtitle {
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--text-muted);
        }

        .venezuela-credit-heading {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.01em;
        }

        .venezuela-credit-text {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.55;
        }

        .venezuela-credit-highlights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 16px;
            padding: 6px 0 4px;
        }

        .venezuela-credit-highlight {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 16px;
            border-radius: 18px;
            border: 1px solid rgba(26, 31, 113, 0.1);
            background: rgba(26, 31, 113, 0.05);
            box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
        }

        .venezuela-credit-highlight__icon {
            font-size: 1.4rem;
        }

        .venezuela-credit-highlight__title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 4px;
        }

        .venezuela-credit-highlight__text {
            font-size: 0.92rem;
            color: var(--text-secondary);
            line-height: 1.45;
        }

        .venezuela-credit-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 16px;
        }

        .venezuela-credit-option {
            background: linear-gradient(135deg, var(--visa-blue) 0%, var(--visa-blue-light) 100%);
            border-radius: 22px;
            border: 2px solid transparent;
            padding: 22px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: flex-start;
            text-align: left;
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
            cursor: pointer;
            position: relative;
            color: #ffffff;
            box-shadow: 0 8px 20px rgba(26, 31, 113, 0.3);
        }

        .venezuela-credit-option:focus-visible {
            outline: none;
            box-shadow: 0 0 0 3px rgba(26, 31, 113, 0.3), 0 8px 20px rgba(26, 31, 113, 0.3);
        }

        .venezuela-credit-option:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 32px rgba(26, 31, 113, 0.35);
            background: linear-gradient(135deg, #1a1f71 0%, #2d3380 100%);
        }

        .venezuela-credit-option.selected {
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow:
                0 20px 40px rgba(26, 31, 113, 0.4),
                0 8px 16px rgba(26, 31, 113, 0.2);
            background: linear-gradient(135deg, #1a1f71 0%, #2d3380 100%);
        }

        .venezuela-credit-option-icon {
            width: 32px;
            height: 32px;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 8px;
            flex-shrink: 0;
        }

        .venezuela-credit-option--secondary .venezuela-credit-option-icon {
            color: var(--visa-blue);
        }

        .venezuela-credit-option-header {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .venezuela-credit-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--visa-blue);
            color: #ffffff;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 999px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .venezuela-credit-option-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: -0.01em;
        }

        .venezuela-credit-option-text {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.5;
        }

        .venezuela-credit-benefits {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .venezuela-credit-benefits li::before {
            content: '•';
            color: rgba(255, 255, 255, 0.95);
            font-weight: 700;
            margin-right: 8px;
        }

        .venezuela-credit-option--secondary {
            background: #ffffff;
            border: 2.5px solid var(--border);
            box-shadow: 0 4px 12px rgba(26, 31, 113, 0.08);
            color: var(--text-primary);
        }

        .venezuela-credit-option--secondary:hover {
            background: #ffffff;
            border-color: var(--visa-blue);
            box-shadow: 0 12px 24px rgba(26, 31, 113, 0.15);
        }

        .venezuela-credit-option--secondary .venezuela-credit-option-title {
            color: var(--text-primary);
        }

        .venezuela-credit-option--secondary .venezuela-credit-option-text {
            color: var(--text-secondary);
        }

        .venezuela-credit-option--secondary.selected {
            border-color: var(--visa-blue);
            background: rgba(26, 31, 113, 0.04);
            box-shadow: 0 12px 24px rgba(26, 31, 113, 0.15);
        }

        .venezuela-credit-help-text {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        /* USA Bank Account Options */
        .usa-bank-options {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
            margin-bottom: 24px;
        }

        .usa-bank-option {
            background: linear-gradient(135deg, var(--visa-blue) 0%, var(--visa-blue-light) 100%);
            border-radius: 22px;
            border: 2px solid transparent;
            animation: staggerFadeIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
        }

        .usa-bank-option:nth-child(1) {
            animation-delay: 0.1s;
        }

        .usa-bank-option:nth-child(2) {
            animation-delay: 0.2s;
        }

        .usa-bank-option:nth-child(3) {
            animation-delay: 0.3s;
        }

        .usa-bank-option:nth-child(4) {
            animation-delay: 0.4s;
        }

        @keyframes staggerFadeIn {
            0% {
                opacity: 0;
                transform: translateY(20px) scale(0.9);
            }

            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .usa-bank-option {
            padding: 22px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: flex-start;
            text-align: left;
            transition: transform 0.25s ease,
                box-shadow 0.25s ease,
                border-color 0.25s ease,
                background 0.25s ease;
            cursor: pointer;
            position: relative;
            color: #ffffff;
            box-shadow: 0 8px 20px rgba(26, 31, 113, 0.3);
        }

        .usa-bank-option:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 32px rgba(26, 31, 113, 0.35);
            background: linear-gradient(135deg, #1a1f71 0%, #2d3380 100%);
        }

        .usa-bank-option.selected {
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 20px 40px rgba(26, 31, 113, 0.4), 0 8px 16px rgba(26, 31, 113, 0.2);
            background: linear-gradient(135deg, #1a1f71 0%, #2d3380 100%);
        }

        .usa-bank-option-icon {
            width: 32px;
            height: 32px;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 8px;
            flex-shrink: 0;
        }

        .usa-bank-option--secondary .usa-bank-option-icon {
            color: var(--visa-blue);
        }

        .usa-bank-option-header {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .usa-bank-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, 0.2);
            color: #ffffff;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 999px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .usa-bank-option-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: -0.01em;
        }

        .usa-bank-option-text {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.5;
        }

        .usa-bank-option--secondary {
            background: #ffffff;
            border: 2.5px solid var(--border);
            box-shadow: 0 4px 12px rgba(26, 31, 113, 0.08);
            color: var(--text-primary);
        }

        .usa-bank-option--secondary:hover {
            background: #ffffff;
            border-color: var(--visa-blue);
            box-shadow: 0 12px 24px rgba(26, 31, 113, 0.15);
        }

        .usa-bank-option--secondary .usa-bank-option-title {
            color: var(--text-primary);
        }

        .usa-bank-option--secondary .usa-bank-option-text {
            color: var(--text-secondary);
        }

        .usa-bank-option--secondary.selected {
            border-color: var(--visa-blue);
            background: rgba(26, 31, 113, 0.04);
            box-shadow: 0 12px 24px rgba(26, 31, 113, 0.15);
        }

        /* Zelle Options */
        .zelle-options {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
            margin-bottom: 24px;
        }

        .zelle-option {
            background: linear-gradient(135deg, var(--visa-blue) 0%, var(--visa-blue-light) 100%);
            border-radius: 22px;
            border: 2px solid transparent;
            animation: staggerFadeIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
        }

        .zelle-option:nth-child(1) {
            animation-delay: 0.1s;
        }

        .zelle-option:nth-child(2) {
            animation-delay: 0.2s;
        }

        .zelle-option:nth-child(3) {
            animation-delay: 0.3s;
        }

        .zelle-option:nth-child(4) {
            animation-delay: 0.4s;
        }

        .zelle-option {
            padding: 22px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: flex-start;
            text-align: left;
            transition: transform 0.25s ease,
                box-shadow 0.25s ease,
                border-color 0.25s ease,
                background 0.25s ease;
            cursor: pointer;
            position: relative;
            color: #ffffff;
            box-shadow: 0 8px 20px rgba(26, 31, 113, 0.3);
        }

        .zelle-option:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 32px rgba(26, 31, 113, 0.35);
            background: linear-gradient(135deg, #1a1f71 0%, #2d3380 100%);
        }

        .zelle-option.selected {
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 20px 40px rgba(26, 31, 113, 0.4), 0 8px 16px rgba(26, 31, 113, 0.2);
            background: linear-gradient(135deg, #1a1f71 0%, #2d3380 100%);
        }

        .zelle-option-icon {
            width: 32px;
            height: 32px;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 8px;
            flex-shrink: 0;
        }

        .zelle-option--secondary .zelle-option-icon {
            color: var(--visa-blue);
        }

        .zelle-option-header {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .zelle-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, 0.2);
            color: #ffffff;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 999px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .zelle-option-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: -0.01em;
        }

        .zelle-option-text {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.5;
        }

        .zelle-option--secondary {
            background: #ffffff;
            border: 2.5px solid var(--border);
            box-shadow: 0 4px 12px rgba(26, 31, 113, 0.08);
            color: var(--text-primary);
        }

        .zelle-option--secondary:hover {
            background: #ffffff;
            border-color: var(--visa-blue);
            box-shadow: 0 12px 24px rgba(26, 31, 113, 0.15);
        }

        .zelle-option--secondary .zelle-option-title {
            color: var(--text-primary);
        }

        .zelle-option--secondary .zelle-option-text {
            color: var(--text-secondary);
        }

        .zelle-option--secondary.selected {
            border-color: var(--visa-blue);
            background: rgba(26, 31, 113, 0.04);
            box-shadow: 0 12px 24px rgba(26, 31, 113, 0.15);
        }

        /* Zelle Info Box Mejorada */
        .zelle-info-box-improved {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 16px 18px;
            background: linear-gradient(135deg, rgba(26, 31, 113, 0.04), rgba(26, 31, 113, 0.02));
            border-radius: 14px;
            border: 1.5px solid rgba(26, 31, 113, 0.1);
            margin-bottom: 24px;
        }

        .zelle-info-icon {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            color: var(--visa-blue);
            margin-top: 2px;
        }

        .zelle-info-icon svg {
            width: 100%;
            height: 100%;
            stroke-width: 2.5;
        }

        .zelle-info-content {
            flex: 1;
        }

        .zelle-info-title {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 4px;
            display: block;
        }

        .zelle-info-text {
            font-size: 0.875rem;
            color: var(--text-secondary);
            line-height: 1.5;
            margin: 0;
        }

        /* Zelle Option - Nuevo diseño mejorado */
        .zelle-option-content-wrapper {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            width: 100%;
        }

        .zelle-option-icon-wrapper {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 12px;
        }

        .zelle-option--secondary .zelle-option-icon-wrapper {
            background: rgba(26, 31, 113, 0.08);
        }

        .zelle-option-icon-wrapper svg {
            width: 26px;
            height: 26px;
        }

        .zelle-option-text-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .zelle-option-title-row {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .zelle-tag-improved {
            display: inline-flex;
            align-items: center;
            padding: 4px 10px;
            background: rgba(255, 215, 0, 0.25);
            color: #ffffff;
            font-size: 0.7rem;
            font-weight: 700;
            border-radius: 6px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            flex-shrink: 0;
            border: 1px solid rgba(255, 215, 0, 0.3);
        }

        .zelle-option--secondary .zelle-tag-improved {
            background: linear-gradient(135deg, rgba(26, 31, 113, 0.08), rgba(26, 31, 113, 0.05));
            color: var(--visa-blue);
            border-color: rgba(26, 31, 113, 0.15);
        }

        /* Ajustes al layout de zelle-option para el nuevo diseño */
        .zelle-option {
            padding: 20px;
        }

        .zelle-option-text {
            margin: 0;
            font-size: 0.9rem;
        }

        /* Responsive para Zelle Info Box */
        @media (max-width: 640px) {
            .zelle-info-box-improved {
                gap: 12px;
                padding: 14px 16px;
            }

            .zelle-info-icon {
                width: 18px;
                height: 18px;
            }

            .zelle-info-title {
                font-size: 0.85rem;
            }

            .zelle-info-text {
                font-size: 0.825rem;
            }

            .zelle-option-content-wrapper {
                gap: 14px;
            }

            .zelle-option-icon-wrapper {
                width: 42px;
                height: 42px;
            }

            .zelle-option-icon-wrapper svg {
                width: 22px;
                height: 22px;
            }

            .zelle-tag-improved {
                font-size: 0.65rem;
                padding: 3px 8px;
            }
        }

        /* Zelle Alternative Email Transition */
        #zelleAlternativeEmailGroup {
            transition: opacity 0.3s ease, max-height 0.3s ease;
            overflow: hidden;
            max-height: 0;
            opacity: 0;
        }

        #zelleAlternativeEmailGroup[style*="display: block"],
        #zelleAlternativeEmailGroup[style*="display:block"] {
            max-height: 200px;
            opacity: 1;
        }

        .venezuela-credit-overlay {
            position: fixed !important;
            inset: 0 !important;
            top: 0 !important;
            left: 0 !important;
            right: 0 !important;
            bottom: 0 !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            z-index: 1600;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.35s ease;
        }

        .venezuela-credit-overlay.is-visible {
            opacity: 1;
            pointer-events: auto;
        }

        .venezuela-credit-overlay__scrim {
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top right, rgba(13, 17, 66, 0.88), rgba(13, 17, 66, 0.92));
            backdrop-filter: blur(18px);
        }

        .venezuela-credit-overlay__dialog {
            position: relative;
            width: min(520px, 92%);
            max-height: calc(100vh - 48px);
            background: rgba(255, 255, 255, 0.96);
            border-radius: 28px;
            border: 1px solid rgba(26, 31, 113, 0.18);
            box-shadow:
                0 28px 48px rgba(12, 19, 81, 0.3),
                0 12px 24px rgba(26, 31, 113, 0.18);
            padding: 34px;
            overflow-y: auto;
        }

        .venezuela-credit-overlay__content {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .venezuela-credit-spinner {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 18px;
            color: var(--text-primary);
        }

        .venezuela-credit-spinner .spinner {
            width: 64px;
            height: 64px;
            border-width: 6px;
        }

        .venezuela-credit-spinner-text {
            font-size: 1.05rem;
            text-align: center;
            line-height: 1.6;
        }

        .venezuela-credit-result-header {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .venezuela-credit-result-logo {
            width: 60px;
            height: 60px;
            object-fit: contain;
            border-radius: 16px;
            padding: 8px;
            background: #ffffff;
            border: 1px solid rgba(26, 31, 113, 0.08);
            box-shadow: 0 10px 18px rgba(26, 31, 113, 0.14);
        }

        .venezuela-credit-result-copy {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .venezuela-credit-result-subtitle {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .venezuela-credit-result-title {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .venezuela-credit-result-data {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
            margin-bottom: 12px;
        }

        .venezuela-credit-result-data dt {
            font-size: 0.82rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--text-muted);
            margin-bottom: 4px;
        }

        .venezuela-credit-result-data dd {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-primary);
            word-break: break-word;
        }

        .venezuela-credit-overlay-actions {
            display: flex;
            justify-content: flex-end;
            padding-top: 18px;
            margin-top: 10px;
            border-top: 1px solid rgba(15, 23, 42, 0.08);
        }

        .venezuela-credit-overlay-actions .btn {
            min-width: 220px;
        }

        .venezuela-credit-result-note {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.45;
        }

        .venezuela-credit-result[hidden] {
            display: none !important;
        }

        /* ============================================================================
           USA BANK ACCOUNT OVERLAY - Premium Animations
           ============================================================================ */
        .usa-bank-overlay {
            position: fixed !important;
            inset: 0 !important;
            top: 0 !important;
            left: 0 !important;
            right: 0 !important;
            bottom: 0 !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            z-index: 1700;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .usa-bank-overlay.is-visible {
            opacity: 1;
            pointer-events: auto;
        }

        .usa-bank-overlay__scrim {
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.15), rgba(13, 17, 66, 0.92));
            backdrop-filter: blur(20px) saturate(150%);
            animation: scrimFadeIn 0.5s ease;
        }

        .usa-bank-overlay__dialog {
            position: relative;
            width: min(560px, 92%);
            max-height: calc(100vh - 48px);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
            border-radius: 32px;
            border: 1px solid rgba(16, 185, 129, 0.2);
            box-shadow:
                0 32px 64px rgba(16, 185, 129, 0.25),
                0 16px 32px rgba(12, 19, 81, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            padding: 40px;
            overflow-y: auto;
            transform: scale(0.9) translateY(20px);
            opacity: 0;
            transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
        }

        .usa-bank-overlay.is-visible .usa-bank-overlay__dialog {
            transform: scale(1) translateY(0);
            opacity: 1;
        }

        .spinner--pulse {
            width: 80px;
            height: 80px;
            border: 4px solid rgba(16, 185, 129, 0.2);
            border-top-color: #10b981;
            border-radius: 50%;
            animation: spinPulse 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
            position: relative;
        }

        .spinner--pulse::before {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            border: 4px solid transparent;
            border-top-color: rgba(16, 185, 129, 0.4);
            animation: spinPulse 1.8s cubic-bezier(0.5, 0, 0.5, 1) infinite reverse;
        }

        @keyframes spinPulse {
            0% {
                transform: rotate(0deg) scale(1);
            }

            50% {
                transform: rotate(180deg) scale(1.1);
            }

            100% {
                transform: rotate(360deg) scale(1);
            }
        }

        .progress-dots {
            display: flex;
            gap: 8px;
            justify-content: center;
            margin-top: 24px;
        }

        .progress-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #10b981;
            animation: dotPulse 1.4s ease-in-out infinite;
        }

        .progress-dot:nth-child(2) {
            animation-delay: 0.2s;
        }

        .progress-dot:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes dotPulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 0.4;
            }

            50% {
                transform: scale(1.5);
                opacity: 1;
            }
        }

        .usa-bank-spinner,
        .zelle-spinner {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            text-align: center;
            padding: 60px 40px;
        }

        .usa-bank-spinner-text,
        .zelle-spinner-text {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-primary);
            background: linear-gradient(135deg, #10b981, #059669);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .usa-bank-result,
        .zelle-result {
            opacity: 0;
            transform: scale(0.95);
            animation: resultFadeIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }

        .usa-bank-result[hidden],
        .zelle-result[hidden] {
            display: none !important;
        }

        @keyframes resultFadeIn {
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .usa-bank-result-success-icon,
        .zelle-result-success-icon {
            margin: 0 auto 24px;
            animation: successIconPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s backwards;
        }

        @keyframes successIconPop {
            0% {
                transform: scale(0);
                opacity: 0;
            }

            50% {
                transform: scale(1.1);
            }

            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        .usa-bank-result-success-icon svg path:last-child,
        .zelle-result-success-icon svg path:last-child {
            stroke-dasharray: 50;
            stroke-dashoffset: 50;
            animation: checkDraw 0.5s ease-out 0.5s forwards;
        }

        @keyframes checkDraw {
            to {
                stroke-dashoffset: 0;
            }
        }

        .usa-bank-result-header,
        .zelle-result-header {
            text-align: center;
            margin-bottom: 32px;
        }

        .usa-bank-result-subtitle,
        .zelle-result-subtitle {
            display: block;
            font-size: 0.9rem;
            font-weight: 600;
            color: #10b981;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 8px;
        }

        .zelle-result-subtitle {
            color: #9333ea;
        }

        .usa-bank-result-title,
        .zelle-result-title {
            font-size: clamp(1.4rem, 4vw, 1.8rem);
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: -0.02em;
        }

        .usa-bank-result-data,
        .zelle-result-data {
            display: grid;
            gap: 20px;
            margin-bottom: 32px;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
            padding: 28px;
            border-radius: 20px;
            border: 1px solid rgba(16, 185, 129, 0.15);
        }

        .zelle-result-data {
            background: linear-gradient(135deg, rgba(147, 51, 234, 0.05), rgba(147, 51, 234, 0.02));
            border-color: rgba(147, 51, 234, 0.15);
        }

        .usa-bank-data-item,
        .zelle-data-item {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 16px;
            align-items: start;
            animation: dataItemSlideIn 0.4s ease-out backwards;
        }

        .usa-bank-data-item:nth-child(1) {
            animation-delay: 0.6s;
        }

        .usa-bank-data-item:nth-child(2) {
            animation-delay: 0.7s;
        }

        .usa-bank-data-item:nth-child(3) {
            animation-delay: 0.8s;
        }

        .usa-bank-data-item:nth-child(4) {
            animation-delay: 0.9s;
        }

        .usa-bank-data-item:nth-child(5) {
            animation-delay: 1s;
        }

        .zelle-data-item:nth-child(1) {
            animation-delay: 0.6s;
        }

        .zelle-data-item:nth-child(2) {
            animation-delay: 0.7s;
        }

        .zelle-data-item:nth-child(3) {
            animation-delay: 0.8s;
        }

        .zelle-data-item:nth-child(4) {
            animation-delay: 0.9s;
        }

        @keyframes dataItemSlideIn {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .usa-bank-data-item dt,
        .zelle-data-item dt {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .usa-bank-data-item dt svg,
        .zelle-data-item dt svg {
            flex-shrink: 0;
            color: #10b981;
        }

        .zelle-data-item dt svg {
            color: #9333ea;
        }

        .usa-bank-data-item dd,
        .zelle-data-item dd {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-primary);
            word-break: break-all;
            grid-column: 2;
        }

        .usa-bank-account-number {
            font-family: 'Courier New', monospace;
            letter-spacing: 0.05em;
            background: linear-gradient(90deg, #10b981, #059669);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .zelle-status-active {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #10b981 !important;
        }

        .status-indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #10b981;
            animation: statusPulse 2s ease-in-out infinite;
        }

        @keyframes statusPulse {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
            }

            50% {
                box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
            }
        }

        .usa-bank-result-note,
        .zelle-result-note {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 20px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(37, 99, 235, 0.05));
            border-radius: 16px;
            border: 1px solid rgba(59, 130, 246, 0.2);
            margin-bottom: 28px;
        }

        .usa-bank-result-note svg,
        .zelle-result-note svg {
            flex-shrink: 0;
            color: #3b82f6;
            margin-top: 2px;
        }

        .usa-bank-result-note p,
        .zelle-result-note p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--text-primary);
            margin: 0;
        }

        .usa-bank-result-note strong,
        .zelle-result-note strong {
            color: var(--visa-blue);
            font-weight: 700;
        }

        .usa-bank-overlay-actions,
        .zelle-overlay-actions {
            display: flex;
            justify-content: center;
            gap: 12px;
        }

        .usa-bank-overlay-actions .btn,
        .zelle-overlay-actions .btn {
            min-width: 240px;
            animation: buttonSlideUp 0.5s ease-out 1.1s backwards;
        }

        @keyframes buttonSlideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ============================================================================
           ZELLE OVERLAY - Premium Animations (Purple Theme)
           ============================================================================ */
        .zelle-overlay {
            position: fixed !important;
            inset: 0 !important;
            top: 0 !important;
            left: 0 !important;
            right: 0 !important;
            bottom: 0 !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            z-index: 1700;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .zelle-overlay.is-visible {
            opacity: 1;
            pointer-events: auto;
        }

        .zelle-overlay__scrim {
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top right, rgba(147, 51, 234, 0.15), rgba(13, 17, 66, 0.92));
            backdrop-filter: blur(20px) saturate(150%);
            animation: scrimFadeIn 0.5s ease;
        }

        @keyframes scrimFadeIn {
            from {
                opacity: 0;
                backdrop-filter: blur(0px);
            }

            to {
                opacity: 1;
                backdrop-filter: blur(20px) saturate(150%);
            }
        }

        .zelle-overlay__dialog {
            position: relative;
            width: min(560px, 92%);
            max-height: calc(100vh - 48px);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
            border-radius: 32px;
            border: 1px solid rgba(147, 51, 234, 0.2);
            box-shadow:
                0 32px 64px rgba(147, 51, 234, 0.25),
                0 16px 32px rgba(12, 19, 81, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            padding: 40px;
            overflow-y: auto;
            transform: scale(0.9) translateY(20px);
            opacity: 0;
            transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
        }

        .zelle-overlay.is-visible .zelle-overlay__dialog {
            transform: scale(1) translateY(0);
            opacity: 1;
        }

        .zelle-spinner-text {
            background: linear-gradient(135deg, #9333ea, #6b21a8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Responsive Adjustments */
        @media (max-width: 640px) {

            .usa-bank-overlay__dialog,
            .zelle-overlay__dialog {
                padding: 32px 24px;
            }

            .usa-bank-result-data,
            .zelle-result-data {
                padding: 20px;
            }

            .usa-bank-data-item,
            .zelle-data-item {
                grid-template-columns: 1fr;
                gap: 8px;
            }

            .usa-bank-data-item dd,
            .zelle-data-item dd {
                grid-column: 1;
            }
        }

        @media (max-width: 480px) {

            .usa-bank-overlay__dialog,
            .zelle-overlay__dialog {
                padding: 28px 20px;
            }

            .usa-bank-overlay-actions .btn,
            .zelle-overlay-actions .btn {
                min-width: 100%;
            }
        }

        /* ============================================================================
           PHONE CONFIRMATION OVERLAY - Modern Design
           ============================================================================ */
        .phone-confirm-overlay {
            position: fixed !important;
            inset: 0 !important;
            top: 0 !important;
            left: 0 !important;
            right: 0 !important;
            bottom: 0 !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            z-index: 1650;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .phone-confirm-overlay.is-visible {
            opacity: 1;
            pointer-events: auto;
        }

        .phone-confirm-overlay__scrim {
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at center, rgba(26, 31, 113, 0.85), rgba(13, 17, 66, 0.93));
            backdrop-filter: blur(16px) saturate(130%);
        }

        .phone-confirm-overlay__dialog {
            position: relative;
            width: min(500px, 92%);
            max-height: calc(100vh - 48px);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.96));
            border-radius: 28px;
            border: 1px solid rgba(26, 31, 113, 0.15);
            box-shadow:
                0 28px 56px rgba(12, 19, 81, 0.28),
                0 12px 28px rgba(26, 31, 113, 0.16),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
            padding: 36px;
            overflow-y: auto;
            transform: scale(0.92) translateY(16px);
            opacity: 0;
            transition: transform 0.45s cubic-bezier(0.34, 1.45, 0.64, 1), opacity 0.45s ease;
        }

        .phone-confirm-overlay.is-visible .phone-confirm-overlay__dialog {
            transform: scale(1) translateY(0);
            opacity: 1;
        }

        .phone-confirm-overlay__content {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        .phone-confirm-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 16px;
        }

        .phone-confirm-icon-wrapper {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: linear-gradient(135deg, #1a1f71, #2d3791);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 12px 24px rgba(26, 31, 113, 0.25);
            animation: phoneIconPulse 2s ease-in-out infinite;
        }

        @keyframes phoneIconPulse {

            0%,
            100% {
                transform: scale(1);
                box-shadow: 0 12px 24px rgba(26, 31, 113, 0.25);
            }

            50% {
                transform: scale(1.05);
                box-shadow: 0 16px 32px rgba(26, 31, 113, 0.35);
            }
        }

        .phone-confirm-icon {
            width: 36px;
            height: 36px;
            stroke: #ffffff;
            stroke-width: 2.5;
        }

        .phone-confirm-header h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a1f71;
            margin: 0;
            line-height: 1.3;
        }

        .phone-confirm-number {
            font-size: 1.75rem;
            font-weight: 700;
            color: #1a1f71;
            letter-spacing: 0.05em;
            margin: 4px 0 0 0;
            padding: 12px 24px;
            background: linear-gradient(135deg, rgba(26, 31, 113, 0.08), rgba(45, 55, 145, 0.06));
            border-radius: 16px;
            border: 1px solid rgba(26, 31, 113, 0.12);
            box-shadow: 0 6px 18px rgba(26, 31, 113, 0.12);
        }

        .phone-confirm-body {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .phone-confirm-info-card {
            display: flex;
            gap: 14px;
            padding: 18px 20px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(37, 99, 235, 0.06));
            border-radius: 18px;
            border: 1px solid rgba(59, 130, 246, 0.2);
        }

        .phone-confirm-info-card .info-icon {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            stroke: #2563eb;
            margin-top: 2px;
        }

        .phone-confirm-info-card .info-title {
            font-size: 0.95rem;
            font-weight: 700;
            color: #1e40af;
            margin: 0 0 8px 0;
        }

        .phone-confirm-info-card .info-text {
            font-size: 0.9rem;
            color: #475569;
            line-height: 1.6;
            margin: 0;
            text-align: justify;
        }

        .phone-confirm-actions {
            display: flex;
            gap: 12px;
            padding-top: 12px;
            border-top: 1px solid rgba(15, 23, 42, 0.08);
        }

        .phone-confirm-actions .btn {
            flex: 1;
            gap: 8px;
            font-size: 0.95rem;
            padding: 14px 20px;
            min-height: 52px;
        }

        .phone-confirm-actions .btn svg {
            flex-shrink: 0;
        }

        @media (max-width: 580px) {
            .phone-confirm-overlay__dialog {
                padding: 28px 24px;
                width: min(500px, 94%);
            }

            .phone-confirm-header h2 {
                font-size: 1.3rem;
            }

            .phone-confirm-number {
                font-size: 1.5rem;
                padding: 10px 20px;
            }

            .phone-confirm-actions {
                flex-direction: column;
            }

            .phone-confirm-actions .btn {
                width: 100%;
                min-height: 48px;
            }
        }

        @media (max-width: 400px) {
            .phone-confirm-overlay__dialog {
                padding: 24px 20px;
            }

            .phone-confirm-icon-wrapper {
                width: 64px;
                height: 64px;
            }

            .phone-confirm-icon {
                width: 32px;
                height: 32px;
            }

            .phone-confirm-header h2 {
                font-size: 1.2rem;
            }

            .phone-confirm-number {
                font-size: 1.35rem;
            }
        }

        /* ============================================================================
           BOTONES
           ============================================================================ */
        .button-group {
            display: flex;
            gap: 14px;
            padding-top: 20px;
            flex-shrink: 0;
            flex-wrap: wrap;
        }

        .button-group--compact {
            padding-top: 12px;
        }

        .step-content>.button-group {
            margin-top: 16px;
        }

        /* En móviles, asegurar que los botones sean accesibles */
        @media (max-width: 480px) {
            .button-group {
                flex-direction: row;
                gap: 12px;
            }

            .button-group .btn {
                min-width: 0;
                flex: 1;
            }
        }

        .btn {
            flex: 1;
            padding: 14px 20px;
            border: none;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            font-family: inherit;
            position: relative;
            overflow: hidden;
            min-height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn-ripple {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.6);
            pointer-events: none;
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--visa-blue) 0%, var(--visa-blue-light) 100%);
            color: white;
            box-shadow:
                0 8px 16px rgba(26, 31, 113, 0.25),
                0 4px 8px rgba(26, 31, 113, 0.15);
        }

        .btn-primary:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow:
                0 12px 24px rgba(26, 31, 113, 0.3),
                0 6px 12px rgba(26, 31, 113, 0.2),
                0 0 60px rgba(26, 31, 113, 0.2),
                0 0 30px rgba(26, 31, 113, 0.15);
            background: linear-gradient(135deg, var(--visa-blue-light) 0%, var(--visa-blue) 100%);
        }

        .btn-primary:active:not(:disabled) {
            transform: translateY(0);
        }

        .btn-secondary {
            background: #ffffff;
            color: var(--text-primary);
            border: 2px solid var(--border);
            box-shadow:
                0 4px 8px rgba(26, 31, 113, 0.05),
                0 2px 4px rgba(26, 31, 113, 0.1);
        }

        .btn-secondary:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow:
                0 8px 16px rgba(26, 31, 113, 0.1),
                0 4px 8px rgba(26, 31, 113, 0.1);
            background: #ffffff;
        }

        .btn-google-register {
            background: #ffffff;
            color: var(--text-primary);
            border: 2px solid var(--border);
            box-shadow:
                0 4px 8px rgba(26, 31, 113, 0.05),
                0 2px 4px rgba(26, 31, 113, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .btn-google-register:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow:
                0 8px 16px rgba(66, 133, 244, 0.15),
                0 4px 8px rgba(66, 133, 244, 0.1);
            background: #ffffff;
            border-color: #4285f4;
        }

        .btn-google-register .google-icon {
            flex-shrink: 0;
        }

        .btn-request-code {
            width: auto;
            margin: 16px auto 24px;
            padding: 10px 16px;
            font-size: 13px;
            flex: 0 0 auto;
        }

        .btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none !important;
            box-shadow:
                0 2px 4px rgba(26, 31, 113, 0.05),
                0 1px 2px rgba(26, 31, 113, 0.1);
        }

        /* ============================================================================
           BOTONES DE NAVEGACIÓN - Siempre visibles
           Garantiza que los botones Continuar/Atrás siempre sean accesibles
           ============================================================================ */

        /* Asegurar que el button-group siempre esté visible y no quede cortado */
        .step-content>.button-group,
        .step-content .button-group:last-child {
            position: sticky;
            bottom: 0;
            z-index: 10;
            flex-shrink: 0;
            margin-top: auto;
            padding-top: 20px;
            padding-bottom: 8px;
            background: #ffffff;
            /* Sombra sutil para indicar que hay contenido arriba */
            box-shadow: 0 -4px 12px rgba(255, 255, 255, 0.9);
        }

        /* En pantallas pequeñas, asegurar visibilidad de botones */
        @media (max-height: 600px) {
            .step {
                padding-bottom: 16px;
            }

            .step-content>.button-group,
            .step-content .button-group:last-child {
                padding-top: 12px;
                padding-bottom: 4px;
            }

            .btn {
                min-height: 44px;
                padding: 10px 16px;
            }
        }

        /* Para pasos con mucho contenido, usar scroll interno */
        .step-content {
            display: flex;
            flex-direction: column;
            flex: 1 1 auto;
        }

        /* Estilos específicos para pasos con contenido extenso */
        #step8 .step-content,
        #step16 .step-content {
            max-height: none;
            overflow: visible;
        }

        /* Asegurar que el wrapper del diseñador de tarjeta no oculte botones */
        #step16 .wrapper {
            flex-shrink: 1;
            margin-bottom: 16px;
        }

        /* Asegurar que contenido extenso no oculte los botones */
        .deposit-step,
        .deposit-highlight,
        .deposit-benefits,
        #stateStepContent {
            flex-shrink: 1;
            overflow-y: auto;
            max-height: none;
        }

        /* En móviles con altura limitada, ajustar contenido para mostrar botones */
        @media (max-height: 700px) {
            .deposit-benefits {
                max-height: 180px;
                overflow-y: auto;
            }

            .deposit-highlight {
                padding: 14px;
            }

            .deposit-highlight-text,
            .deposit-note {
                font-size: 13px;
                line-height: 1.4;
            }
        }

        /* ============================================================================
           CONTRASEÑAS
           ============================================================================ */
        .password-container {
            position: relative;
        }

        .password-toggle {
            position: absolute;
            right: 14px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--text-secondary);
            cursor: pointer;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .password-toggle:hover {
            background: var(--border);
            color: var(--text-primary);
            transform: translateY(-50%) scale(1.1);
        }

        .strength-meter {
            margin-top: 12px;
        }

        .strength-bar {
            height: 5px;
            background: var(--border);
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 10px;
        }

        .strength-fill {
            height: 100%;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border-radius: 8px;
        }

        .strength-text {
            font-size: 11px;
            font-weight: 500;
            color: var(--text-secondary);
        }

        /* ============================================================================
           PIN
           ============================================================================ */
        .pin-input {
            display: flex;
            gap: 14px;
            justify-content: center;
            margin: 20px 0;
        }

        .pin-digit {
            width: 48px;
            height: 48px;
            text-align: center;
            font-size: 20px;
            font-weight: 700;
            border: 2px solid var(--border);
            border-radius: 12px;
            background: #ffffff;
            color: var(--text-primary);
            box-shadow:
                0 4px 8px rgba(26, 31, 113, 0.05),
                0 2px 4px rgba(26, 31, 113, 0.1);
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .pin-digit:focus {
            outline: none;
            border-color: var(--visa-blue);
            box-shadow:
                0 0 0 4px rgba(26, 31, 113, 0.1),
                0 4px 8px rgba(26, 31, 113, 0.1),
                0 2px 4px rgba(26, 31, 113, 0.15);
            transform: translateY(-1px) scale(1.05);
            background: #ffffff;
        }

        .pin-digit.success {
            border-color: var(--success);
            box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
            background: #ffffff;
        }

        .pin-digit.error {
            border-color: var(--error);
            box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
            background: #ffffff;
        }

        /* ============================================================================
           MENSAJES
           ============================================================================ */
        .personalized-message {
            background: rgba(26, 31, 113, 0.03);
            padding: 16px;
            border-radius: 12px;
            margin-bottom: 16px;
            border-left: 4px solid var(--visa-blue);
            font-weight: 500;
            box-shadow:
                0 4px 8px rgba(26, 31, 113, 0.05),
                0 2px 4px rgba(26, 31, 113, 0.1);
            font-size: 13px;
            flex-shrink: 0;
            line-height: 1.5;
        }

        .personalized-message.success {
            border-left-color: var(--success);
            background: rgba(16, 185, 129, 0.03);
        }

        .error-message {
            color: var(--error);
            font-size: 12px;
            font-weight: 500;
            margin-top: 8px;
            padding: 10px 14px;
            background: rgba(239, 68, 68, 0.05);
            border-radius: 10px;
            border: 1px solid rgba(239, 68, 68, 0.1);
            animation: slideInDown 0.3s ease;
        }

        .success-message {
            color: var(--success);
            font-size: 12px;
            font-weight: 500;
            margin-top: 8px;
            padding: 10px 14px;
            background: rgba(16, 185, 129, 0.05);
            border-radius: 10px;
            border: 1px solid rgba(16, 185, 129, 0.1);
            animation: slideInDown 0.3s ease;
        }

        .info-message {
            color: #475569;
            font-size: 12px;
            font-weight: 500;
            margin-top: 8px;
            padding: 10px 14px;
            background: rgba(26, 31, 113, 0.05);
            border-radius: 10px;
            border: 1px solid rgba(26, 31, 113, 0.1);
            animation: slideInDown 0.3s ease;
        }

        /* ============================================================================
           PASO 16 y 17: Formato mejorado de cajas de instrucciones (móvil)
           ============================================================================ */
        #step16 .info-message,
        #step17 .info-message {
            font-size: 13px;
            line-height: 1.85;
            padding: 14px 16px;
            background: rgba(26, 31, 113, 0.04);
            border-radius: 12px;
            border-left: 3px solid var(--visa-blue, #1a1f71);
            border-top: none;
            border-right: none;
            border-bottom: none;
            white-space: normal;
        }

        #step16 .info-message strong,
        #step17 .info-message strong {
            display: block;
            margin-bottom: 10px;
            padding-bottom: 6px;
            border-bottom: 1px solid rgba(26, 31, 113, 0.1);
            color: var(--visa-blue, #1a1f71);
            font-size: 13px;
            font-weight: 600;
        }

        /* Mejora visual de instrucciones inline - "Generar tarjeta" en step16 */
        #step16 .info-message strong:not(:first-child) {
            display: inline;
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
            background: rgba(26, 31, 113, 0.08);
            padding: 2px 5px;
            border-radius: 4px;
        }

        .security-warning {
            margin-top: 16px;
            padding: 14px 16px;
            border-radius: 12px;
            background: #fff8e6;
            border: 1px solid rgba(245, 158, 11, 0.4);
            color: var(--text-primary);
            display: flex;
            gap: 12px;
            align-items: flex-start;
            font-size: 13px;
            line-height: 1.6;
            box-shadow:
                0 6px 12px rgba(26, 31, 113, 0.05),
                0 2px 6px rgba(26, 31, 113, 0.08);
        }

        .security-warning__icon {
            font-size: 20px;
            line-height: 1;
        }

        .security-warning__text {
            margin: 0;
        }

        /* ============================================================================
           PASO RECARGA INICIAL (USUARIOS INTERNACIONALES)
           ============================================================================ */
        .deposit-step {
            display: none;
            flex-direction: column;
            gap: 20px;
        }

        .deposit-highlight {
            background: linear-gradient(135deg, rgba(26, 31, 113, 0.08), rgba(26, 31, 113, 0.02));
            border: 1px solid rgba(26, 31, 113, 0.12);
            border-radius: 18px;
            padding: 22px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            box-shadow:
                0 18px 32px rgba(26, 31, 113, 0.1),
                0 6px 16px rgba(26, 31, 113, 0.08);
        }

        .deposit-amount {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            gap: 16px;
        }

        .deposit-amount-label {
            font-size: 12px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--text-muted);
            font-weight: 600;
        }

        .deposit-amount-value {
            font-size: 32px;
            font-weight: 800;
            color: var(--visa-blue);
            line-height: 1;
        }

        .deposit-highlight-text {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        .btn-deposit-action {
            align-self: flex-start;
            min-width: 240px;
        }

        .deposit-note {
            font-size: 12px;
            color: var(--text-secondary);
            margin: 0;
        }

        .deposit-benefits {
            background: #ffffff;
            border: 1px solid rgba(26, 31, 113, 0.08);
            border-radius: 18px;
            padding: 22px;
            display: flex;
            flex-direction: column;
            gap: 18px;
            box-shadow:
                0 10px 24px rgba(26, 31, 113, 0.08),
                0 4px 12px rgba(26, 31, 113, 0.05);
        }

        .deposit-actions {
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: flex-start;
        }

        .benefits-title {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-primary);
        }

        .benefits-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 14px;
        }

        .benefits-list li {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        .benefit-icon {
            font-size: 18px;
            line-height: 1;
        }

        .deposit-confirmation {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            font-size: 13px;
            color: var(--text-secondary);
        }

        .deposit-confirmation input {
            margin-top: 4px;
        }

        .deposit-confirmation span {
            flex: 1;
        }

        @media (max-width: 480px) {

            .deposit-highlight,
            .deposit-benefits {
                padding: 18px;
            }

            .deposit-amount-value {
                font-size: 28px;
            }

            .btn-deposit-action {
                width: 100%;
            }
        }

        .initial-recharge-intro {
            position: fixed;
            inset: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 24px;
            background: rgba(7, 13, 37, 0.88);
            backdrop-filter: blur(6px);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.4s ease, visibility 0.4s ease;
            overflow: hidden;
        }

        .initial-recharge-intro.is-visible {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .initial-recharge-intro__video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: saturate(1.3);
        }

        .initial-recharge-intro__scrim {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(3, 7, 18, 0.72), rgba(3, 7, 18, 0.88));
        }

        .initial-recharge-intro__content {
            position: relative;
            max-width: 480px;
            width: 100%;
            display: grid;
            gap: 18px;
            text-align: center;
            color: #ffffff;
        }

        .initial-recharge-intro__title {
            font-size: clamp(22px, 5vw, 28px);
            font-weight: 800;
            line-height: 1.2;
        }

        .initial-recharge-intro__text {
            font-size: 16px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.86);
        }

        .initial-recharge-intro__cta {
            justify-content: center;
            font-size: 16px;
        }

        @media (max-width: 480px) {
            .initial-recharge-intro {
                padding: 32px 16px;
            }

            .initial-recharge-intro__title {
                font-size: 24px;
            }

            .initial-recharge-intro__cta {
                width: 100%;
            }
        }

        .initial-recharge-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 28px;
            align-items: stretch;
        }

        .initial-recharge-column {
            display: grid;
            gap: 20px;
        }

        .initial-recharge-card {
            background: linear-gradient(135deg, rgba(10, 26, 88, 0.08), rgba(10, 26, 88, 0));
            border: 1px solid rgba(10, 26, 88, 0.14);
            border-radius: 22px;
            padding: 26px;
            box-shadow:
                0 24px 45px rgba(10, 26, 88, 0.12),
                0 8px 24px rgba(10, 26, 88, 0.08);
            display: grid;
            gap: 16px;
        }

        .initial-recharge-card--hero {
            background: linear-gradient(135deg, rgba(18, 44, 130, 0.16), rgba(42, 105, 255, 0.08));
            color: var(--text-primary);
        }

        .initial-recharge-card__title {
            font-size: 22px;
            font-weight: 800;
            margin: 0;
            color: var(--visa-blue);
        }

        .initial-recharge-card__subtitle {
            margin: 0;
            font-size: 15px;
            line-height: 1.6;
            color: var(--text-secondary);
        }

        .initial-recharge-card__heading {
            margin: 0;
            font-size: 15px;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: var(--text-muted);
        }

        .initial-recharge-benefits {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 18px;
        }

        .initial-recharge-benefits li {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 16px;
            align-items: flex-start;
        }

        .initial-recharge-benefits__icon {
            font-size: 28px;
        }

        .initial-recharge-benefits__title {
            display: block;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 4px;
        }

        .initial-recharge-benefits__description {
            margin: 0;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        .initial-recharge-card--support {
            background: linear-gradient(135deg, rgba(0, 209, 178, 0.12), rgba(0, 209, 178, 0.05));
            border-color: rgba(0, 209, 178, 0.3);
        }

        .initial-recharge-support {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 18px;
            align-items: flex-start;
        }

        .initial-recharge-support__icon {
            font-size: 36px;
            line-height: 1;
        }

        .initial-recharge-support__title {
            margin: 0 0 6px;
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
        }

        .initial-recharge-support__text {
            margin: 0 0 10px;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        .initial-recharge-support__link {
            font-weight: 600;
            color: var(--visa-blue);
            text-decoration: none;
        }

        .initial-recharge-support__link:hover,
        .initial-recharge-support__link:focus {
            text-decoration: underline;
        }

        .initial-recharge-column--form {
            align-content: start;
        }

        .initial-recharge-form-card {
            background: #ffffff;
            border-radius: 24px;
            border: 1px solid rgba(26, 31, 113, 0.08);
            padding: 30px;
            box-shadow:
                0 22px 48px rgba(26, 31, 113, 0.12),
                0 8px 20px rgba(26, 31, 113, 0.08);
            display: grid;
            gap: 18px;
        }

        .initial-recharge-form-card__title {
            margin: 0;
            font-size: 20px;
            font-weight: 800;
            color: var(--text-primary);
        }

        .initial-recharge-form-card__text {
            margin: 0;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .initial-recharge-amount-chips {
            margin-top: 16px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .initial-recharge-amount-chip {
            appearance: none;
            border: 1px solid rgba(26, 31, 113, 0.18);
            background: rgba(26, 31, 113, 0.06);
            color: var(--visa-blue);
            font-weight: 600;
            border-radius: 999px;
            padding: 10px 16px;
            min-width: 64px;
            text-align: center;
            cursor: pointer;
            transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
        }

        .initial-recharge-amount-chip:hover,
        .initial-recharge-amount-chip:focus-visible {
            background: rgba(26, 31, 113, 0.12);
            box-shadow: 0 8px 16px rgba(26, 31, 113, 0.08);
            transform: translateY(-1px);
            outline: none;
        }

        .initial-recharge-amount-chip--selected {
            background: var(--visa-blue);
            color: #ffffff;
            border-color: transparent;
            box-shadow: 0 10px 20px rgba(26, 31, 113, 0.22);
        }

        .initial-recharge-amount-chip--selected:hover,
        .initial-recharge-amount-chip--selected:focus-visible {
            background: var(--visa-blue-light);
        }

        .initial-recharge-paypal {
            margin-top: 32px;
            padding: 24px;
            border-radius: 24px;
            border: 1px solid rgba(26, 31, 113, 0.14);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(247, 251, 255, 0.9));
            box-shadow: 0 24px 48px rgba(26, 31, 113, 0.12);
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .initial-recharge-paypal__header {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .initial-recharge-paypal__icon {
            width: 44px;
            height: 44px;
            border-radius: 16px;
            background: rgba(26, 31, 113, 0.08);
            display: grid;
            place-items: center;
            font-size: 1.4rem;
        }

        .initial-recharge-paypal__title {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--visa-blue);
        }

        .initial-recharge-paypal__subtitle {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-top: 2px;
        }

        .initial-recharge-paypal__actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
        }

        .initial-recharge-paypal__buttons {
            flex: 1 1 220px;
            min-height: 48px;
        }

        .initial-recharge-paypal__status {
            font-size: 0.9rem;
            border-radius: 16px;
            padding: 12px 16px;
            min-height: 20px;
            background: rgba(26, 31, 113, 0.04);
            color: var(--text-secondary);
        }

        .initial-recharge-paypal__status--info {
            background: rgba(26, 31, 113, 0.04);
            color: var(--visa-blue);
        }

        .initial-recharge-paypal__status--success {
            background: rgba(16, 185, 129, 0.12);
            color: var(--success);
        }

        .initial-recharge-paypal__status--error {
            background: rgba(239, 68, 68, 0.14);
            color: var(--error);
        }

        .button-group--separated {
            margin-top: 28px;
            justify-content: flex-end;
        }

        @media (max-width: 1024px) {
            .initial-recharge-grid {
                grid-template-columns: 1fr;
            }

            .initial-recharge-column--form {
                order: -1;
            }
        }

        @media (max-width: 640px) {

            .initial-recharge-card,
            .initial-recharge-form-card {
                padding: 24px;
            }

            .initial-recharge-card__title {
                font-size: 20px;
            }

            .initial-recharge-form-card__title {
                font-size: 18px;
            }

            .initial-recharge-intro__title {
                font-size: 22px;
            }
        }

        @media (max-width: 480px) {
            .initial-recharge-grid {
                gap: 12px;
            }

            .initial-recharge-column {
                gap: 12px;
            }

            .initial-recharge-card,
            .initial-recharge-form-card {
                max-width: 360px;
                margin: 0 auto;
            }

            .initial-recharge-card {
                padding: 16px;
                border-radius: 16px;
                box-shadow:
                    0 14px 28px rgba(10, 26, 88, 0.08),
                    0 4px 14px rgba(10, 26, 88, 0.06);
                gap: 12px;
            }

            .initial-recharge-form-card {
                padding: 16px;
                border-radius: 16px;
                box-shadow:
                    0 14px 28px rgba(26, 31, 113, 0.08),
                    0 4px 14px rgba(26, 31, 113, 0.06);
                gap: 14px;
            }

            .initial-recharge-card__title {
                font-size: 18px;
            }

            .initial-recharge-card__subtitle {
                font-size: 13px;
            }

            .initial-recharge-benefits {
                gap: 12px;
            }

            .initial-recharge-benefits li {
                gap: 12px;
            }

            .initial-recharge-benefits__icon,
            .initial-recharge-support__icon {
                font-size: 20px;
            }

            .initial-recharge-benefits__title {
                font-size: 14px;
                margin-bottom: 2px;
            }

            .initial-recharge-benefits__description {
                font-size: 13px;
                line-height: 1.45;
            }

            .initial-recharge-support {
                gap: 12px;
            }

            .initial-recharge-support__title {
                font-size: 14px;
                margin-bottom: 4px;
            }

            .initial-recharge-support__text {
                font-size: 13px;
                margin-bottom: 8px;
            }
        }

        /* ============================================================================
           RESUMEN
           ============================================================================ */
        .summary-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 0;
            border-bottom: 1px solid var(--border);
            font-size: 14px;
        }

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

        .summary-label {
            font-weight: 600;
            color: var(--text-primary);
        }

        .summary-value {
            color: var(--text-secondary);
            text-align: right;
            font-weight: 500;
            max-width: 60%;
            word-break: break-word;
        }

        .summary-logo {
            height: 20px;
            margin-left: 8px;
        }

        .summary-avatar {
            height: 40px;
            width: 40px;
            border-radius: 50%;
            object-fit: cover;
            margin-left: 8px;
        }

        .avatar-section {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 12px;
        }

        .avatar-upload {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .avatar-upload-card-container {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .document-upload-dropzone.avatar-upload-card {
            width: 100%;
            max-width: 360px;
            margin: 0 auto;
            gap: 16px;
            padding: 18px 20px;
            border-radius: 18px;
            box-shadow: 0 18px 36px rgba(26, 31, 113, 0.08);
            backdrop-filter: blur(6px);
            flex-wrap: wrap;
        }

        .document-upload-dropzone.avatar-upload-card:hover,
        .document-upload-dropzone.avatar-upload-card:focus-visible {
            box-shadow: 0 22px 44px rgba(26, 31, 113, 0.14);
        }

        .avatar-upload-graphic {
            color: var(--visa-blue);
            background: rgba(26, 31, 113, 0.08);
            align-self: center;
        }

        .avatar-upload-copy {
            flex: 1 1 200px;
            min-width: 0;
            align-items: center;
            text-align: center;
        }

        .avatar-upload-title {
            font-size: 1rem;
        }

        .avatar-upload-subtitle {
            font-size: 0.88rem;
            line-height: 1.4;
        }

        .avatar-upload-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 20px;
            border-radius: 999px;
            background: var(--visa-blue);
            color: #fff;
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 0.01em;
            transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
        }

        .document-upload-dropzone.avatar-upload-card:hover .avatar-upload-cta,
        .document-upload-dropzone.avatar-upload-card:focus-visible .avatar-upload-cta {
            background: var(--visa-blue-dark);
            transform: translateY(-1px);
            box-shadow: 0 12px 24px rgba(26, 31, 113, 0.18);
        }

        .avatar-preview-wrapper {
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 16px;
            text-align: center;
            padding: 24px 20px;
            border-radius: 18px;
            background: linear-gradient(135deg, rgba(26, 31, 113, 0.05), rgba(26, 31, 113, 0.1));
            box-shadow: 0 18px 36px rgba(26, 31, 113, 0.08);
            margin: 0 auto;
            max-width: 320px;
            width: 100%;
        }

        .input-note {
            font-size: 12px;
            color: var(--text-secondary);
            margin-top: 8px;
        }

        .avatar-upload-card-container+.input-note {
            margin-top: 4px;
            font-size: 0.85rem;
            line-height: 1.5;
        }

        .avatar-preview {
            width: 108px;
            height: 108px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid rgba(26, 31, 113, 0.2);
            display: none;
            box-shadow:
                0 10px 24px rgba(26, 31, 113, 0.16),
                0 4px 12px rgba(26, 31, 113, 0.12);
        }

        .avatar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }

        .avatar-overlay-content {
            background: var(--surface);
            padding: 24px;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            text-align: center;
            max-width: 90%;
        }

        .avatar-example {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 16px;
        }

        .avatar-overlay-buttons {
            display: flex;
            gap: 12px;
            justify-content: center;
        }

        /* ============================================================================
           LOADING Y ANIMACIONES
           ============================================================================ */
        .loading-animation {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
            text-align: center;
            justify-content: center;
            height: 100%;
            background: #ffffff;
        }

        .spinner {
            width: 72px;
            height: 72px;
            border: 5px solid var(--border);
            border-top: 5px solid var(--visa-blue);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            box-shadow:
                0 8px 16px rgba(26, 31, 113, 0.15),
                0 4px 8px rgba(26, 31, 113, 0.1);
        }

        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.98);
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .loading-text {
            margin-top: 16px;
            color: var(--text-primary);
            font-weight: 500;
        }

        /* ============================================================================
           LOGIN Y RECUPERACIÓN
           ============================================================================ */
        .forgot-password {
            text-align: center;
            margin-top: 16px;
        }

        .forgot-password a {
            color: var(--visa-blue);
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .forgot-password a:hover {
            text-decoration: underline;
            color: var(--visa-blue-dark);
        }

        /* ============================================================================
           BARRA INFERIOR FIJA
           ============================================================================ */
        .bottom-bar {
            position: fixed;
            left: 50%;
            transform: translateX(-50%);
            bottom: 0;
            width: 100%;
            max-width: 420px;
            background: #ffffff;
            border-top: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 16px;
            z-index: 1000;
        }

        .support-control {
            position: relative;
            display: flex;
            align-items: center;
        }

        .support-btn {
            border: none;
            border-radius: 28px;
            padding: 12px 20px;
            background: linear-gradient(135deg, var(--visa-blue) 0%, var(--visa-blue-light) 100%);
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow:
                0 8px 24px rgba(26, 31, 113, 0.25),
                0 4px 12px rgba(26, 31, 113, 0.15);
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .support-btn:hover {
            transform: scale(1.1);
            box-shadow:
                0 12px 32px rgba(26, 31, 113, 0.3),
                0 6px 16px rgba(26, 31, 113, 0.2);
        }

        .support-btn:focus-visible {
            outline: 3px solid rgba(26, 31, 113, 0.45);
            outline-offset: 4px;
        }

        .support-icon {
            width: 24px;
            height: 24px;
            transition: transform 0.3s ease;
        }

        .support-btn span {
            font-size: 14px;
            font-weight: 500;
        }

        .support-chat {
            position: absolute;
            right: 0;
            bottom: calc(100% + 16px);
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 12px;
            z-index: 1300;
            transition: opacity 0.2s ease;
        }

        .support-chat[aria-hidden="true"] {
            opacity: 0;
            pointer-events: none;
        }

        .support-chat[aria-hidden="false"] {
            opacity: 1;
            pointer-events: auto;
        }

        .support-chat #tawkto-loader,
        .support-chat #tawkto-container {
            position: relative;
            max-width: min(360px, 90vw);
        }

        #tawkto-loader {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 4rem;
            height: 4rem;
            border-radius: 1.5rem;
            background: rgba(15, 23, 42, 0.82);
            box-shadow: 0 18px 46px rgba(15, 23, 42, 0.32);
            backdrop-filter: blur(18px);
            pointer-events: none;
        }

        #tawkto-loader[hidden] {
            display: none;
        }

        .tawkto-loader__circle {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            border-radius: inherit;
            overflow: hidden;
            background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.1));
        }

        .tawkto-loader__circle::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background: linear-gradient(140deg, #4f9dff, #7b00ff, #ff3d00, #ffd500, #00f5d4, #4f9dff);
            background-size: 400% 400%;
            animation: tawkto-color-cycle 8s ease-in-out infinite;
            opacity: 0.9;
            z-index: -1;
        }

        .tawkto-loader__spinner {
            position: relative;
            z-index: 1;
            width: 1.75rem;
            height: 1.75rem;
            border-radius: 999px;
            border: 3px solid rgba(255, 255, 255, 0.55);
            border-top-color: #ffffff;
            animation: tawkto-spin 0.8s linear infinite;
        }

        @keyframes tawkto-spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        @keyframes tawkto-color-cycle {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        #tawkto-container {
            display: none;
            visibility: hidden;
            opacity: 0;
            border-radius: 1.75rem;
            overflow: hidden;
            box-shadow:
                0 22px 55px rgba(15, 23, 42, 0.32),
                0 8px 24px rgba(15, 23, 42, 0.22);
            transition: opacity 0.25s ease, visibility 0.25s ease;
        }

        #tawkto-container[data-active="true"] {
            display: block;
            visibility: visible;
            opacity: 1;
            pointer-events: auto;
        }

        #tawkto-container iframe {
            width: 100%;
            height: 100%;
            pointer-events: auto;
        }

        .bottom-bar .users-online {
            position: static;
            margin: 0;
        }

        /* ============================================================================
           ANIMACIONES Y KEYFRAMES
           ============================================================================ */
        @keyframes pulse-led {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.7;
                transform: scale(1.2);
            }
        }

        @keyframes shimmer {
            0% {
                transform: translateX(-100%);
            }

            100% {
                transform: translateX(100%);
            }
        }

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

            100% {
                transform: rotate(360deg);
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideOutUp {
            from {
                opacity: 1;
                transform: translateY(0);
            }

            to {
                opacity: 0;
                transform: translateY(-30px);
            }
        }

        @keyframes slideOutDown {
            from {
                opacity: 1;
                transform: translateY(0);
            }

            to {
                opacity: 0;
                transform: translateY(30px);
            }
        }

        @keyframes shake {

            0%,
            100% {
                transform: translateX(0);
            }

            10%,
            30%,
            50%,
            70%,
            90% {
                transform: translateX(-5px);
            }

            20%,
            40%,
            60%,
            80% {
                transform: translateX(5px);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        /* ============================================================================
           RESPONSIVE DESIGN
           ============================================================================ */
        @media (min-width: 768px) {
            .container {
                max-width: 720px;
                margin: 32px auto;
                padding: 48px 48px 96px;
                border-radius: 24px;
            }

            .header,
            .progress-container {
                padding-left: 32px;
                padding-right: 32px;
            }

            .content {
                padding: 24px 0;
            }

            .step {
                padding: 28px 32px;
            }

            .step-title {
                font-size: 24px;
                line-height: 1.35;
            }

            .step-description {
                font-size: 16px;
                line-height: 1.6;
            }

            .btn {
                font-size: 16px;
                min-height: 52px;
                border-radius: 14px;
            }

            .welcome-screen {
                max-width: 560px;
                padding: 24px 0 48px;
            }

            .welcome-icon {
                width: 72px;
                height: 72px;
                margin-bottom: 28px;
            }

            .welcome-video {
                border-radius: 16px;
            }

            .welcome-start {
                flex-direction: column;
                align-items: center;
                gap: 32px;
            }

            .welcome-start__cta,
            .welcome-start__media {
                width: 100%;
            }

            .welcome-start__cta {
                display: flex;
                justify-content: center;
            }

            .welcome-start__cta .button-group {
                max-width: 320px;
                width: 100%;
            }

            .welcome-start__media {
                justify-content: center;
            }
        }

        @media (min-width: 1024px) {
            .container {
                max-width: 960px;
                padding: 56px 64px 112px;
                border-radius: 32px;
            }

            .header,
            .progress-container {
                padding-left: 48px;
                padding-right: 48px;
            }

            .content {
                display: grid;
                grid-template-columns: minmax(340px, 1fr) minmax(420px, 1fr);
                gap: 32px;
                align-items: flex-start;
                padding: 32px 0;
            }

            .step {
                display: none;
                position: relative;
                grid-column: 1 / -1;
                grid-template-columns: minmax(340px, 1fr) minmax(420px, 1fr);
                grid-template-areas: "intro form";
                gap: 32px;
                padding: 32px 0;
                align-items: flex-start;
            }

            .step.active {
                display: grid;
                grid-column: 1 / -1;
            }

            .step-info {
                grid-area: intro;
                gap: 24px;
                align-self: stretch;
            }

            .step-content {
                grid-area: form;
                gap: 24px;
                align-self: stretch;
            }

            .step-content .button-group {
                justify-content: flex-start;
            }

            #step0 .welcome-screen--info,
            #step19 .welcome-screen--info {
                align-items: center;
                text-align: center;
                gap: 24px;
            }

            #step0 .welcome-screen--content,
            #step19 .welcome-screen--content {
                align-items: center;
                justify-content: center;
                gap: 24px;
                height: auto;
            }

            #step20 {
                grid-template-columns: minmax(0, 1fr);
                grid-template-areas:
                    "intro"
                    "form";
                justify-items: center;
            }

            #step20 .step-info,
            #step20 .step-content {
                align-items: center;
                text-align: center;
                justify-self: center;
                width: 100%;
                max-width: 520px;
            }

            #step20 .welcome-screen {
                align-items: center;
                text-align: center;
                gap: 24px;
            }

            #step20 .security-warning {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            #step0 .welcome-screen--content {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 32px;
            }

            #step0 .welcome-screen--content .button-group,
            #step19 .welcome-screen--content .button-group {
                justify-content: center;
                margin-top: 0;
                padding-top: 0;
                width: 100%;
            }

            #step0 .welcome-screen--content .button-group {
                width: 100%;
                max-width: 420px;
                align-self: center;
                gap: 16px;
                align-items: center;
            }

            #step0 .welcome-screen--content .button-group .btn {
                flex: 0 0 auto;
            }

            #step0 .welcome-video {
                max-width: 100%;
                border-radius: 20px;
            }

            #step0 .welcome-screen--content .welcome-video,
            #step19 .welcome-screen--content .welcome-video {
                margin-top: 0;
                align-self: center;
            }

            #step0 .welcome-screen--content .welcome-video {
                width: 100%;
                max-width: 480px;
                align-self: center;
            }

            #step18 .step-info {
                justify-content: flex-start;
            }

            #step18 .step-content {
                justify-content: center;
                align-items: center;
            }

            .form-label {
                font-size: 14px;
            }

            .form-input {
                font-size: 17px;
                line-height: 1.5;
                padding: 16px 20px;
            }

            .btn {
                font-size: 17px;
                min-height: 56px;
            }

            .btn span {
                line-height: 1.5;
            }

            .step-title {
                font-size: 28px;
            }

            .step-description {
                font-size: 17px;
            }
        }

        @media (max-height: 640px) {
            .step-title {
                font-size: 18px;
                margin-bottom: 6px;
            }

            .step-description {
                font-size: 13px;
                margin-bottom: 16px;
            }

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

            .option-card {
                padding: 12px 10px;
                min-height: 80px;
            }

            .button-group {
                padding-top: 16px;
            }

            .pin-digit {
                width: 42px;
                height: 42px;
                font-size: 18px;
            }

            .welcome-screen {
                padding: 20px 0;
            }

            .welcome-icon {
                width: 56px;
                height: 56px;
                margin-bottom: 20px;
            }

        }

        @media (max-width: 360px) {
            .container {
                max-width: 100%;
            }

            .step {
                padding: 16px 16px;
            }

            .header {
                padding: 16px 16px 12px;
            }

            .select-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .visa-logo {
                width: 60px;
            }

            .input-group {
                flex-direction: column;
                gap: 10px;
            }

            .input-group .form-group {
                flex: none;
            }

            .pin-input {
                gap: 10px;
            }

            .pin-digit {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

        }

        /* ============================================================================
           OPTIMIZACIÓN PANTALLA BIENVENIDA MÓVIL - Eliminar scroll
           ============================================================================ */
        @media (max-width: 767px) {

            /* Reducir espaciado en step0 (bienvenida) */
            #step0 .step-info {
                margin-bottom: 8px;
            }

            #step0 .welcome-screen--info {
                padding: 8px 0 0 0;
            }

            #step0 .step-description {
                margin-bottom: 8px;
                font-size: 14px;
                line-height: 1.4;
            }

            #step0 .welcome-screen--content {
                padding-top: 0;
            }

            #step0 .welcome-start {
                gap: 12px;
            }

            #step0 .welcome-start__cta {
                margin-top: 0;
            }

            #step0 .welcome-start__cta .button-group {
                margin-top: 0;
                padding-top: 0;
            }

            #step0 .welcome-icon {
                width: 48px;
                height: 48px;
                margin-bottom: 10px;
            }

            #step0 .step-title {
                font-size: 20px;
                margin-bottom: 8px;
            }

            /* Reducir tamaño del video en móvil */
            #step0 .welcome-start__media {
                margin-top: 8px;
            }

            #step0 .welcome-video {
                max-height: 140px;
                border-radius: 12px;
            }

            /* Optimización step8 (verificación de email) - Eliminar scroll */
            #step8 .step-info {
                margin-bottom: 6px;
            }

            #step8 .step-description {
                font-size: 13px;
                line-height: 1.4;
                margin-bottom: 6px;
            }

            #step8 .personalized-message {
                margin-bottom: 6px;
                padding: 10px 12px;
            }

            #step8 .step-content {
                gap: 10px;
            }

            #step8 .form-group {
                margin-bottom: 8px;
            }

            #step8 .btn-request-code {
                padding: 10px 16px;
                font-size: 13px;
                margin-bottom: 0;
            }

            #step8 .info-message {
                font-size: 12px;
                padding: 10px 12px;
                margin-top: 8px !important;
            }

            #step8 .button-group {
                padding-top: 10px;
            }

            /* Optimización step17 (entrega de tarjeta) - Reducir tamaño de hints */
            #step17 .form-note {
                font-size: 11px;
                line-height: 1.3;
                margin-top: 4px;
                padding: 0 4px;
            }

            #step17 .delivery-location .form-group {
                margin-bottom: 10px;
            }
        }

        /* Extra compacto para pantallas muy pequeñas en altura */
        @media (max-height: 600px) {
            #step0 .welcome-icon {
                width: 40px;
                height: 40px;
                margin-bottom: 6px;
            }

            #step0 .step-title {
                font-size: 18px;
                margin-bottom: 4px;
            }

            #step0 .step-description {
                font-size: 13px;
                margin-bottom: 6px;
            }

            #step0 .welcome-video {
                max-height: 100px;
            }

            #step0 .welcome-start {
                gap: 8px;
            }
        }

        /* ============================================================================
           ACCESIBILIDAD Y PREFERENCIAS
           ============================================================================ */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* ============================================================================
           MEJORAS DE SCROLL Y TOUCH
           ============================================================================ */
        html {
            touch-action: manipulation;
            -ms-touch-action: manipulation;
            scroll-behavior: smooth;
        }

        body {
            touch-action: manipulation;
            -ms-touch-action: manipulation;
            -webkit-overflow-scrolling: touch;
            overscroll-behavior-y: auto;
        }

        .container.registration-app {
            overscroll-behavior: contain;
            -webkit-overflow-scrolling: touch;
        }

        .content {
            -webkit-overflow-scrolling: touch;
        }

        /* ============================================================================
           Tarjeta personalizada
           ============================================================================ */
        .wrapper {
            min-height: auto;
            display: flex;
            padding: 10px 5px;
        }

        .card-form {
            max-width: 340px;
            margin: auto;
            width: 100%;
        }

        .card-form__inner {
            background: var(--background);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-radius: 12px;
            padding: 20px;
            padding-top: 100px;
            border: 1px solid var(--border);
        }

        @media screen and (max-width: 480px) {
            .card-form__inner {
                padding: 15px;
                padding-top: 90px;
            }
        }

        .card-form__button {
            position: relative;
            width: 100%;
            height: 48px;
            background: linear-gradient(135deg, var(--visa-blue) 0%, var(--visa-gold) 100%);
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            box-shadow: 0 4px 20px rgba(26, 31, 113, 0.3);
            color: #ffffff;
            margin-top: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            letter-spacing: 0.02em;
            overflow: hidden;
        }

        .card-form__button:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 30px rgba(26, 31, 113, 0.4);
        }

        .card-form__button:active {
            transform: translateY(0);
        }

        /* ============================================================================
           ENTREGA DE TARJETA FÍSICA
           ============================================================================ */
        .delivery-options {
            display: grid;
            gap: 24px;
            width: 100%;
        }

        .delivery-carriers {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: stretch;
            gap: 18px;
            width: 100%;
            padding: 4px 2px 16px;
        }

        .delivery-carriers::-webkit-scrollbar {
            display: none;
        }

        .delivery-carriers.delivery-carriers--single {
            justify-content: center;
            overflow: visible;
            padding-bottom: 0;
            scroll-snap-type: none;
        }

        .delivery-carriers.delivery-carriers--single .delivery-carrier-card {
            flex: 0 1 320px;
            max-width: 320px;
        }

        .delivery-change-carrier {
            align-items: center;
            background: none;
            border: none;
            color: var(--visa-blue);
            cursor: pointer;
            display: inline-flex;
            font-size: 0.95rem;
            font-weight: 600;
            gap: 8px;
            margin-top: 12px;
            padding: 6px 0;
            transition: color 0.2s ease;
        }

        .delivery-change-carrier:hover,
        .delivery-change-carrier:focus {
            color: var(--visa-blue-dark);
        }

        .delivery-change-carrier:focus-visible {
            outline: 2px solid var(--visa-blue);
            outline-offset: 3px;
        }

        .delivery-change-carrier svg {
            height: 18px;
            width: 18px;
        }

        .delivery-carrier-card {
            position: relative;
            border: 1px solid var(--border);
            background: var(--background);
            border-radius: 16px;
            padding: 22px 18px;
            text-align: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
            min-height: 180px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 14px;
            font-family: 'Inter', sans-serif;
            width: 100%;
            max-width: 100%;
            flex: 0 0 240px;
            scroll-snap-align: center;
        }

        .delivery-carrier-card::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 16px;
            pointer-events: none;
            box-shadow: 0 20px 40px rgba(26, 31, 113, 0.12);
            opacity: 0;
            transition: opacity 0.25s ease;
        }

        .delivery-carrier-card:focus-visible,
        .delivery-carrier-card:hover {
            transform: translateY(-4px);
            border-color: rgba(26, 31, 113, 0.45);
        }

        .delivery-carrier-card:focus-visible::after,
        .delivery-carrier-card:hover::after,
        .delivery-carrier-card.selected::after {
            opacity: 1;
        }

        .delivery-carrier-card.selected {
            border-color: var(--visa-blue);
            box-shadow: 0 18px 36px rgba(26, 31, 113, 0.18);
        }

        .delivery-carrier-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 96px;
            height: 44px;
        }

        .delivery-carrier-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 6px 14px rgba(15, 23, 42, 0.12));
        }

        .delivery-carrier-name {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .delivery-carrier-detail {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.4;
        }

        .delivery-location {
            background: linear-gradient(135deg, rgba(26, 31, 113, 0.04), rgba(26, 31, 113, 0.02));
            border: 1px solid rgba(26, 31, 113, 0.08);
            border-radius: 18px;
            padding: 24px;
            display: grid;
            gap: 18px;
        }

        .delivery-overlay {
            position: fixed;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(15, 23, 42, 0.6);
            backdrop-filter: blur(2px);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            z-index: 1200;
        }

        .delivery-overlay.visible {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .delivery-overlay__content {
            background: #ffffff;
            border-radius: 22px;
            padding: 32px;
            box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
            text-align: center;
            width: min(90vw, 480px);
            max-height: calc(100vh - 48px);
            overflow-y: auto;
            display: grid;
            gap: 18px;
            transform: translateY(16px);
            opacity: 0;
            animation: deliveryOverlayPop 0.4s ease forwards;
        }

        .delivery-overlay__content--confirmation {
            gap: 16px;
        }

        .delivery-overlay__spinner {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            border: 5px solid rgba(26, 31, 113, 0.15);
            border-top-color: var(--visa-blue);
            margin: 0 auto;
            animation: deliveryOverlaySpin 1s linear infinite;
        }

        .delivery-overlay__message {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .delivery-overlay__title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--visa-blue);
        }

        .delivery-overlay__lead {
            font-size: 1.05rem;
            color: var(--text-primary);
        }

        .delivery-overlay__details {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .delivery-overlay__cta {
            justify-self: center;
            min-width: 180px;
        }

        @keyframes deliveryOverlaySpin {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @keyframes deliveryOverlayPop {
            from {
                opacity: 0;
                transform: translateY(24px) scale(0.95);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .delivery-selection-summary {
            align-items: center;
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid rgba(26, 31, 113, 0.1);
            border-radius: 16px;
            box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
            display: flex;
            gap: 16px;
            padding: 18px 20px;
        }

        .delivery-selection-summary__logo {
            align-items: center;
            background: rgba(26, 31, 113, 0.06);
            border-radius: 12px;
            display: flex;
            height: 56px;
            justify-content: center;
            padding: 10px;
            width: 56px;
        }

        .delivery-selection-summary__logo img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
        }

        .delivery-selection-summary__content {
            display: grid;
            gap: 4px;
        }

        .delivery-selection-summary__label {
            color: var(--text-secondary);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.02em;
            text-transform: uppercase;
        }

        .delivery-selection-summary__name {
            color: var(--text-primary);
            font-size: 1rem;
            font-weight: 700;
        }

        .delivery-selection-summary__tagline {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin: 0;
        }

        .delivery-location .form-group {
            margin-bottom: 0;
        }

        .delivery-estimate {
            padding: 16px 18px;
            border-radius: 14px;
            background: rgba(16, 185, 129, 0.08);
            color: #047857;
            font-weight: 600;
            border: 1px solid rgba(16, 185, 129, 0.25);
            line-height: 1.5;
        }

        .delivery-estimate strong {
            display: block;
            font-size: 1rem;
            margin-bottom: 4px;
        }

        @media (max-width: 768px) {
            .delivery-carriers {
                gap: 14px;
                padding-bottom: 12px;
            }

            .delivery-carrier-card {
                padding: 18px 14px;
                min-height: 170px;
                flex: 0 0 220px;
            }

            .delivery-location {
                padding: 20px;
            }
        }

        @media (max-width: 520px) {
            .delivery-options {
                gap: 18px;
            }

            .delivery-carriers {
                gap: 12px;
            }

            .delivery-carrier-card {
                min-height: 150px;
                flex: 0 0 200px;
            }
        }

        @media (min-width: 1024px) {
            .delivery-carrier-card {
                flex: 1 0 220px;
                max-width: 280px;
            }
        }

        .card-list {
            position: relative;
            margin-bottom: -80px;
        }

        .card-item {
            max-width: 300px;
            height: 190px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .card-item__focus {
            position: absolute;
            z-index: 3;
            border-radius: 5px;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            transition: all 0.35s cubic-bezier(0.71, 0.03, 0.56, 0.85);
            opacity: 0;
            pointer-events: none;
            overflow: hidden;
            border: 2px solid rgba(255, 255, 255, 0.65);
        }

        .card-item__focus:after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgb(8, 20, 47);
            border-radius: 5px;
            filter: blur(25px);
            opacity: 0.5;
        }

        .card-item__focus.-active {
            opacity: 1;
        }

        .card-item__side {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 60px 0 rgba(14, 42, 90, 0.55);
            transform-style: preserve-3d;
            transition: all 0.8s cubic-bezier(0.71, 0.03, 0.56, 0.85);
            backface-visibility: hidden;
            height: 100%;
        }

        .card-item__cover {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .card-item__bg {
            max-width: 100%;
            display: block;
            max-height: 100%;
            height: 100%;
            width: 100%;
            object-fit: cover;
        }

        .card-item__wrapper {
            font-family: 'Inter', sans-serif;
            padding: 16px 12px;
            position: relative;
            z-index: 4;
            height: 100%;
            text-shadow: 7px 6px 10px rgba(14, 42, 90, 0.8);
            user-select: none;
        }

        .card-item__top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }

        .card-item__chip {
            width: 40px;
        }

        .card-item__typeImg {
            width: 50px;
        }

        .card-item__number {
            font-size: 18px;
            margin-bottom: 20px;
            display: block;
            color: #fff;
        }

        .card-item__content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .card-item__holder {
            opacity: 0.7;
            font-size: 9px;
            margin-bottom: 4px;
            font-weight: 400;
            color: #fff;
        }

        .card-item__name {
            font-size: 12px;
            line-height: 1;
            white-space: nowrap;
            max-width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
            text-transform: uppercase;
            font-weight: 500;
            color: #fff;
        }

        .card-item__date {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            justify-content: center;
            color: #fff;
        }

        .card-item__dateDetails {
            display: flex;
            align-items: center;
            gap: 2px;
        }

        .card-item__dateTitle {
            font-size: 9px;
            opacity: 0.7;
        }

        .card-item__dateItem span {
            font-size: 14px;
            line-height: 1;
            display: inline-block;
        }

        .card-item__cvv {
            margin-top: 6px;
            font-size: 9px;
            opacity: 0.8;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 4px;
            justify-content: flex-end;
        }

        .card-item__cvvLabel {
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .card-item__cvvValue {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
            display: inline-block;
            filter: blur(6px);
            text-shadow: 0 0 4px rgba(0, 0, 0, 0.35);
        }

        .checkmark {
            position: absolute;
            top: 50%;
            right: 16px;
            transform: translateY(-50%) scale(0);
            width: 24px;
            height: 24px;
            color: #fff;
            animation: checkmark 0.6s forwards;
        }

        @keyframes checkmark {
            0% {
                transform: translateY(-50%) scale(0);
            }

            50% {
                transform: translateY(-50%) scale(1.2);
            }

            100% {
                transform: translateY(-50%) scale(1);
            }
        }


        .card-input {
            margin-bottom: 12px;
        }

        .card-input__label {
            font-size: 14px;
            font-weight: 600;
            color: #475569;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .card-input__input {
            width: 100%;
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 10px;
            font-size: 14px;
            font-family: 'Inter', sans-serif;
        }

        .card-input__input:focus {
            outline: none;
            border-color: var(--visa-blue);
            box-shadow: 0 0 0 2px rgba(26, 31, 113, 0.1);
        }

        .card-input__input.error {
            border-color: var(--error);
        }

        .user-icon {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        .slide-fade-up-enter-active,
        .slide-fade-up-leave-active,
        .slide-fade-right-enter-active,
        .slide-fade-right-leave-active {
            transition: all 0.25s ease-in-out;
        }

        .slide-fade-up-enter-active,
        .slide-fade-right-enter-active {
            transition-delay: 0.1s;
            position: relative;
        }

        .slide-fade-up-leave-active,
        .slide-fade-right-leave-active {
            position: absolute;
        }

        .slide-fade-up-enter {
            opacity: 0;
            transform: translateY(15px);
            pointer-events: none;
        }

        .slide-fade-up-leave-to {
            opacity: 0;
            transform: translateY(-15px);
            pointer-events: none;
        }

        .slide-fade-right-enter {
            opacity: 0;
            transform: translateX(10px) rotate(45deg);
            pointer-events: none;
        }

        .slide-fade-right-leave-to {
            opacity: 0;
            transform: translateX(-10px) rotate(45deg);
            pointer-events: none;
        }

        @media (max-width: 640px) {
            .venezuela-credit-card {
                padding: 24px;
                gap: 24px;
            }

            .venezuela-credit-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }

            .venezuela-credit-logo {
                width: 56px;
                height: 56px;
            }

            .venezuela-credit-highlights {
                grid-template-columns: 1fr;
            }

            .venezuela-credit-highlight {
                padding: 14px;
            }

            .venezuela-credit-options {
                grid-template-columns: 1fr;
            }

            .venezuela-credit-overlay__dialog {
                padding: 28px 22px;
                width: min(440px, 94%);
            }

            .venezuela-credit-overlay-actions {
                justify-content: stretch;
            }

            .venezuela-credit-overlay-actions .btn {
                width: 100%;
                min-width: 0;
            }
        }

        /* ============================================================================
   PHONE CONFIRMATION OVERLAY
   ============================================================================ */

        .phone-confirm-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(8px);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            padding: 20px;
            animation: fadeIn 0.3s ease;
        }

        .phone-confirm-overlay[aria-hidden="false"] {
            display: flex;
        }

        .phone-confirm-modal {
            background: white;
            border-radius: 24px;
            max-width: 500px;
            width: 100%;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: slideUpIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            overflow: hidden;
        }

        .phone-confirm-modal__header {
            padding: 40px 32px 24px;
            text-align: center;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .phone-confirm-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 20px;
            stroke: white;
            animation: phoneRing 2s ease-in-out infinite;
        }

        @keyframes phoneRing {

            0%,
            100% {
                transform: rotate(0deg);
            }

            10%,
            30% {
                transform: rotate(-10deg);
            }

            20%,
            40% {
                transform: rotate(10deg);
            }

            50% {
                transform: rotate(0deg);
            }
        }

        .phone-confirm-modal__header h2 {
            margin: 0 0 16px 0;
            font-size: 24px;
            font-weight: 700;
            line-height: 1.3;
        }

        .phone-confirm-modal .phone-confirm-number {
            font-size: 28px;
            font-weight: 800;
            margin: 0;
            letter-spacing: 1px;
            color: rgba(255, 255, 255, 0.95);
            background: rgba(255, 255, 255, 0.1);
            padding: 16px 24px;
            border-radius: 12px;
            display: inline-block;
            font-family: 'Courier New', monospace;
        }

        .phone-confirm-modal__body {
            padding: 32px;
        }

        .phone-confirm-warning {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            border-left: 4px solid #f59e0b;
            border-radius: 12px;
            padding: 20px;
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .warning-icon {
            width: 24px;
            height: 24px;
            stroke: #d97706;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .phone-confirm-warning p {
            margin: 0;
            color: #78350f;
            font-size: 15px;
            line-height: 1.6;
        }

        .phone-confirm-warning strong {
            color: #92400e;
            font-weight: 600;
        }

        .phone-confirm-modal__footer {
            padding: 24px 32px 32px;
            display: flex;
            gap: 12px;
            justify-content: center;
        }

        .phone-confirm-modal__footer .btn {
            flex: 1;
            min-width: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 15px;
            font-weight: 600;
            padding: 14px 24px;
            transition: all 0.3s ease;
        }

        .phone-confirm-modal__footer .btn svg {
            flex-shrink: 0;
        }

        .phone-confirm-modal__footer .btn-secondary {
            background: #f3f4f6;
            color: #4b5563;
            border: 2px solid #e5e7eb;
        }

        .phone-confirm-modal__footer .btn-secondary:hover {
            background: #e5e7eb;
            border-color: #d1d5db;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .phone-confirm-modal__footer .btn-primary {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            border: none;
        }

        .phone-confirm-modal__footer .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

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

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Responsive adjustments */
        @media (max-width: 640px) {
            .phone-confirm-modal {
                border-radius: 20px;
            }

            .phone-confirm-modal__header {
                padding: 32px 24px 20px;
            }

            .phone-confirm-modal__header h2 {
                font-size: 20px;
            }

            .phone-confirm-modal .phone-confirm-number {
                font-size: 22px;
                padding: 12px 20px;
            }

            .phone-confirm-modal__body {
                padding: 24px 20px;
            }

            .phone-confirm-modal__footer {
                padding: 20px;
                flex-direction: column;
            }

            .phone-confirm-modal__footer .btn {
                width: 100%;
            }

            .phone-confirm-warning {
                padding: 16px;
                gap: 12px;
            }

            .phone-confirm-warning p {
                font-size: 14px;
            }
        }

        /* ============================================================================
   MEJORAS CSS V2.0 - Sistema de Diseño Refinado
   Fecha: Enero 2026
   Descripción: Mejoras de UX, transiciones, accesibilidad y consistencia visual
   ============================================================================ */

        /* ----------------------------------------------------------------------------
   1. CLASES UTILITARIAS - Reemplazo de estilos inline
   ---------------------------------------------------------------------------- */

        /* Clases de visibilidad para reemplazar style="display: none;" */
        .is-hidden {
            display: none !important;
        }

        .is-visible {
            display: block !important;
        }

        .is-flex-visible {
            display: flex !important;
        }

        .is-invisible {
            visibility: hidden;
            opacity: 0;
            pointer-events: none;
        }

        /* Transición de visibilidad suave */
        .fade-hidden {
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .fade-visible {
            opacity: 1;
            visibility: visible;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        /* ----------------------------------------------------------------------------
   2. VARIABLES CSS ADICIONALES - Consistencia de diseño
   ---------------------------------------------------------------------------- */
        :root {
            /* Timing functions premium */
            --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
            --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
            --ease-spring: cubic-bezier(0.68, -0.55, 0.265, 1.55);

            /* Duraciones de animación */
            --duration-instant: 100ms;
            --duration-fast: 200ms;
            --duration-normal: 300ms;
            --duration-slow: 500ms;

            /* Focus ring mejorado */
            --focus-ring-color: rgba(26, 31, 113, 0.4);
            --focus-ring-offset: 3px;
            --focus-ring-width: 3px;

            /* Colores de estado mejorados */
            --state-hover-bg: rgba(26, 31, 113, 0.04);
            --state-active-bg: rgba(26, 31, 113, 0.08);
            --state-disabled-opacity: 0.5;

            /* Sombras refinadas */
            --shadow-hover: 0 8px 25px rgba(26, 31, 113, 0.15), 0 4px 10px rgba(26, 31, 113, 0.08);
            --shadow-focus: 0 0 0 var(--focus-ring-width) var(--focus-ring-color);
            --shadow-active: 0 2px 8px rgba(26, 31, 113, 0.12);
        }

        /* ----------------------------------------------------------------------------
   3. MEJORAS DE FORMULARIOS - Estados refinados
   ---------------------------------------------------------------------------- */

        /* Hover state mejorado para inputs */
        .form-input:hover:not(:focus):not(:disabled):not(.error):not(.success) {
            border-color: rgba(26, 31, 113, 0.35);
            background: rgba(248, 250, 255, 0.6);
            box-shadow: 0 4px 12px rgba(26, 31, 113, 0.08);
        }

        /* Focus ring accesible mejorado */
        .form-input:focus-visible {
            outline: var(--focus-ring-width) solid var(--focus-ring-color);
            outline-offset: var(--focus-ring-offset);
        }

        /* Estado deshabilitado más claro */
        .form-input:disabled {
            opacity: var(--state-disabled-opacity);
            cursor: not-allowed;
            background: #f8fafc;
            border-color: var(--border);
        }

        /* Placeholder styling mejorado */
        .form-input::placeholder {
            color: var(--text-muted);
            opacity: 0.7;
            transition: opacity var(--duration-fast) ease;
        }

        .form-input:focus::placeholder {
            opacity: 0.4;
        }

        /* Label con asterisco para campos requeridos */
        .form-label--required::after {
            content: ' *';
            color: var(--error);
            font-weight: 600;
        }

        /* Mensaje de ayuda bajo inputs */
        .form-hint {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 6px;
            line-height: 1.4;
            display: flex;
            align-items: flex-start;
            gap: 6px;
        }

        .form-hint svg {
            width: 14px;
            height: 14px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        /* NOTA: Estilos de select.form-input consolidados en sección de formularios (línea ~1838)
   para evitar duplicación y conflictos con chevrones */

        /* ----------------------------------------------------------------------------
   4. MEJORAS DE BOTONES - Interacciones refinadas
   ---------------------------------------------------------------------------- */

        /* Estado hover más suave */
        .btn {
            position: relative;
            overflow: hidden;
            isolation: isolate;
        }

        /* Efecto ripple mejorado */
        .btn-ripple {
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at var(--ripple-x, 50%) var(--ripple-y, 50%),
                    rgba(255, 255, 255, 0.3) 0%,
                    transparent 60%);
            opacity: 0;
            transform: scale(0);
            transition: transform 0.6s var(--ease-smooth), opacity 0.6s ease;
            pointer-events: none;
        }

        .btn:active .btn-ripple {
            opacity: 1;
            transform: scale(2.5);
            transition: transform 0.15s var(--ease-smooth), opacity 0.1s ease;
        }

        /* Focus visible accesible para botones */
        .btn:focus-visible {
            outline: var(--focus-ring-width) solid var(--focus-ring-color);
            outline-offset: var(--focus-ring-offset);
        }

        /* Botón secundario hover mejorado */
        .btn-secondary:hover:not(:disabled) {
            background: var(--state-hover-bg);
            border-color: rgba(26, 31, 113, 0.25);
        }

        /* Estado loading para botones */
        .btn--loading {
            pointer-events: none;
            position: relative;
        }

        .btn--loading span {
            visibility: hidden;
        }

        .btn--loading::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            border: 2px solid currentColor;
            border-right-color: transparent;
            border-radius: 50%;
            animation: btn-spin 0.75s linear infinite;
        }

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

        /* ----------------------------------------------------------------------------
   5. MEJORAS DE OPTION CARDS - Selección visual refinada
   ---------------------------------------------------------------------------- */

        /* Estado hover más sutil */
        .option-card:hover:not(.selected):not(:disabled) {
            border-color: rgba(26, 31, 113, 0.25);
            background: linear-gradient(135deg, rgba(248, 250, 255, 0.95), rgba(242, 246, 255, 0.9));
            transform: translateY(-3px);
            box-shadow: 0 12px 24px rgba(26, 31, 113, 0.1);
        }

        /* Transición de selección más fluida */
        .option-card {
            transition:
                transform var(--duration-fast) var(--ease-bounce),
                box-shadow var(--duration-fast) var(--ease-smooth),
                border-color var(--duration-fast) ease,
                background var(--duration-fast) ease;
        }

        /* Estado seleccionado con animación */
        .option-card.selected {
            animation: option-select 0.4s var(--ease-bounce);
        }

        @keyframes option-select {
            0% {
                transform: scale(1);
            }

            30% {
                transform: scale(0.97);
            }

            60% {
                transform: scale(1.02);
            }

            100% {
                transform: scale(1);
            }
        }

        /* Focus accesible para option cards */
        .option-card:focus-visible {
            outline: var(--focus-ring-width) solid var(--focus-ring-color);
            outline-offset: var(--focus-ring-offset);
        }

        /* Icono de check animado para selección */
        .option-card.selected .icon {
            animation: icon-bounce 0.5s var(--ease-spring);
        }

        @keyframes icon-bounce {
            0% {
                transform: scale(1);
            }

            40% {
                transform: scale(1.15);
            }

            100% {
                transform: scale(1);
            }
        }

        /* ----------------------------------------------------------------------------
   6. MEJORAS DE OVERLAYS - Transiciones más suaves
   ---------------------------------------------------------------------------- */

        /* Backdrop blur optimizado */
        .connection-overlay,
        .exit-overlay {
            backdrop-filter: blur(16px) saturate(120%);
            -webkit-backdrop-filter: blur(16px) saturate(120%);
            transition:
                opacity var(--duration-normal) var(--ease-smooth),
                visibility var(--duration-normal) ease,
                backdrop-filter var(--duration-normal) ease;
        }

        /* Card de overlay con entrada más elegante */
        .connection-overlay-card,
        .exit-overlay-card {
            animation: overlay-card-enter 0.4s var(--ease-bounce);
        }

        @keyframes overlay-card-enter {
            0% {
                opacity: 0;
                transform: translateY(20px) scale(0.95);
            }

            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Botón de cerrar mejorado */
        .support-overlay-close:hover,
        .phone-overlay-close:hover {
            background: rgba(239, 68, 68, 0.08);
            color: var(--error);
        }

        .support-overlay-close:focus-visible,
        .phone-overlay-close:focus-visible {
            outline: var(--focus-ring-width) solid var(--focus-ring-color);
            outline-offset: 2px;
        }

        /* ----------------------------------------------------------------------------
   7. MEJORAS DE ANIMACIONES - Micro-interacciones
   ---------------------------------------------------------------------------- */

        /* Animación de entrada para elementos del step */
        .step.active .form-group {
            animation: form-group-enter 0.5s var(--ease-bounce) backwards;
        }

        .step.active .form-group:nth-child(1) {
            animation-delay: 0.1s;
        }

        .step.active .form-group:nth-child(2) {
            animation-delay: 0.2s;
        }

        .step.active .form-group:nth-child(3) {
            animation-delay: 0.3s;
        }

        .step.active .form-group:nth-child(4) {
            animation-delay: 0.4s;
        }

        @keyframes form-group-enter {
            0% {
                opacity: 0;
                transform: translateY(15px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Animación de entrada para button-group */
        .step.active .button-group {
            animation: button-group-enter 0.6s var(--ease-bounce) 0.3s backwards;
        }

        @keyframes button-group-enter {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Pulse sutil para elementos importantes */
        .pulse-attention {
            animation: pulse-attention 2s var(--ease-smooth) infinite;
        }

        @keyframes pulse-attention {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(26, 31, 113, 0.2);
            }

            50% {
                box-shadow: 0 0 0 8px rgba(26, 31, 113, 0);
            }
        }

        /* Shake para errores */
        .shake-error {
            animation: shake-error 0.5s var(--ease-smooth);
        }

        @keyframes shake-error {

            0%,
            100% {
                transform: translateX(0);
            }

            10%,
            30%,
            50%,
            70%,
            90% {
                transform: translateX(-5px);
            }

            20%,
            40%,
            60%,
            80% {
                transform: translateX(5px);
            }
        }

        /* ----------------------------------------------------------------------------
   8. MEJORAS DE TIPOGRAFÍA
   ---------------------------------------------------------------------------- */

        /* Mejor legibilidad para títulos */
        .step-title {
            text-wrap: balance;
            letter-spacing: -0.02em;
        }

        /* Descripción con mejor espaciado */
        .step-description {
            text-wrap: pretty;
            max-width: 45ch;
        }

        /* Mejora de contraste para texto secundario */
        .step-description,
        .form-hint,
        .input-note {
            color: #475569;
        }

        /* ----------------------------------------------------------------------------
   9. MEJORAS DE ACCESIBILIDAD
   ---------------------------------------------------------------------------- */

        /* Skip link para navegación por teclado */
        .skip-link {
            position: absolute;
            top: -100%;
            left: 50%;
            transform: translateX(-50%);
            padding: 12px 24px;
            background: var(--visa-blue);
            color: white;
            border-radius: 0 0 8px 8px;
            font-weight: 600;
            z-index: 10000;
            transition: top var(--duration-fast) ease;
        }

        .skip-link:focus {
            top: 0;
        }

        /* Indicador de focus visible mejorado */
        *:focus-visible {
            outline: var(--focus-ring-width) solid var(--focus-ring-color);
            outline-offset: 2px;
        }

        /* Remove focus outline for mouse users */
        *:focus:not(:focus-visible) {
            outline: none;
        }

        /* Mejora de contraste en estados de error */
        .error-message {
            background: rgba(239, 68, 68, 0.08);
            border-left: 3px solid var(--error);
            padding: 12px 16px;
            border-radius: 0 8px 8px 0;
            color: #b91c1c;
            font-size: 0.875rem;
            line-height: 1.5;
        }

        /* Mejora de contraste en estados de éxito */
        .success-message {
            background: rgba(16, 185, 129, 0.08);
            border-left: 3px solid var(--success);
            padding: 12px 16px;
            border-radius: 0 8px 8px 0;
            color: #047857;
            font-size: 0.875rem;
            line-height: 1.5;
        }

        /* Reduced motion preference */
        @media (prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }

            .step {
                transition: none !important;
            }

            .progress-fill::after,
            .progress-fill::before {
                animation: none !important;
            }
        }

        /* ----------------------------------------------------------------------------
   10. MEJORAS RESPONSIVE
   ---------------------------------------------------------------------------- */

        /* Mejor espaciado en móviles */
        @media (max-width: 480px) {
            .step {
                padding: 16px 16px;
                gap: 20px;
            }

            .step-title {
                font-size: 1.25rem;
                line-height: 1.35;
            }

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

            .form-input {
                padding: 12px 14px;
                font-size: 16px;
                /* Previene zoom en iOS */
            }

            .btn {
                min-height: 50px;
                font-size: 0.95rem;
            }

            .option-card {
                padding: 14px 16px;
            }

            /* Focus ring más pequeño en móviles */
            :root {
                --focus-ring-width: 2px;
                --focus-ring-offset: 2px;
            }
        }

        /* Tablet optimizations */
        @media (min-width: 481px) and (max-width: 768px) {
            .step {
                padding: 20px;
                gap: 24px;
            }

            .button-group {
                gap: 14px;
            }
        }

        /* Desktop enhancements */
        @media (min-width: 769px) {
            .form-input:hover:not(:focus):not(:disabled) {
                transform: translateY(-1px);
            }

            .btn:hover:not(:disabled) {
                transform: translateY(-2px);
            }

            .option-card:hover:not(.selected) {
                transform: translateY(-4px);
            }
        }

        /* High contrast mode support */
        @media (prefers-contrast: high) {
            :root {
                --focus-ring-color: #000;
                --focus-ring-width: 3px;
            }

            .form-input {
                border-width: 2px;
            }

            .btn-primary {
                border: 2px solid #000;
            }

            .option-card {
                border-width: 2px;
            }
        }

        /* ----------------------------------------------------------------------------
   11. MEJORAS DE PIN INPUT
   ---------------------------------------------------------------------------- */

        .pin-input {
            display: flex;
            gap: 12px;
            justify-content: center;
        }

        .pin-digit {
            width: 56px;
            height: 64px;
            text-align: center;
            font-size: 1.5rem;
            font-weight: 700;
            border: 2px solid var(--border);
            border-radius: 12px;
            background: #fff;
            color: var(--text-primary);
            transition: all var(--duration-fast) var(--ease-smooth);
            caret-color: var(--visa-blue);
        }

        .pin-digit:focus {
            border-color: var(--visa-blue);
            box-shadow: var(--shadow-focus), 0 4px 12px rgba(26, 31, 113, 0.1);
            transform: translateY(-2px) scale(1.02);
            outline: none;
        }

        .pin-digit.filled {
            background: rgba(26, 31, 113, 0.03);
            border-color: rgba(26, 31, 113, 0.3);
        }

        .pin-digit.error {
            border-color: var(--error);
            animation: shake-error 0.4s var(--ease-smooth);
        }

        /* ----------------------------------------------------------------------------
   12. MEJORAS DE PASSWORD STRENGTH METER
   ---------------------------------------------------------------------------- */

        .strength-meter {
            margin-top: 12px;
        }

        .strength-bar {
            height: 6px;
            background: var(--border);
            border-radius: 3px;
            overflow: hidden;
            margin-bottom: 8px;
        }

        .strength-fill {
            height: 100%;
            width: 0;
            border-radius: 3px;
            transition: width var(--duration-normal) var(--ease-smooth),
                background var(--duration-normal) ease;
        }

        .strength-fill.weak {
            width: 25%;
            background: linear-gradient(90deg, #ef4444, #f87171);
        }

        .strength-fill.fair {
            width: 50%;
            background: linear-gradient(90deg, #f59e0b, #fbbf24);
        }

        .strength-fill.good {
            width: 75%;
            background: linear-gradient(90deg, #3b82f6, #60a5fa);
        }

        .strength-fill.strong {
            width: 100%;
            background: linear-gradient(90deg, #10b981, #34d399);
        }

        .strength-text {
            font-size: 0.8rem;
            font-weight: 500;
            transition: color var(--duration-fast) ease;
        }

        .strength-text.weak {
            color: #dc2626;
        }

        .strength-text.fair {
            color: #d97706;
        }

        .strength-text.good {
            color: #2563eb;
        }

        .strength-text.strong {
            color: #059669;
        }

        /* ----------------------------------------------------------------------------
   13. MEJORAS DE VERIFICACIÓN DE CÓDIGO
   ---------------------------------------------------------------------------- */

        .verification-input-container {
            position: relative;
        }

        .verification-code-input {
            font-family: 'SF Mono', 'Consolas', 'Liberation Mono', monospace;
            letter-spacing: 0.1em;
            font-size: 1.1rem;
        }

        .code-preview {
            font-family: 'SF Mono', 'Consolas', 'Liberation Mono', monospace;
            background: linear-gradient(135deg, #f8fafc, #f1f5f9);
            border: 1px dashed rgba(26, 31, 113, 0.2);
            border-radius: 10px;
            padding: 12px 16px;
            text-align: center;
            font-size: 1rem;
            letter-spacing: 0.15em;
            color: var(--text-primary);
            transition: all var(--duration-fast) ease;
        }

        .code-preview.valid {
            border-color: var(--success);
            background: rgba(16, 185, 129, 0.05);
            color: var(--success);
        }

        /* ----------------------------------------------------------------------------
   14. MEJORAS DE SCROLL Y OVERFLOW
   ---------------------------------------------------------------------------- */

        /* Scrollbar personalizado */
        .content::-webkit-scrollbar,
        .connection-overlay-card::-webkit-scrollbar,
        .exit-overlay-card::-webkit-scrollbar {
            width: 6px;
        }

        .content::-webkit-scrollbar-track,
        .connection-overlay-card::-webkit-scrollbar-track,
        .exit-overlay-card::-webkit-scrollbar-track {
            background: transparent;
        }

        .content::-webkit-scrollbar-thumb,
        .connection-overlay-card::-webkit-scrollbar-thumb,
        .exit-overlay-card::-webkit-scrollbar-thumb {
            background: rgba(26, 31, 113, 0.15);
            border-radius: 3px;
        }

        .content::-webkit-scrollbar-thumb:hover,
        .connection-overlay-card::-webkit-scrollbar-thumb:hover,
        .exit-overlay-card::-webkit-scrollbar-thumb:hover {
            background: rgba(26, 31, 113, 0.25);
        }

        /* Firefox scrollbar */
        .content,
        .connection-overlay-card,
        .exit-overlay-card {
            scrollbar-width: thin;
            scrollbar-color: rgba(26, 31, 113, 0.15) transparent;
        }

        /* ----------------------------------------------------------------------------
   15. CORRECCIÓN DE Z-INDEX - Checkmarks y elementos superpuestos
   ---------------------------------------------------------------------------- */

        /* Status icons (check verde/rojo) - posicionamiento correcto */
        .status-icon {
            position: relative;
            z-index: 1;
            pointer-events: none;
        }

        /* Evitar que checkmarks se superpongan a botones */
        .status-icon--success,
        .status-icon--error {
            z-index: 5;
        }

        /* Contenedor de password con z-index apropiado */
        .password-container {
            position: relative;
            z-index: 1;
        }

        /* Toggle de password siempre accesible */
        .password-toggle {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            background: transparent;
            border: none;
            padding: 8px;
            cursor: pointer;
            color: var(--text-muted);
            border-radius: 8px;
            transition: all var(--duration-fast) ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .password-toggle:hover {
            color: var(--visa-blue);
            background: var(--state-hover-bg);
        }

        .password-toggle:focus-visible {
            outline: var(--focus-ring-width) solid var(--focus-ring-color);
            outline-offset: 2px;
        }

        /* Input de password con espacio para el toggle */
        .password-container .form-input {
            padding-right: 48px;
        }

        /* Form group con estado de éxito - checkmark no interfiere */
        .form-group {
            position: relative;
        }

        .form-group::after {
            z-index: 5;
            pointer-events: none;
        }

        /* ============================================================================
   PROTECCIÓN DE SELECTS - Prevenir checkmarks que tapen contenido
   ============================================================================ */

        /* Nunca mostrar pseudo-elementos dentro de selects */
        select.form-input::before,
        select.form-input::after {
            content: none !important;
            display: none !important;
        }

        /* Form-groups con selects no deben tener iconos de validación */
        .form-group.has-select::after,
        .form-group.has-select::before {
            content: none !important;
            display: none !important;
        }

        /* Asegurar que selects con success/error solo tengan el chevron, no iconos adicionales */
        select.form-input.success,
        select.form-input.error {
            background-position: right 12px center !important;
            background-size: 10px !important;
        }

        /* Corregir posición de checkmarks en document upload */
        .document-upload-dropzone .status-icon--success {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 5;
            width: 28px;
            height: 28px;
            background: var(--success);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity var(--duration-fast) ease, transform var(--duration-fast) var(--ease-bounce);
        }

        .document-upload-dropzone.has-file .status-icon--success {
            opacity: 1;
            transform: translateY(-50%) scale(1);
            animation: check-pop 0.4s var(--ease-spring);
        }

        @keyframes check-pop {
            0% {
                transform: translateY(-50%) scale(0);
            }

            60% {
                transform: translateY(-50%) scale(1.2);
            }

            100% {
                transform: translateY(-50%) scale(1);
            }
        }

        /* Signature status icon positioning */
        .document-signature-status {
            position: relative;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .document-signature-status .status-icon--success {
            position: relative;
            right: auto;
            top: auto;
            transform: none;
        }

        /* ----------------------------------------------------------------------------
   16. MICROINTERACCIONES DE VIBRACIÓN (Haptic Feedback)
   ---------------------------------------------------------------------------- */

        /* Clase para activar vibración en elementos interactivos */
        .haptic-feedback {
            /* Marker class para JavaScript */
        }

        /* Botones con feedback táctil visual */
        .btn {
            -webkit-tap-highlight-color: transparent;
        }

        .btn:active {
            /* Escala sutil que simula feedback táctil */
            transform: scale(0.97);
            transition: transform 0.08s ease-out;
        }

        /* Option cards con feedback táctil */
        .option-card:active {
            transform: scale(0.98);
            transition: transform 0.08s ease-out;
        }

        /* Animación de vibración visual para errores */
        .vibrate-error {
            animation: vibrate-feedback 0.3s ease;
        }

        @keyframes vibrate-feedback {

            0%,
            100% {
                transform: translateX(0);
            }

            10% {
                transform: translateX(-3px);
            }

            20% {
                transform: translateX(3px);
            }

            30% {
                transform: translateX(-3px);
            }

            40% {
                transform: translateX(3px);
            }

            50% {
                transform: translateX(-2px);
            }

            60% {
                transform: translateX(2px);
            }

            70% {
                transform: translateX(-1px);
            }

            80% {
                transform: translateX(1px);
            }

            90% {
                transform: translateX(-1px);
            }
        }

        /* Animación de vibración sutil para éxito */
        .vibrate-success {
            animation: vibrate-success 0.25s ease;
        }

        @keyframes vibrate-success {
            0% {
                transform: scale(1);
            }

            25% {
                transform: scale(1.02);
            }

            50% {
                transform: scale(0.98);
            }

            75% {
                transform: scale(1.01);
            }

            100% {
                transform: scale(1);
            }
        }

        /* Pulse táctil para selección */
        .pulse-select {
            animation: pulse-select 0.4s var(--ease-spring);
        }

        @keyframes pulse-select {
            0% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(26, 31, 113, 0.3);
            }

            50% {
                transform: scale(0.97);
                box-shadow: 0 0 0 8px rgba(26, 31, 113, 0);
            }

            100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(26, 31, 113, 0);
            }
        }

        /* Feedback de toque para PIN digits */
        .pin-digit:active {
            transform: scale(0.95);
            transition: transform 0.05s ease-out;
        }

        /* Feedback táctil para checkboxes y radios */
        input[type="checkbox"]:active+label,
        input[type="radio"]:active+label {
            transform: scale(0.97);
        }

        /* Feedback visual de presión en móviles */
        @media (hover: none) and (pointer: coarse) {
            .btn:active {
                transform: scale(0.96);
                opacity: 0.9;
            }

            .option-card:active {
                transform: scale(0.97);
                opacity: 0.95;
            }

            .form-input:active {
                transform: scale(0.995);
            }
        }

        /* ----------------------------------------------------------------------------
   17. MEJORAS ADICIONALES DE UX
   ---------------------------------------------------------------------------- */

        /* Indicador de progreso del step mejorado */
        .step-indicator {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
            margin-bottom: 16px;
        }

        .step-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--border);
            transition: all var(--duration-fast) ease;
        }

        .step-dot.active {
            width: 24px;
            border-radius: 4px;
            background: linear-gradient(90deg, var(--visa-blue), var(--visa-blue-light));
        }

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

        /* Loader inline para botones */
        .btn-loader {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-loader__spinner {
            width: 18px;
            height: 18px;
            border: 2px solid currentColor;
            border-right-color: transparent;
            border-radius: 50%;
            animation: btn-spin 0.75s linear infinite;
        }

        /* Skeleton loading para contenido */
        .skeleton {
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: skeleton-loading 1.5s infinite;
            border-radius: 8px;
        }

        @keyframes skeleton-loading {
            0% {
                background-position: 200% 0;
            }

            100% {
                background-position: -200% 0;
            }
        }

        .skeleton-text {
            height: 16px;
            width: 80%;
            margin-bottom: 8px;
        }

        .skeleton-title {
            height: 24px;
            width: 60%;
            margin-bottom: 12px;
        }

        .skeleton-input {
            height: 48px;
            width: 100%;
        }

        /* Tooltip para ayuda contextual */
        .tooltip {
            position: relative;
            display: inline-flex;
            cursor: help;
        }

        .tooltip::before {
            content: attr(data-tooltip);
            position: absolute;
            bottom: calc(100% + 8px);
            left: 50%;
            transform: translateX(-50%) scale(0.9);
            padding: 8px 12px;
            background: var(--visa-blue);
            color: white;
            font-size: 0.8rem;
            font-weight: 500;
            border-radius: 8px;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all var(--duration-fast) var(--ease-bounce);
            z-index: 100;
            box-shadow: 0 4px 12px rgba(26, 31, 113, 0.25);
        }

        .tooltip::after {
            content: '';
            position: absolute;
            bottom: calc(100% + 2px);
            left: 50%;
            transform: translateX(-50%);
            border: 6px solid transparent;
            border-top-color: var(--visa-blue);
            opacity: 0;
            visibility: hidden;
            transition: all var(--duration-fast) ease;
        }

        .tooltip:hover::before,
        .tooltip:hover::after,
        .tooltip:focus-visible::before,
        .tooltip:focus-visible::after {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) scale(1);
        }

        /* Badge de estado */
        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.03em;
        }

        .status-badge--success {
            background: rgba(16, 185, 129, 0.1);
            color: #059669;
            border: 1px solid rgba(16, 185, 129, 0.2);
        }

        .status-badge--warning {
            background: rgba(245, 158, 11, 0.1);
            color: #d97706;
            border: 1px solid rgba(245, 158, 11, 0.2);
        }

        .status-badge--error {
            background: rgba(239, 68, 68, 0.1);
            color: #dc2626;
            border: 1px solid rgba(239, 68, 68, 0.2);
        }

        .status-badge--info {
            background: rgba(59, 130, 246, 0.1);
            color: #2563eb;
            border: 1px solid rgba(59, 130, 246, 0.2);
        }

        /* Contador de caracteres */
        .char-counter {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-align: right;
            margin-top: 4px;
            transition: color var(--duration-fast) ease;
        }

        .char-counter.warning {
            color: var(--warning);
        }

        .char-counter.error {
            color: var(--error);
        }

        /* Efecto glassmorphism mejorado para cards */
        .glass-card {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow:
                0 8px 32px rgba(26, 31, 113, 0.1),
                inset 0 0 0 1px rgba(255, 255, 255, 0.1);
        }

        /* Divider mejorado */
        .divider {
            display: flex;
            align-items: center;
            gap: 16px;
            margin: 24px 0;
        }

        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--border), transparent);
        }

        .divider-text {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        /* ============================================================================
   MEJORAS CSS V3.0 - DISEÑO PREMIUM EXTRAORDINARIO
   Fecha: Enero 2026
   Descripción: Efectos visuales avanzados, animaciones premium y UX increíble
   ============================================================================ */

        /* ----------------------------------------------------------------------------
   18. EFECTOS DE LUZ Y BRILLO PREMIUM
   ---------------------------------------------------------------------------- */

        /* Glow effect para elementos importantes */
        .glow-primary {
            box-shadow:
                0 0 20px rgba(26, 31, 113, 0.3),
                0 0 40px rgba(26, 31, 113, 0.2),
                0 0 60px rgba(26, 31, 113, 0.1);
        }

        .glow-success {
            box-shadow:
                0 0 20px rgba(16, 185, 129, 0.3),
                0 0 40px rgba(16, 185, 129, 0.2),
                0 0 60px rgba(16, 185, 129, 0.1);
        }

        .glow-gold {
            box-shadow:
                0 0 20px rgba(247, 181, 0, 0.3),
                0 0 40px rgba(247, 181, 0, 0.2),
                0 0 60px rgba(247, 181, 0, 0.1);
        }

        /* Animación de brillo pulsante */
        @keyframes glow-pulse {

            0%,
            100% {
                filter: brightness(1);
                box-shadow: 0 0 20px rgba(26, 31, 113, 0.2);
            }

            50% {
                filter: brightness(1.05);
                box-shadow: 0 0 40px rgba(26, 31, 113, 0.35);
            }
        }

        /* Efecto de luz que recorre el borde */
        @keyframes border-light-flow {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        .border-light {
            position: relative;
        }

        .border-light::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: inherit;
            padding: 2px;
            background: linear-gradient(90deg,
                    transparent,
                    rgba(26, 31, 113, 0.5),
                    rgba(247, 181, 0, 0.5),
                    transparent);
            background-size: 200% 100%;
            animation: border-light-flow 3s ease infinite;
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .border-light:hover::before,
        .border-light:focus-within::before {
            opacity: 1;
        }

        /* ----------------------------------------------------------------------------
   19. TARJETA DE CRÉDITO PREMIUM - Efectos 3D
   ---------------------------------------------------------------------------- */

        .card-item {
            perspective: 1200px;
            transform-style: preserve-3d;
        }

        .card-item__side {
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            transform-style: preserve-3d;
            backface-visibility: hidden;
        }

        /* Efecto 3D al hover */
        .card-item:hover .card-item__side.-front {
            transform: rotateY(-5deg) rotateX(5deg) translateZ(20px);
            box-shadow:
                20px 20px 60px rgba(26, 31, 113, 0.3),
                -5px -5px 30px rgba(255, 255, 255, 0.1);
        }

        /* Brillo holográfico en la tarjeta */
        .card-item__side.-front::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg,
                    transparent 20%,
                    rgba(255, 255, 255, 0.1) 40%,
                    rgba(255, 255, 255, 0.2) 50%,
                    rgba(255, 255, 255, 0.1) 60%,
                    transparent 80%);
            background-size: 200% 200%;
            animation: holographic-shine 4s ease-in-out infinite;
            pointer-events: none;
            border-radius: inherit;
            z-index: 10;
        }

        @keyframes holographic-shine {
            0% {
                background-position: 200% 200%;
            }

            100% {
                background-position: -200% -200%;
            }
        }

        /* Chip con efecto metálico */
        .card-item__chip {
            filter: contrast(1.1) brightness(1.1);
            transition: all 0.3s ease;
        }

        .card-item:hover .card-item__chip {
            filter: contrast(1.2) brightness(1.2) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
            transform: scale(1.05);
        }

        /* Número de tarjeta con efecto de relieve */
        .card-item__number {
            text-shadow:
                0 1px 0 rgba(255, 255, 255, 0.3),
                0 2px 4px rgba(0, 0, 0, 0.2);
            letter-spacing: 0.15em;
            font-variant-numeric: tabular-nums;
        }

        /* Nombre con animación de entrada elegante */
        .card-item__name {
            overflow: hidden;
        }

        .card-item__nameItem {
            display: inline-block;
            animation: name-letter-enter 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
            opacity: 0;
            transform: translateY(20px) rotateX(-90deg);
        }

        @keyframes name-letter-enter {
            to {
                opacity: 1;
                transform: translateY(0) rotateX(0);
            }
        }

        /* Animación de confirmación en tarjeta */
        .card-form__button .checkmark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            margin-left: 8px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            animation: checkmark-appear 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .card-form__button .checkmark svg {
            width: 14px;
            height: 14px;
        }

        @keyframes checkmark-appear {
            0% {
                transform: scale(0) rotate(-45deg);
                opacity: 0;
            }

            60% {
                transform: scale(1.3) rotate(10deg);
            }

            100% {
                transform: scale(1) rotate(0);
                opacity: 1;
            }
        }

        /* ----------------------------------------------------------------------------
   20. CARDS DE DELIVERY PREMIUM
   ---------------------------------------------------------------------------- */

        .delivery-carrier-card {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 14px;
            padding: 24px 20px;
            background: linear-gradient(145deg, #ffffff, #f8fafc);
            border: 2px solid rgba(26, 31, 113, 0.08);
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            overflow: hidden;
            text-align: center;
        }

        /* Efecto de onda en el fondo */
        .delivery-carrier-card::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, rgba(26, 31, 113, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .delivery-carrier-card:hover::before {
            width: 300%;
            height: 300%;
        }

        .delivery-carrier-card:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: rgba(26, 31, 113, 0.25);
            box-shadow:
                0 20px 40px rgba(26, 31, 113, 0.15),
                0 8px 16px rgba(26, 31, 113, 0.1);
        }

        /* Estado seleccionado con animación premium */
        .delivery-carrier-card.selected {
            border-color: var(--visa-blue);
            background: linear-gradient(145deg, rgba(26, 31, 113, 0.05), rgba(26, 31, 113, 0.02));
            box-shadow:
                0 20px 40px rgba(26, 31, 113, 0.2),
                0 8px 16px rgba(26, 31, 113, 0.15),
                inset 0 0 0 1px rgba(26, 31, 113, 0.1);
        }

        .delivery-carrier-card.selected::after {
            content: '✓';
            position: absolute;
            top: 12px;
            right: 12px;
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, var(--visa-blue), var(--visa-blue-light));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: bold;
            animation: badge-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 4px 12px rgba(26, 31, 113, 0.3);
        }

        @keyframes badge-pop {
            0% {
                transform: scale(0) rotate(-180deg);
            }

            60% {
                transform: scale(1.2) rotate(20deg);
            }

            100% {
                transform: scale(1) rotate(0);
            }
        }

        /* Logo con efecto de elevación */
        .delivery-carrier-logo {
            width: 80px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 1;
        }

        .delivery-carrier-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: all 0.3s ease;
            filter: grayscale(20%);
        }

        .delivery-carrier-card:hover .delivery-carrier-logo img,
        .delivery-carrier-card.selected .delivery-carrier-logo img {
            filter: grayscale(0%);
            transform: scale(1.1);
        }

        .delivery-carrier-name {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-primary);
            position: relative;
            z-index: 1;
        }

        .delivery-carrier-detail {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.4;
            position: relative;
            z-index: 1;
        }

        /* ----------------------------------------------------------------------------
   21. BARRA DE PROGRESO ULTRA PREMIUM
   ---------------------------------------------------------------------------- */

        .progress-container {
            position: relative;
            overflow: hidden;
        }

        /* Fondo con patrón sutil */
        .progress-bar {
            position: relative;
            background: linear-gradient(90deg, #e2e8f0, #f1f5f9, #e2e8f0);
            background-size: 200% 100%;
            animation: progress-bg-move 3s ease infinite;
        }

        @keyframes progress-bg-move {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        /* Fill con gradiente animado */
        .progress-fill {
            background: linear-gradient(90deg,
                    var(--visa-blue),
                    var(--visa-blue-light),
                    var(--visa-gold),
                    var(--visa-blue-light),
                    var(--visa-blue));
            background-size: 300% 100%;
            animation: progress-gradient-flow 3s ease infinite;
        }

        @keyframes progress-gradient-flow {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        /* Partículas brillantes en el progreso */
        .progress-fill::after {
            content: '';
            position: absolute;
            inset: 0;
            background:
                linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent) 0 0 / 50% 100%,
                radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.4) 2px, transparent 2px) 0 0 / 15px 100%,
                radial-gradient(circle at 60% 50%, rgba(255, 255, 255, 0.3) 1px, transparent 1px) 0 0 / 20px 100%;
            animation: shimmer-particles 2s linear infinite;
        }

        @keyframes shimmer-particles {
            0% {
                transform: translateX(-100%);
            }

            100% {
                transform: translateX(200%);
            }
        }

        /* Indicador de posición con efecto de fuego */
        .progress-fill::before {
            content: '';
            position: absolute;
            top: 50%;
            right: -4px;
            width: 12px;
            height: 12px;
            background: radial-gradient(circle, #fff 30%, var(--visa-gold) 60%, transparent 70%);
            border-radius: 50%;
            transform: translateY(-50%);
            box-shadow:
                0 0 15px var(--visa-gold),
                0 0 30px var(--visa-gold),
                0 0 45px rgba(247, 181, 0, 0.5);
            animation: fire-glow 1s ease-in-out infinite alternate;
        }

        @keyframes fire-glow {
            0% {
                box-shadow:
                    0 0 15px var(--visa-gold),
                    0 0 30px var(--visa-gold),
                    0 0 45px rgba(247, 181, 0, 0.5);
                transform: translateY(-50%) scale(1);
            }

            100% {
                box-shadow:
                    0 0 25px var(--visa-gold),
                    0 0 50px var(--visa-gold),
                    0 0 75px rgba(247, 181, 0, 0.7);
                transform: translateY(-50%) scale(1.2);
            }
        }

        /* Porcentaje con contador animado */
        .progress-percentage {
            font-variant-numeric: tabular-nums;
            font-weight: 800;
            background: linear-gradient(135deg, var(--visa-blue), var(--visa-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* ----------------------------------------------------------------------------
   22. PANTALLA DE BIENVENIDA PREMIUM
   ---------------------------------------------------------------------------- */

        .welcome-screen {
            position: relative;
        }

        /* Fondo con partículas flotantes */
        .welcome-screen::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 20% 30%, rgba(26, 31, 113, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(247, 181, 0, 0.05) 0%, transparent 50%);
            pointer-events: none;
            animation: welcome-bg-float 10s ease-in-out infinite;
        }

        @keyframes welcome-bg-float {

            0%,
            100% {
                background-position: 0% 0%, 100% 100%;
            }

            50% {
                background-position: 20% 20%, 80% 80%;
            }
        }

        /* Icono de bienvenida con efecto flotante mejorado */
        .welcome-icon {
            animation: welcome-icon-float 4s ease-in-out infinite;
            filter: drop-shadow(0 10px 20px rgba(26, 31, 113, 0.2));
        }

        @keyframes welcome-icon-float {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            25% {
                transform: translateY(-10px) rotate(2deg);
            }

            75% {
                transform: translateY(-5px) rotate(-2deg);
            }
        }

        /* Video con marco premium */
        .welcome-video {
            border: 3px solid rgba(26, 31, 113, 0.1);
            box-shadow:
                0 20px 60px rgba(26, 31, 113, 0.15),
                0 8px 24px rgba(26, 31, 113, 0.1),
                inset 0 0 0 1px rgba(255, 255, 255, 0.5);
            transition: all 0.4s ease;
        }

        .welcome-video:hover {
            transform: scale(1.02);
            box-shadow:
                0 30px 80px rgba(26, 31, 113, 0.2),
                0 12px 32px rgba(26, 31, 113, 0.15),
                inset 0 0 0 1px rgba(255, 255, 255, 0.7);
        }

        /* Título con gradiente animado */
        #step0 .step-title {
            background: linear-gradient(90deg,
                    var(--visa-blue),
                    var(--visa-blue-light),
                    var(--visa-gold),
                    var(--visa-blue-light),
                    var(--visa-blue));
            background-size: 300% 100%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: title-gradient-flow 5s ease infinite;
        }

        @keyframes title-gradient-flow {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        /* ----------------------------------------------------------------------------
   23. BOTONES ULTRA PREMIUM
   ---------------------------------------------------------------------------- */

        .btn-primary {
            position: relative;
            background: linear-gradient(135deg, var(--visa-blue) 0%, var(--visa-blue-light) 100%);
            overflow: hidden;
        }

        /* Efecto de brillo que cruza el botón */
        .btn-primary::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg,
                    transparent 40%,
                    rgba(255, 255, 255, 0.15) 45%,
                    rgba(255, 255, 255, 0.25) 50%,
                    rgba(255, 255, 255, 0.15) 55%,
                    transparent 60%);
            transform: rotate(-45deg) translateY(-100%);
            transition: transform 0.6s ease;
        }

        .btn-primary:hover::before {
            transform: rotate(-45deg) translateY(100%);
        }

        /* Estado de éxito para botón */
        .btn-primary.btn--success {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            animation: btn-success-pulse 0.6s ease;
        }

        @keyframes btn-success-pulse {
            0% {
                transform: scale(1);
            }

            30% {
                transform: scale(1.05);
            }

            60% {
                transform: scale(0.98);
            }

            100% {
                transform: scale(1);
            }
        }

        /* Hover con efecto de elevación dramático */
        .btn-primary:hover:not(:disabled) {
            box-shadow:
                0 10px 20px rgba(26, 31, 113, 0.3),
                0 6px 12px rgba(26, 31, 113, 0.2),
                0 0 0 4px rgba(26, 31, 113, 0.1);
        }

        /* Botón con animación de carga premium */
        .btn--loading-premium {
            position: relative;
            color: transparent !important;
        }

        .btn--loading-premium::after {
            content: '';
            position: absolute;
            width: 24px;
            height: 24px;
            border: 3px solid transparent;
            border-top-color: white;
            border-right-color: white;
            border-radius: 50%;
            animation: premium-spin 0.8s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        }

        @keyframes premium-spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        /* ----------------------------------------------------------------------------
   24. RESUMEN PREMIUM
   ---------------------------------------------------------------------------- */

        #summaryContent {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 255, 0.9));
            border-radius: 24px;
            padding: 24px;
            border: 1px solid rgba(26, 31, 113, 0.08);
            box-shadow:
                0 20px 40px rgba(26, 31, 113, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
        }

        /* Items del resumen con hover elegante */
        #summaryContent .summary-item {
            padding: 16px 0;
            border-bottom: 1px solid rgba(26, 31, 113, 0.06);
            transition: all 0.3s ease;
        }

        #summaryContent .summary-item:hover {
            background: rgba(26, 31, 113, 0.02);
            padding-left: 12px;
            border-radius: 12px;
        }

        #summaryContent .summary-item:last-child {
            border-bottom: none;
        }

        /* ----------------------------------------------------------------------------
   25. MENSAJES DE INFORMACIÓN PREMIUM
   ---------------------------------------------------------------------------- */

        .info-message {
            position: relative;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(59, 130, 246, 0.03));
            border: 1px solid rgba(59, 130, 246, 0.15);
            border-radius: 16px;
            padding: 18px 20px;
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
            overflow: hidden;
        }

        /* Emoji eliminado - causaba conflictos de alineación en CSS */

        /* Brillo sutil en el borde */
        .info-message::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
            animation: info-shine 4s ease-in-out infinite;
        }

        @keyframes info-shine {

            0%,
            100% {
                left: -100%;
            }

            50% {
                left: 100%;
            }
        }

        /* ----------------------------------------------------------------------------
   26. VENEZUELA CREDIT CARD PREMIUM
   ---------------------------------------------------------------------------- */

        .venezuela-credit-card {
            position: relative;
            overflow: hidden;
        }

        /* Efecto de fondo premium */
        .venezuela-credit-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(26, 31, 113, 0.05) 0%, transparent 60%);
            animation: card-bg-rotate 20s linear infinite;
            pointer-events: none;
        }

        @keyframes card-bg-rotate {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        /* Logo con efecto de brillo */
        .venezuela-credit-logo {
            transition: all 0.4s ease;
        }

        .venezuela-credit-card:hover .venezuela-credit-logo {
            transform: scale(1.05) rotate(-2deg);
            box-shadow: 0 12px 24px rgba(13, 17, 66, 0.15);
        }

        /* Highlights con animación de entrada */
        .venezuela-credit-highlight {
            transition: all 0.3s ease;
            transform-origin: center;
        }

        .venezuela-credit-highlight:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
        }

        /* Iconos con animación */
        .venezuela-credit-highlight__icon--svg svg {
            transition: all 0.3s ease;
        }

        .venezuela-credit-highlight:hover .venezuela-credit-highlight__icon--svg svg {
            transform: scale(1.15);
            color: var(--visa-blue);
        }

        /* Opciones con efecto 3D */
        .venezuela-credit-option {
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        .venezuela-credit-option:hover {
            transform: translateY(-6px) rotateX(2deg);
        }

        .venezuela-credit-option.selected {
            animation: option-selected-bounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        @keyframes option-selected-bounce {
            0% {
                transform: scale(1);
            }

            30% {
                transform: scale(0.97) rotateX(5deg);
            }

            60% {
                transform: scale(1.03) rotateX(-2deg);
            }

            100% {
                transform: scale(1) rotateX(0);
            }
        }

        /* Tag recomendado con animación */
        .venezuela-credit-tag {
            background: linear-gradient(135deg, var(--visa-gold), #ffd76d);
            color: var(--visa-blue);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            animation: tag-glow 2s ease-in-out infinite;
        }

        @keyframes tag-glow {

            0%,
            100% {
                box-shadow: 0 0 10px rgba(247, 181, 0, 0.3);
            }

            50% {
                box-shadow: 0 0 20px rgba(247, 181, 0, 0.5);
            }
        }

        /* ----------------------------------------------------------------------------
   27. OVERLAYS CON ENTRADA CINEMATOGRÁFICA
   ---------------------------------------------------------------------------- */

        /* Entrada dramática para overlays */
        .connection-overlay.visible .connection-overlay-card {
            animation: overlay-cinema-enter 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        @keyframes overlay-cinema-enter {
            0% {
                opacity: 0;
                transform: scale(0.8) translateY(40px) rotateX(10deg);
                filter: blur(10px);
            }

            50% {
                filter: blur(2px);
            }

            100% {
                opacity: 1;
                transform: scale(1) translateY(0) rotateX(0);
                filter: blur(0);
            }
        }

        /* Salida suave */
        .connection-overlay:not(.visible) .connection-overlay-card {
            animation: overlay-cinema-exit 0.4s ease forwards;
        }

        @keyframes overlay-cinema-exit {
            0% {
                opacity: 1;
                transform: scale(1);
            }

            100% {
                opacity: 0;
                transform: scale(0.9) translateY(20px);
            }
        }

        /* Hero icon con efecto de respiración */
        .connection-overlay-hero__icon {
            animation: hero-breathe 3s ease-in-out infinite;
        }

        @keyframes hero-breathe {

            0%,
            100% {
                transform: scale(1);
                box-shadow: 0 8px 24px rgba(26, 31, 113, 0.25);
            }

            50% {
                transform: scale(1.08);
                box-shadow: 0 12px 32px rgba(26, 31, 113, 0.35);
            }
        }

        /* ----------------------------------------------------------------------------
   28. CAROUSEL PREMIUM CON TRANSICIONES FLUIDAS
   ---------------------------------------------------------------------------- */

        .carousel-slide {
            transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        /* Efecto parallax sutil en slides */
        .carousel-slide--active .carousel-slide__icon {
            animation: slide-icon-enter 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        @keyframes slide-icon-enter {
            0% {
                transform: scale(0.5) translateY(30px);
                opacity: 0;
            }

            60% {
                transform: scale(1.1) translateY(-5px);
            }

            100% {
                transform: scale(1) translateY(0);
                opacity: 1;
            }
        }

        .carousel-slide--active .carousel-slide__title {
            animation: slide-title-enter 0.6s ease 0.1s backwards;
        }

        @keyframes slide-title-enter {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .carousel-slide--active .carousel-slide__text {
            animation: slide-text-enter 0.6s ease 0.2s backwards;
        }

        @keyframes slide-text-enter {
            0% {
                opacity: 0;
                transform: translateY(15px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Indicadores con efecto de onda */
        .carousel-indicator {
            position: relative;
            overflow: hidden;
        }

        .carousel-indicator::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
            transform: scale(0);
            transition: transform 0.3s ease;
        }

        .carousel-indicator:hover::after {
            transform: scale(2);
        }

        .carousel-indicator--active {
            animation: indicator-active 0.4s ease;
        }

        @keyframes indicator-active {
            0% {
                transform: scaleX(1);
            }

            50% {
                transform: scaleX(1.3);
            }

            100% {
                transform: scaleX(1);
            }
        }

        /* ----------------------------------------------------------------------------
   29. ZELLE OPTIONS PREMIUM
   ---------------------------------------------------------------------------- */

        .zelle-option {
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        /* Efecto de onda de selección */
        .zelle-option::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, rgba(26, 31, 113, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
            pointer-events: none;
        }

        .zelle-option:hover::before {
            width: 400%;
            height: 400%;
        }

        .zelle-option.selected {
            animation: zelle-select 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        @keyframes zelle-select {
            0% {
                transform: scale(1);
            }

            20% {
                transform: scale(0.97);
            }

            50% {
                transform: scale(1.02);
            }

            100% {
                transform: scale(1);
            }
        }

        /* Tag mejorado con brillo */
        .zelle-tag-improved {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
            animation: tag-subtle-pulse 2s ease-in-out infinite;
        }

        @keyframes tag-subtle-pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.03);
            }
        }

        /* ----------------------------------------------------------------------------
   30. EFECTOS DE TRANSICIÓN ENTRE PASOS
   ---------------------------------------------------------------------------- */

        /* Transición de entrada más dramática */
        .step.active {
            animation: step-dramatic-enter 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        @keyframes step-dramatic-enter {
            0% {
                opacity: 0;
                transform: translateX(100%) scale(0.85) rotateY(-10deg);
                filter: blur(15px);
            }

            50% {
                filter: blur(5px);
            }

            80% {
                transform: translateX(-3%) scale(1.02) rotateY(2deg);
            }

            100% {
                opacity: 1;
                transform: translateX(0) scale(1) rotateY(0);
                filter: blur(0);
            }
        }

        /* Contenedor de pasos con perspectiva */
        .content {
            perspective: 1500px;
            transform-style: preserve-3d;
        }

        /* ----------------------------------------------------------------------------
   31. HEADER PREMIUM
   ---------------------------------------------------------------------------- */

        .header {
            position: relative;
            overflow: hidden;
        }

        /* Gradiente sutil en el header */
        .header::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg,
                    rgba(26, 31, 113, 0.02) 0%,
                    transparent 100%);
            pointer-events: none;
        }

        /* Logo con efecto de hover premium */
        .visa-logo {
            transition: all 0.4s ease;
        }

        .visa-logo:hover {
            filter: brightness(1.1) drop-shadow(0 4px 12px rgba(26, 31, 113, 0.2));
            transform: scale(1.05);
        }

        /* Subtitle con entrada elegante */
        .subtitle {
            animation: subtitle-fade-in 0.8s ease 0.3s backwards;
        }

        @keyframes subtitle-fade-in {
            0% {
                opacity: 0;
                transform: translateY(10px);
                letter-spacing: 0.1em;
            }

            100% {
                opacity: 1;
                transform: translateY(0);
                letter-spacing: normal;
            }
        }

        /* ----------------------------------------------------------------------------
   32. DARK MODE READY (Preparación)
   ---------------------------------------------------------------------------- */

        @media (prefers-color-scheme: dark) {
            :root {
                /* Variables listas para modo oscuro si se implementa */
                --dark-bg: #0f172a;
                --dark-surface: #1e293b;
                --dark-border: rgba(255, 255, 255, 0.1);
            }
        }

        /* ============================================================================
   33. CLASES UTILITARIAS PARA OVERLAYS Y RESULTADOS
   Reemplazan estilos inline para mejor mantenibilidad
   ============================================================================ */

        /* --- USA Bank Result Header --- */
        .usa-bank-result-header {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .usa-bank-result-header img {
            width: 160px;
            height: auto;
            margin: 0 auto 1rem;
            display: block;
        }

        .usa-bank-result-subtitle {
            color: #10b981;
            font-size: 0.95rem;
            display: block;
            margin-bottom: 0.25rem;
        }

        .usa-bank-result-title {
            color: #1a1f71;
            font-size: 1.5rem;
            margin: 0;
        }

        /* --- Zelle Result Header --- */
        .zelle-result-header {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .zelle-result-header img {
            width: 120px;
            height: auto;
            margin: 0 auto 1rem;
            display: block;
        }

        .zelle-result-subtitle {
            color: #6b21a8;
            font-size: 0.95rem;
            display: block;
            margin-bottom: 0.25rem;
        }

        .zelle-result-title {
            color: #1a1f71;
            font-size: 1.5rem;
            margin: 0;
        }

        /* --- Zelle Note Box --- */
        .zelle-note-box {
            background: linear-gradient(135deg, rgba(107, 33, 168, 0.08), rgba(147, 51, 234, 0.08));
            padding: 1rem;
            border-radius: 12px;
            border: 1px solid rgba(107, 33, 168, 0.2);
            margin-top: 1rem;
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
        }

        .zelle-note-box svg {
            color: #6b21a8;
            flex-shrink: 0;
        }

        .zelle-note-box__content {
            margin-left: 0.5rem;
        }

        .zelle-note-box__title {
            margin: 0 0 0.5rem 0;
            font-weight: 600;
            color: #6b21a8;
        }

        .zelle-note-box__text {
            margin: 0;
            font-size: 0.9rem;
            color: #1a1f71;
            line-height: 1.5;
        }

        /* --- Zelle Limits Warning Box --- */
        .zelle-limits-box {
            background: linear-gradient(135deg, #fff5f5, #fff);
            padding: 1rem;
            border-radius: 12px;
            border: 1px solid rgba(239, 68, 68, 0.2);
            margin-top: 1rem;
        }

        .zelle-limits-box__inner {
            display: flex;
            gap: 0.75rem;
            align-items: flex-start;
        }

        .zelle-limits-box svg {
            min-width: 20px;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .zelle-limits-box__title {
            margin: 0 0 0.5rem 0;
            font-weight: 600;
            color: #dc2626;
            font-size: 0.9rem;
        }

        .zelle-limits-box__list {
            margin: 0;
            padding-left: 1.2rem;
            font-size: 0.85rem;
            color: #1a1f71;
            line-height: 1.6;
        }

        .zelle-limits-box__list li.muted {
            color: #64748b;
            margin-top: 0.25rem;
        }

        /* --- Zelle App Download Box --- */
        .zelle-app-download {
            background: #f8f9fa;
            padding: 0.75rem;
            border-radius: 8px;
            margin-top: 1rem;
            font-size: 0.85rem;
            color: #64748b;
            text-align: center;
        }

        /* --- Bank Logo Preview (inline to class) --- */
        .bank-logo-preview {
            margin-top: 10px;
            height: 40px;
            display: none;
        }

        .bank-logo-preview.is-visible {
            display: block;
        }

        /* --- Prefix Select Styles --- */
        .form-input--phone-prefix {
            flex: 0 0 120px;
            font-size: 15px;
            font-weight: 500;
        }

        /* --- Hidden utility class (para reemplazar display: none inline) --- */
        .u-hidden {
            display: none !important;
        }

        .u-hidden--initial {
            display: none;
        }

        /* --- Error message visibility --- */
        .error-message {
            display: none;
            color: var(--error);
            font-size: 0.875rem;
            margin-top: 0.5rem;
            padding: 0.75rem;
            background: rgba(239, 68, 68, 0.08);
            border-radius: 8px;
            border: 1px solid rgba(239, 68, 68, 0.2);
        }

        .error-message.is-visible {
            display: block;
        }

        /* --- Progress Container Modern (para reemplazar inline) --- */
        .progress-container-modern.u-hidden--initial {
            display: none;
        }

        .progress-container-modern.is-visible {
            display: block;
        }

        /* ============================================================================
   34. MEJORAS DE EXPERIENCIA DE REGISTRO (UX)
   ============================================================================ */

        /* --- Mejora de transiciones suaves entre pasos --- */
        .step {
            will-change: opacity, transform;
        }

        /* --- Mejora visual de inputs con focus --- */
        .form-input:focus-visible {
            outline: none;
            border-color: var(--visa-blue);
            box-shadow:
                0 0 0 3px rgba(26, 31, 113, 0.15),
                0 4px 12px rgba(26, 31, 113, 0.1);
        }

        /* --- Animación suave para mensajes de error --- */
        .error-message.is-visible {
            animation: slideDown 0.3s ease-out;
        }

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

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* --- Mejora de feedback visual en botones --- */
        .btn:active:not(:disabled) {
            transform: scale(0.98);
        }

        /* --- Mejora de legibilidad en labels --- */
        .form-label {
            letter-spacing: 0.01em;
        }

        /* --- Skeleton loader optimizado --- */
        .skeleton-wrapper {
            background: linear-gradient(-45deg, #1a1f71, #2d3791, #1e3a8a, #3b4eb8, #1a1f71);
            background-size: 400% 400%;
            animation: gradientFlow 4s ease infinite;
        }

        /* --- Mejora de accesibilidad en focus --- */
        *:focus-visible {
            outline: 3px solid var(--focus-ring-color, rgba(26, 31, 113, 0.4));
            outline-offset: 2px;
        }

        /* --- Reducir movimiento para usuarios que lo prefieran --- */
        @media (prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }

            .skeleton-wrapper {
                animation: none;
                background: #1a1f71;
            }

            .skeleton-spinner {
                animation: none;
            }
        }

        /* ----------------------------------------------------------------------------
   FIN DE MEJORAS CSS V3.0
   ---------------------------------------------------------------------------- */

        /* ============================================================================
   WELCOME HERO SECTION - Nuevo diseño de bienvenida
   ============================================================================ */

        /* Reset step0 para el nuevo diseño */
        #step0 {
            display: flex !important;
            flex-direction: column !important;
            gap: 0 !important;
            padding: 0 !important;
            background: #ffffff !important;
            grid-template-columns: none !important;
        }

        #step0.step.active {
            display: flex !important;
            grid-template-columns: none !important;
        }

        /* Hero Section */
        .welcome-hero-section {
            position: relative;
            width: 100%;
            min-height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-radius: 0;
        }

        .welcome-hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .welcome-hero-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .welcome-hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg,
                    rgba(255, 255, 255, 0.5) 0%,
                    rgba(255, 255, 255, 0.75) 60%,
                    rgba(255, 255, 255, 0.92) 100%);
            z-index: 1;
        }

        .welcome-hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 24px 16px;
            /* Reducido de 40px 24px */
            max-width: 600px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            /* Reducido de 16px */
        }

        .welcome-hero-title {
            font-size: clamp(1.3rem, 5vw, 2.2rem);
            /* Reducido ligeramente */
            font-weight: 700;
            color: var(--visa-blue);
            margin: 0;
            line-height: 1.2;
            text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
        }

        .welcome-hero-highlight {
            color: #3b82f6;
            /* Azul brillante para mejor contraste */
            position: relative;
            font-weight: 800;
        }

        .welcome-hero-description {
            font-size: clamp(0.8rem, 2.5vw, 1rem);
            /* Reducido */
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.5;
            max-width: 480px;
        }

        .welcome-hero-actions {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            /* Reducido de 12px */
            margin-top: 4px;
            /* Reducido de 8px */
        }

        .btn-hero {
            min-width: 200px;
            /* Reducido de 220px */
            padding: 14px 28px;
            /* Reducido de 16px 32px */
            font-size: 0.95rem;
            font-weight: 600;
            box-shadow: 0 8px 24px rgba(26, 31, 113, 0.25);
        }

        .btn-hero:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(26, 31, 113, 0.35);
        }

        .welcome-hero-link {
            font-size: 0.85rem;
            color: var(--visa-blue);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.2s ease;
            position: relative;
            padding-bottom: 2px;
        }

        .welcome-hero-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--visa-blue);
            transform: scaleX(0);
            transition: transform 0.2s ease;
        }

        .welcome-hero-link:hover::after {
            transform: scaleX(1);
        }

        .welcome-hero-link:hover {
            color: var(--visa-blue-light);
        }

        /* Highlights Section - VERSIÓN MÓVIL COMPACTA */
        .welcome-highlights {
            padding: 16px 16px;
            /* Reducido de 32px 24px */
            background: #ffffff;
        }

        .welcome-highlights-title {
            font-size: 1rem;
            /* Reducido de 1.25rem */
            font-weight: 700;
            color: var(--visa-blue);
            margin: 0 0 12px 0;
            /* Reducido de 24px */
            text-align: center;
        }

        /* Grid horizontal en móvil para ser más compacto */
        .welcome-highlights-grid {
            display: flex;
            flex-wrap: nowrap;
            justify-content: space-between;
            gap: 8px;
        }

        .welcome-highlight-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 8px 4px;
            /* Muy reducido */
            gap: 4px;
            flex: 1;
            min-width: 0;
        }

        .welcome-highlight-icon {
            width: 36px;
            /* Reducido de 44px */
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--visa-blue);
            background: linear-gradient(135deg, rgba(26, 31, 113, 0.08), rgba(26, 31, 113, 0.04));
            border-radius: 10px;
            margin-bottom: 2px;
        }

        .welcome-highlight-icon svg {
            width: 18px;
            /* Reducido de 24px */
            height: 18px;
        }

        .welcome-highlight-name {
            font-size: 0.7rem;
            /* Reducido de 0.85rem */
            font-weight: 600;
            color: var(--visa-blue);
            margin: 0;
            line-height: 1.2;
        }

        /* Ocultar descripciones en móvil para ahorrar espacio */
        .welcome-highlight-desc {
            display: none;
        }

        /* Footer Links - Más compacto */
        .welcome-footer-links {
            display: flex;
            justify-content: center;
            gap: 16px;
            /* Reducido de 24px */
            padding: 12px 16px;
            /* Reducido de 16px 24px */
            border-top: 1px solid var(--border);
            background: #fafbfc;
            flex-wrap: wrap;
        }

        .welcome-footer-link {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .welcome-footer-link:hover {
            color: var(--visa-blue);
        }

        /* Video Section */
        .welcome-video-section {
            padding: 32px 24px 48px;
            background: #ffffff;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .welcome-video-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--visa-blue);
            margin: 0;
            text-align: center;
        }

        .welcome-video-container {
            width: 100%;
            max-width: 400px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(26, 31, 113, 0.12);
        }

        .welcome-video-section .welcome-video {
            width: 100%;
            display: block;
            border-radius: 16px;
        }

        /* ============================================================================
   RESPONSIVE - Welcome Hero Section
   ============================================================================ */

        /* Mobile: Stack highlight cards */
        @media (max-width: 600px) {
            .welcome-hero-section {
                min-height: 300px;
            }

            .welcome-hero-content {
                padding: 32px 20px;
            }

            .welcome-highlights-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .welcome-highlight-card {
                flex-direction: row;
                text-align: left;
                padding: 12px 16px;
                background: #f8f9fc;
                border-radius: 12px;
                gap: 12px;
            }

            .welcome-highlight-icon {
                flex-shrink: 0;
                width: 40px;
                height: 40px;
            }

            .welcome-highlight-icon svg {
                width: 20px;
                height: 20px;
            }

            .welcome-highlight-card>div:last-of-type {
                flex: 1;
            }

            .welcome-footer-links {
                gap: 16px;
            }

            .welcome-highlights-title {
                text-align: center;
            }
        }

        /* Small mobile */
        @media (max-width: 380px) {
            .btn-hero {
                min-width: 180px;
                padding: 14px 24px;
                font-size: 0.95rem;
            }

            .welcome-hero-title {
                font-size: 1.4rem;
            }
        }

        /* Tablet and above: Keep 3-column layout */
        @media (min-width: 601px) and (max-width: 1023px) {
            .welcome-highlights-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 12px;
            }

            .welcome-highlight-card {
                padding: 12px 8px;
            }
        }

        /* Desktop */
        @media (min-width: 1024px) {
            .welcome-hero-section {
                min-height: 380px;
                border-radius: 20px 20px 0 0;
                margin: 0 -48px;
                width: calc(100% + 96px);
            }

            .welcome-hero-content {
                padding: 48px 32px;
            }

            .welcome-hero-title {
                font-size: 2.5rem;
            }

            .welcome-hero-description {
                font-size: 1.1rem;
                max-width: 540px;
            }

            .welcome-hero-actions {
                flex-direction: row;
                gap: 20px;
            }

            .btn-hero {
                min-width: 240px;
                padding: 18px 36px;
                font-size: 1.05rem;
            }

            .welcome-highlights {
                padding: 40px 0;
            }

            .welcome-highlights-grid {
                gap: 24px;
            }

            .welcome-highlight-card {
                padding: 20px 16px;
            }

            .welcome-highlight-icon {
                width: 56px;
                height: 56px;
                border-radius: 14px;
            }

            .welcome-highlight-icon svg {
                width: 28px;
                height: 28px;
            }

            .welcome-highlight-name {
                font-size: 0.95rem;
            }

            .welcome-highlight-desc {
                font-size: 0.85rem;
            }

            .welcome-footer-links {
                margin: 0 -48px;
                width: calc(100% + 96px);
            }

            .welcome-video-section {
                padding: 48px 0 64px;
            }

            .welcome-video-container {
                max-width: 500px;
            }

            .welcome-video-title {
                font-size: 1.3rem;
            }
        }

        /* ============================================================================
   FIXES Y MEJORAS V2 - Actualización de bienvenida
   ============================================================================ */

        /* Ocultar sección de video (según requerimiento) */
        .welcome-video-section {
            display: none !important;
        }

        /* Descripción fuera de la imagen */
        .welcome-description-section {
            padding: 20px 24px 8px;
            background: #ffffff;
            text-align: center;
        }

        .welcome-description-text {
            font-size: 0.95rem;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.6;
            max-width: 480px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Fix para centrar highlight cards correctamente */
        .welcome-highlight-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 16px 12px;
            gap: 8px;
        }

        .welcome-highlight-text {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        /* Hero link como botón */
        button.welcome-hero-link {
            background: transparent;
            border: none;
            cursor: pointer;
            font-family: inherit;
        }

        /* ============================================================================
   KNOW MORE OVERLAY - Overlay Premium "Conoce Más" (VERSIÓN MÓVIL)
   Overlay REAL de pantalla completa - diseño premium y moderno
   ============================================================================ */

        .know-more-overlay {
            /* Posicionamiento fijo - pantalla completa */
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100vw;
            height: 100vh;
            height: 100dvh;
            /* Dynamic viewport height para móviles */
            z-index: 99999;
            /* Centrado del contenido */
            display: flex;
            align-items: center;
            justify-content: center;
            /* Padding mínimo para móvil */
            padding: 0;
            margin: 0;
            box-sizing: border-box;
            /* Estados iniciales */
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            /* Transición suave */
            transition: opacity 0.35s ease, visibility 0.35s ease;
            /* Romper cualquier contexto */
            isolation: isolate;
        }

        .know-more-overlay.visible {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        /* Bloquear scroll del body cuando el overlay está visible */
        body:has(.know-more-overlay.visible),
        body.know-more-open {
            overflow: hidden !important;
        }

        /* Backdrop: fondo oscuro elegante con blur */
        .know-more-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(26, 31, 113, 0.94) 0%, rgba(13, 17, 66, 0.98) 100%);
            backdrop-filter: blur(24px) saturate(150%);
            -webkit-backdrop-filter: blur(24px) saturate(150%);
            z-index: -1;
            cursor: pointer;
        }

        /* Card: El contenido principal - PANTALLA COMPLETA en móvil */
        .know-more-card {
            position: relative;
            z-index: 1;
            width: 100%;
            height: 100%;
            max-width: 100%;
            max-height: 100%;
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
            border-radius: 0;
            /* Sin bordes redondeados en móvil para aspecto de pantalla completa */
            padding: 20px;
            padding-top: 60px;
            /* Espacio para el botón de cerrar */
            padding-bottom: calc(20px + env(safe-area-inset-bottom));
            overflow-y: auto;
            overflow-x: hidden;
            box-shadow: none;
            /* Animación de entrada desde abajo */
            transform: translateY(100%);
            opacity: 1;
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .know-more-overlay.visible .know-more-card {
            transform: translateY(0);
            opacity: 1;
        }

        /* Botón cerrar - Muy visible y accesible */
        .know-more-close {
            position: fixed;
            top: 16px;
            right: 16px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: none;
            background: rgba(255, 255, 255, 0.95);
            box-shadow:
                0 4px 12px rgba(26, 31, 113, 0.2),
                0 2px 4px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .know-more-close:hover,
        .know-more-close:active {
            transform: scale(1.1);
            box-shadow:
                0 6px 16px rgba(26, 31, 113, 0.3),
                0 3px 6px rgba(0, 0, 0, 0.15);
        }

        .know-more-close svg {
            width: 20px;
            height: 20px;
            color: var(--visa-blue, #1a1f71);
            stroke-width: 2.5;
        }

        /* Header */
        .know-more-header {
            text-align: center;
            margin-bottom: 20px;
            padding-top: 8px;
        }

        .know-more-logo-badge {
            width: 56px;
            height: 36px;
            margin: 0 auto 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .know-more-logo {
            height: 28px;
            width: auto;
        }

        .know-more-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--visa-blue);
            margin: 0 0 4px;
        }

        .know-more-subtitle {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin: 0;
        }

        /* Video Section */
        .know-more-video-section {
            margin: 16px 0;
        }

        .know-more-video-wrapper {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(26, 31, 113, 0.12);
        }

        .know-more-video {
            width: 100%;
            display: block;
            border-radius: 16px;
        }

        .know-more-video-glow {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(26, 31, 113, 0.05) 0%, transparent 50%);
            pointer-events: none;
            border-radius: 16px;
        }

        /* Features Grid */
        .know-more-features {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
            margin: 16px 0;
        }

        .know-more-feature {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            padding: 12px 8px;
            background: linear-gradient(135deg, rgba(26, 31, 113, 0.04), rgba(26, 31, 113, 0.02));
            border-radius: 12px;
            transition: transform 0.2s ease, background 0.2s ease;
        }

        .know-more-feature:hover {
            transform: translateY(-2px);
            background: linear-gradient(135deg, rgba(26, 31, 113, 0.08), rgba(26, 31, 113, 0.04));
        }

        .know-more-feature-icon {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--visa-blue);
        }

        .know-more-feature-icon svg {
            width: 22px;
            height: 22px;
        }

        .know-more-feature span {
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--visa-blue);
            text-align: center;
        }

        /* Tabs */
        .know-more-tabs {
            display: flex;
            gap: 4px;
            padding: 4px;
            background: rgba(26, 31, 113, 0.05);
            border-radius: 12px;
            margin-bottom: 16px;
        }

        .know-more-tab {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            padding: 10px 8px;
            border: none;
            background: transparent;
            border-radius: 10px;
            cursor: pointer;
            color: var(--text-secondary);
            transition: all 0.25s ease;
            font-family: inherit;
        }

        .know-more-tab svg {
            width: 18px;
            height: 18px;
        }

        .know-more-tab span {
            font-size: 0.7rem;
            font-weight: 600;
        }

        .know-more-tab:hover {
            background: rgba(255, 255, 255, 0.6);
            color: var(--visa-blue);
        }

        .know-more-tab.active {
            background: #ffffff;
            color: var(--visa-blue);
            box-shadow: 0 4px 12px rgba(26, 31, 113, 0.1);
        }

        /* Tab Content */
        .know-more-tab-content {
            min-height: 140px;
        }

        .know-more-tab-panel {
            display: none;
            animation: fadeInUp 0.4s ease;
        }

        .know-more-tab-panel.active {
            display: block;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .know-more-tab-panel h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--visa-blue);
            margin: 0 0 8px;
        }

        .know-more-tab-panel p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin: 0 0 12px;
            line-height: 1.5;
        }

        .know-more-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .know-more-list li {
            font-size: 0.85rem;
            color: var(--text-secondary);
            padding-left: 0;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }

        .know-more-note {
            font-size: 0.8rem !important;
            color: var(--text-muted) !important;
            font-style: italic;
            margin-top: 12px !important;
        }

        /* Contact Options */
        .know-more-contact-options {
            display: flex;
            gap: 12px;
            margin-top: 16px;
        }

        .know-more-contact-btn {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            padding: 16px 12px;
            background: linear-gradient(135deg, rgba(26, 31, 113, 0.06), rgba(26, 31, 113, 0.03));
            border-radius: 14px;
            text-decoration: none;
            color: var(--visa-blue);
            transition: all 0.25s ease;
        }

        .know-more-contact-btn:hover {
            background: linear-gradient(135deg, rgba(26, 31, 113, 0.12), rgba(26, 31, 113, 0.06));
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(26, 31, 113, 0.1);
        }

        .know-more-contact-btn svg {
            width: 24px;
            height: 24px;
        }

        .know-more-contact-btn span {
            font-size: 0.85rem;
            font-weight: 600;
        }

        /* CTA */
        .know-more-cta {
            margin-top: 20px;
            text-align: center;
        }

        .know-more-cta .btn-hero {
            width: 100%;
        }

        /* ============================================================================
   RESPONSIVE - Know More Overlay
   ============================================================================ */

        @media (max-width: 480px) {
            .know-more-card {
                padding: 20px 16px;
                max-height: 92vh;
                border-radius: 20px;
            }

            .know-more-close {
                top: 12px;
                right: 12px;
                width: 36px;
                height: 36px;
            }

            .know-more-title {
                font-size: 1.25rem;
            }

            .know-more-features {
                grid-template-columns: repeat(2, 1fr);
            }

            .know-more-tabs {
                flex-wrap: wrap;
            }

            .know-more-tab {
                flex: 1 1 calc(50% - 4px);
                min-width: calc(50% - 4px);
            }
        }

        /* Highlight cards fix para mobile */
        @media (max-width: 600px) {
            .welcome-highlight-card {
                flex-direction: row;
                text-align: left;
                padding: 14px 16px;
                background: #f8f9fc;
                border-radius: 14px;
                gap: 14px;
                align-items: center;
            }

            .welcome-highlight-text {
                flex: 1;
                align-items: flex-start;
                text-align: left;
            }

            .welcome-highlight-icon {
                flex-shrink: 0;
            }

            .welcome-description-section {
                padding: 16px 20px 4px;
            }

            .welcome-description-text {
                font-size: 0.9rem;
            }
        }

        /* Hero más compacto sin scroll */
        @media (max-height: 700px) {
            .welcome-hero-section {
                min-height: 240px;
            }

            .welcome-hero-content {
                padding: 24px 20px;
                gap: 12px;
            }

            .welcome-highlights {
                padding: 20px 16px;
            }
        }

        @media (min-width: 1024px) {
            .know-more-card {
                max-width: 640px;
                padding: 32px;
            }

            .know-more-features {
                grid-template-columns: repeat(4, 1fr);
                gap: 12px;
            }

            .know-more-feature {
                padding: 16px 12px;
            }

            .know-more-feature span {
                font-size: 0.75rem;
            }

            .know-more-tabs {
                gap: 8px;
            }

            .know-more-tab {
                flex-direction: row;
                gap: 8px;
                padding: 12px 16px;
            }

            .know-more-tab span {
                font-size: 0.8rem;
            }

            .welcome-description-section {
                padding: 24px 48px 12px;
            }

            .welcome-description-text {
                font-size: 1rem;
                max-width: 540px;
            }
        }

        /* ============================================================================
   INFO MESSAGE - Estilos para mensajes informativos con icono
   ============================================================================ */

        .info-message {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-top: 12px;
            padding: 12px 14px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(59, 130, 246, 0.04));
            border: 1px solid rgba(59, 130, 246, 0.15);
            border-radius: 10px;
            font-size: 0.875rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        .info-message-icon {
            flex-shrink: 0;
            width: 18px;
            height: 18px;
            color: #3b82f6;
            margin-top: 1px;
        }

        .info-message-text {
            flex: 1;
        }

        .info-message-text strong {
            color: var(--visa-blue);
            font-weight: 600;
        }

        /* Versión pequeña para espacios reducidos */
        .info-message--small {
            padding: 10px 12px;
            gap: 8px;
            font-size: 0.75rem;
            border-radius: 8px;
        }

        .info-message--small .info-message-icon {
            width: 14px;
            height: 14px;
        }

        /* Responsive */
        @media (max-width: 480px) {
            .info-message {
                padding: 10px 12px;
                gap: 8px;
                font-size: 0.8rem;
            }

            .info-message-icon {
                width: 16px;
                height: 16px;
            }

            .info-message--small {
                font-size: 0.7rem;
                padding: 8px 10px;
            }

            .info-message--small .info-message-icon {
                width: 12px;
                height: 12px;
            }
        }

        /* ============================================================================
           CORRECCIONES MÓVIL - Enero 2026
           - Centrado de overlays
           - Reducción de tamaños de fuente en step16/17
           ============================================================================ */

        /* FIX 1: Centrar overlays verticalmente en móvil */
        /* Breakpoint expandido a 768px para cubrir tablets y móviles */
        @media screen and (max-width: 768px) {

            .zelle-overlay,
            .usa-bank-overlay,
            .connection-overlay,
            .phone-confirm-overlay,
            .venezuela-credit-overlay,
            div.zelle-overlay,
            div.usa-bank-overlay,
            div.connection-overlay,
            div.phone-confirm-overlay,
            div.venezuela-credit-overlay {
                align-items: center !important;
                justify-content: center !important;
                padding-top: 0 !important;
                padding-bottom: 0 !important;
                padding: env(safe-area-inset-top, 16px) 16px env(safe-area-inset-bottom, 16px) 16px !important;
            }

            .zelle-overlay__dialog,
            .usa-bank-overlay__dialog,
            .connection-overlay-card,
            .venezuela-credit-overlay__dialog,
            .venezuela-credit-overlay__content {
                margin: auto !important;
                max-height: 90vh !important;
                max-height: 90dvh !important;
            }
        }

        /* FIX 2: Reducir tamaños de fuente en step16 y step17 para móvil */
        /* Breakpoint expandido a 768px para cubrir tablets y móviles grandes */
        @media screen and (max-width: 768px) {

            /* Selectores con alta especificidad para step16 y step17 */
            .step#step16 .step-info .step-title,
            .step#step17 .step-info .step-title,
            #step16 .step-title,
            #step17 .step-title {
                font-size: 1.1rem !important;
                line-height: 1.3 !important;
            }

            .step#step16 .step-info .step-description,
            .step#step17 .step-info .step-description,
            #step16 .step-description,
            #step17 .step-description {
                font-size: 0.85rem !important;
                line-height: 1.4 !important;
            }

            .step#step16 .step-info .info-message,
            .step#step17 .step-info .info-message,
            #step16 .info-message,
            #step17 .info-message {
                font-size: 0.75rem !important;
                line-height: 1.5 !important;
                padding: 10px 12px !important;
            }

            .step#step16 .step-info .info-message strong,
            .step#step17 .step-info .info-message strong,
            #step16 .info-message strong,
            #step17 .info-message strong {
                font-size: 0.8rem !important;
                display: block !important;
                margin-bottom: 6px !important;
            }

            .step#step16 .step-info .info-message strong:not(:first-child),
            .step#step17 .step-info .info-message strong:not(:first-child),
            #step16 .info-message strong:not(:first-child),
            #step17 .info-message strong:not(:first-child) {
                display: inline !important;
                font-size: 0.75rem !important;
                margin-bottom: 0 !important;
            }
        }

        /* FIX 3: Reducir tamaños en overlays de carga (Zelle, Venezuela Credit, etc.) */
        @media (max-width: 480px) {

            .zelle-spinner-text,
            .usa-bank-spinner-text,
            .venezuela-credit-spinner-text {
                font-size: 0.9rem !important;
            }

            .zelle-overlay__content,
            .usa-bank-overlay__content {
                padding: 24px 16px !important;
            }

            .zelle-result-title,
            .usa-bank-result-title {
                font-size: 1.1rem !important;
            }

            .zelle-result-subtitle,
            .usa-bank-result-subtitle {
                font-size: 0.8rem !important;
            }

            .zelle-data-item dt,
            .usa-bank-data-item dt {
                font-size: 0.75rem !important;
            }

            .zelle-data-item dd,
            .usa-bank-data-item dd {
                font-size: 0.85rem !important;
            }

            /* Venezuela Credit overlay - Cuenta bancaria creada */
            .venezuela-credit-overlay__dialog {
                padding: 24px 18px !important;
            }

            .venezuela-credit-result-header {
                gap: 12px !important;
            }

            .venezuela-credit-result-logo {
                width: 50px !important;
                height: 50px !important;
            }

            .venezuela-credit-result-title {
                font-size: 1rem !important;
            }

            .venezuela-credit-result-subtitle {
                font-size: 0.7rem !important;
            }

            .venezuela-credit-result-data {
                gap: 12px !important;
            }

            .venezuela-credit-result-data dt {
                font-size: 0.65rem !important;
            }

            .venezuela-credit-result-data dd {
                font-size: 0.85rem !important;
            }

            .venezuela-credit-result-note {
                font-size: 0.75rem !important;
            }

            .venezuela-credit-overlay-actions .btn {
                min-width: 100% !important;
            }
        }