/* ============================= */
/*  PREGUNTAS FRECUENTES         */
/* ============================= */
.faq-page {
    width: 100%;
    padding: calc(var(--header-offset) + var(--header-height) + 5.45rem) 0.55rem 0.55rem;
    background: #ffffff;
    color: #15120f;
}

/* ── Hero panel ── */
.faq-panel {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-radius: 1rem;
    background: #c8b99a;
    padding: clamp(2.3rem, 4.4vw, 4rem) clamp(1.65rem, 3.2vw, 3.8rem) clamp(2.8rem, 5vw, 4.5rem);
}

.faq-panel__title {
    margin: 0;
    color: #050505;
    font-family: var(--font-family-display);
    font-size: clamp(4.4rem, 7.1vw, 6.9rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: 0;
}

.faq-panel__lead {
    max-width: 52rem;
    margin: clamp(1.4rem, 2.2vw, 2.2rem) 0 0;
    color: rgba(91, 92, 83, 0.84);
    font-family: var(--font-family-base);
    font-size: clamp(1rem, 1.35vw, 1.2rem);
    font-weight: 400;
    line-height: 1.5;
}

/* ── FAQ content ── */
.faq-content {
    padding: clamp(4.5rem, 7vw, 7.5rem) clamp(0.85rem, 1.25vw, 1.5rem);
    background: #ffffff;
}

.faq-list {
    width: min(100%, 72rem);
    margin: 0 auto;
}

.faq-item {
    display: grid;
    grid-template-columns: minmax(14rem, 0.52fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 5.5rem);
    align-items: start;
    padding: clamp(2.2rem, 3.5vw, 3.5rem) 0;
    border-bottom: 1px solid rgba(21, 18, 15, 0.08);
}

.faq-item:first-child {
    padding-top: 0;
}

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

.faq-item__q {
    margin: 0;
    color: #15120f;
    font-family: var(--font-family-display);
    font-size: clamp(1.45rem, 1.9vw, 2rem);
    font-weight: 400;
    line-height: 1.05;
}

.faq-item__a {
    color: rgba(91, 92, 83, 0.88);
    font-family: var(--font-family-base);
    font-size: clamp(0.95rem, 1.1vw, 1.08rem);
    font-weight: 400;
    line-height: 1.65;
}

.faq-item__a p {
    margin: 0;
}

.faq-item__a p + p {
    margin-top: 0.9rem;
}

/* ── CTA section ── */
.faq-cta {
    padding: clamp(2.4rem, 3vw, 3.4rem) clamp(0.75rem, 1vw, 1rem) 0.85rem;
    background: #ffffff;
}

.faq-cta__inner {
    min-height: clamp(20rem, 36vw, 32rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(3rem, 6vw, 6rem) clamp(1.4rem, 4vw, 4.5rem);
    border-radius: 1rem;
    background: #494b34;
    color: #ffffff;
    text-align: center;
}

.faq-cta__title {
    max-width: 54rem;
    margin: 0;
    font-family: var(--font-family-display);
    font-size: clamp(2.4rem, 3.45vw, 4rem);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: 0;
}

.faq-cta__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-top: clamp(1.8rem, 2.6vw, 2.8rem);
}

.faq-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.05rem;
    padding: 0 1.05rem;
    border: 1px solid transparent;
    border-radius: 0.28rem;
    font-family: var(--font-family-base);
    font-size: 0.86rem;
    font-weight: 500;
    line-height: 1;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.faq-cta__button--primary {
    background: #ffde7f;
    color: #050505;
}

.faq-cta__button--secondary {
    border-color: rgba(255, 255, 255, 0.74);
    background: transparent;
    color: #ffffff;
}

.faq-cta__button--primary:hover,
.faq-cta__button--primary:focus-visible {
    background: #f2cb5b;
    outline: none;
}

.faq-cta__button--secondary:hover,
.faq-cta__button--secondary:focus-visible {
    color: #ffde7f;
    border-color: #ffde7f;
    outline: none;
}

/* ── Responsive ── */
@media (min-width: 1081px) and (max-width: 1500px),
       (min-width: 1081px) and (max-height: 940px) {
    .faq-page {
        padding: calc(var(--header-offset) + var(--header-height) + 4.75rem) 0.55rem 0.55rem;
    }

    .faq-panel__title {
        font-size: clamp(4.5rem, 6vw, 5.75rem);
    }

    .faq-content {
        padding: 5.5rem 1.25rem 5rem;
    }
}

@media (max-width: 1080px) {
    .faq-page {
        padding: 1.25rem 0.75rem 0.75rem;
    }

    .faq-panel {
        border-radius: 1.15rem;
    }
}

@media (max-width: 720px) {
    .faq-panel {
        padding: 2.4rem 1.3rem 2.4rem;
    }

    .faq-panel__title {
        font-size: clamp(3.8rem, 17vw, 5.2rem);
    }

    .faq-content {
        padding: 3.5rem 0.85rem 3rem;
    }

    .faq-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2rem 0;
    }

    .faq-item:first-child {
        padding-top: 0;
    }

    .faq-cta {
        padding: 1.4rem 0.75rem 0.75rem;
    }

    .faq-cta__inner {
        min-height: 22rem;
        padding: 3rem 1.15rem;
        border-radius: 0.85rem;
    }

    .faq-cta__title {
        font-size: clamp(2rem, 10vw, 3rem);
    }
}

@media (max-width: 520px) {
    .faq-page {
        padding: 0.9rem 0.55rem 0.55rem;
    }

    .faq-panel {
        border-radius: 0.8rem;
    }

    .faq-panel__title {
        font-size: clamp(3.3rem, 15vw, 4.3rem);
    }

    .faq-item__q {
        font-size: 1.35rem;
    }

    .faq-item__a {
        font-size: 0.95rem;
    }
}
