/* === Dedicaciones — Marketing / web pública (alineado al generador) === */
:root {
    --mkt-primary: #4f46e5;
    --mkt-primary-soft: #eef2ff;
    --mkt-primary-dark: #3730a3;
    --mkt-ink: #0f172a;
    --mkt-muted: #64748b;
    --mkt-border: #e2e8f0;
    --mkt-surface: #ffffff;
    --mkt-bg: #f1f5f9;
    --mkt-radius: 14px;
    --mkt-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.06);
}

body.mkt-page {
    margin: 0;
    min-height: 100vh;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    color: var(--mkt-ink);
    background:
        radial-gradient(ellipse 120% 80% at 50% -20%, #e0e7ff 0%, transparent 50%),
        var(--mkt-bg);
    -webkit-font-smoothing: antialiased;
}

body.mkt-page *,
body.mkt-page *::before,
body.mkt-page *::after {
    box-sizing: border-box;
}

.mkt-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--mkt-border);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
}

.mkt-header-inner {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0.75rem 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1rem;
}

.mkt-header-inner--narrow {
    max-width: 42rem;
}

.mkt-header-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem 0.65rem;
}

.mkt-header-actions .mkt-nav-link {
    font-weight: 700;
    padding: 0.35rem 0.25rem;
}

.mkt-header-actions .mkt-btn.is-current {
    box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.25);
}

.mkt-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.5rem;
}

.mkt-brand {
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--mkt-ink);
    text-decoration: none;
}

.mkt-brand:hover { color: var(--mkt-primary); }
.mkt-brand.is-active { color: var(--mkt-primary); }

.mkt-nav-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--mkt-muted);
    text-decoration: none;
}

.mkt-nav-link:hover,
.mkt-nav-link.is-active {
    color: var(--mkt-primary);
}

.mkt-lang {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--mkt-muted);
}

.mkt-lang .mkt-select {
    border-radius: 10px;
}

.mkt-main {
    max-width: 72rem;
    margin: 0 auto;
    padding: 3rem 1rem 4rem;
}

.mkt-main--narrow {
    max-width: 42rem;
}

.mkt-main--convert {
    max-width: 56rem;
}

.mkt-page-title {
    margin: 0 0 0.5rem;
    text-align: center;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--mkt-ink);
}

.mkt-page-sub {
    margin: 0 auto 2rem;
    max-width: 36rem;
    text-align: center;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--mkt-muted);
}

.mkt-price-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .mkt-price-grid { grid-template-columns: 1fr 1fr; }
}

.mkt-flow {
    margin: 0 0 2.5rem;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mkt-alert {
    margin-bottom: 1.5rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #991b1b;
    font-size: 0.875rem;
    line-height: 1.45;
}

.mkt-alert--warn {
    border-color: #fde68a;
    background: #fffbeb;
    color: #92400e;
}

.mkt-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.mkt-inline-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    font-size: 0.875rem;
    text-align: center;
}

.mkt-hero {
    text-align: center;
    margin-bottom: 3.5rem;
}

.mkt-hero h1 {
    margin: 0 0 1rem;
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--mkt-ink);
}

.mkt-hero .lead {
    margin: 0 auto;
    max-width: 40rem;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.5;
    color: var(--mkt-muted);
    font-weight: 500;
}

.mkt-eyebrow {
    margin: 2rem auto 0;
    max-width: 40rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
}

.mkt-card {
    background: var(--mkt-surface);
    border: 1px solid var(--mkt-border);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--mkt-shadow);
}

.mkt-card--accent {
    border-color: #c7d2fe;
    box-shadow: var(--mkt-shadow), 0 0 0 1px rgba(79, 70, 229, 0.06);
}

.mkt-card--cta {
    border-color: #c7d2fe;
    background: linear-gradient(180deg, #fafbff 0%, #fff 100%);
}

.mkt-card h2,
.mkt-card h3 {
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--mkt-ink);
}

.mkt-card p,
.mkt-muted {
    color: var(--mkt-muted);
}

