/* === SCOPE TOTAL TRAUMA-XP SPLIT TEXT === */
.txp-split-text {
    position: relative;
    width: 100%;

    /* NUEVO GRADIENTE */
    background: radial-gradient(
    circle at 120% -0%,
    #0062FF 0%,
    #375fff 10%,
    #000000 27%
    ) fixed;
    overflow: visible;
}

/* Ajuste móvil */
@media (max-width: 768px) {
    .txp-split-text {
        background: radial-gradient(
            circle at 150% 100%,
            #0062FF 0%,
            #375fff 10%,
            #000000 32%
        ) fixed;
    }
}

/* Ajuste tablet (opcional pero recomendado) */
@media (min-width: 768px) and (max-width: 1024px) {
    .blob-section,
    .txp-split-text {
        background: radial-gradient(
            circle at 135% 100%,
            #0062FF 0%,
            #375fff 10%,
            #000000 30%
        ) fixed;
    }
}

.txp-split-text .txp-code-animation {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0px;
}

.txp-split-text svg {
    width: 900%;
    height: auto;
    display: block;
    background-position: left top;
    background-size: auto;
    background-image: url('https://traumaxp.com/good/img/contact//back-img-contact.png');
}

.txp-split-text text {
    font-family: "Poppins", sans-serif;
    font-weight: 1000;
    letter-spacing: -2px;
    text-transform: uppercase;
}

/* Flechas */
.txp-split-text .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    user-select: none;
    transition: transform 0.3s ease, color 0.3s ease;
    z-index: 10;
}

.txp-split-text .left-arrow {
    left: 20px;
}

.txp-split-text .right-arrow {
    right: 20px;
}

.txp-split-text .arrow:hover {
    color: #0062ff;
    transform: translateY(-50%) scale(1.2);
}

/* Desktop */
.txp-split-text text {
    font-size: 160px;
}

/* Mobile */
@media (max-width: 768px) {
    .code-animation svg {
        width: 100%;
        height: 100vh;
    }

    .code-animation g {
        font-size: 100px;
    }

    .code-animation text:nth-child(1) {
        transform: translateY(20px);
    }

    .code-animation text:nth-child(2) {
        transform: translateY(30px);
    }

    .code-animation text:nth-child(3) {
        transform: translateY(40px);
    }

    .code-animation text:nth-child(4) {
        transform: translateY(50px);
    }

    .code-animation text:nth-child(5) {
        transform: translateY(60px);
    }
}

/* Para tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .code-animation g {
        font-size: 120px;
    }
}