.faqmx-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 80px 40px;
    font-family: 'DM Sans', sans-serif;
    background: #fff;
    color: #0f1a13;
    --faqmx-green-deep: #0a2a66;
    --faqmx-green-accent: #0a2a66;
    --faqmx-green-light: #5eaeff;
    --faqmx-muted: #00329d;
    --faqmx-border: #002346;
    --faqmx-white: #ffffff;
}

.faqmx-wrap *,
.faqmx-wrap *::before,
.faqmx-wrap *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ── Header ── */
.faqmx-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 64px;
    opacity: 0;
    transform: translateY(20px);
    animation: faqmx-up .6s ease forwards;
}

.faqmx-big-num {
    font-family: 'Playfair Display', serif;
    font-size: 120px;
    font-weight: 400;
    color: var(--faqmx-green-accent);
    opacity: .18;
    line-height: 1;
    user-select: none;
}

.faqmx-head-right {
    padding-bottom: 12px;
}

.faqmx-kicker {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--faqmx-green-accent);
    margin-bottom: 14px;
}

.faqmx-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 500;
    line-height: 1.1;
    color: var(--faqmx-green-deep);
}

.faqmx-title em {
    font-style: italic;
    color: var(--faqmx-green-accent);
}

.faqmx-desc {
    margin-top: 14px;
    font-size: 14px;
    color: var(--faqmx-muted);
    line-height: 1.7;
    max-width: 320px;
}

/* ── Lista ── */
.faqmx-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--faqmx-border);
}

.faqmx-item {
    border-bottom: 1px solid var(--faqmx-border);
    opacity: 0;
    transform: translateY(16px);
    animation: faqmx-up .5s ease forwards;
}

.faqmx-trigger {
    display: grid;
    grid-template-columns: 48px 1fr 36px;
    align-items: center;
    gap: 20px;
    padding: 28px 0;
    cursor: pointer;
}

.faqmx-index {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    color: var(--faqmx-green-accent);
    opacity: .6;
    text-align: right;
}

.faqmx-q-text {
    font-size: 17px;
}

.faqmx-cross {
    width: 36px;
    height: 36px;
    position: relative;
    border: 1px solid var(--faqmx-border);
    border-radius: 50%;
}

.faqmx-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: .4s;
}

.faqmx-item.faqmx-open .faqmx-answer {
    grid-template-rows: 1fr;
}

.faqmx-answer-inner {
    overflow: hidden;
}

.faqmx-answer-content {
    padding: 0 0 28px 68px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
}

.faqmx-answer-text {
    font-size: 14px;
}

/* ── Footer ── */
.faqmx-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 48px;
    padding: 32px 40px;
    background: var(--faqmx-green-deep);
    border-radius: 12px;
    gap: 24px;
    flex-wrap: wrap;
}

.faqmx-footer-left {
    font-size: 14px;
    color: #fff;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faqmx-footer-left strong {
    font-size: 16px;
    font-weight: 600;
}

.faqmx-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #fff;
    color: var(--faqmx-green-deep);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    white-space: nowrap;
    transition: opacity .2s;
}

.faqmx-btn:hover {
    opacity: .85;
}

/* ── Animación ── */
@keyframes faqmx-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
    .faqmx-wrap {
        padding: 60px 30px;
    }

    .faqmx-big-num {
        font-size: 90px;
    }

    .faqmx-head {
        gap: 30px;
    }

    .faqmx-answer-content {
        grid-template-columns: 1fr;
        padding-left: 60px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .faqmx-wrap {
        padding: 50px 22px;
    }

    .faqmx-head {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faqmx-big-num {
        font-size: 70px;
    }

    .faqmx-desc {
        max-width: 100%;
    }

    .faqmx-trigger {
        grid-template-columns: 36px 1fr 30px;
        gap: 12px;
        padding: 22px 0;
    }

    .faqmx-q-text {
        font-size: 15px;
    }

    .faqmx-answer-content {
        padding: 0 0 24px 48px;
    }

    .faqmx-footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 22px;
    }

    .faqmx-btn {
        width: 100%;
        text-align: center;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .faqmx-wrap {
        padding: 40px 16px;
    }

    .faqmx-big-num {
        font-size: 52px;
    }

    .faqmx-title {
        font-size: 26px;
    }

    .faqmx-trigger {
        grid-template-columns: 28px 1fr 28px;
    }

    .faqmx-answer-content {
        padding-left: 40px;
    }

    .faqmx-footer {
        padding: 20px 16px;
    }
}