.mkt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.8125rem;
    font-weight: 700;
    font-family: inherit;
    line-height: 1.2;
    cursor: pointer;
    border: 1px solid transparent;
    text-decoration: none;
    transition: transform 0.12s, box-shadow 0.15s, background 0.15s, border-color 0.15s, color 0.15s;
    white-space: normal;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
}

.mkt-btn:hover { transform: translateY(-1px); }

.mkt-btn-primary {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.25);
}

.mkt-btn-primary:hover {
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.4);
    color: #fff;
}

.mkt-btn-secondary {
    background: #fff;
    color: #334155;
    border-color: #cbd5e1;
}

.mkt-btn-secondary:hover {
    border-color: #a5b4fc;
    color: #4338ca;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.mkt-btn-outline {
    background: #fff;
    color: #4338ca;
    border-color: #c7d2fe;
}

.mkt-btn-outline:hover {
    background: var(--mkt-primary-soft);
    border-color: #a5b4fc;
    color: var(--mkt-primary-dark);
}

.mkt-btn-sm {
    padding: 7px 14px;
    font-size: 0.75rem;
    border-radius: 8px;
}

.mkt-btn-block {
    display: flex;
    width: 100%;
    max-width: 100%;
}

.mkt-path-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}

@media (min-width: 640px) {
    .mkt-path-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.mkt-path-card {
    display: flex;
    flex-direction: column;
    text-align: left;
    min-width: 0;
    width: 100%;
    overflow: hidden;
    padding: 1.35rem 1.35rem 1.25rem;
}

.mkt-path-card h2 {
    font-size: 1.0625rem;
}

.mkt-path-card p {
    margin: 0.5rem 0 0;
    flex: 1 1 auto;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--mkt-muted);
}

.mkt-path-card .mkt-btn {
    margin-top: 1.25rem;
    align-self: stretch;
    flex-shrink: 0;
}

.mkt-path-card--featured {
    border-color: #c7d2fe;
    background: linear-gradient(180deg, #eef2ff 0%, #fff 55%);
    box-shadow: var(--mkt-shadow), 0 0 0 1px rgba(79, 70, 229, 0.08);
}

.mkt-path-card--featured h2::after {
    content: '';
    display: inline-block;
    width: 0.45rem;
    height: 0.45rem;
    margin-left: 0.45rem;
    margin-bottom: 0.15rem;
    border-radius: 999px;
    background: var(--mkt-primary);
    vertical-align: middle;
}

.mkt-feat-grid {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .mkt-feat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .mkt-feat-grid { grid-template-columns: repeat(4, 1fr); }
}

.mkt-feat-grid h2 {
    margin: 0 0 0.5rem;
    font-size: 1.0625rem;
}

.mkt-feat-grid p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--mkt-muted);
}

.mkt-section-title {
    margin: 0 0 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--mkt-ink);
}

.mkt-link {
    color: var(--mkt-primary);
    font-weight: 600;
    text-decoration: none;
}

.mkt-link:hover { text-decoration: underline; color: var(--mkt-primary-dark); }

.mkt-back {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--mkt-primary);
    text-decoration: none;
}

.mkt-back:hover { color: var(--mkt-primary-dark); }

.mkt-back-chevron {
    display: inline-block;
    width: 0.55rem;
    height: 0.55rem;
    border-inline-start: 2px solid currentColor;
    border-block-end: 2px solid currentColor;
    transform: rotate(45deg);
    margin-inline-end: 0.15rem;
}

.mkt-footer {
    border-top: 1px solid var(--mkt-border);
    background: #fff;
    padding: 1.75rem 1rem 2rem;
    text-align: center;
    font-size: 0.8125rem;
    color: var(--mkt-muted);
}

.mkt-footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem 1.25rem;
    margin-bottom: 0.85rem;
}

.mkt-footer-nav a {
    color: var(--mkt-primary);
    font-weight: 600;
    text-decoration: none;
}

.mkt-footer-nav a:hover { text-decoration: underline; }

.mkt-footer-tag {
    margin: 0;
    color: var(--mkt-muted);
}

