/* ==========================================================================
   PÁGINA: PREGUNTAS FRECUENTES - LISTADO
   ========================================================================== */

/* ==========================================================================
   PÁGINA: PREGUNTAS FRECUENTES - LISTADO
   ========================================================================== */

.axben-faq-section {
    background-color: #f5f5f5; /* Lienzo principal gris claro */
    padding: 0 20px 80px 20px;
    font-family: 'Figtree', sans-serif;
    margin-top: 0; /* CORRECCIÓN: Quitamos el margen para que toque el banner */
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    /* CORRECCIÓN: Flexbox anula el "colapso de márgenes" y permite que la caja verde suba */
    display: flex; 
    flex-direction: column; 
}

/* --- Título Flotante Verde --- */
.faq-title-box {
    background-color: #00A803;
    width: 100%;
    max-width: 409px;
    height: 84px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 40px;
    font-weight: 600; /* Semibold */
    letter-spacing: -0.5px;
    margin: -42px 0 40px 0; /* Este margen negativo ahora sí funcionará perfecto */
    box-shadow: 0 10px 25px rgba(0, 168, 3, 0.2);
    position: relative; 
    z-index: 10; /* Obliga a la caja a renderizarse por encima de todo */
}
/* --- Lista de Preguntas --- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Separación entre cada tarjeta blanca */
}

.faq-item {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 35px 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02); /* Sombra muy sutil */
}

/* Cabecera de la pregunta (Icono + Texto) */
.faq-question-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-icon-q {
    background-color: #def1de; /* Fondo verde muy claro */
    color: #00A803;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.faq-question {
    font-size: 24px;
    font-weight: 600; /* Semibold */
    color: #111111;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

/* Línea separadora */
.faq-divider {
    height: 1px;
    background-color: #f0f0f0;
    margin: 20px 0;
    width: 100%;
}

/* Respuesta */
.faq-answer p {
    font-size: 18px;
    font-weight: 400; /* Regular */
    color: #666666;
    margin: 0;
    line-height: 1.6;
}

/* --- Footer CTA (WhatsApp) --- */
.faq-cta-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
    padding: 0 10px;
}

.faq-cta-text {
    font-size: 24px;
    font-weight: 700;
    color: #111111;
    margin: 0;
    letter-spacing: -0.5px;
}

.faq-btn-whatsapp {
    background-color: #00A803;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.faq-btn-whatsapp i {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.faq-btn-whatsapp:hover {
    background-color: #018a03;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 168, 3, 0.3);
}

/* ==========================================================================
   RESPONSIVE MÓVIL
   ========================================================================== */
@media screen and (max-width: 768px) {
    .faq-title-box {
        font-size: 28px;
        height: 64px;
        margin-top: -32px;
        max-width: 100%;
    }

    .faq-item {
        padding: 25px 20px;
    }

    .faq-question {
        font-size: 20px;
    }

    .faq-answer p {
        font-size: 16px;
    }

    .faq-cta-footer {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .faq-btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
}