/* ============================================
   FAQ - ESTILOS
   ============================================ */

/* ============================================
   DESKTOP (ORIGINAL)
   ============================================ */

.faq-desktop {
    background: #fff;
    padding: 80px 0;
}

.accordion-item-custom {
    background: #fafaf8;
    border-radius: 20px;
    margin-bottom: 16px;
    border: 1px solid rgba(46, 24, 9, 0.04);
    overflow: hidden;
    transition: 0.3s;
}

.accordion-button-custom {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: #2e1809;
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', sans-serif;
    gap: 20px;
    transition: 0.3s;
}

.accordion-button-custom:hover {
    color: #572b07;
}

.accordion-button-custom i {
    color: #572b07;
    font-size: 20px;
    transition: 0.3s;
    flex-shrink: 0;
}

.accordion-button-custom[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.accordion-body-custom {
    padding: 0 30px 28px;
    color: #555;
    line-height: 1.9;
    font-size: 16px;
}

/* ============================================
   MOBILE (NOVO)
   ============================================ */

.faq-mobile {
    background: #fff;
    padding: 50px 0;
}

.section-title-mobile-faq {
    color: #2e1809;
    font-size: 28px;
    line-height: 1.1;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    margin-top: 12px;
}

/* ===== ACORDION MOBILE ===== */
.accordion-item-custom-mobile {
    background: #fafaf8;
    border-radius: 16px;
    margin-bottom: 12px;
    border: 1px solid rgba(46, 24, 9, 0.04);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item-custom-mobile:hover {
    border-color: rgba(87, 43, 7, 0.15);
}

.accordion-button-custom-mobile {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: #2e1809;
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', sans-serif;
    gap: 16px;
    transition: all 0.3s ease;
}

.accordion-button-custom-mobile:hover {
    color: #572b07;
}

.accordion-button-custom-mobile i {
    color: #572b07;
    font-size: 18px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion-button-custom-mobile[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.accordion-body-custom-mobile {
    padding: 0 20px 20px;
    color: #555;
    line-height: 1.7;
    font-size: 14px;
}

/* ============================================
   RESPONSIVIDADE MOBILE EXTRA
   ============================================ */

@media (max-width: 480px) {
    .faq-mobile {
        padding: 40px 0;
    }

    .section-title-mobile-faq {
        font-size: 24px;
    }

    .accordion-button-custom-mobile {
        font-size: 14px;
        padding: 16px 16px;
        gap: 12px;
    }

    .accordion-button-custom-mobile i {
        font-size: 16px;
    }

    .accordion-body-custom-mobile {
        font-size: 13px;
        padding: 0 16px 16px;
    }

    .accordion-item-custom-mobile {
        border-radius: 14px;
        margin-bottom: 10px;
    }
}

/* ============================================
   CONTROLE DE EXIBIÇÃO
   ============================================ */

/* Mobile: mostra mobile, esconde desktop */
@media (max-width: 767px) {
    .faq-desktop {
        display: none !important;
    }
    .faq-mobile {
        display: block !important;
    }
}

/* Desktop: mostra desktop, esconde mobile */
@media (min-width: 768px) {
    .faq-desktop {
        display: block !important;
    }
    .faq-mobile {
        display: none !important;
    }
}