/* ============================================================
   SECCIÓN INSUVEX BENEFITS
============================================================ */

.insuvex-benefits {
    position: relative;
    overflow: hidden;
    padding: 150px 0;
    background: #000000;
}

.insuvex-benefits .container {
    position: relative;
    z-index: 2;
}

.insuvex-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 56px;
}

.insuvex-benefits-content,
.insuvex-benefits-visual {
    position: relative;
    isolation: isolate;
}

.insuvex-benefits-local-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 115%;
    height: 115%;
    z-index: 4;
    pointer-events: none;
    background:
        radial-gradient(
            circle at center,
            rgba(255, 72, 72, 0.22) 0%,
            rgba(255, 59, 59, 0.14) 25%,
            rgba(200, 24, 24, 0.07) 48%,
            transparent 72%
        );
    filter: blur(48px);
    mix-blend-mode: screen;
    opacity: 0.95;
}

.insuvex-benefits-visual {
    z-index: 2;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.insuvex-benefits-video-box {
    position: relative;
    width: 100%;
    max-width: 620px;
    aspect-ratio: 1 / 1;
    margin: 0;
    padding: 0;
    overflow: hidden;
    z-index: 2;
    background: rgba(255, 255, 255, 0.14);
}

.insuvex-benefits-video {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    opacity: 1;
}

.insuvex-benefits-content {
    z-index: 3;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.insuvex-benefits-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 660px;
    padding: 72px 58px;
    border-radius: 18px;
    background: #000000;
    color: #ffffff;
}

.insuvex-benefits-card h2 {
    margin: 0 0 30px 0;
    color: #ffffff;
    line-height: 1.15;
    font-weight: 500;
}

.insuvex-benefits-card p {
    margin: 0 0 28px 0;
    max-width: 560px;
    color: #ffffff;
    line-height: 1.35;
    font-weight: 400;
}

.insuvex-benefits-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.insuvex-benefits-card li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
    line-height: 1.25;
    font-weight: 400;
}

.insuvex-benefits-card li span {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #ff4b4b;
    color: #140000;
    font-weight: 800;
}

@media (max-width: 1100px) {

    .insuvex-benefits-grid {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .insuvex-benefits-visual {
        order: -1;
    }

    .insuvex-benefits-video-box {
        max-width: 620px;
    }
}

@media (max-width: 768px) {

    .insuvex-benefits {
        padding: 100px 0;
    }

    .insuvex-benefits-grid {
        gap: 46px;
    }

    .insuvex-benefits-video-box {
        max-width: 420px;
    }

    .insuvex-benefits-card {
        max-width: 420px;
        padding: 42px 28px;
        border-radius: 16px;
    }

    .insuvex-benefits-card h2 {
        margin-bottom: 22px;
    }

    .insuvex-benefits-card p {
        line-height: 1.4;
    }
.insuvex-benefits-local-glow {
        width: 130%;
        height: 110%;
        filter: blur(42px);
    }
}

