/* Pie modular de inicio */
.pie-techcore {
    padding: 22px 24px;
    border-radius: 20px;
    margin-bottom: 30px;
    animation: pieGlow 3.8s ease-in-out infinite;
}

.pie-layout {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 1px minmax(280px, 1.2fr);
    gap: 22px;
    align-items: stretch;
}

.pie-resumen {
    color: #c7d4ea;
    display: grid;
    gap: 10px;
    align-content: center;
}

.pie-resumen h3 {
    margin: 0;
    font-size: 1rem;
    color: #e8f3ff;
    line-height: 1.35;
}

.pie-resumen p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: #b8cae3;
}

.pie-divider {
    background: linear-gradient(
        to bottom,
        rgba(0, 242, 255, 0.15),
        rgba(0, 242, 255, 0.75),
        rgba(0, 242, 255, 0.15)
    );
    border-radius: 999px;
}

.pie-contacto {
    display: grid;
    gap: 10px;
}

.pie-item {
    margin: 0;
    color: #c7d4ea;
    font-size: 0.95rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    text-align: left;
}

.pie-item-body {
    display: grid;
    gap: 2px;
}

.pie-label {
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #90a8cb;
    font-weight: 600;
}

.pie-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.pie-item a {
    color: #c7d4ea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

.pie-item a:hover {
    color: #7ff7ff;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.48);
}

.pie-copy {
    text-align: center;
    color: #9fb5d6;
    font-size: 0.88rem;
    line-height: 1.45;
}

@media (max-width: 900px) {
    .pie-techcore {
        margin-bottom: 16px;
        padding: 18px;
    }

    .pie-layout {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pie-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(
            to right,
            rgba(0, 242, 255, 0.15),
            rgba(0, 242, 255, 0.75),
            rgba(0, 242, 255, 0.15)
        );
    }

    .pie-contacto {
        gap: 10px;
    }

    .pie-item {
        font-size: 0.9rem;
        align-items: flex-start;
    }

    .pie-icon {
        width: 22px;
        height: 22px;
        margin-top: 1px;
    }

    .pie-copy {
        font-size: 0.84rem;
    }
}

@keyframes pieGlow {
    0%,
    100% {
        box-shadow: 0 0 15px rgba(0, 242, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 24px rgba(0, 242, 255, 0.45);
    }
}
