.elementor-11896 .elementor-element.elementor-element-ac14d80{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-af2cfd8 */<style>
    /* Eliminar bullets y pseudo-elementos ::before */
    .faq-menu ul li {
        list-style: none !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
    }
    .faq-menu ul li::before {
        content: none !important;
    }

    /* Estilos Generales */
    body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        background-color: #f9f9f9;
    }

    .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 5px;
    }

    h1 {
        text-align: left;
        color: #222;
    }

    /* Sección FAQ - Modificado */
    .faq-section {
        display: flex;
        gap: 30px;
        align-items: flex-start;
    }

    /* Menú Lateral - Modificado */
    .faq-menu {
        flex: 0 0 30%;
        min-width: 400px;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        padding: 30px;
    }

    .faq-menu ul {
        list-style: none;
        padding: 30px;
        margin: -20px;
    }

    /* Ajuste de margen entre ítems */
    .faq-menu ul li {
        margin: -25px 0; 
    }

    /* Botones del menú - Modificado */
    .faq-menu ul li button {
        width: 100%;
        text-align: left;
        background: none;
        border: none;
        font-size: 16px; 
        font-weight: bold;
        color: #6c63ff;
        cursor: pointer;
        padding: 5px 15px;
        white-space: nowrap;
        line-height: 1.3;
    }

    .faq-menu ul li button.active {
        color: #fff;
        background-color: #6c63ff;
        border-radius: 4px;
    }

    /* Contenido FAQ */
    .faq-content {
        flex: 3;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }

    /* Asegura que al inicio las respuestas se vean ocultas */
    .faq-answer {
        display: none; 
    }

    /* Opcional: estilos de las preguntas y respuestas */
    .faq-item {
        margin-bottom: 15px;
        border-bottom: 1px solid #ddd;
        padding: 10px 0;
    }
    .faq-item h2 {
        margin: 0;
        cursor: pointer;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .icon {
        font-size: 18px;
        margin-left: 10px;
    }

    /* Botón "back-to-top" (opcional) */
    .back-to-top {
        position: fixed;
        bottom: 20px;
        right: 20px;
        padding: 10px 15px;
        font-size: 14px;
        background-color: #6c63ff;
        color: #fff;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        display: none; /* Se mostrará dinámicamente */
    }
    .back-to-top.show {
        display: block;
    }

    /* Responsive - Modificado */
    @media (max-width: 768px) {
        .faq-section {
            flex-direction: column;
        }

        .faq-menu {
            flex: 0 0 100%;
            min-width: auto;
            margin-bottom: 20px;
        }

        .faq-menu ul li button {
            font-size: 15px;
        }

        .faq-content {
            padding: 15px;
        }

        .faq-item h2 {
            font-size: 16px;
        }
    }
  </style>/* End custom CSS */