/* ==========================================================================
   PB Design System - CTA
   ========================================================================== */

.pb-root .cta {
    background: var(--color-footer);
    color: var(--color-blanco);
    border: var(--border-gold);
    border-radius: var(--radio-xl);
    box-shadow: var(--shadow-bordoy);
    padding: var(--space-5);
    display: grid;
    gap: .8rem;
    width: 100%;
}

.pb-root .cta__contenido {
    margin: 0 auto;
    display: grid;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    justify-items: center;
}

.pb-root .cta__kicker {
    font-family: var(--fuente-acento);
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--color-seleccion);
    text-align: center;
}

.pb-root .cta__titulo {
    font-family: var(--fuente-display);
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 700;
    line-height: 1;
    text-align: center;
    color: var(--color-texto);
}

.pb-root .cta__texto {
    font-family: var(--fuente-acento);
    font-size: 1.2rem;
    line-height: 1.45;
    font-weight: 700;
    color: var(--color-bordoy);
    text-align: center;
}

.pb-root .cta__acciones {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-7);
    justify-content: center;
    align-items: center;
    margin-top: .4rem;
}

.pb-root .cta .link-arrow {
    color: var(--color-seleccion);
}

@media (max-width: 640px) {
    .pb-root .cta {
        padding: 1.5rem 1rem;
    }

    .pb-root .cta__contenido {
        gap: .5rem;
    }

    .pb-root .cta__texto {
        font-size: 1rem;
    }

    .pb-root .cta__acciones {
        width: 100%;
        justify-content: center;
        gap: var(--space-4);
        margin-top: 0;
    }
}