/* Global CTA Styles - Shared across Cards, Single Pages, and Standalone Sections */

/* Base Button Style */
.mp-frontend-scope .btn-cta,
.mp-frontend-scope .card-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    gap: 0.5rem;
}

/* Tamanhos */
.mp-frontend-scope .cta-btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
}

.mp-frontend-scope .cta-btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.mp-frontend-scope .cta-block {
    width: 100%;
    display: flex;
}

/* Ícones */
.mp-frontend-scope .cta-icon {
    font-size: 1.2em;
    line-height: 1;
}

/* Box Layout Styles (quando layout='box') */
.mp-frontend-scope .cta-box {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.mp-frontend-scope .cta-box .cta-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.mp-frontend-scope .cta-box .cta-text {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Link Secundário (+ Detalhes) */
.details-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9em;
}

.details-link:hover {
    text-decoration: underline;
}