.mkt-footer a {
    color: var(--mkt-primary);
    font-weight: 600;
    text-decoration: none;
}

.mkt-footer a:hover { text-decoration: underline; }

.mkt-cta-band {
    margin: 2.5rem 0 0;
    padding: 1.75rem 1.5rem;
    border-radius: 16px;
    border: 1px solid #c7d2fe;
    background: linear-gradient(180deg, #eef2ff 0%, #fff 70%);
    box-shadow: var(--mkt-shadow);
    text-align: center;
}

.mkt-cta-band h2 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #312e81;
}

.mkt-cta-band p {
    margin: 0.65rem auto 0;
    max-width: 34rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--mkt-muted);
}

.mkt-cta-band-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.mkt-highlight-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.mkt-highlight-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.1rem 1.25rem;
    border-radius: 14px;
    border: 1px solid var(--mkt-border);
    background: #f8fafc;
}

.mkt-highlight-list .dot {
    flex-shrink: 0;
    width: 0.65rem;
    height: 0.65rem;
    margin-top: 0.45rem;
    border-radius: 999px;
    background: var(--mkt-primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12);
}

.mkt-highlight-list span:last-child {
    font-size: 1rem;
    line-height: 1.55;
    color: #334155;
}

.mkt-article-shell {
    padding: 2rem 1.5rem;
}

@media (min-width: 768px) {
    .mkt-article-shell { padding: 2.75rem 2.5rem; }
    .mkt-highlight-list span:last-child { font-size: 1.0625rem; }
}

.mkt-article-kicker {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--mkt-primary);
}

.mkt-bank-box {
    margin-top: 1rem;
    padding: 1rem 1.15rem;
    border-radius: 12px;
    border: 1px solid var(--mkt-border);
    background: #fff;
}

.mkt-bank-box .iban {
    margin: 0.5rem 0 0;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.875rem;
    color: var(--mkt-ink);
    user-select: all;
}

.mkt-form-card {
    background: var(--mkt-surface);
    border: 1px solid var(--mkt-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--mkt-shadow);
}

.mkt-main--article,
.mkt-article {
    max-width: 48rem;
}

.mkt-article-title {
    margin: 1rem 0 0;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: var(--mkt-ink);
}

.mkt-article-lead {
    margin-top: 1rem;
    font-size: 1.125rem;
    line-height: 1.55;
    color: var(--mkt-muted);
}

.mkt-article h1 {
    margin: 1rem 0 0;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--mkt-ink);
}

.mkt-article .lead {
    margin-top: 1rem;
    font-size: 1.125rem;
    line-height: 1.55;
    color: var(--mkt-muted);
}

.mkt-panel {
    margin-top: 2rem;
    background: #fff;
    border: 1px solid var(--mkt-border);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--mkt-shadow);
}

.mkt-panel-title,
.mkt-panel h2 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--mkt-ink);
}

.mkt-panel-title--sm {
    font-size: 1.15rem;
}

.mkt-panel p,
.mkt-panel li {
    color: #475569;
    line-height: 1.6;
}

