/**
 * Home — entregables al cerrar proyecto.
 */

body.page-home .cw-home-deliver {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
}

body.page-home .cw-home-deliver__head {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 1.75rem;
}

body.page-home .cw-home-deliver__tagline {
    display: block;
    width: fit-content;
    margin: 0 auto 0.7rem;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(0, 243, 255, 0.85);
}

body.page-home .cw-home-deliver__title {
    font-family: 'Poiret One', sans-serif;
    font-size: clamp(1.9rem, 3.6vw, 2.8rem);
    font-weight: 400;
    line-height: 1.28;
    letter-spacing: 2px;
    text-align: center;
    margin: 0 auto 0.85rem;
    padding-block: 0.05em 0.15em;
    background: linear-gradient(135deg, var(--neon-blue, #00f3ff), var(--neon-purple, #b967ff), var(--matrix-green, #00ff9d));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
}

body.page-home .cw-home-deliver__lead {
    margin: 0 auto;
    max-width: 48rem;
    font-size: clamp(1rem, 1.25vw, 1.1rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
}

body.page-home .cw-home-deliver__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

body.page-home .cw-home-deliver__item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
    padding: 1.05rem 1.1rem 1.05rem 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.015) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
    min-height: 0;
}

body.page-home .cw-home-deliver__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18%;
    bottom: 18%;
    width: 2px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--neon-blue, #00f3ff), var(--matrix-green, #00ff9d));
    opacity: 0.5;
    transition: opacity 0.25s ease, top 0.25s ease, bottom 0.25s ease;
}

body.page-home .cw-home-deliver__item:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 243, 255, 0.28);
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
}

body.page-home .cw-home-deliver__item:hover::before {
    opacity: 1;
    top: 12%;
    bottom: 12%;
}

body.page-home .cw-home-deliver__title-row {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    width: 100%;
    min-width: 0;
}

body.page-home .cw-home-deliver__index {
    font-family: 'Poiret One', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.06em;
    color: rgba(0, 243, 255, 0.7);
    line-height: 1;
    min-width: 1.4rem;
    flex-shrink: 0;
}

body.page-home .cw-home-deliver__item:nth-child(2) .cw-home-deliver__index {
    color: rgba(0, 255, 157, 0.75);
}

body.page-home .cw-home-deliver__item:nth-child(3) .cw-home-deliver__index {
    color: rgba(176, 38, 255, 0.8);
}

body.page-home .cw-home-deliver__item:nth-child(4) .cw-home-deliver__index {
    color: rgba(0, 243, 255, 0.65);
}

body.page-home .cw-home-deliver__icon {
    width: 2rem;
    height: 2rem;
    display: grid;
    place-items: center;
    border-radius: 10px;
    border: 1px solid rgba(0, 243, 255, 0.22);
    background: rgba(0, 243, 255, 0.08);
    color: var(--neon-blue, #00f3ff);
    font-size: 0.82rem;
    flex-shrink: 0;
}

body.page-home .cw-home-deliver__item:nth-child(2) .cw-home-deliver__icon {
    border-color: rgba(0, 255, 157, 0.24);
    background: rgba(0, 255, 157, 0.08);
    color: var(--matrix-green, #00ff9d);
}

body.page-home .cw-home-deliver__item:nth-child(3) .cw-home-deliver__icon {
    border-color: rgba(176, 38, 255, 0.28);
    background: rgba(176, 38, 255, 0.1);
    color: var(--neon-purple, #b026ff);
}

body.page-home .cw-home-deliver__item:nth-child(4) .cw-home-deliver__icon {
    border-color: rgba(0, 243, 255, 0.22);
    background: rgba(0, 243, 255, 0.08);
    color: var(--neon-blue, #00f3ff);
}

body.page-home .cw-home-deliver__title-row h3 {
    margin: 0;
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.95);
    min-width: 0;
}

body.page-home .cw-home-deliver__item > p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.55);
}

body.page-home .cw-home-deliver .cw-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.15rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none !important;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

body.page-home .cw-home-deliver .cw-chip i {
    color: var(--neon-blue, #00f3ff);
}

body.page-home .cw-home-deliver .cw-chip:hover {
    color: #fff;
    border-color: rgba(0, 243, 255, 0.4);
    background: rgba(0, 243, 255, 0.08);
}

body.page-home .cw-home-deliver__actions {
    display: flex;
    justify-content: center;
    margin-top: 1.65rem;
}

body.page-home .cw-home-deliver__actions .modern-button {
    width: auto;
    min-width: min(100%, 280px);
}

@media (max-width: 768px) {
    body.page-home .cw-home-deliver {
        padding: 0 0.15rem;
    }

    body.page-home .cw-home-deliver__head {
        text-align: left;
        max-width: none;
        margin: 0 0 1.15rem;
        padding: 0 0.15rem;
    }

    body.page-home .cw-home-deliver__tagline {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0.55rem;
        font-size: 0.68rem;
        letter-spacing: 0.12em;
    }

    body.page-home .cw-home-deliver__title {
        text-align: left;
        font-size: clamp(1.55rem, 6.2vw, 1.95rem);
        letter-spacing: 1px;
        line-height: 1.22;
        margin-bottom: 0.55rem;
    }

    body.page-home .cw-home-deliver__lead {
        text-align: left;
        font-size: 0.92rem;
        line-height: 1.55;
        max-width: none;
        color: rgba(255, 255, 255, 0.68);
    }

    body.page-home .cw-home-deliver__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.6rem;
    }

    body.page-home .cw-home-deliver__item {
        gap: 0.4rem;
        padding: 0.8rem 0.7rem 0.8rem 0.75rem;
        border-radius: 14px;
        transform: none;
    }

    body.page-home .cw-home-deliver__item:hover {
        transform: none;
    }

    body.page-home .cw-home-deliver__title-row {
        gap: 0.4rem;
    }

    body.page-home .cw-home-deliver__index {
        font-size: 0.85rem;
        min-width: 1.2rem;
    }

    body.page-home .cw-home-deliver__icon {
        width: 1.75rem;
        height: 1.75rem;
        border-radius: 8px;
        font-size: 0.72rem;
    }

    body.page-home .cw-home-deliver__title-row h3 {
        font-size: 0.86rem;
        line-height: 1.2;
    }

    body.page-home .cw-home-deliver__item > p {
        font-size: 0.74rem;
        line-height: 1.4;
    }

    body.page-home .cw-home-deliver .cw-chip {
        padding: 0.3rem 0.55rem;
        font-size: 0.62rem;
        max-width: 100%;
    }

    body.page-home .cw-home-deliver .cw-chip span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    body.page-home .cw-home-deliver__actions {
        margin-top: 1.15rem;
    }

    body.page-home .cw-home-deliver__actions .modern-button {
        width: 100%;
        min-width: 0;
        min-height: 46px;
        justify-content: center;
    }
}
