/* ========================================= */
/* ===== ESTILOS DE PREGUNTAS FRECUENTES (DARK) ===== */
/* ========================================= */

.faq-section {
    padding: 60px 20px;
    /* El fondo ya lo controla el body, así que lo dejamos transparente */
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid #333; /* Línea separadora sutil y oscura */
    margin-bottom: 5px;
}

/* --- El botón de la pregunta --- */
.faq-question {
    background-color: transparent;
    color: #ffffff; /* CORRECCIÓN: Texto blanco brillante */
    padding: 18px 10px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Icono de la flecha/más */
.faq-question::after {
    content: '\002B'; /* Signo de más (+) */
    font-size: 1.5rem;
    color: #FFD700; /* Dorado */
    font-weight: bold;
    float: right;
    margin-left: 10px;
}

/* --- Estado Activo (Cuando está abierto) --- */
.faq-question.active, 
.faq-question:hover {
    color: #FFD700; /* El texto se vuelve dorado */
}

.faq-question.active::after {
    content: '\2212'; /* Signo de menos (-) */
}

/* --- La Respuesta (El texto que se despliega) --- */
.faq-answer {
    padding: 0 15px;
    background-color: transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    border-left: 2px solid #FFD700; /* Línea dorada decorativa a la izquierda */
    margin-left: 10px;
}

.faq-answer p {
    color: #E0E0E0; /* Texto gris claro para leer cómodo */
    margin: 15px 0;
    line-height: 1.6;
}