.mkt-list {
    margin: 1rem 0 0;
    padding-inline-start: 1.25rem;
    list-style: disc;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mkt-list--ordered {
    list-style: decimal;
}

.mkt-panel--cta {
    border-color: #c7d2fe;
    background: linear-gradient(180deg, #eef2ff 0%, #fff 70%);
}

.mkt-prose {
    margin: 1rem 0 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #475569;
}

.mkt-faq {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mkt-faq details,
.mkt-faq-item {
    border: 1px solid var(--mkt-border);
    border-radius: 12px;
    background: #fff;
    padding: 1rem 1.15rem;
}

.mkt-faq summary {
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--mkt-ink);
}

.mkt-faq details p,
.mkt-faq-item p {
    margin: 0.75rem 0 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--mkt-muted);
}

.mkt-flow-step {
    border-left: 3px solid #a5b4fc;
    padding-left: 1rem;
    margin-left: 0.35rem;
}

/* Mocks de producto (estilo app claro) */
.mock-screen {
    display: flex;
    flex-direction: column;
    height: 10rem;
    overflow: hidden;
    border-radius: 0.75rem;
    border: 1px solid var(--mkt-border);
    background: linear-gradient(165deg, #f8fafc 0%, #eef2ff 50%, #f1f5f9 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.mock-screen > .mock-grid { flex: 1; min-height: 0; }

.mock-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.35rem 0.5rem;
    border-bottom: 1px solid var(--mkt-border);
    background: rgba(255, 255, 255, 0.9);
}

.mock-bar span {
    color: #4338ca !important;
}

.mock-dot { width: 6px; height: 6px; border-radius: 9999px; background: #94a3b8; }
.mock-dot.r { background: #f87171; }
.mock-dot.g { background: #4ade80; }
.mock-dot.y { background: #facc15; }

.mock-grid { display: grid; gap: 3px; padding: 0.4rem; }
.mock-cell { border-radius: 2px; min-height: 10px; background: #e2e8f0; }
.mock-cell.p { background: rgba(99, 102, 241, 0.55); }
.mock-cell.q { background: rgba(129, 140, 248, 0.45); }
.mock-cell.b { background: rgba(56, 189, 248, 0.45); }
.mock-cell.x { background: rgba(248, 113, 113, 0.25); border: 1px dashed rgba(239, 68, 68, 0.55); }
.mock-cell.o { background: rgba(52, 211, 153, 0.45); }

.mkt-img-frame {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
    height: 12.5rem;
    padding: 0;
    overflow: hidden;
    border-radius: 0.75rem;
    border: 1px solid var(--mkt-border);
    background:
        linear-gradient(180deg, rgba(238, 242, 255, 0.65), rgba(248, 250, 252, 0.9)),
        #f8fafc;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    cursor: zoom-in;
    font: inherit;
    color: inherit;
    text-align: left;
}

button.mkt-img-frame:hover {
    border-color: #c7d2fe;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.12);
    transform: none;
}

button.mkt-img-frame:focus-visible {
    outline: 2px solid var(--mkt-primary);
    outline-offset: 2px;
}

.mkt-img-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(79, 70, 229, 0.08);
    pointer-events: none;
}

.mkt-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
    padding: 0.5rem;
    display: block;
    pointer-events: none;
    filter: drop-shadow(0 6px 16px rgba(15, 23, 42, 0.08));
}

.mkt-img-zoom-hint {
    position: absolute;
    right: 0.5rem;
    bottom: 0.5rem;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    background: rgba(15, 23, 42, 0.72);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    opacity: 0;
    transition: opacity 0.15s;
}

button.mkt-img-frame:hover .mkt-img-zoom-hint,
button.mkt-img-frame:focus-visible .mkt-img-zoom-hint {
    opacity: 1;
}

body.mkt-lightbox-open {
    overflow: hidden;
}

.mkt-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.mkt-lightbox[hidden] {
    display: none !important;
}

.mkt-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(4px);
    cursor: pointer;
    border: 0;
}

.mkt-lightbox-dialog {
    position: relative;
    z-index: 1;
    max-width: min(96vw, 1100px);
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.35);
    animation: mkt-lb-in 0.18s ease-out;
}

@keyframes mkt-lb-in {
    from { opacity: 0; transform: scale(0.97) translateY(6px); }
    to { opacity: 1; transform: none; }
}

.mkt-lightbox-label {
    margin: 0 2rem 0 0;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--mkt-ink);
}

.mkt-lightbox-dialog img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: calc(92vh - 4.5rem);
    height: auto;
    margin: 0 auto;
    border-radius: 10px;
    border: 1px solid var(--mkt-border);
    background: #f8fafc;
}

.mkt-lightbox-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 2.25rem;
    height: 2.25rem;
    border: 0;
    border-radius: 999px;
    background: #f1f5f9;
    color: #334155;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    font-family: inherit;
}

.mkt-lightbox-close:hover {
    background: #e2e8f0;
    color: var(--mkt-ink);
}

