/* ============================================================
   SECCIÓN NXTARA ABOUT
============================================================ */

.nxtara-about {
    position: relative;
    overflow: hidden;
    background: #000000;
}

/* ============================================================
   GRID
============================================================ */

.nxtara-about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    min-height: 820px;
}

/* ============================================================
   CONTENT SIDE
============================================================ */

.nxtara-about-content-side {
    position: relative;
    z-index: 5;

    background: #000000;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 820px;
    padding: 80px;

    /* MONTA SIN MOVER LA IMAGEN */
    transform: translateX(90px);
}

/* ============================================================
   ATMOSPHERE
============================================================ */

.nxtara-about-content-side::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 62% 50%,
            rgba(126, 0, 55, 0.72) 0%,
            rgba(126, 0, 55, 0.34) 28%,
            rgba(126, 0, 55, 0.12) 46%,
            transparent 72%
        ),
        radial-gradient(
            circle at 82% 52%,
            rgba(255, 0, 123, 0.22) 0%,
            rgba(255, 0, 123, 0.08) 20%,
            transparent 42%
        );

    filter: blur(22px);
    pointer-events: none;
    z-index: 1;
}

.nxtara-about-content-glow {
    position: absolute;

    top: 50%;
    left: 62%;

    transform: translate(-50%, -50%);

    width: 120%;
    height: 120%;

    background:
        radial-gradient(
            circle at center,
            rgba(135, 0, 65, 0.28) 0%,
            rgba(135, 0, 65, 0.12) 34%,
            transparent 74%
        );

    filter: blur(54px);
    mix-blend-mode: screen;
    opacity: 0.95;
    pointer-events: none;
    z-index: 2;
}

/* ============================================================
   CONTENT
============================================================ */

.nxtara-about-content {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 640px;

    text-align: center;
    color: #ffffff;
}

.nxtara-about-content h2 {
    margin: 0 0 28px 0;

    color: #ffffff;

    line-height: 1.05;
    font-weight: 300;
    letter-spacing: -0.04em;
}

.nxtara-about-content p {
    margin: 0 auto;

    max-width: 620px;

    color: rgba(255, 255, 255, 0.92);

    line-height: 1.42;
    font-weight: 400;
}

/* ============================================================
   IMAGE SIDE
============================================================ */

.nxtara-about-image-side {
    position: relative;
    z-index: 1;

    overflow: hidden;

    min-height: 820px;

    margin-left: 0;
}

.nxtara-about-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}

.nxtara-about-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.56) 18%,
            rgba(0, 0, 0, 0.16) 42%,
            rgba(0, 0, 0, 0.02) 100%
        );

    z-index: 2;
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1200px) {

    .nxtara-about-grid {
        grid-template-columns: 1fr;
    }

    .nxtara-about-content-side {
        min-height: 620px;
        margin-right: 0;
        padding: 90px 40px;
        transform: none;
    }

    .nxtara-about-image-side {
        min-height: 620px;
    }

    .nxtara-about-content-glow {
        left: 50%;
        width: 110%;
        height: 110%;
    }
}

@media (max-width: 768px) {

    .nxtara-about-content-side,
    .nxtara-about-image-side {
        min-height: 520px;
    }

    .nxtara-about-content-side {
        padding: 80px 28px;
    }

    .nxtara-about-content h2 {
        margin-bottom: 22px;
    }

    .nxtara-about-content p {
        line-height: 1.5;
    }

    .nxtara-about-content-glow {
        width: 110%;
        height: 110%;
        filter: blur(28px);
    }
}

