/* ============================================================
   SECCIÓN ORVIX INTELLIGENCE
============================================================ */

.orvix-intelligence {
    position: relative;
    overflow: hidden;
    padding: 150px 0;
    background: #000000;
}

.orvix-intelligence .container {
    position: relative;
    z-index: 2;
}

/* ============================================================
   GRID
============================================================ */

.orvix-intelligence-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 90px;
}

/* ============================================================
   GLOW LOCAL POR BLOQUE
============================================================ */

.orvix-intelligence-content,
.orvix-intelligence-features {
    position: relative;
    isolation: isolate;
}

.orvix-intelligence-local-glow {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 115%;
    height: 115%;

    z-index: 1;

    pointer-events: none;

    background:
        radial-gradient(
            circle at center,
            rgba(255, 205, 0, 0.16) 0%,
            rgba(245, 180, 31, 0.10) 28%,
            rgba(200, 135, 12, 0.05) 52%,
            transparent 74%
        );

    filter: blur(52px);

    mix-blend-mode: screen;

    opacity: 0.9;
}

/* ============================================================
   CARD PRINCIPAL
============================================================ */

.orvix-intelligence-content {
    z-index: 3;
    width: 100%;
}

.orvix-intelligence-card {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 620px;

    padding: 44px 48px 34px;

    border-radius: 18px;

    background: #000000;

    color: #ffffff;
}

.orvix-intelligence-card h2 {
    margin: 0 0 28px 0;

    color: #ffffff;

    line-height: 1.2;
    font-weight: 400;
}

.orvix-intelligence-card p {
    margin: 0 0 26px 0;

    color: #ffffff;

    line-height: 1.34;
    font-weight: 400;
}

.orvix-intelligence-card ul {
    list-style: none;

    margin: 0;
    padding: 0;

    display: flex;
    flex-direction: column;
    gap: 14px;
}

.orvix-intelligence-card li {
    display: flex;
    align-items: center;
    gap: 14px;

    color: #ffffff;

    line-height: 1.25;
    font-weight: 400;
}

.orvix-intelligence-card li span {
    width: 22px;
    height: 22px;

    border-radius: 50%;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #f5b41f;
    color: #1a1000;

    font-weight: 800;
}

/* ============================================================
   FEATURE ITEMS
============================================================ */

.orvix-intelligence-features {
    z-index: 2;
    width: 100%;
}

.orvix-intelligence-items {
    position: relative;
    z-index: 2;

    width: 100%;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 86px 110px;
}

.orvix-intelligence-item {
    color: #ffffff;
}

/* ============================================================
   ICON BOX
============================================================ */

.orvix-intelligence-icon-box {
    width: 92px;
    height: 92px;

    margin: 0 0 22px 0;

    border-radius: 16px;

    border: 2px solid rgba(255, 255, 255, 0.72);

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.12) 0%,
            rgba(255, 255, 255, 0.06) 100%
        );

    display: flex;
    align-items: center;
    justify-content: center;

    transition:
        border-color 0.35s var(--nx-ease),
        box-shadow 0.35s var(--nx-ease),
        background 0.35s var(--nx-ease),
        transform 0.35s var(--nx-ease);
}

.orvix-intelligence-icon-box img {
    width: 58px;
    height: 58px;

    display: block;

    object-fit: contain;
}

.orvix-intelligence-item:hover .orvix-intelligence-icon-box {
    border-color: #f5b41f;

    background:
        linear-gradient(
            180deg,
            rgba(245, 180, 31, 0.16) 0%,
            rgba(245, 180, 31, 0.08) 100%
        );

    box-shadow:
        0 0 24px rgba(245, 180, 31, 0.22);

    transform: translateY(-3px);
}

/* ============================================================
   TEXT
============================================================ */

.orvix-intelligence-item h3 {
    margin: 0;

    color: #ffffff;

    line-height: 1.15;
    font-weight: 700;
}

.orvix-intelligence-item p {
    margin: 4px 0 0 0;

    color: rgba(255, 255, 255, 0.88);

    line-height: 1.2;
    font-weight: 400;
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1100px) {

    .orvix-intelligence-grid {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .orvix-intelligence-card {
        margin: 0 auto;
    }

    .orvix-intelligence-items {
        max-width: 680px;
        margin: 0 auto;
        gap: 58px 64px;
    }
}

@media (max-width: 768px) {

    .orvix-intelligence {
        padding: 100px 0;
    }

    .orvix-intelligence-grid {
        gap: 46px;
    }

    .orvix-intelligence-card {
        max-width: 100%;
        padding: 38px 28px 32px;
        border-radius: 16px;
    }

    .orvix-intelligence-card h2 {
        margin-bottom: 22px;
    }

    .orvix-intelligence-card p {
        line-height: 1.4;
    }
.orvix-intelligence-items {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .orvix-intelligence-item {
        text-align: center;
    }

    .orvix-intelligence-icon-box {
        margin-left: auto;
        margin-right: auto;

        width: 82px;
        height: 82px;
    }

    .orvix-intelligence-icon-box img {
        width: 52px;
        height: 52px;
    }
.orvix-intelligence-local-glow {
        width: 130%;
        height: 110%;
        filter: blur(42px);
    }
}

