/* =========================================================
   14. PAGE LAYOUT – GENERIC INNER PAGES
   ========================================================= */
.mf-page-header {
    padding: 3rem 0 2rem;
    background: radial-gradient(circle at top, #101a2b 0, #05060a 60%, #020308 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mf-page-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.18rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #cfd8ff;
    margin-bottom: 0.6rem;
}

.mf-page-title {
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.mf-page-subtitle {
    color: #a9b5d9;
    max-width: 40rem;
}

.mf-page-section {
    padding: 2.5rem 0;
    background: #05060a;
}

.mf-page-section-alt {
    padding: 2.5rem 0;
    background: radial-gradient(circle at top, #0f1724 0, #05060a 60%);
}

.mf-page-main {
    max-width: 780px;
}

.mf-page-aside {
    background: radial-gradient(circle at top, #111b2b 0, #05070d 70%);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.2rem 1.3rem;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.85);
    font-size: 0.9rem;
    color: #cfd6ef;
}

/* =========================================================
   15. FORGETICKET – FORM & SUMMARY
   ========================================================= */
.mf-ticket-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.mf-ticket-step-pill {
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #cfd8ff;
    background: rgba(10, 14, 28, 0.9);
}

    .mf-ticket-step-pill.is-active {
        background: linear-gradient(135deg, var(--mf-blue), var(--mf-orange));
        border-color: rgba(0, 0, 0, 0.9);
        color: var(--mf-white);
        box-shadow: 0 0 14px rgba(28,141,255,0.7);
    }

.mf-ticket-block {
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: radial-gradient(circle at top, #111b2b 0, #05070d 75%);
    padding: 1.4rem 1.5rem;
    margin-bottom: 1.2rem;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.9);
}

.mf-ticket-block-title {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.mf-ticket-block-text {
    font-size: 0.9rem;
    color: #c4cbe6;
}

.mf-ticket-summary {
    background: radial-gradient(circle at top, #101b2c 0, #05070d 75%);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1.3rem 1.4rem;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.9);
    font-size: 0.9rem;
    color: #d0d7f1;
}

.mf-ticket-summary-title {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 0.6rem;
}

.mf-ticket-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 0.6rem;
    font-size: 0.88rem;
}

    .mf-ticket-summary-row + .mf-ticket-summary-row {
        margin-top: 0.25rem;
    }

.mf-ticket-summary-label {
    color: #9ea8d0;
}

.mf-ticket-summary-value {
    color: #f3f4ff;
}

/* =========================================================
   16. MAXIFORGE SKELETON LOADING
   ========================================================= */
.mf-skeleton {
    background: linear-gradient(90deg, #2a3142 0%, #3d475c 50%, #2a3142 100%);
    background-size: 200% 100%;
    animation: mf-skeleton-wave 1.4s ease-in-out infinite;
    border-radius: 0.5rem;
    opacity: 0.48;
}

@keyframes mf-skeleton-wave {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Sizes */
.mf-skeleton-sm {
    height: 0.8rem;
}

.mf-skeleton-md {
    height: 1.2rem;
}

.mf-skeleton-lg {
    height: 2rem;
}

.mf-skeleton-xl {
    height: 3rem;
}

/* Shapes */
.mf-skeleton-rounded {
    border-radius: 999px;
}

.mf-skeleton-card {
    height: 150px;
    border-radius: 1rem;
}

/* Stagger animation */
.mf-skeleton-delay-1 {
    animation-delay: .15s;
}

.mf-skeleton-delay-2 {
    animation-delay: .30s;
}

.mf-skeleton-delay-3 {
    animation-delay: .45s;
}

/*cards*/
/* =========================================================
   CARDS – COMMON THUMB & BODY
   ========================================================= */

.mf-card-thumb {
    position: relative;
    height: 120px;
    border-radius: 0.6rem;
    margin-bottom: 0.85rem;
    overflow: hidden;
}

/* Fondo por defecto tipo "energy field" */
.mf-card-thumb-generic {
    background-size: cover;
    background-position: center;
    background-image: radial-gradient(circle at 20% 0, #1c8dff, transparent 55%), radial-gradient(circle at 80% 100%, #ff5b00, #05060a 70%);
}

/* Si usas <img> real dentro */
.mf-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Contenido textual del card */
.mf-card-body {
    display: flex;
    flex-direction: column;
}

.mf-card-body-title {
    font-size: 1rem;
    font-weight: 700;
}

.mf-card-body-text {
    margin-top: 0.3rem;
    font-size: 0.9rem;
}

.mf-card-cel {
    background: #1C8DFF;
    border: 3px solid var(--mf-black);
    border-radius: 0.8rem;
    padding: 1rem;
    color: var(--mf-white);
    box-shadow: inset -6px -6px 0 rgba(0,0,0,0.45), inset 6px 6px 0 rgba(255,255,255,0.25), 0 0 18px rgba(28,141,255,0.55);
    transition: transform .15s ease;
}

    .mf-card-cel:hover {
        transform: translateY(-4px);
    }

/* Thumbnail específico cel-shading */
.mf-card-thumb-cel {
    background-image: linear-gradient(135deg, #4db4ff 0%, #1c8dff 40%, #0c325a 100%), radial-gradient(circle at 0 100%, rgba(0,0,0,0.65), transparent 60%);
    box-shadow: inset -4px -4px 0 rgba(0,0,0,0.45), inset 4px 4px 0 rgba(255,255,255,0.18);
}

.mf-card-glass {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.16);
    padding: 1rem;
    color: var(--mf-white);
    box-shadow: 0 0 22px rgba(28,141,255,0.25), inset 0 0 16px rgba(255,255,255,0.05);
    transition: transform .15s ease;
}

    .mf-card-glass:hover {
        transform: translateY(-4px);
    }

.mf-card-thumb-glass {
    background-image: radial-gradient(circle at 15% 0, rgba(255,255,255,0.85), transparent 60%), radial-gradient(circle at 85% 100%, #1c8dff, #050814 70%);
    border: 1px solid rgba(255,255,255,0.35);
    box-shadow: 0 0 18px rgba(28,141,255,0.6);
}

.mf-card-tech {
    background: rgba(10,14,28,0.9);
    border: 1px solid rgba(28,141,255,0.9);
    border-radius: 0.9rem;
    padding: 1rem;
    color: var(--mf-white);
    box-shadow: 0 0 18px rgba(28,141,255,0.35), inset 0 0 16px rgba(28,141,255,0.15);
    transition: transform .15s ease;
}

    .mf-card-tech:hover {
        transform: translateY(-4px);
    }

.mf-card-thumb-tech {
    background-image: radial-gradient(circle at 0 0, #1c8dff, transparent 65%), radial-gradient(circle at 100% 100%, #0cffd6, #050814 70%);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
}
.mf-card-holo {
    background: radial-gradient(circle at top, #250040, #0a0a12 70%);
    border-radius: 1rem;
    padding: 1rem;
    border: 1px solid rgba(160,60,255,0.6);
    color: var(--mf-white);
    box-shadow: 0 0 20px rgba(160,60,255,0.45), inset 0 0 18px rgba(160,60,255,0.25);
    transition: transform .15s ease;
}

    .mf-card-holo:hover {
        transform: translateY(-4px);
    }

.mf-card-thumb-holo {
    background-image: radial-gradient(circle at 10% 0, #ff8b3a, transparent 55%), radial-gradient(circle at 90% 100%, #a03cff, #050814 75%);
    box-shadow: 0 0 20px rgba(160,60,255,0.7);
}

/* =========================================================
   17. FEATURES – MAXIFORGE MODULES GRID
   ========================================================= */

.mf-feature {
    background: radial-gradient(circle at top, #101a2b 0, #05060a 70%);
    border-radius: 1rem;
    padding: 1.2rem 1.1rem 1.3rem;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 0 18px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: 100%;
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

    .mf-feature:hover {
        transform: translateY(-4px);
        box-shadow: 0 0 22px rgba(28,141,255,0.55);
        border-color: rgba(255,255,255,0.18);
    }

/* Icon circle */
.mf-feature-icon {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    text-shadow: 0 0 6px rgba(0,0,0,0.8);
}

/* Title + text */
.mf-feature-title {
    font-size: 1rem;
    font-weight: 700;
}

.mf-feature-text {
    font-size: 0.9rem;
    color: #c6cee9;
}

/* Color variants */
.mf-feature-blue .mf-feature-icon {
    background: radial-gradient(circle at 20% 0, #4db4ff, #132d47);
    box-shadow: 0 0 14px rgba(28,141,255,0.7);
}

.mf-feature-cyan .mf-feature-icon {
    background: radial-gradient(circle at 20% 0, #3cf0ff, #13424f);
    box-shadow: 0 0 14px rgba(60,240,255,0.7);
}

.mf-feature-orange .mf-feature-icon {
    background: radial-gradient(circle at 20% 0, #ff8b3a, #7a2a00);
    box-shadow: 0 0 14px rgba(255,91,0,0.75);
}

.mf-feature-purple .mf-feature-icon {
    background: radial-gradient(circle at 20% 0, #b271ff, #271043);
    box-shadow: 0 0 14px rgba(178,113,255,0.8);
}
/* =========================================================
   18. GRID LAYOUTS – 2 / 3 / 4 COLUMNS
   ========================================================= */

/* Sección base */
.mf-grid-section {
    padding: 2.5rem 0;
    background: #05060a;
}

.mf-grid-section-alt {
    padding: 2.5rem 0;
    background: radial-gradient(circle at top, #0f1724 0, #05060a 60%, #020308 100%);
}

/* ================================
   GRID A – Two columns
   ================================ */
.mf-grid-2 {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.3fr);
    gap: 2.5rem;
    align-items: center;
}

.mf-grid-2-left {
    max-width: 540px;
}

.mf-grid-title {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.mf-grid-text {
    font-size: 0.96rem;
    color: #c1c9e7;
    max-width: 34rem;
}

.mf-grid-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.6rem;
}

/* Panel derecha */
.mf-grid-2-right {
    display: flex;
    justify-content: flex-end;
}

.mf-grid-panel {
    min-width: 260px;
    max-width: 320px;
    border-radius: 1.1rem;
    padding: 1.2rem 1.3rem;
    background: radial-gradient(circle at top, #111b2b 0, #05060d 80%);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 0 20px rgba(0,0,0,0.85);
    font-size: 0.9rem;
    color: #cfd6ef;
}

.mf-grid-panel-badge {
    display: inline-block;
    padding: 0.18rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #cfd8ff;
    margin-bottom: 0.8rem;
}

.mf-grid-panel-title {
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9ea8d0;
    margin-bottom: 0.3rem;
}

.mf-grid-panel-metric {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--mf-white);
    margin-bottom: 0.2rem;
}

.mf-grid-panel-text {
    font-size: 0.88rem;
    color: #c4cbe6;
}

/* Responsive 2-col */
@media (max-width: 992px) {
    .mf-grid-2 {
        grid-template-columns: minmax(0, 1fr);
    }

    .mf-grid-2-right {
        justify-content: flex-start;
    }
}

/* ================================
   GRID B – Three columns
   ================================ */
.mf-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.7rem;
}

.mf-grid-3-item {
    background: radial-gradient(circle at top, #111b2b 0, #05060d 80%);
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 1.1rem 1.2rem 1.2rem;
    box-shadow: 0 0 18px rgba(0,0,0,0.8);
    font-size: 0.9rem;
    color: #c4cbe6;
}

.mf-grid-3-title {
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.mf-grid-3-text {
    font-size: 0.9rem;
    color: #c6cee9;
}

/* Responsive 3-col */
@media (max-width: 992px) {
    .mf-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .mf-grid-3 {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* ================================
   GRID C – Four compact stats
   ================================ */
.mf-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.4rem;
}

.mf-grid-4-item {
    background: radial-gradient(circle at top, #101624 0, #05060d 80%);
    border-radius: 0.9rem;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 0.9rem 1rem;
    box-shadow: 0 0 16px rgba(0,0,0,0.85);
}

.mf-grid-4-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9ea8d0;
    margin-bottom: 0.2rem;
}

.mf-grid-4-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--mf-white);
}

/* Responsive 4-col */
@media (max-width: 992px) {
    .mf-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .mf-grid-4 {
        grid-template-columns: minmax(0, 1fr);
    }
}
/* =========================================================
   19. GALLERY SLIDER – HORIZONTAL SCROLL + SNAP
   ========================================================= */

/* Outer wrapper */
.mf-gallery-slider {
    position: relative;
    margin: 0 -0.25rem; /* slight edge bleed */
    padding-bottom: 0.3rem;
}

/* Track with horizontal scroll */
.mf-gallery-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 0.25rem 0.25rem 0.5rem;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0.25rem;
}

    /* Hide ugly scrollbars (where supported) */
    .mf-gallery-track::-webkit-scrollbar {
        height: 6px;
    }

    .mf-gallery-track::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.5);
    }

    .mf-gallery-track::-webkit-scrollbar-thumb {
        background: rgba(120, 140, 180, 0.8);
        border-radius: 999px;
    }

/* Each slide */
.mf-gallery-slide {
    flex: 0 0 280px;
    scroll-snap-align: start;
}

/* Wider on large screens */
@media (min-width: 1200px) {
    .mf-gallery-slide {
        flex-basis: 320px;
    }
}

/* Full width-ish on small screens */
@media (max-width: 576px) {
    .mf-gallery-slide {
        flex-basis: 80vw;
    }
}

/* Nav arrows */
.mf-gallery-nav {
    gap: 0.4rem;
}

.mf-gallery-arrow {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.25);
    background: radial-gradient(circle at top, rgba(28,141,255,0.35), rgba(5,7,14,0.98));
    color: #e9f0ff;
    font-size: 1.1rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 12px rgba(0,0,0,0.9);
    transition: background .15s ease, box-shadow .15s ease, transform .08s ease;
}

    .mf-gallery-arrow:hover {
        background: radial-gradient(circle at top, rgba(28,141,255,0.6), rgba(5,7,16,0.98));
        box-shadow: 0 0 18px rgba(28,141,255,0.7);
    }

    .mf-gallery-arrow:active {
        transform: translateY(1px);
    }
.mf-gallery-thumb {
    position: relative; /* IMPORTANTE */
    height: 190px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background-size: cover;
    background-position: center;
    overflow: hidden; /* evita que el tag se salga visualmente */
}
/* =========================================================
   20. ALERTS / STATUS BANNERS (FORGETICKET, SYSTEM, ETC.)
   ========================================================= */

.mf-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: radial-gradient(circle at top, #111b26 0, #04060c 70%);
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.85);
    font-size: 0.9rem;
}

/* Punto luminoso de estado */
.mf-alert-dot {
    flex: 0 0 auto;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 999px;
    margin-top: 0.35rem;
    box-shadow: 0 0 8px rgba(28, 141, 255, 0.7);
}

/* Contenido */
.mf-alert-content {
    flex: 1;
}

.mf-alert-title {
    margin: 0 0 0.15rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.mf-alert-text {
    margin: 0;
    font-size: 0.86rem;
    color: #c7cee8;
}

/* Variantes de color */
.mf-alert-info {
    border-color: rgba(28, 141, 255, 0.55);
    background: radial-gradient(circle at top, rgba(28,141,255,0.18), #04060c 70%);
}

    .mf-alert-info .mf-alert-dot {
        background: #1c8dff;
    }

.mf-alert-success {
    border-color: rgba(0, 200, 140, 0.55);
    background: radial-gradient(circle at top, rgba(0,200,140,0.2), #04060c 70%);
}

    .mf-alert-success .mf-alert-dot {
        background: #00c88c;
        box-shadow: 0 0 8px rgba(0, 200, 140, 0.7);
    }

.mf-alert-warning {
    border-color: rgba(255, 180, 0, 0.7);
    background: radial-gradient(circle at top, rgba(255,180,0,0.22), #04060c 70%);
}

    .mf-alert-warning .mf-alert-dot {
        background: #ffb400;
        box-shadow: 0 0 8px rgba(255, 180, 0, 0.8);
    }

.mf-alert-danger {
    border-color: rgba(255, 80, 80, 0.7);
    background: radial-gradient(circle at top, rgba(255,80,80,0.24), #04060c 70%);
}

    .mf-alert-danger .mf-alert-dot {
        background: #ff5050;
        box-shadow: 0 0 8px rgba(255, 80, 80, 0.85);
    }

/* =========================================================
   21. TIMELINE – PROJECT FLOW / HOW IT WORKS
   ========================================================= */

.mf-timeline {
    position: relative;
    margin: 1.5rem 0 0;
}

/* Cada item */
.mf-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 1.1rem;
    align-items: flex-start;
    padding-bottom: 1.4rem;
}

/* Punto / badge numerada */
.mf-timeline-badge {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--mf-white);
    background: radial-gradient(circle at 20% 0, var(--mf-orange), var(--mf-blue));
    box-shadow: 0 0 14px rgba(28,141,255,0.7);
    z-index: 2;
}

/* Línea vertical */
.mf-timeline-line {
    position: absolute;
    top: 2rem;
    left: 1rem; /* centrado por debajo del badge (2rem/2) */
    width: 2px;
    bottom: 0;
    background: linear-gradient( 180deg, rgba(28,141,255,0.0), rgba(28,141,255,0.8), rgba(255,91,0,0.7), rgba(28,141,255,0.0) );
    opacity: 0.6;
}

.mf-timeline-line-end {
    /* pequeña degradación al final */
    background: linear-gradient( 180deg, rgba(28,141,255,0.6), rgba(255,91,0,0.0) );
}

/* Card del paso */
.mf-timeline-card {
    background: radial-gradient(circle at top, #121b2c 0, #05060c 70%);
    border-radius: 0.9rem;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 0.9rem 1rem;
    box-shadow: 0 0 16px rgba(0,0,0,0.85);
}

.mf-timeline-title {
    font-size: 0.96rem;
    margin: 0 0 0.25rem;
}

.mf-timeline-text {
    font-size: 0.9rem;
    margin: 0;
    color: #c4cbe6;
}

/* Ajustes responsive */
@media (min-width: 992px) {
    .mf-timeline {
        margin-top: 2rem;
    }

    .mf-timeline-item {
        padding-bottom: 1.8rem;
    }

    .mf-timeline-card {
        padding: 1rem 1.2rem;
    }
}

/* =========================================================
   22. UI TOOLKIT – STATUS PILLS & INFO CHIPS
   ========================================================= */

.mf-mini-heading {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #cfd8ff;
}

/* ===== Pills de estado ===== */

.mf-pill-set {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.mf-pill-blue,
.mf-pill-orange,
.mf-pill-green,
.mf-pill-purple,
.mf-pill-grey {
    padding: 0.22rem 0.75rem;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    border-radius: 999px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.55);
}

/* Variantes de color */
.mf-pill-blue {
    background: rgba(28, 141, 255, 0.20);
    color: #dff1ff;
    border-color: rgba(28, 141, 255, 0.6);
}

.mf-pill-orange {
    background: rgba(255, 91, 0, 0.22);
    color: #ffe0d0;
    border-color: rgba(255, 91, 0, 0.7);
}

.mf-pill-green {
    background: rgba(0, 180, 110, 0.24);
    color: #d8ffe9;
    border-color: rgba(0, 180, 110, 0.7);
}

.mf-pill-purple {
    background: rgba(172, 86, 255, 0.25);
    color: #f0ddff;
    border-color: rgba(172, 86, 255, 0.75);
}

.mf-pill-grey {
    background: rgba(120, 130, 160, 0.24);
    color: #e0e4f5;
    border-color: rgba(160, 170, 200, 0.8);
}

/* ===== Chips de información ===== */

.mf-glass-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.85rem;
    border-radius: 0.8rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #dce4ff;
    text-shadow: 0 0 6px rgba(28, 141, 255, 0.35);
}

.mf-chip-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.75;
}

.mf-chip-value {
    font-size: 0.86rem;
    font-weight: 600;
}

/* =========================================================
   23. UI TOOLKIT – MINI STAT BLOCKS
   ========================================================= */

.mf-stat-block {
    text-align: center;
    padding: 1.2rem;
    border-radius: 1rem;
    background: radial-gradient(circle at top, #1c8dff22, #05070d 70%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.85);
}

.mf-stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--mf-blue);
    text-shadow: 0 0 14px rgba(28, 141, 255, 0.55);
}

.mf-stat-desc {
    margin-top: 0.45rem;
    font-size: 0.86rem;
    color: #cfd8ff;
}
/* =========================================================
   24. UI TOOLKIT – ACCORDION / FAQ
   ========================================================= */

.mf-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.mf-accordion {
    border-radius: 0.9rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: radial-gradient(circle at top, #121b2c 0, #05060c 75%);
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.8);
}

.mf-acc-header {
    width: 100%;
    text-align: left;
    padding: 0.9rem 1.1rem;
    background: transparent;
    border: none;
    color: #e6edff;
    font-size: 0.96rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    transition: background-color 0.18s ease, color 0.18s ease;
}

    /* Icono pseudo “+ / -” */
    .mf-acc-header::after {
        content: "+";
        font-size: 1rem;
        opacity: 0.8;
        transition: transform 0.18s ease, opacity 0.18s ease;
    }

.mf-accordion.open .mf-acc-header::after {
    content: "–";
    transform: translateY(-1px);
    opacity: 1;
}

.mf-acc-header:hover {
    background: rgba(255, 255, 255, 0.04);
}

.mf-acc-body {
    padding: 0 1.1rem 0.9rem;
    color: #cfd6ef;
    font-size: 0.9rem;
    display: none;
}

.mf-accordion.open .mf-acc-body {
    display: block;
}
/* =========================================================
   25. UI TOOLKIT – PROGRESS TRACKER
   ========================================================= */

.mf-progress-tracker {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.mf-progress-step {
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: #cfd8ff;
    backdrop-filter: blur(6px);
    transition: all 0.25s ease;
}

    .mf-progress-step.is-done {
        background: linear-gradient(135deg, var(--mf-blue), var(--mf-orange));
        color: var(--mf-white);
        border-color: rgba(0,0,0,0.6);
        box-shadow: 0 0 12px rgba(28,141,255,0.6);
    }

    .mf-progress-step.is-active {
        border-color: var(--mf-blue);
        color: var(--mf-blue);
        box-shadow: 0 0 12px rgba(28,141,255,0.4);
    }
/* =========================================================
   26. UI TOOLKIT – METRIC CARDS
   ========================================================= */

.mf-metric-card {
    background: radial-gradient(circle at top, #111b2b 0, #05060d 75%);
    border-radius: 1rem;
    padding: 1.4rem 1rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 14px rgba(0,0,0,0.7);
}

.mf-metric-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.8rem;
    font-size: 1.4rem;
    margin: 0 auto 0.8rem;
    color: white;
}

.mf-metric-blue {
    background: var(--mf-blue);
}

.mf-metric-orange {
    background: var(--mf-orange);
}

.mf-metric-purple {
    background: #a259ff;
}

.mf-metric-green {
    background: #2ecc71;
}

.mf-metric-value {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--mf-white);
}

.mf-metric-label {
    font-size: 0.85rem;
    color: #b8c2df;
}
/* =========================================================
   27. UI TOOLKIT – PREMIUM SWITCH
   ========================================================= */

.mf-switch {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
}

    .mf-switch input {
        display: none;
    }

.mf-slider {
    width: 50px;
    height: 26px;
    background: rgba(255,255,255,0.15);
    border-radius: 999px;
    position: relative;
    transition: background 0.25s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

    .mf-slider::before {
        content: "";
        position: absolute;
        width: 20px;
        height: 20px;
        top: 2.5px;
        left: 3px;
        border-radius: 50%;
        background: white;
        transition: transform 0.25s ease;
    }

.mf-switch input:checked + .mf-slider {
    background: linear-gradient(135deg,var(--mf-blue),var(--mf-orange));
}

    .mf-switch input:checked + .mf-slider::before {
        transform: translateX(22px);
    }

.mf-switch-label {
    font-size: 0.9rem;
    color: #cfd8ff;
}
/* =========================================================
   28. UI TOOLKIT – GLASS ALERTBOX
   ========================================================= */

.mf-alert {
    padding: 1rem 1.2rem;
    border-radius: 0.9rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    font-size: 0.9rem;
    color: white;
    box-shadow: 0 0 16px rgba(0,0,0,0.6);
}

.mf-alert-info {
    background: rgba(28,141,255,0.22);
    border-color: rgba(28,141,255,0.55);
}

.mf-alert-warning {
    background: rgba(255,140,0,0.22);
    border-color: rgba(255,140,0,0.55);
}

.mf-alert-success {
    background: rgba(0,200,120,0.22);
    border-color: rgba(0,200,120,0.55);
}
/* =========================================================
   29. UI TOOLKIT – FEATURE CARD
   ========================================================= */

.mf-feature-card {
    padding: 1.6rem;
    border-radius: 1.2rem;
    background: radial-gradient(circle at top, #101a2b 0, #05060a 70%);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 0 22px rgba(0,0,0,0.75);
    text-align: center;
}

.mf-feature-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.mf-feature-title {
    font-size: 1.2rem;
    color: white;
}

.mf-feature-text {
    font-size: 0.9rem;
    color: #cfd8ff;
    margin: 0.8rem 0 1.2rem;
}

.mf-feature-btn {
    display: inline-block;
    padding: 0.45rem 1.1rem;
    border-radius: 0.6rem;
    background: var(--mf-blue);
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    box-shadow: 0 0 12px rgba(28,141,255,0.6);
}

    .mf-feature-btn:hover {
        background: #4db4ff;
    }
/* =========================================================
   SIGIL SECTION – Runa / selo MaxiForge
   ========================================================= */

#sigil.mf-section-sigil {
    padding-top: 4rem;
    padding-bottom: 4.4rem;
}

#sigil .mf-section-sigil-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
#sigil .mf-section-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 2.6rem;
}

#sigil .mf-section-title {
    font-size: clamp(2rem, 2.4vw, 2.6rem);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 0.7rem;
}

#sigil .mf-section-subtitle {
    font-size: 1.05rem;
    color: #cbd5f5;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}


/* Layout principal: runa + texto em painel glass */
#sigil .mf-sigil-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
    gap: 3rem;
    align-items: center;
    padding: 2.6rem 2.8rem;
    border-radius: 32px;
    background: linear-gradient( 135deg, rgba(15, 23, 42, 0.9), rgba(3, 7, 18, 0.97) );
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 40px 80px rgba(0,0,0,0.95), 0 0 0 1px rgba(15,23,42,0.9);
    backdrop-filter: blur(18px);
}

/* Bloco da runa */
#sigil .mf-sigil-mark {
    text-align: center;
}

#sigil .mf-sigil-orbit {
    width: 220px;
    height: 220px;
    margin: 0 auto 1rem;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0%, rgba(59, 130, 246, 0.35), rgba(15, 23, 42, 1) );
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 0 32px rgba(59,130,246,0.65), 0 0 80px rgba(15,23,42,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Forma básica da runa (círculo dentro do círculo) */
#sigil .mf-sigil-rune-main {
    display: inline-block;
    width: 120px;
    height: 120px;
    border-radius: 999px;
    border: 2px solid rgba(248, 250, 252, 0.85);
    position: relative;
    box-shadow: 0 0 14px rgba(248,250,252,0.6);
    background: radial-gradient(circle at 30% 20%, rgba(248, 250, 252, 0.18), rgba(15, 23, 42, 0.95) );
}

    #sigil .mf-sigil-rune-main::before,
    #sigil .mf-sigil-rune-main::after {
        content: "";
        position: absolute;
        inset: 24%;
        border-radius: 999px;
        border: 1px solid rgba(148, 163, 184, 0.7);
    }

    #sigil .mf-sigil-rune-main::after {
        inset: 38%;
        border-color: rgba(56, 189, 248, 0.85);
    }

#sigil .mf-sigil-tagline {
    font-size: 0.9rem;
    color: #9ca3af;
}

/* Bloco de texto */
#sigil .mf-sigil-copy h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

#sigil .mf-sigil-copy p {
    font-size: 0.98rem;
    color: #e5e7eb;
    margin-bottom: 0.7rem;
}

/* Onde aparece */
#sigil .mf-sigil-where-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9ca3af;
    margin: 1.2rem 0 0.7rem;
}

#sigil .mf-sigil-where-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

#sigil .mf-sigil-chip {
    padding: 0.8rem 0.9rem;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(30, 64, 175, 0.6);
}

#sigil .mf-sigil-chip-label {
    font-size: 0.85rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.15rem;
}

#sigil .mf-sigil-chip-desc {
    font-size: 0.82rem;
    color: #cbd5f5;
}

@media (max-width: 1024px) {
    #sigil .mf-sigil-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    #sigil .mf-sigil-where-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    #sigil .mf-sigil-where-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}
/* Neon inferior no painel de sigilo */
#sigil .mf-sigil-layout {
    position: relative;
}

    #sigil .mf-sigil-layout::after {
        content: "";
        position: absolute;
        left: 12%;
        right: 12%;
        bottom: -3px;
        height: 3px;
        border-radius: 999px;
        background: linear-gradient( 90deg, rgba(255, 91, 0, 0), rgba(255, 91, 0, 1), rgba(255, 158, 66, 1), rgba(255, 91, 0, 1), rgba(255, 91, 0, 0) );
        box-shadow: 0 0 14px rgba(255, 134, 46, 0.9), 0 0 26px rgba(13, 7, 0, 0.95);
    }