.mkt-lightbox-close:focus-visible,
.mkt-btn:focus-visible {
    outline: 2px solid var(--mkt-primary);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .mkt-btn,
    .mkt-img-zoom-hint,
    .mkt-lightbox-dialog {
        transition: none !important;
        animation: none !important;
    }
    .mkt-btn:hover { transform: none; }
}

/* Formularios marketing */
.mkt-form-stack {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.mkt-form-grid {
    display: grid;
    gap: 0.85rem;
}

.mkt-field-narrow {
    max-width: 14rem;
}

@media (min-width: 640px) {
    .mkt-form-grid--2 { grid-template-columns: 1fr 1fr; }
}

.mkt-flow-step h2 {
    margin: 0;
    font-size: 1.0625rem;
    font-weight: 800;
    color: var(--mkt-ink);
}

.mkt-flow-step > p {
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--mkt-muted);
}

.mkt-subpanel {
    margin-top: 1.5rem;
    padding: 1.25rem;
    border-radius: 14px;
    border: 1px solid var(--mkt-border);
    background: #f8fafc;
}

.mkt-subpanel h3 {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--mkt-ink);
}

.mkt-subpanel > p {
    margin: 0.35rem 0 0;
    font-size: 0.75rem;
    color: var(--mkt-muted);
}

/* === Forms nativos (sin DaisyUI) === */
.mkt-select {
    appearance: none;
    -webkit-appearance: none;
    min-width: 9.5rem;
    max-width: 12rem;
    height: 2.15rem;
    padding: 0 2rem 0 0.7rem;
    border: 1px solid var(--mkt-border);
    border-radius: 10px;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M1.4 1.2 6 5.8l4.6-4.6 1.2 1.2L6 8.2.2 2.4z'/%3E%3C/svg%3E") no-repeat right 0.65rem center;
    background-size: 10px;
    color: var(--mkt-ink);
    font: 600 0.8125rem/1 "Plus Jakarta Sans", system-ui, sans-serif;
    cursor: pointer;
}
.mkt-select:focus {
    outline: 2px solid rgba(79, 70, 229, 0.35);
    outline-offset: 1px;
    border-color: #a5b4fc;
}

.mkt-field { display: flex; flex-direction: column; gap: 0.35rem; }
.mkt-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #475569;
}
.mkt-input,
.mkt-textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid var(--mkt-border);
    border-radius: 10px;
    background: #fff;
    color: var(--mkt-ink);
    font: 500 0.9375rem/1.4 "Plus Jakarta Sans", system-ui, sans-serif;
    padding: 0.7rem 0.85rem;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.mkt-textarea { min-height: 5.5rem; resize: vertical; }
.mkt-input:focus,
.mkt-textarea:focus {
    outline: none;
    border-color: #a5b4fc;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.12);
}
.mkt-check {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.9rem 1rem;
    border: 1px solid var(--mkt-border);
    border-radius: 12px;
    background: #f8fafc;
    cursor: pointer;
}
.mkt-check input,
.mkt-check-input {
    margin-top: 0.15rem;
    width: 1.05rem;
    height: 1.05rem;
    accent-color: var(--mkt-primary);
    flex-shrink: 0;
}
.mkt-check span {
    font-size: 0.8125rem;
    line-height: 1.45;
    color: #475569;
}

