:root {
            --bs-primary: #0463ed;
            --bs-primary-rgb: 59, 130, 246;
            --bs-primary-hover: #0463ed;
            --bs-primary-light: #eff6ff;
            --bs-primary-dark: #1e3a8a;
            --bs-accent: #0ea5e9;
            --bs-font-sans-serif: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif;
            --bs-body-color: #0f172a;
            --bs-secondary-color: #475569;
        }

        body {
            font-family: var(--bs-font-sans-serif);
            color: var(--bs-body-color);
            scroll-behavior: smooth;
        }

        /* Utilities */
        .text-primary-custom { color: var(--bs-primary) !important; }
        .bg-primary-custom { background-color: var(--bs-primary) !important; }
        .bg-primary-light { background-color: var(--bs-primary-light) !important; }
        .text-primary-dark { color: var(--bs-primary-dark) !important; }
        .text-secondary-custom { color: var(--bs-secondary-color) !important; }
        
        .logo_naxi{
            width: 110px;
            vertical-align: bottom;
        }
        .btn-primary-custom {
            background-color: var(--bs-primary);
            border-color: var(--bs-primary);
            color: white;
            font-weight: 600;
        }
        .btn-primary-custom:hover, .btn-primary-custom:focus {
            background-color: var(--bs-primary-hover);
            border-color: var(--bs-primary-hover);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3), 0 4px 6px -4px rgba(59, 130, 246, 0.3);
        }
        
        .btn-outline-custom {
            color: var(--bs-body-color);
            background-color: white;
            border: 1px solid #e2e8f0;
            font-weight: 600;
        }
        .btn-outline-custom:hover {
            background-color: #f8fafc;
            color: var(--bs-body-color);
            border-color: #cbd5e1;
        }

        .transition-all { transition: all 0.3s ease; }

        /* Animations */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        .float-animation { animation: float 3s ease-in-out infinite; }

        .glass-effect {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }

        /* Hero Section Specifics */
        .hero-section {
            padding-top: 120px;
            padding-bottom: 80px;
            position: relative;
            overflow: hidden;
           
        }
        @media (min-width: 992px) {
            .hero-section {
                padding-top: 160px;
                padding-bottom: 160px;
                background-image: url("../siteimg/naxi-hero-banner.jpg");
                background-size: cover;
                background-position: right;
            }
        }

        .hero-bg-blob-1 {
            position: absolute;
            top: -10%;
            left: -10%;
            width: 40%;
            height: 40%;
            background-color: var(--bs-primary-light);
            border-radius: 50%;
            filter: blur(60px);
            z-index: -1;
        }
        .hero-bg-blob-2 {
            position: absolute;
            bottom: 10%;
            right: -5%;
            width: 30%;
            height: 30%;
            background-color: #f0f9ff;
            border-radius: 50%;
            filter: blur(60px);
            z-index: -1;
        }

        .badge-new {
            display: inline-flex;
            align-items: center;
            padding: 0.35rem 1rem;
            border-radius: 50rem;
            background-color: var(--bs-primary-light);
            border: 1px solid #dbeafe;
            color: var(--bs-primary-hover);
            font-size: 0.875rem;
            font-weight: 500;
        }

        
        .floating-notification {
            background-color: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1); /* Sombra estilo iPhone, profunda pero suave */
            padding: 15px 20px;
            position: absolute;
            z-index: 10;
            border: 1px solid #f2f2f2; /* Un borde sutil */
            animation: float-animation 3s ease-in-out infinite;
            min-width: 250px;
            pointer-events: none; /* Evita que la tarjeta bloquee clics si está sobre un botón */
            display: none;
        }

        @media (min-width: 992px) {

            .floating-notification {
                background-color: white;
                border-radius: 20px;
                box-shadow: 0 10px 40px rgba(0,0,0,0.1); /* Sombra estilo iPhone, profunda pero suave */
                padding: 15px 20px;
                position: absolute;
                z-index: 10;
                border: 1px solid #f2f2f2; /* Un borde sutil */
                animation: float-animation 3s ease-in-out infinite;
                min-width: 250px;
                pointer-events: none; /* Evita que la tarjeta bloquee clics si está sobre un botón */
                display: block;
            }
            
        }

         

        /* Elementos internos de la notificación */
        .floating-notification .icon-circle {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .floating-notification .notification-title {
            color: #929292; /* Gris pálido */
            font-weight: bold;
            font-size: 0.8rem;
            letter-spacing: 0.5px;
            margin-bottom: 2px;
            text-transform: uppercase;
        }

        .floating-notification .notification-text {
            color: #111827;
            font-weight: 800; /* Bolder */
            font-size: .7rem;
            margin-bottom: 0;
        }

        .floating-notification .notification-description {
            color: #4b5563;
            font-size: 1rem;
            margin-bottom: 0;
        }

        /* Animación de flotación sutil */
        @keyframes float-animation {
            0% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
            100% { transform: translateY(0); }
        }

        /* Retrasos de animación para mayor dinamismo visual */
        .floating-notification:nth-child(2) { animation-delay: 1.5s; }
        .floating-notification:nth-child(3) { animation-delay: 0.8s; }

        /* Cards */
        .feature-card {
            background-color: #f8fafc;
            padding: 2rem;
            border-radius: 1rem;
            border: 1px solid #f1f5f9;
            transition: all 0.3s ease;
            height: 100%;
        }
        .feature-card:hover {
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            transform: translateY(-4px);
        }
        .icon-box {
            width: 3.5rem;
            height: 3.5rem;
            background-color: #dbeafe;
            color: var(--bs-primary-hover);
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        
        /* Pricing */
        .pricing-card {
            border: 1px solid #e2e8f0;
            border-radius: 1.5rem;
            padding: 2rem;
            background-color: white;
            transition: all 0.3s ease;
            height: 100%;
        }
        .pricing-card:hover {
            border-color: var(--bs-primary);
        }
        .pricing-card.popular {
            border: 2px solid var(--bs-primary);
            box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.1), 0 10px 10px -5px rgba(59, 130, 246, 0.04);
            position: relative;
        }
        .popular-badge {
            position: absolute;
            top: -0.75rem;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--bs-primary);
            color: white;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.25rem 1rem;
            border-radius: 50rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .experiencias{
            background-color: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            padding: 15px 20px;
            border: 1px solid #f2f2f2;
            animation: float-animation 3s ease-in-out infinite;
            min-width: 250px;
            pointer-events: none;
            display: block;
        }

    
        
        .experiencias:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        }

        /* Alineaciones específicas para desktop */
        @media (min-width: 992px) {
            .experiencias.text-lg-end {
                margin-left: auto; /* Empuja las tarjetas de la izq hacia el teléfono */
            }
            .experiencias.text-lg-start {
                margin-right: auto; /* Empuja las tarjetas de la der hacia el teléfono */
            }
        }



        /* Sections */
        .section-padding { padding-top: 7rem; padding-bottom: 7rem; }
        .bg-light-custom { background-color: #f8fafc; }
        
        .payment-section-bg {
            background-color: var(--bs-primary-light);
            border-radius: 3rem;
            padding: 3rem;
            position: relative;
            overflow: hidden;
        }
        @media (min-width: 992px) {
            .payment-section-bg { padding: 5rem; }
        }
        
        .cta-section-bg {
            background-color: var(--bs-primary-hover);
            border-radius: 2.5rem;
            padding: 3rem;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
            background-image: url("../siteimg/naxi-login-background.svg");
        }
        @media (min-width: 768px) {
            .cta-section-bg { padding: 5rem; }
        }
        
        .cta-btn {
            background-color: white;
            color: var(--bs-primary-hover);
            font-weight: 700;
            padding: 1rem 2.5rem;
            border-radius: 1rem;
            font-size: 1.125rem;
            display: inline-block;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 20px 25px -5px rgba(30, 58, 138, 0.2);
        }
        .cta-btn:hover {
            background-color: #f8fafc;
            transform: scale(1.05);
            color: var(--bs-primary-hover);
        }

        /* Footer */
        .footer {
            background-color: #191919;
            color: white;
            padding-top: 4rem;
            padding-bottom: 2rem;
        }
        .footer a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .footer a:hover {
            color: white;
        }


        .bg-purple { background-color: #7c3aed !important; }
        .bg-purple-subtle { background-color: #ede9fe !important; }
        .border-purple-subtle { border-color: #ddd6fe !important; }
        
        .bg-brown { background-color: #d4a373 !important; }
        .bg-brown-subtle { background-color: #fdf5ec !important; }
        .border-brown-subtle { border-color: #eeddc8 !important; }

.col-lg-4.order-1.order-lg-2 {
    perspective: 1000px;
}


@keyframes tilt-3d {
    0% {
        transform: rotateY(-5deg) rotateX(2deg) translateY(0px);
    }
    50% {
        transform: rotateY(5deg) rotateX(-2deg) translateY(-15px);
    }
    100% {
        transform: rotateY(-5deg) rotateX(2deg) translateY(0px);
    }
}

.mockup-phone-tall.float-animation {
    animation: tilt-3d 6s ease-in-out infinite;
    transform-style: preserve-3d;
    
   
}

.mockup-phone-tall.float-animation:hover {
    animation-play-state: paused;
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
    
}


/* Animación del láser escaneando el QR */
@keyframes scan-laser {
    0% { top: 5%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 95%; opacity: 0; }
}

.qr-scanner-container {
    position: relative;
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid #f1f5f9;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

.qr-laser {
    position: absolute;
    left: 10%;
    width: 80%;
    height: 3px;
    background-color: var(--bs-primary);
    box-shadow: 0 0 10px 2px rgba(59, 130, 246, 0.5);
    animation: scan-laser 2.5s ease-in-out infinite;
    z-index: 10;
}

.div-block-8402 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    border-radius: 18px;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 16px;
    padding-bottom: 16px;
    display: flex;
}

.image-3255 {
    width: 56px;
    max-width: 56px;
}

.btn-primary-custom {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: white;
    font-weight: 600;
}
.btn-primary-custom:hover {
    background-color: var(--bs-primary-hover);
    border-color: var(--bs-primary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
}

.form-control, .form-select {
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    font-size: 0.95rem;
}
.form-control:focus, .form-select:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.25);
}
.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.bg-blob-1 {
    position: absolute; top: -10%; left: -10%; width: 50%; height: 50%;
    background-color: var(--bs-primary-light); border-radius: 50%; filter: blur(80px); z-index: -1;
}
.bg-blob-2 {
    position: absolute; bottom: -10%; right: -5%; width: 40%; height: 40%;
    background-color: #e0e7ff; border-radius: 50%; filter: blur(80px); z-index: -1;
}