/* ========================================================
   ESTILOS SECCIÓN PREGUNTAS FRECUENTES (FAQ)
   ======================================================== */

   .faq-section {
    background-color: #000000;
    padding: 100px 0;
    min-height: 70vh;
}

.faq-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 40px;
}

/* Columna Izquierda (Título FAQ Gigante) */
.faq-left {
    flex: 1;
    min-width: 300px;
}

.faq-title-large {
    font-size: 100px;
    font-family: 'Exo 2', sans-serif;
    color: #ffffff;
    font-weight: 700;
    line-height: 1;
    margin: 0;
}

/* Columna Derecha (Acordeones) */
.faq-right {
    flex: 2;
    min-width: 300px;
}

/* Tarjeta individual de pregunta */
.faq-item {
    background-color: rgba(255, 255, 255, 0.05); /* Gris muy oscuro casi negro */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Borde sutil */
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

/* Botón de la pregunta */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    font-family: 'Exo 2', sans-serif;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    outline: none;
}

/* El Icono (+ / -) */
.faq-icon {
    color: #17c633; /* Verde corporativo */
    font-size: 32px;
    font-weight: 300;
    line-height: 1;
    margin-left: 20px;
}

/* Contenedor de la Respuesta (Oculto por defecto) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.faq-answer p {
    padding: 0 30px 25px 30px; /* Espaciado interno */
    margin: 0;
    color: #cccccc;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.7em;
}

/* Modo Móvil */
@media (max-width: 768px) {
    .faq-title-large {
        font-size: 60px;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .faq-question {
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .faq-answer p {
        padding: 0 20px 20px 20px;
    }
}