 .faq-accordion-mini {
        max-width: 100%;
        margin: 20px 0;
        font-family: 'Montserrat', sans-serif;
    }

    .faq-item-mini {
        background: #f8f8f8;
        border-radius: 10px;
        margin-bottom: 10px;
        overflow: hidden;
        border: 1px solid #eee;
        transition: all 0.3s ease;
    }

    .faq-header-mini {
        width: 100%;
        padding: 15px 20px;
        background: none;
        border: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        color: #431a69;
        font-weight: 700;
        font-size: 0.9rem;
        text-align: left;
    }

    .faq-header-mini i {
        font-size: 0.8rem;
        transition: transform 0.3s ease;
    }

    .faq-content-mini {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        background: #fff;
    }

    .faq-content-mini p {
        padding: 15px 20px;
        font-size: 0.85rem;
        color: #666;
        line-height: 1.5;
        margin: 0;
    }

    .faq-item-mini.active {
        border-color: #431a69;
        box-shadow: 0 4px 12px rgba(67, 26, 105, 0.05);
    }

    .faq-item-mini.active .faq-header-mini i {
        transform: rotate(180deg);
    }

    .faq-item-mini.active .faq-content-mini {
        max-height: 200px; 
    }
        :root {
            --violeta-corp: #431a69; 
            --violeta-light: #5a248d;
            --gris-fondo: #f2f2f2ff;
            --gris-texto: #3f3f3fff;
            --negro-titulo: #1a1a1a;
            --blanco: #FFFFFF;
            --borde: #e1e4e8;
        }

        body {
            font-family: 'Roboto', sans-serif; 
            line-height: 1.8;
            color: var(--gris-texto);
            margin: 0;
            padding: 0;
            background-color: var(--blanco);
            scroll-behavior: smooth;
        }

        h2, h3 {
            font-family: 'Montserrat', sans-serif;
            color: var(--negro-titulo);
        }

        .section {
            padding: 150px 10px;
            display: flex;
            justify-content: center;
            border-bottom: 1px solid var(--borde);
        }

        .container {
            max-width: 900px;
            width: 100%;
        }

        .bg-white { background-color: var(--blanco); }
        .bg-gray { background-color: var(--gris-fondo); }

        .title-wrapper {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 35px;
        }

        .title-wrapper h2 {
            margin: 0;
            text-transform: uppercase;
            font-weight: 700;
            font-size: 1.5rem;
            letter-spacing: 1px;
            color: var(--violeta-corp);
        }

        .icon-minimal {
            width: 35px;
            height: 35px;
            fill: var(--violeta-corp);
            flex-shrink: 0;
        }

       

        .intro-text {
            font-size: 1.05rem;
            color: #555;
            margin-bottom: 30px;
        }

        .btn-download {
            display: inline-flex;
            align-items: center;
            margin-top: 10px;
            padding: 12px 24px;
            background-color: var(--blanco);
            color: var(--violeta-corp);
            border: 2px solid var(--violeta-corp);
            border-radius: 6px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-download:hover {
            background-color: var(--violeta-corp);
            color: var(--blanco);
            box-shadow: 0 4px 12px rgba(67, 26, 105, 0.2);
            transform: translateY(-2px);
        }

        .step-content a {
            color: var(--violeta-corp);
            font-weight: 700;
            text-decoration: underline;
        }

        .doc-item {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid var(--violeta-corp);
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            margin-bottom: 25px;
        }

        .faq-item {
            border-bottom: 1px solid var(--borde);
            background: #fff;
            margin-bottom: 10px;
            border-radius: 8px;
            overflow: hidden;
        }
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            cursor: pointer;
            font-weight: 600;
            font-family: 'Montserrat', sans-serif;
            color: var(--negro-titulo);
        }
        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--violeta-corp);
            transition: transform 0.3s;
        }
        .faq-toggle { display: none; }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
            padding: 0 20px;
            color: var(--gris-texto);
        }
        .faq-toggle:checked ~ .faq-answer {
            max-height: 800px;
            padding: 10px 20px 25px 20px;
        }
        .faq-toggle:checked ~ .faq-question::after { content: '−'; }

        .stepper { position: relative; margin-top: 40px; }
        .step {
            position: relative;
            padding-left: 65px;
            margin-bottom: 45px;
        }
        .step::before {
            content: "";
            position: absolute;
            left: 20px;
            top: 40px;
            width: 2px;
            height: calc(100% - 20px);
            background-color: var(--borde);
        }
        .step:last-child::before { display: none; }
        .step-number {
            position: absolute;
            left: 0; top: 0;
            width: 42px; height: 42px;
            background-color: var(--violeta-corp);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center; justify-content: center;
            font-weight: 700;
            z-index: 2;
        }
        .step-content h3 { margin: 0 0 10px 0; font-size: 1.2rem; color: var(--violeta-corp); }
        
        strong { color: #222; font-weight: 600; }

        @media (max-width: 768px) {
            .section { padding: 50px 20px; }
            .title-wrapper h2 { font-size: 1.2rem; }
        }