/* =========================
   PAGE FAQ
   ========================= */

.faq-page {
    padding: 105px 18px 24px;
    justify-content: flex-start;
}

.faq-page .title {
    margin-bottom: 8px;
    font-size: 2rem;
    line-height: 1.1;
}

.faq-page .subtitle {
    max-width: 850px;
    margin-bottom: 18px;
    font-size: 0.88rem;
    line-height: 1.4;
}

/* =========================
   GRID 3 x 3
   ========================= */

.faq-list {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 10px;
    align-items: stretch;
}

/* =========================
   CARDS ULTRA COMPACT
   ========================= */

.faq-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(96, 165, 250, 0.14);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 10px 11px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
    text-align: left;
    min-height: 118px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* =========================
   TEXT
   ========================= */

.faq-card h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.72rem;
    color: #60a5fa;
    margin-bottom: 6px;
    line-height: 1.25;
    position: relative;
    z-index: 2;
}

.faq-card p {
    color: #dbeafe;
    font-size: 0.67rem;
    line-height: 1.28;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.faq-card ul {
    margin-left: 14px;
    color: #dbeafe;
    position: relative;
    z-index: 2;
}

.faq-card li {
    margin-bottom: 3px;
    line-height: 1.25;
    font-size: 0.66rem;
}

.faq-card a {
    color: #93c5fd;
    text-decoration: none;
    word-break: break-word;
}

.faq-card a:hover {
    color: #ffffff;
}

.faq-highlight {
    color: #93c5fd;
    font-weight: 700;
    margin-top: 4px;
}

.faq-rules {
    grid-column: auto;
}

/* =========================
   NUMÉROS EN FOND
   ========================= */

.faq-card::after {
    position: absolute;
    right: 10px;
    bottom: 6px;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: rgba(147, 197, 253, 0.06);
    line-height: 1;
    pointer-events: none;
    z-index: 1;
}

.faq-card:nth-child(1)::after {
    content: "01";
}

.faq-card:nth-child(2)::after {
    content: "02";
}

.faq-card:nth-child(3)::after {
    content: "03";
}

.faq-card:nth-child(4)::after {
    content: "04";
}

.faq-card:nth-child(5)::after {
    content: "05";
}

.faq-card:nth-child(6)::after {
    content: "06";
}

.faq-card:nth-child(7)::after {
    content: "07";
}

.faq-card:nth-child(8)::after {
    content: "08";
}

.faq-card:nth-child(9)::after {
    content: "";
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 40px;
    height: 40px;
    background-image: url("warn.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.10;
    pointer-events: none;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1100px) {
    .faq-list {
        grid-template-columns: repeat(2, minmax(240px, 1fr));
    }

    .faq-card {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .faq-page {
        padding: 100px 14px 32px;
    }

    .faq-page .title {
        font-size: 1.6rem;
    }

    .faq-page .subtitle {
        font-size: 0.82rem;
        margin-bottom: 14px;
    }

    .faq-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .faq-card {
        min-height: auto;
        padding: 12px;
    }

    .faq-card h2 {
        font-size: 0.78rem;
    }

    .faq-card p,
    .faq-card li {
        font-size: 0.74rem;
    }
}