/* ==========================================================================
   CTA premium - EXCLUSIVO de Pages/Home/Index.razor
   No reutilizar estas clases en otras páginas: el CTA compartido sigue
   siendo ".sc-cta" (components.css) y no se ve afectado por este archivo.
   ========================================================================== */
.sc-cta-premium {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #0E0E0E 0%, #151515 55%, #1C1C1C 100%);
    padding: 110px 24px;
}

.sc-cta-premium__card {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 72px 56px;
    border-radius: 24px;
    text-align: center;
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.96), rgba(14, 14, 14, 0.96));
    border: 1px solid rgba(227, 6, 19, 0.35);
    box-shadow: 0 0 40px rgba(227, 6, 19, 0.08);
}

.sc-cta-premium__title {
    color: #fff;
    font-weight: 800;
    line-height: 1.15;
    font-size: clamp(1.9rem, 3.2vw + 1rem, 3.5rem);
    margin-bottom: 18px;
}

.sc-cta-premium__text {
    color: #b8b8b8;
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 36px;
}

.sc-cta-premium__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.98rem;
    padding: 16px 34px;
    border-radius: 12px;
    transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

    .sc-cta-premium__btn svg {
        width: 18px;
        height: 18px;
        transition: transform .2s ease;
    }

    .sc-cta-premium__btn:hover {
        background: var(--primary-hover);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(227, 6, 19, 0.28);
    }

        .sc-cta-premium__btn:hover svg {
            transform: translateX(4px);
        }

/* Small accent dots sitting on the card border, like the reference image */
.sc-cta-premium__dot {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 16px 4px rgba(227, 6, 19, 0.45);
    pointer-events: none;
}

.sc-cta-premium__dot--left {
    top: 100%;
    left: 6%;
    transform: translateY(-50%);
}

.sc-cta-premium__dot--right {
    top: 0;
    right: 10%;
    transform: translateY(-50%);
}

/* Background decoration: large soft rings + dot grids, purely CSS */
.sc-cta-premium__decor {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.sc-cta-premium__decor--ring-tl {
    top: -200px;
    left: -200px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    border: 1px solid rgba(227, 6, 19, 0.45);
    box-shadow: 0 0 90px 24px rgba(227, 6, 19, 0.14);
}

.sc-cta-premium__decor--ring-br {
    bottom: -220px;
    right: -180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(227, 6, 19, 0.4);
    box-shadow: 0 0 90px 24px rgba(227, 6, 19, 0.12);
}

.sc-cta-premium__decor--dots-tr {
    top: 48px;
    right: 64px;
    width: 120px;
    height: 96px;
    background-image: radial-gradient(rgba(227, 6, 19, 0.55) 1.5px, transparent 1.5px);
    background-size: 18px 18px;
}

.sc-cta-premium__decor--dots-bl {
    bottom: 48px;
    left: 64px;
    width: 120px;
    height: 96px;
    background-image: radial-gradient(rgba(227, 6, 19, 0.55) 1.5px, transparent 1.5px);
    background-size: 18px 18px;
}

/* ----- Responsive ----- */
@media (max-width: 992px) {
    .sc-cta-premium {
        padding: 88px 20px;
    }

    .sc-cta-premium__card {
        padding: 56px 36px;
    }

    .sc-cta-premium__decor--ring-tl {
        width: 340px;
        height: 340px;
        top: -160px;
        left: -160px;
    }

    .sc-cta-premium__decor--ring-br {
        width: 320px;
        height: 320px;
        bottom: -170px;
        right: -140px;
    }
}

@media (max-width: 768px) {
    .sc-cta-premium__decor--dots-tr, .sc-cta-premium__decor--dots-bl {
        display: none;
    }
}

@media (max-width: 576px) {
    .sc-cta-premium {
        padding: 64px 16px;
    }

    .sc-cta-premium__card {
        padding: 40px 22px;
        border-radius: 18px;
    }

    .sc-cta-premium__btn {
        width: 100%;
        justify-content: center;
    }

    .sc-cta-premium__decor--ring-tl {
        width: 220px;
        height: 220px;
        top: -110px;
        left: -110px;
    }

    .sc-cta-premium__decor--ring-br {
        width: 200px;
        height: 200px;
        bottom: -110px;
        right: -90px;
    }
}
