/* ===== FAQ (layout com box por pergunta) ===== */
.faq-section {
    /* sem borda, sem padding, sem background */
    margin-top: 60px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 800px;
}

/* Box da pergunta */
.faq-item {
    border-left: 5px solid #ff4d4d;
    background: #361010;
    border-radius: 14px;
    padding: 16px 18px;
    transition: transform .18s ease, box-shadow .18s ease;
}

.faq-item+.faq-item {
    margin-top: 14px;
}

.faq-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
}

/* Título (clicável) */
.faq-item h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    outline: none;
}

.faq-item h3:focus-visible {
    box-shadow: 0 0 0 3px rgba(255, 77, 77, .35);
    border-radius: 8px;
}

/* Ícone + / – */
.faq-item h3::after {
    content: "+";
    font-weight: 900;
    flex: 0 0 auto;
    transition: transform .2s ease;
}

.faq-item.is-open h3::after {
    content: "–";
    transform: scale(1.1);
}


/* Corpo da resposta (wrapper gerado pelo JS) */
.faq-body {
    background: #af3232;
    /* mais escuro ao abrir */
    border-radius: 10px;
    margin-top: 10px;
    overflow: hidden;
    max-height: 0;
    /* animado via JS (scrollHeight) */
    /* padding: 0 12px; */
    /* só laterais fechadas para não “pular” */
    transition: max-height .24s ease, padding .24s ease, background-color .24s ease;
}

/* Quando aberto, adiciona padding vertical */
.faq-item.is-open .faq-body {
    padding: 12px;
}

/* Texto da resposta */
.faq-body p {
    font-size: 15px;
    color: #ddd;
    line-height: 1.5;
    margin: 0;
    font-weight: bolder;
}

/* Título da seção */
.faq-title {
    font-size: 30px;
    font-weight: 800;
    text-align: center;
    color: white;
    margin-bottom: 40px;
    line-height: 1.3;
}

.faq-title small {
    font-size: 14px;
    color: #ccc;
}

/* Bloco final (CTA) */
.faq-final {
    margin-top: 22px;
    text-align: center;
}

.faq-final p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 14px;
}

/* Reaproveita seu .btn-cta existente; se quiser garantir: */
.faq-final .btn-cta {
    display: inline-block;
    padding: 14px 28px;
    font-size: 17px;
    font-weight: 800;
    border-radius: 10px;
    text-decoration: none;
}

/* ===== Responsivo ===== */
@media (max-width: 720px) {
    .faq-item {
        padding: 14px 14px;
    }

    .faq-item h3 {
        font-size: 17px;
    }

    .faq-body p {
        font-size: 14.5px;
    }
}

@media (max-width: 420px) {
    .faq-item h3 {
        font-size: 16px;
    }

    .faq-body {
        padding: 0 10px;
    }
}

/* Kills tap highlight azul no Android/Chrome/Safari */
.faq-item,
.faq-item *,
.faq-item h3 {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}