/* ============================================================
   SECCIÓN SOLVIX PLATFORM
============================================================ */

.solvix-platform {
    position: relative;
    overflow: hidden;
    padding: 150px 0;
    background: #000000;
}

.solvix-platform .container {
    position: relative;
    z-index: 2;
}

/* ============================================================
   GRID
============================================================ */

.solvix-platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 56px;
}

/* ============================================================
   GLOW LOCAL POR BLOQUE
============================================================ */

.solvix-platform-content,
.solvix-platform-visual {
    position: relative;
    isolation: isolate;
}

.solvix-platform-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(0, 183, 255, 0.22) 0%,
            rgba(0, 153, 255, 0.14) 25%,
            rgba(0, 102, 255, 0.07) 48%,
            transparent 72%
        );

    filter: blur(48px);

    mix-blend-mode: screen;

    opacity: 0.95;
}

/* ============================================================
   CONTENIDO
============================================================ */

.solvix-platform-content {
    z-index: 3;

    width: 100%;

    margin: 0;
    padding: 0;

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 30px;
}

.solvix-platform-logo,
.solvix-platform-content p,
.solvix-platform-btn,
.solvix-platform-animation {
    position: relative;
    z-index: 2;
}

.solvix-platform-logo {
    width: 100%;
    max-width: 430px;

    margin: 0;
    padding: 0;

    display: block;
}

.solvix-platform-content p {
    margin: 0;
    padding: 0;

    max-width: 560px;

    color: #ffffff;

    line-height: 1.18;
    font-weight: 500;

    text-shadow:
        0 0 18px rgba(0, 183, 255, 0.10),
        0 0 38px rgba(0, 183, 255, 0.06);
}

.solvix-platform-content p strong {
    color: #ffffff;
    font-weight: 700;
}

/* ============================================================
   BOTÓN
============================================================ */

.solvix-platform-btn {
    width: 100%;
    max-width: 500px;
    height: 68px;

    margin-top: 8px;
    padding: 0;

    border-radius: 999px;

    cursor: pointer;

    color: #ffffff;
    text-decoration: none;

    font-weight: 500;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            90deg,
            #2b9fff 0%,
            #4db8ff 50%,
            #67c7ff 100%
        );

    box-shadow:
        0 16px 35px rgba(0, 153, 255, 0.20);

    transition:
        transform 0.3s var(--nx-ease),
        box-shadow 0.3s var(--nx-ease);
}

.solvix-platform-btn span {
    margin-left: 8px;
}

.solvix-platform-btn:hover {
    transform: translateY(-4px);

    box-shadow:
        0 24px 50px rgba(0, 153, 255, 0.32);
}

/* ============================================================
   VISUAL
============================================================ */

.solvix-platform-visual {
    z-index: 2;

    width: 100%;

    margin: 0;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

.solvix-platform-animation {
    position: relative;

    width: 100%;
    max-width: 760px;

    margin: 0;
    padding: 0;

    overflow: visible;

    z-index: 2;
}

/* ============================================================
   IMAGE
============================================================ */

.solvix-platform-image {
    position: relative;
    z-index: 2;

    width: 100%;
    height: auto;

    display: block;

    object-fit: contain;

    opacity: 1;

    mix-blend-mode: screen;
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1100px) {

    .solvix-platform-grid {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .solvix-platform-visual {
        order: -1;
    }

    .solvix-platform-animation {
        max-width: 650px;
    }
}

@media (max-width: 768px) {

    .solvix-platform {
        padding: 100px 0;
    }

    .solvix-platform-grid {
        gap: 46px;
    }

    .solvix-platform-content {
        gap: 24px;
    }

    .solvix-platform-logo {
        max-width: 320px;
    }

    .solvix-platform-content p {
        line-height: 1.28;
    }

    .solvix-platform-btn {
        height: 62px;
    }

    .solvix-platform-animation {
        max-width: 420px;
    }

    .solvix-platform-local-glow {
        width: 130%;
        height: 110%;

        filter: blur(42px);
    }
}

