/* ── Acordeão de Categoria (cabeçalho da seção) ──────────────────────── */
.cat-accordion-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: .6rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(197,160,89,.4);
    padding: 6px 0 0;
    margin: 0 auto;
    transition: color .25s;
}
.cat-accordion-toggle:hover {
    color: rgba(197,160,89,.75);
}
.cat-accordion-toggle .acc-icon {
    display: inline-block;
    transition: transform .3s ease;
    font-style: normal;
    font-size: .7rem;
    line-height: 1;
}
.cat-accordion-toggle.open .acc-icon {
    transform: rotate(180deg);
}
.cat-accordion-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height .45s ease, opacity .35s ease, padding .3s ease;
    opacity: 0;
}
.cat-accordion-body.open {
    /* valor alto o suficiente para qualquer texto de categoria */
    max-height: 600px;
    opacity: 1;
    padding-bottom: 20px;
}
.cat-accordion-body p {
    /* Inter regular — mais legível que serifada itálica */
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(.8rem, 1.7vw, .95rem);
    color: rgba(197,160,89,.85);
    text-align: center;
    max-width: 580px;
    margin: 14px auto 0;
    line-height: 1.75;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(197,160,89,.1);
}

/* ── Acordeão de Pacote (descrição do pacote) ────────────────────────── */
.pkg-acc-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(197,160,89,.12);
    width: 100%;
    padding: 0 0 10px;
    margin-bottom: 14px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: .58rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(197,160,89,.45);
    transition: color .2s;
    text-align: left;
}
.pkg-acc-toggle:hover {
    color: rgba(197,160,89,.8);
}
.pkg-acc-toggle .pkg-acc-icon {
    display: inline-block;
    transition: transform .3s ease;
    margin-left: auto;
    font-size: .65rem;
}
.pkg-acc-toggle.open .pkg-acc-icon {
    transform: rotate(180deg);
}
.pkg-acc-body {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height .45s ease, opacity .35s ease;
}
.pkg-acc-body.open {
    /* valor generoso para acomodar qualquer descrição, incluindo mobile */
    max-height: 1200px;
    opacity: 1;
}
.pkg-acc-body p {
    /* Inter regular — legível, clean, sem itálico */
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: .82rem;
    color: rgba(197,160,89,.9);
    line-height: 1.75;
    padding: 4px 0 16px;
    margin: 0;
}