/* SEO landing espectacular */
.mkt-seo-hero {
    position: relative;
    margin: 0 0 1.75rem;
    padding: 1.75rem 1.5rem 1.85rem;
    border-radius: 20px;
    border: 1px solid #c7d2fe;
    background:
        radial-gradient(ellipse 80% 90% at 100% 0%, rgba(199, 210, 254, 0.55), transparent 55%),
        linear-gradient(165deg, #eef2ff 0%, #fff 58%);
    box-shadow: var(--mkt-shadow);
    overflow: hidden;
}
.mkt-seo-hero .mkt-back { margin-bottom: 1rem; }
.mkt-seo-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0 0 0.85rem;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    background: rgba(79, 70, 229, 0.1);
    color: #3730a3;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.mkt-seo-hero .mkt-article-title { margin-top: 0; max-width: 40rem; }
.mkt-seo-hero .mkt-article-lead { max-width: 38rem; }
.mkt-benefit-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.15rem;
}
.mkt-benefit-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    background: rgba(255,255,255,0.85);
    color: #334155;
    font-size: 0.75rem;
    font-weight: 700;
}
.mkt-benefit-chip::before {
    content: "";
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 999px;
    background: var(--mkt-primary);
}
.mkt-feature-cards {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.1rem;
}
@media (min-width: 700px) {
    .mkt-feature-cards { grid-template-columns: 1fr 1fr; }
}
.mkt-feature-card {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 1rem 1.05rem;
    border-radius: 14px;
    border: 1px solid var(--mkt-border);
    background: #f8fafc;
}
.mkt-feature-num {
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
}
.mkt-feature-card p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.45;
    color: #334155;
    font-weight: 600;
}
.mkt-related-grid {
    display: grid;
    gap: 0.75rem;
    margin-top: 1rem;
}
@media (min-width: 640px) {
    .mkt-related-grid { grid-template-columns: 1fr 1fr; }
}
.mkt-related-card {
    display: block;
    padding: 0.95rem 1.05rem;
    border-radius: 12px;
    border: 1px solid var(--mkt-border);
    background: #fff;
    color: var(--mkt-ink);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 700;
    transition: border-color 0.15s, box-shadow 0.15s, color 0.15s;
}
.mkt-related-card:hover {
    border-color: #c7d2fe;
    color: var(--mkt-primary);
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.08);
}

/* Portada: recursos SEO */
.mkt-resource-grid {
    display: grid;
    gap: 1rem;
}
@media (min-width: 768px) {
    .mkt-resource-grid { grid-template-columns: repeat(3, 1fr); }
}
.mkt-resource-card {
    display: flex;
    flex-direction: column;
    padding: 1.15rem 1.2rem;
    border-radius: 14px;
    border: 1px solid var(--mkt-border);
    background: linear-gradient(180deg, #fafbff, #fff);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.12s;
}
.mkt-resource-card:hover {
    border-color: #c7d2fe;
    box-shadow: 0 8px 22px rgba(79, 70, 229, 0.1);
    transform: translateY(-2px);
}
.mkt-resource-card h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--mkt-ink);
}
.mkt-resource-card p {
    margin: 0.55rem 0 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--mkt-muted);
    flex: 1;
}
.mkt-chip-grid {
    display: grid;
    gap: 0.65rem;
    margin-top: 1.15rem;
}
@media (min-width: 640px) {
    .mkt-chip-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
    .mkt-chip-grid { grid-template-columns: repeat(3, 1fr); }
}
.mkt-chip-link {
    display: block;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--mkt-border);
    background: #fff;
    color: #334155;
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 700;
    transition: border-color 0.15s, color 0.15s, box-shadow 0.15s;
}
.mkt-chip-link:hover {
    border-color: #c7d2fe;
    color: var(--mkt-primary);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.mkt-section-block { margin-bottom: 2.5rem; }

/* === v10 polish: utilidades propias, premium, RTL === */
.mkt-center { text-align: center; }
.mkt-stack-sm > * + * { margin-top: 0.5rem; }
.mkt-stack-md > * + * { margin-top: 1rem; }
.mkt-stack-lg > * + * { margin-top: 1.5rem; }
.mkt-mb-0 { margin-bottom: 0; }
.mkt-mb-2 { margin-bottom: 0.5rem; }
.mkt-mb-4 { margin-bottom: 1rem; }
.mkt-mb-6 { margin-bottom: 1.5rem; }
.mkt-mb-8 { margin-bottom: 2rem; }
.mkt-mb-10 { margin-bottom: 2.5rem; }
.mkt-mt-1 { margin-top: 0.25rem; }
.mkt-mt-2 { margin-top: 0.5rem; }
.mkt-mt-3 { margin-top: 0.75rem; }
.mkt-mt-4 { margin-top: 1rem; }
.mkt-pad-lg { padding: 2rem; }
.mkt-text-price {
    margin: 0.5rem 0 0;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--mkt-ink);
    letter-spacing: -0.02em;
}
.mkt-text-price--accent { color: #3730a3; }
.mkt-text-card-title {
    margin: 0.75rem 0 0;
    font-size: 1rem;
    font-weight: 800;
    color: var(--mkt-ink);
}
.mkt-text-body {
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--mkt-muted);
}
.mkt-text-xs {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.45;
    color: var(--mkt-muted);
}
.mkt-text-sm {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--mkt-muted);
}
.mkt-heading-form {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--mkt-ink);
    text-align: center;
}
.mkt-heading-form + .mkt-lede,
.mkt-lede {
    margin: 0 0 1.5rem;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--mkt-muted);
    text-align: center;
}
.mkt-success-box {
    padding: 2rem 1.5rem;
    text-align: center;
}
.mkt-success-box h1 {
    margin: 0 0 1rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: #312e81;
}
.mkt-success-box p {
    margin: 0 auto 1.5rem;
    max-width: 28rem;
    color: #475569;
    line-height: 1.55;
}
.mkt-success-box .mkt-btn {
    margin-top: 0.25rem;
}
.mkt-success-box .mkt-inline-links {
    margin-top: 0.25rem;
}

