/* ============================================================
   FAQs
   ============================================================ */

.faq-hero {
    text-align: center;
    padding: clamp(3rem, 7vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
}
.faq-hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 400;
    color: var(--bordo);
    margin: 0 0 0.8rem;
}
.faq-hero-sub {
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ── LIST ────────────────────────────────────────────────── */
.faq-section { padding: 0 0 clamp(3.5rem, 8vw, 6rem); }

.faq-list {
    max-width: 760px;
}

/* Rótulo que agrupa las preguntas por tema */
.faq-group {
    margin: 2.75rem 0 0.5rem;
    color: var(--muted);
}
.faq-group:first-child { margin-top: 0; }

.faq-item {
    border-bottom: 1px solid var(--line);
    transition: border-color 0.25s ease;
}
.faq-item.open { border-bottom-color: var(--bordo); }

.faq-q {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.25rem;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 1.5rem 0.25rem;
    text-align: left;
    font-family: var(--font-head);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 400;
    color: var(--bordo);
    line-height: 1.35;
}
.faq-q:hover { color: var(--bordo-dark); }

.faq-icon {
    position: relative;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 0.2rem;
}
.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--bordo);
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq-icon::before { width: 14px; height: 2px; }
.faq-icon::after { width: 2px; height: 14px; }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-a p {
    margin: 0;
    padding: 0 3rem 1.6rem 0.25rem;
    max-width: 62ch;
    color: var(--muted);
    line-height: 1.85;
}

/* ── CTA ─────────────────────────────────────────────────── */
.faq-cta {
    background: var(--salmon-soft);
    text-align: center;
    padding: var(--section-y) 0;
}
.faq-cta h2 {
    font-family: var(--font-head);
    font-size: clamp(1.9rem, 3.8vw, 2.8rem);
    color: var(--bordo);
    line-height: 1.18;
    margin: 0 0 0.8rem;
}
.faq-cta p { color: var(--muted); margin: 0 0 2rem; }
.btn-wa { background: #25d366; color: #fff; box-shadow: 0 10px 26px rgba(37,211,102,0.3); }
.btn-wa:hover { background: #1da851; color: #fff; }

@media (max-width: 480px) {
    .faq-q { padding: 1.25rem 0; gap: 1rem; }
    .faq-a p { padding: 0 1.5rem 1.35rem 0; }
}
