.txp-split-text .txp-code-animation {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0px;
    border-top-color: #000000;
    padding-bottom: 170px;
}

.txp-split-text svg {
    width: 900%;
    height: auto;
    display: block;
    background-position: left top;
    z-index: -1;
}

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

/* Flechas */
.txp-split-text .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(2rem, 5vw, 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;
    margin-top: -50px;
}

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

.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) {
    .txp-code-animation {
        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) {
    .txp-code-animation {
        font-size: 130px;
    }
}