/* ══════════════════════════════════════════════
   NET FAQ PERGUNTAS — net-faq-perguntas
   Pixel-faithful to the reference HTML:
   - Tailwind tokens mapped to CSS variables
   - Brand colors: gold #C5A059, charcoal #1C1C1C
   - Eyebrow: 10px / 0.3em / 700
   - Heading: text-4xl (36px), regular weight
   - Container: max-w-4xl (896px), section padding
   - Items: space-y-6 (24px between), pb-6 (24px bottom), gold/30 divider
   - Question: serif text-lg (18px)
   - Answer: text-sm (14px), charcoal/60
   - Icon: +/− characters (no SVG), text-2xl (24px), gold
   - Disclaimer: 10px italic, centered, charcoal/40, mt-16
   ══════════════════════════════════════════════ */
.net-faq-perguntas {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.net-faq-perguntas *,
.net-faq-perguntas *::before,
.net-faq-perguntas *::after {
    box-sizing: border-box;
}

.net-faq-perguntas__inner {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 896px;
    padding: 80px 24px;
}

.net-faq-perguntas__inner.is-full {
    max-width: none !important;
}

/* ---------- Header ---------- */
.net-faq-perguntas__header {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 0;
}

:where(.net-faq-perguntas__eyebrow) {
    display: block;
    margin: 0;
    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #C5A059;
    margin-bottom: 16px;
}

:where(.net-faq-perguntas__heading) {
    margin: 0;
    font-family: inherit;
    font-size: 36px;
    line-height: 1.16;
    font-weight: 400;
    color: #1C1C1C;
    margin-bottom: 64px;
}

/* ---------- List / items ---------- */
.net-faq-perguntas__list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.net-faq-perguntas__item {
    border-bottom: 1px solid rgba(197, 160, 89, .3);
    padding-bottom: 24px;
}

.net-faq-perguntas__item:last-child {
    border-bottom: 0;
}

/* ---------- Trigger (button) ---------- */
.net-faq-perguntas__trigger {
    appearance: none !important;
    -webkit-appearance: none !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border: 0 !important;
    box-shadow: none !important;
    outline: 0;
    padding: 0 !important;
    margin: 0 !important;
    min-height: 0 !important;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    cursor: pointer;
    text-align: left;
    color: inherit !important;
    font: inherit;
    font-family: inherit;
    text-transform: none !important;
    border-radius: 0 !important;
}

.net-faq-perguntas__trigger:hover,
.net-faq-perguntas__trigger:focus,
.net-faq-perguntas__trigger:active,
.net-faq-perguntas__trigger.is-open {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border-color: transparent !important;
    box-shadow: none !important;
    color: inherit !important;
}

.net-faq-perguntas__trigger:focus-visible {
    outline: 1px solid rgba(197, 160, 89, .65) !important;
    outline-offset: 4px;
    border-radius: 2px !important;
}

:where(.net-faq-perguntas__question) {
    flex: 1 1 auto;
    min-width: 0;
    font-family: inherit;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    color: #1C1C1C;
    transition: color .25s ease;
}

.net-faq-perguntas__trigger:hover .net-faq-perguntas__question,
.net-faq-perguntas__trigger:focus .net-faq-perguntas__question,
.net-faq-perguntas__trigger:active .net-faq-perguntas__question {
    color: inherit;
}

/* ---------- Icon (+/− characters) ---------- */
.net-faq-perguntas__icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    color: #C5A059;
    font-family: inherit;
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    transition: transform .25s ease;
    user-select: none;
    /* Render the two glyphs via data attribute; JS toggles between + and − */
}

.net-faq-perguntas__trigger:hover .net-faq-perguntas__icon {
    transform: rotate(90deg);
}

/* ---------- Panel (answer) ---------- */
.net-faq-perguntas__panel {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height .35s ease, opacity .25s ease, margin-top .25s ease;
    margin-top: 0;
}

.net-faq-perguntas__panel.is-open {
    max-height: 1200px;
    opacity: 1;
    margin-top: 16px;
}

:where(.net-faq-perguntas__answer) {
    margin: 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.65;
    font-weight: 400;
    color: rgba(28, 28, 28, .6);
    max-width: 100%;
}

/* ---------- Disclaimer ---------- */
:where(.net-faq-perguntas__disclaimer) {
    margin: 64px 0 0;
    text-align: center;
    font-family: inherit;
    font-size: 10px;
    line-height: 1.7;
    font-style: italic;
    font-weight: 400;
    color: rgba(28, 28, 28, .4);
    width: 100%;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
    .net-faq-perguntas__inner {
        padding: 64px 20px;
    }
    :where(.net-faq-perguntas__heading) {
        font-size: 32px;
        margin-bottom: 48px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .net-faq-perguntas__inner {
        padding: 48px 16px;
    }
    :where(.net-faq-perguntas__heading) {
        font-size: 28px;
        margin-bottom: 40px;
    }
    :where(.net-faq-perguntas__question) {
        font-size: 17px;
    }
    .net-faq-perguntas__trigger {
        gap: 16px;
    }
    :where(.net-faq-perguntas__answer) {
        font-size: 14px;
    }
    .net-faq-perguntas__list {
        gap: 20px;
    }
    :where(.net-faq-perguntas__disclaimer) {
        margin-top: 40px;
    }
}
