/* ── Widget: CTA Register ──────────────────────────────────────────
   BEM block: .wgt-cta
   Call-to-action oscuro: "Registra tu negocio gratis hoy".
   Mobile-first.
   ──────────────────────────────────────────────────────────────────── */

.wgt-cta {
    background: #11181e;
    color: #e2e6ea;
    margin: 0;
    padding: 0;
}

.wgt-cta__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6, 32px);
    max-width: 960px;
    margin: 0 auto;
    padding: var(--space-7, 48px) var(--space-4, 16px);
}

/* ── Text ────────────────────────────────────────────────────────── */
.wgt-cta__eyebrow {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #6b8a9a;
    margin: 0 0 var(--space-2, 8px);
}

.wgt-cta__title {
    font-family: var(--font-display, var(--font-sans));
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 var(--space-4, 16px);
    line-height: 1.15;
}

.wgt-cta__title-accent {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wgt-cta__body {
    font-size: 0.9375rem;
    color: #94a3b8;
    margin: 0 0 var(--space-5, 24px);
    line-height: 1.5;
    max-width: 480px;
}

/* ── Features ────────────────────────────────────────────────────── */
.wgt-cta__features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2, 8px) var(--space-4, 16px);
}

.wgt-cta__features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2, 8px);
    font-size: 0.8125rem;
    color: #c4cad0;
    line-height: 1.4;
}

.wgt-cta__features li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #22c55e;
}

/* ── Actions ─────────────────────────────────────────────────────── */
.wgt-cta__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3, 12px);
}

.wgt-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2, 8px);
    padding: 14px 28px;
    border-radius: var(--radius-md, 10px);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
.wgt-cta__btn:hover {
    transform: translateY(-1px);
}

.wgt-cta__btn--primary {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: #fff;
    box-shadow: 0 4px 14px rgba(59,130,246,0.35);
}
.wgt-cta__btn--primary:hover {
    box-shadow: 0 6px 20px rgba(59,130,246,0.5);
}

.wgt-cta__btn--ghost {
    border: 1px solid rgba(255,255,255,0.2);
    color: #c4cad0;
}
.wgt-cta__btn--ghost:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.35);
}

.wgt-cta__fine {
    font-size: 0.6875rem;
    color: #64748b;
    margin: 4px 0 0;
}

/* ── Tablet (≥768px): side-by-side ───────────────────────────────── */
@media (min-width: 768px) {
    .wgt-cta__inner {
        grid-template-columns: 1fr auto;
        align-items: center;
        padding: var(--space-8, 64px) var(--space-5, 24px);
    }

    .wgt-cta__title {
        font-size: 1.75rem;
    }
}

/* ── Desktop (≥1024px) ───────────────────────────────────────────── */
@media (min-width: 1024px) {
    .wgt-cta__title {
        font-size: 2rem;
    }

    .wgt-cta__inner {
        padding: var(--space-9, 80px) var(--space-5, 24px);
    }
}