/* Path cards premium equal buttons */
.mkt-path-card {
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.mkt-path-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(79, 70, 229, 0.12);
    border-color: #c7d2fe;
}
.mkt-path-card .mkt-btn {
    min-height: 2.75rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Feature product cards */
.mkt-feat-grid .mkt-card {
    display: flex;
    flex-direction: column;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
    overflow: hidden;
}
.mkt-feat-grid .mkt-card:hover {
    transform: translateY(-3px);
    border-color: #c7d2fe;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}
.mkt-feat-grid .mkt-card h2 { margin-top: 0.15rem; }
.mkt-feat-grid .mkt-card > p { flex: 1; }

/* Mock fallbacks sin Tailwind */
.mock-screen { margin-bottom: 1rem; }
.mock-bar-title {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #4338ca !important;
}
.mock-bar-meta {
    font-size: 0.5625rem;
    color: #64748b !important;
    font-weight: 600;
}
.mock-badge {
    border-radius: 4px;
    border: 1px solid #c7d2fe;
    background: #eef2ff;
    color: #3730a3;
    font-size: 0.5rem;
    font-weight: 800;
    padding: 0.15rem 0.4rem;
}
.mock-dots { display: flex; gap: 0.25rem; }
.mock-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3px;
    padding: 0.4rem;
    flex: 1;
    min-height: 0;
    grid-template-rows: repeat(5, 1fr);
}
.mock-grid-5.rows-4 { grid-template-rows: repeat(4, 1fr); }
.mock-week {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    padding: 0.25rem 0.35rem 0.4rem;
}
.mock-week-head {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    margin-bottom: 0.2rem;
    text-align: center;
    font-size: 0.4375rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
}

/* Comprar más landing */
.mkt-main--convert { padding-top: 2.5rem; }
.mkt-convert-intro {
    margin: 0 auto 2rem;
    max-width: 36rem;
    text-align: center;
}
.mkt-price-grid .mkt-card {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.mkt-price-grid .mkt-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(79, 70, 229, 0.1);
}
.mkt-flow {
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--mkt-border);
    background: #fff;
    box-shadow: var(--mkt-shadow);
}
.mkt-flow-step {
    padding-bottom: 0.25rem;
}
.mkt-flow-step + .mkt-flow-step {
    padding-top: 0.5rem;
    border-top: 1px solid #f1f5f9;
    margin-top: 0.25rem;
    padding-left: 1rem;
    margin-left: 0.35rem;
}
.mkt-subpanel { margin-top: 1.25rem; }
.mkt-form-stack.mkt-mt-4 { margin-top: 1rem; }
.mkt-btn-auto { width: auto; }

