/* CTA global "Configura tu PC" (storefront) */
.pc-builder-cta {
    position: relative;
    overflow: hidden;
    margin-top: 2.5rem;
    background:
        linear-gradient(120deg, rgba(10, 10, 10, 0.94), rgba(229, 32, 86, 0.62)),
        var(--pc-cta-image, linear-gradient(135deg, #121212, #3a0d1c 55%, #1a1a1a));
    background-size: cover;
    background-position: center;
    color: #fff;
}

.pc-builder-cta__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(229, 32, 86, 0.28), transparent 50%),
        linear-gradient(90deg, rgba(10, 10, 10, 0.82), rgba(10, 10, 10, 0.35) 70%, rgba(10, 10, 10, 0.55));
}

.pc-builder-cta__inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1.75rem;
    padding: 3rem 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .pc-builder-cta__inner {
        grid-template-columns: 1.35fr 1fr;
        padding: 4.25rem 1rem;
    }
}

.pc-builder-cta__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    padding: 0.4rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 0.9rem;
}

.pc-builder-cta h2 {
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    line-height: 1.1;
    margin: 0 0 0.7rem;
    letter-spacing: -0.02em;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.pc-builder-cta p {
    max-width: 36rem;
    opacity: 0.92;
    margin-bottom: 1.4rem;
    font-size: 1.05rem;
    line-height: 1.5;
}

.pc-builder-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: #E52056;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.95rem 1.45rem;
    box-shadow: 0 12px 28px rgba(229, 32, 86, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pc-builder-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(229, 32, 86, 0.45);
}

.pc-builder-cta__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: flex-start;
    perspective: 600px;
}

@media (max-width: 767px) {
    .pc-builder-cta__chips {
        justify-content: center;
    }

    .pc-builder-cta__content {
        text-align: center;
    }

    .pc-builder-cta p {
        margin-left: auto;
        margin-right: auto;
    }
}

.pc-builder-cta__chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    padding: 0.6rem 0.95rem;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    transform-style: preserve-3d;
    animation: pcCtaChipFloat 5s ease-in-out infinite;
}

.pc-builder-cta__chip i {
    color: #ff7aa8;
    font-size: 0.9rem;
}

.pc-builder-cta__chip:nth-child(2n) { animation-delay: 0.35s; }
.pc-builder-cta__chip:nth-child(3n) { animation-delay: 0.7s; }
.pc-builder-cta__chip:nth-child(4n) { animation-delay: 1.05s; }
.pc-builder-cta__chip:nth-child(5n) { animation-delay: 1.4s; }

.pc-builder-cta__content {
    animation: pcCtaFadeUp 0.7s ease both;
}

@keyframes pcCtaChipFloat {
    0%, 100% { transform: translateY(0) rotateX(0deg); }
    50% { transform: translateY(-8px) rotateX(6deg); }
}

@keyframes pcCtaFadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .pc-builder-cta__chip,
    .pc-builder-cta__content,
    .pc-builder-cta__btn {
        animation: none !important;
        transition: none !important;
    }
}
