:root {
    color-scheme: dark;
    --faq-bg: #030303;
    --faq-panel: #0b0b0b;
    --faq-text: rgba(255, 255, 255, 0.88);
    --faq-muted: rgba(255, 255, 255, 0.48);
    --faq-line: rgba(255, 255, 255, 0.075);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--faq-bg); }
body {
    margin: 0;
    min-width: 320px;
    overflow-x: clip;
    background:
        radial-gradient(circle at 16% -4%, rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.055), transparent 25rem),
        linear-gradient(180deg, #050505 0%, #020202 100%);
    color: var(--faq-text);
    font-family: Jost, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.faq-shell { width: min(1180px, calc(100% - 72px)); margin-inline: auto; }
.faq-skip {
    position: fixed;
    left: 16px;
    top: -60px;
    z-index: 50;
    padding: 10px 14px;
    border-radius: 8px;
    background: var(--cor-primaria, #d4af37);
    color: #080808;
    transition: top 160ms ease;
}
.faq-skip:focus { top: 14px; }

.faq-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
    background: rgba(3, 3, 3, 0.82);
    backdrop-filter: blur(18px);
}
.faq-header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.faq-brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.faq-brand img {
    display: block;
    width: 168px;
    height: 76px;
    max-height: none;
    object-fit: contain;
    object-position: left center;
}
.faq-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 15px;
    gap: 9px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    color: #f4f1e9;
    background: rgba(255, 255, 255, .025);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: none;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.faq-back-arrow {
    color: var(--cor-primaria, #d4af37);
    font-size: 17px;
    line-height: 1;
}
.faq-back-label { display: inline; }
.faq-back:hover,
.faq-back:focus-visible {
    color: #f4f1e9;
    border-color: rgba(var(--cor-primaria-rgb, 212, 175, 55), .48);
    background: rgba(var(--cor-primaria-rgb, 212, 175, 55), .07);
    transform: translateX(-2px);
}
.faq-back:focus-visible {
    outline: 2px solid rgba(var(--cor-primaria-rgb, 212, 175, 55), .72);
    outline-offset: 3px;
}

.faq-main { min-height: calc(100vh - 160px); }
.faq-hero { padding: clamp(40px, 6vw, 76px) 0 clamp(38px, 5vw, 58px); }
.faq-hero-inner { margin-inline: auto; }
.faq-eyebrow {
    margin: 0 0 14px;
    color: rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.9);
    font-size: 11px;
    font-weight: 680;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}
.faq-hero h1 {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.15;
}
.faq-lead {
    max-width: 720px;
    margin: 18px 0 0;
    color: var(--faq-muted);
    font-size: 16px;
    line-height: 1.7;
}

.faq-section { padding: 0 0 clamp(72px, 9vw, 112px); }
.faq-list {
    border-top: 1px solid var(--faq-line);
}
.faq-item { border-bottom: 1px solid var(--faq-line); }
.faq-item summary {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 22px;
    gap: 18px;
    align-items: center;
    min-height: 82px;
    padding: 20px 2px;
    list-style: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.76);
    transition: color 160ms ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover,
.faq-item summary:focus-visible,
.faq-item[open] summary { color: rgba(255, 255, 255, 0.98); }
.faq-index {
    color: rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.62);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
}
.faq-question { font-size: 16px; font-weight: 500; line-height: 1.5; }
.faq-toggle { position: relative; width: 18px; height: 18px; opacity: 0.68; }
.faq-toggle::before, .faq-toggle::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 11px; height: 1px;
    border-radius: 99px;
    background: rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.85);
    transform: translate(-50%, -50%);
    transition: opacity 160ms ease, transform 160ms ease;
}
.faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-toggle::after { opacity: 0; transform: translate(-50%, -50%) rotate(0); }
.faq-answer { padding: 0 42px 28px 62px; }
.faq-answer p {
    max-width: 940px;
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 15px;
    line-height: 1.82;
    white-space: pre-line;
}

.faq-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 18px 0 calc(18px + env(safe-area-inset-bottom));
}
.faq-footer p {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px 7px;
    margin: 0;
    color: rgba(255, 255, 255, 0.32);
    font-size: 8.5px;
    letter-spacing: 0.045em;
    line-height: 1.65;
    text-align: center;
}
.faq-footer strong { color: rgba(255, 255, 255, 0.53); font-weight: 500; }
.faq-footer .faq-vip { color: rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.78); }

@media (max-width: 800px) {
    .faq-shell { width: calc(100% - 48px); }
}

@media (max-width: 720px) {
    .faq-shell { width: calc(100% - 40px); }
    .faq-header-inner { min-height: 76px; }
    .faq-brand img { width: 112px; height: 70px; max-height: none; }
    .faq-back { min-height: 42px; padding-inline: 13px; }
    .faq-back-arrow { font-size: 18px; }
    .faq-hero { padding-top: 44px; padding-bottom: 34px; }
    .faq-hero h1 { font-size: clamp(30px, 9vw, 38px); line-height: 1.15; }
    .faq-lead { margin-top: 16px; font-size: 15px; line-height: 1.7; }
    .faq-item summary {
        grid-template-columns: 30px minmax(0, 1fr) 18px;
        gap: 12px;
        min-height: 74px;
        padding-block: 17px;
    }
    .faq-question { font-size: 15px; }
    .faq-answer { padding: 0 28px 24px 42px; }
    .faq-answer p { font-size: 14px; line-height: 1.78; }
}

@media (prefers-reduced-motion: reduce) {
    .faq-back { transition: none; }
}

@media (max-width: 360px) {
    .faq-brand img { width: 94px; height: 70px; }
}