/* SEO rhythm */
.mkt-article > .mkt-panel,
.mkt-article > .mkt-cta-band,
.mkt-article > .mkt-seo-hero {
    margin-top: 0;
}
.mkt-article > .mkt-panel + .mkt-panel,
.mkt-article > .mkt-panel + .mkt-cta-band,
.mkt-article > .mkt-cta-band + .mkt-panel {
    margin-top: 1.75rem;
}
.mkt-seo-hero { margin-bottom: 1.75rem; }
.mkt-panel { margin-top: 0; }
.mkt-cta-band {
    margin-top: 1.75rem;
    padding: 2rem 1.5rem;
}
.mkt-cta-mid {
    margin: 1.75rem 0 0;
    padding: 1.25rem 1.35rem;
    border-radius: 14px;
    border: 1px dashed #c7d2fe;
    background: #fafbff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem 1rem;
}
.mkt-cta-mid p {
    margin: 0;
    flex: 1 1 14rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4338ca;
}

/* Características header */
.mkt-article-shell > header {
    margin-bottom: 2.25rem;
}

/* Resource section header */
.mkt-section-head { margin-bottom: 1.35rem; }

/* RTL */
html[dir="rtl"] .mkt-path-card,
html[dir="rtl"] .mkt-feat-grid .mkt-card,
html[dir="rtl"] .mkt-feature-card,
html[dir="rtl"] .mkt-highlight-list li,
html[dir="rtl"] .mkt-nav,
html[dir="rtl"] .mkt-header-actions,
html[dir="rtl"] .mkt-lang,
html[dir="rtl"] .mkt-check,
html[dir="rtl"] .mkt-benefit-row,
html[dir="rtl"] .mkt-cta-band-actions,
html[dir="rtl"] .mkt-footer-nav {
    text-align: right;
}
html[dir="rtl"] .mkt-flow-step {
    border-left: 0;
    border-right: 3px solid #a5b4fc;
    padding-left: 0;
    padding-right: 1rem;
    margin-left: 0;
    margin-right: 0.35rem;
}
html[dir="rtl"] .mkt-path-card--featured h2::after {
    margin-left: 0;
    margin-right: 0.45rem;
}
html[dir="rtl"] .mkt-feature-card { flex-direction: row-reverse; }
html[dir="rtl"] .mkt-highlight-list li { flex-direction: row-reverse; }
html[dir="rtl"] .mkt-check { flex-direction: row-reverse; }
html[dir="rtl"] .mkt-back { flex-direction: row-reverse; }
html[dir="rtl"] .mkt-img-zoom-hint {
    right: auto;
    left: 0.5rem;
}
html[dir="rtl"] .mkt-select {
    background-position: left 0.65rem center;
    padding: 0 0.7rem 0 2rem;
}
html[dir="rtl"] .mkt-center,
html[dir="rtl"] .mkt-hero,
html[dir="rtl"] .mkt-page-title,
html[dir="rtl"] .mkt-page-sub,
html[dir="rtl"] .mkt-heading-form,
html[dir="rtl"] .mkt-lede,
html[dir="rtl"] .mkt-cta-band,
html[dir="rtl"] .mkt-success-box {
    text-align: center;
}

/* === v11 cierre 10/10 === */
.mkt-cta-mid-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
}
html[dir="rtl"] .mkt-path-card,
html[dir="rtl"] .mkt-feat-grid .mkt-card {
    text-align: start;
}
html[dir="rtl"] .mkt-flow-step + .mkt-flow-step {
    padding-left: 0;
    padding-right: 1rem;
    margin-left: 0;
    margin-right: 0.35rem;
}
html[dir="rtl"] .mkt-lightbox-close {
    right: auto;
    left: 0.5rem;
}
html[dir="rtl"] .mkt-back-chevron {
    transform: rotate(-135deg);
    margin-inline-end: 0;
    margin-inline-start: 0.15rem;
}
html[dir="rtl"] .mkt-cta-mid,
html[dir="rtl"] .mkt-cta-mid-actions {
    text-align: right;
}
@media (max-width: 640px) {
    .mkt-header-inner {
        gap: 0.75rem;
    }
    .mkt-header-actions {
        width: 100%;
        justify-content: flex-start;
    }
    html[dir="rtl"] .mkt-header-actions {
        justify-content: flex-end;
    }
}

