        .titulo {

            font-weight: 700;
        }


        .texto {

            font-size: 1.2rem !important;
        }


        .faq-lista-section {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            border-radius: 40px;
            padding: 3rem;
            box-shadow: 0 20px 40px rgba(9, 83, 116, 0.1);
            border: 3px solid var(--azul);
            position: relative;
        }

        .faq-lista-section::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            bottom: 10px;
            border: 2px dashed var(--azul);
            border-radius: 30px;
            pointer-events: none;
            opacity: 0.5;
        }

        .faq-lista-header {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .faq-lista-header h2 {
            font-size: 2.5rem;
            color: var(--azul);
            margin-bottom: 0.5rem;
        }

        .faq-lista-header h2 span {
            color: var(--verde);
        }

        .faq-lista-header p {
            color: var(--gris);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .faq-lista-contenedor {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .faq-lista-item {
            background: var(--blanco);
            border-radius: 20px;
            overflow: hidden;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(9, 83, 116, 0.05);
        }

        .faq-lista-item:hover {
            border-color: var(--verde);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(9, 83, 116, 0.1);
        }

        .faq-lista-item.active {
            border-color: var(--azul);
            background: white;
        }

        .faq-lista-pregunta {
            padding: 1.2rem 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            background: white;
        }

        .faq-lista-icono {
            width: 36px;
            height: 36px;
            background: var(--azul);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
            transition: 0.3s;
            flex-shrink: 0;
        }

        .faq-lista-item:hover .faq-lista-icono {
            background: var(--verde);
            color: var(--gris);
        }

        .faq-lista-item.active .faq-lista-icono {
            background: var(--verde);
            color: var(--gris);
        }

        .faq-lista-pregunta h3 {
            flex: 1;
            font-size: 1rem;
            font-weight: 600;
            color: var(--azul);
        }

        .faq-lista-flecha {
            color: var(--verde-claro);
            transition: 0.3s;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .faq-lista-item.active .faq-lista-flecha {
            transform: rotate(90deg);
            color: var(--verde);
        }

        .faq-lista-respuesta {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            background: white;
            color: var(--gris);
            line-height: 1.6;
        }

        .faq-lista-item.active .faq-lista-respuesta {
            max-height: 200px;
            padding: 0 1.5rem 1.5rem 1.5rem;
        }

        .faq-lista-respuesta p {
            font-size: 1.1rem;
            padding-left: 3rem;
        }

        .faq-lista-respuesta strong {
            color: var(--azul);
        }

        .faq-lista-badge {
            display: inline-block;
            background: var(--verde-claro);
            color: var(--gris);
            padding: 0.2rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-left: 3rem;
            margin-top: 0.5rem;
        }

        .faq-lista-cta {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px dashed var(--verde-claro);
        }

        .faq-lista-cta p {
            color: var(--gris);
            margin-bottom: 1rem;
        }

        .faq-lista-botones {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .faq-lista-btn {
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: 0.3s;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .faq-lista-btn-primario {
            background: var(--azul);
            color: white;
            border: 2px solid var(--verde-claro);
        }

        .faq-lista-btn-primario:hover {
            background: var(--verde);
            color: var(--gris);
            transform: translateY(-2px);
        }

        .faq-lista-btn-secundario {
            background: transparent;
            color: var(--azul);
            border: 2px solid var(--azul);
        }

        .faq-lista-btn-secundario:hover {
            background: var(--azul);
            color: white;
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .faq-lista-section {
                padding: 2rem 1.5rem;
            }
            
            .faq-lista-pregunta h3 {
                font-size: 0.95rem;
            }
            
            .faq-lista-respuesta p {
                padding-left: 0;
            }
            
            .faq-lista-badge {
                margin-left: 0;
            }
        }