:root {
            --primary-blue: #27308d;
        }
        body {
            font-family: 'Montserrat', sans-serif;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
        }
        p {
            font-family: 'Montserrat', sans-serif;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .bg-main-gradient {
            background: radial-gradient(circle at center, #3b4cb8 0%, #1e266e 100%);
            background-image: url('../img/fondoinicio.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            min-height: 100vh;
        }
        .glass-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 24px;
        }
        .bgPanIni{
            background: #7B86DF;
            background: linear-gradient(0deg, rgba(123, 134, 223, 1) 0%, rgba(48, 60, 158, 1) 100%, rgba(48, 60, 158, 1) 100%);
        }
        /* Stepper Vertical (Desktop) */
        .step-line {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            z-index: 0;
        }
        @media (min-width: 768px) {
            .step-line {
                left: 15px;
                top: 0;
                bottom: 0;
                width: 2px;
            }
        }
        /* Stepper Horizontal (Mobile) */
        @media (max-width: 767px) {
            .step-line {
                top: 15px;
                left: 0;
                right: 0;
                height: 2px;
            }
            .step-text {
                display: none; /* Ocultar texto en smart */
            }
            #sidebar-steps {
                flex-direction: row !important;
                justify-content: space-between;
                padding-bottom: 0 !important;
            }
        }
        .step-dot {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            flex-shrink: 0;
        }
        .step-dot.active {
            background: #ffffff;
            box-shadow: 0 0 10px rgba(255,255,255,0.5);
            border: 2px solid #fff;
        }
        .step-dot.completed {
            background: #4ade80;
            border: 2px solid #4ade80;
        }
        .step-dot.pending {
            background: #1e266e;
            border: 2px solid #4a58d1;
        }
        .option-card {
            border: 2px solid transparent;
            transition: all 0.2s;
            cursor: pointer;
        }
        .option-card:hover {
            border-color: var(--primary-blue);
            background-color: #f9fafb;
        }
        .option-card.selected {
            border-color: var(--primary-blue);
            background-color: #eff6ff;
        }
        .sidebar-bg {
            background-color: var(--primary-blue);
        }
        .scrollbar-hide::-webkit-scrollbar { display: none; }
        .scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }
        
        .label-text {
            font-size: 3rem;
            font-weight: 700;
            color: black;
            line-height: 1;
        }
        @media (max-width:576px) {
            .step-dot {
                margin-top: 5px;
                width: 22px;
                height: 22px;
        }
            .bg-main-gradient {
                min-height: 100%;
                background-image: url('../img/FondoCelular1.jpg');
                background-size: cover;
                background-position: top;
                background-repeat: no-repeat;
                padding: 15%;
        }
            .label-text {
                font-size: 2rem;
        }
        }