/* Página inicial / apresentação da plataforma */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
}

body.marketing-home {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text-1);
    line-height: 1.5;
}

.marketing-home a { text-decoration: none; }

/* ── Header ── */
.mkt-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: color-mix(in srgb, var(--bg) 88%, transparent);
    border-bottom: 1px solid var(--border);
    transition: background 0.2s ease, border-color 0.2s ease;
}
[data-theme="dark"] .mkt-header {
    background: rgba(10, 12, 22, 0.92);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}
[data-theme="light"] .mkt-header {
    background: rgba(255, 255, 255, 0.9);
    border-bottom-color: var(--border-2);
}
.mkt-header-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.mkt-brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}
.mkt-logo {
    height: 44px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
}
.mkt-logo.platform-logo-placeholder-wrap {
    height: auto;
    max-height: 44px;
}
.mkt-logo.platform-logo-placeholder-wrap .cfg-placeholder-svg--full {
    max-height: 44px;
    width: auto;
}
.mkt-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    flex-wrap: wrap;
}
.mkt-nav a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-2);
    padding: 8px 12px;
    border-radius: 8px;
    transition: color 0.15s, background 0.15s;
}
.mkt-nav a:hover {
    color: var(--text-1);
    background: var(--nav-hover-bg);
}
.mkt-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.mkt-theme-btn {
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 10px;
    border: 1px solid var(--border-2);
    background: var(--surface-2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-2);
    font-size: 14px;
    flex-shrink: 0;
    transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.mkt-theme-btn:hover {
    color: var(--text-1);
    border-color: var(--accent-line);
    background: var(--nav-hover-bg);
}
[data-theme="dark"] .mkt-theme-btn {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.78);
}
[data-theme="dark"] .mkt-theme-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff;
}
.mkt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, transform 0.12s, box-shadow 0.15s;
    font-family: inherit;
}
.mkt-btn:hover { transform: translateY(-1px); }
.mkt-btn--primary {
    background: var(--action);
    color: #fff;
    box-shadow: 0 4px 16px rgba(var(--accent-rgb), 0.28);
}
.mkt-btn--primary:hover {
    background: var(--action-hover);
    color: #fff;
}
.mkt-btn--ghost {
    background: transparent;
    color: var(--text-2);
    border-color: var(--border-2);
}
.mkt-btn--ghost:hover {
    border-color: var(--accent-line);
    color: var(--accent);
}
.mkt-btn--white {
    background: #fff;
    color: var(--brand-cyan-dark);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.mkt-btn--white:hover { background: rgba(255, 255, 255, 0.94); color: var(--brand-cyan-dark); }
.mkt-btn--outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.42);
}
.mkt-btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* ── Hero banner ── */
.mkt-hero {
    position: relative;
    overflow: hidden;
    padding: 72px 24px 88px;
}
.mkt-hero-bg {
    position: absolute;
    inset: 0;
    background: var(--brand-card-gradient);
    pointer-events: none;
}
[data-theme="dark"] .mkt-hero-bg {
    background: var(--brand-card-gradient-dark);
}
.mkt-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 75% 60% at 15% 40%, rgba(255,255,255,0.11) 0%, transparent 55%);
}
.mkt-hero-deco {
    position: absolute;
    pointer-events: none;
    user-select: none;
    filter: brightness(0);
    z-index: 0;
}
.mkt-hero-deco--mesh {
    inset: -10% -8%;
    width: 116%;
    height: 120%;
    object-fit: cover;
    opacity: 0.3;
}
.mkt-hero-deco--orbit {
    top: 12%;
    right: 8%;
    width: min(24vw, 220px);
    animation: mktFloat 14s ease-in-out infinite;
    opacity: 0.4;
}
.mkt-hero-deco--chip {
    top: 28%;
    right: 18%;
    width: min(16vw, 140px);
    animation: mktFloat 11s ease-in-out infinite reverse;
    opacity: 0.34;
}
.mkt-hero-deco--nodes {
    bottom: 8%;
    left: 4%;
    width: min(30vw, 260px);
    animation: mktDrift 16s ease-in-out infinite;
    opacity: 0.45;
}
@keyframes mktFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes mktDrift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(8px, -10px); }
}
@media (prefers-reduced-motion: reduce) {
    .mkt-hero-deco { animation: none !important; }
    .mkt-dash-live-dot,
    .mkt-dash-kpi-pulse { animation: none !important; }
}
.mkt-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}
.mkt-hero-copy { min-width: 0; }
.mkt-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    margin-bottom: 20px;
}
.mkt-hero-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0 0 16px;
}
.mkt-hero-lead {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    max-width: 520px;
    margin: 0 0 28px;
}
.mkt-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}
.mkt-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.mkt-hero-stat strong {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}
.mkt-hero-stat span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
}
.mkt-hero-visual {
    position: relative;
    min-height: 320px;
}
.mkt-hero-card {
    position: relative;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 24px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
}
.mkt-hero-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.mkt-hero-card-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #34D399;
    box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.25);
}
.mkt-hero-card-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}
.mkt-hero-card-rows { display: flex; flex-direction: column; gap: 12px; }
.mkt-hero-card-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.mkt-hero-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    flex-shrink: 0;
}
.mkt-hero-card-text strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}
.mkt-hero-card-text span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.62);
}

/* ── Sections ── */
.mkt-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 64px 24px;
}
.mkt-section--alt {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.mkt-section-wrap {
    width: 100%;
}
.mkt-section-wrap--alt {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.mkt-section-wrap--alt .mkt-section {
    padding-top: 64px;
    padding-bottom: 64px;
}
.mkt-section-sub--left {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    max-width: 480px;
}

/* ── Pro trust strip ── */
.mkt-pro-strip {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
}
[data-theme="light"] .mkt-pro-strip { background: #f8fafc; }
.mkt-pro-strip-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}
.mkt-pro-badge {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--surface-2);
    transition: border-color 0.15s;
}
.mkt-pro-badge:hover { border-color: var(--accent-line); }
.mkt-pro-badge > i {
    color: var(--accent);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}
.mkt-pro-badge strong {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--text-1);
    line-height: 1.3;
}
.mkt-pro-badge span {
    font-size: 11px;
    color: var(--text-3);
    line-height: 1.4;
}

/* ── Enterprise pillars ── */
.mkt-pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.mkt-pillar {
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--surface-2);
    padding: 28px 26px;
    transition: border-color 0.18s, box-shadow 0.18s;
}
.mkt-pillar:hover {
    border-color: var(--accent-line);
    box-shadow: 0 8px 28px rgba(25, 45, 162, 0.08);
}
.mkt-pillar-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--accent-dim);
    border: 1px solid var(--accent-line);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    font-size: 18px;
    margin-bottom: 16px;
}
.mkt-pillar h3 {
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-1);
    margin: 0 0 10px;
}
.mkt-pillar > p {
    font-size: 13px;
    color: var(--text-3);
    line-height: 1.65;
    margin: 0 0 16px;
}
.mkt-pillar-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 6px;
    border-top: 1px solid var(--border);
    padding-top: 14px;
}
.mkt-pillar-list li {
    font-size: 12px;
    color: var(--text-2);
    padding-left: 16px;
    position: relative;
}
.mkt-pillar-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 7px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

/* ── Outcomes / Impact ── */
.mkt-outcomes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.mkt-outcome {
    text-align: center;
    padding: 28px 20px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--surface-2);
    transition: border-color 0.15s, transform 0.15s;
}
.mkt-outcome:hover {
    border-color: var(--accent-line);
    transform: translateY(-2px);
}
.mkt-outcome-val {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}
.mkt-outcome strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 6px;
    line-height: 1.3;
}
.mkt-outcome > span:last-child {
    font-size: 12px;
    color: var(--text-3);
    line-height: 1.5;
}

/* ── Vitória expanded ── */
.mkt-helia-capabilities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 28px;
}
.mkt-helia-cap {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--surface-2);
    transition: border-color 0.15s;
}
.mkt-helia-cap:hover { border-color: var(--accent-line); }
.mkt-helia-cap > i {
    color: var(--accent);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}
.mkt-helia-cap strong {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 4px;
}
.mkt-helia-cap span {
    font-size: 12px;
    color: var(--text-3);
    line-height: 1.55;
}
.mkt-helia-examples {
    margin-top: 24px;
    padding: 20px 24px;
    border-radius: 14px;
    border: 1px dashed var(--accent-line);
    background: var(--accent-dim);
}
.mkt-helia-examples-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent);
    margin: 0 0 12px;
}
.mkt-helia-examples-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.mkt-helia-examples-grid span {
    font-size: 12.5px;
    color: var(--text-2);
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    font-style: italic;
}

/* ── CTA expanded ── */
.mkt-cta-banner-inner {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    align-items: center;
    text-align: left;
}
.mkt-cta-copy h2 { margin-bottom: 12px; }
.mkt-cta-copy p { margin-bottom: 20px; max-width: none; }
.mkt-cta-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mkt-cta-list li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 10px;
}
.mkt-cta-list i {
    color: #34D399;
    font-size: 12px;
    flex-shrink: 0;
}
.mkt-cta-banner-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
.mkt-cta-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    margin: 4px 0 0;
    line-height: 1.5;
}

/* ── Integrations with subtitle ── */
.mkt-integrations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
    max-width: 1180px;
    margin: 0 auto;
}
.mkt-section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}
.mkt-section-head--split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px 48px;
    align-items: end;
    max-width: 1180px;
    text-align: left;
    margin-bottom: 48px;
}
.mkt-section-head--split .mkt-section-head-main { min-width: 0; }
.mkt-section-head--split .mkt-section-sub--left {
    margin-bottom: 4px;
    max-width: none;
    align-self: end;
}
.mkt-section-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 8px;
}
.mkt-section-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(26px, 3.5vw, 34px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-1);
    margin: 0 0 10px;
    line-height: 1.15;
}
.mkt-section-sub {
    font-size: 15px;
    color: var(--text-3);
    margin: 0;
    line-height: 1.6;
}

/* Feature banners */
.mkt-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.mkt-feature {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--surface-2);
    padding: 28px 24px;
    transition: border-color 0.18s, transform 0.15s, box-shadow 0.18s;
}
.mkt-feature:hover {
    border-color: var(--accent-line);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(25, 45, 162, 0.10);
}
.mkt-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--accent-dim);
    border: 1px solid var(--accent-line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 20px;
    margin-bottom: 16px;
}
.mkt-feature h3 {
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-1);
    margin: 0 0 8px;
}
.mkt-feature p {
    font-size: 13px;
    color: var(--text-3);
    margin: 0;
    line-height: 1.6;
}

/* Hubs grid */
.mkt-hubs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.mkt-hub {
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--surface-2);
    padding: 20px 18px;
    text-align: center;
    transition: border-color 0.15s, transform 0.12s;
}
.mkt-hub:hover {
    border-color: var(--accent-line);
    transform: translateY(-2px);
}
.mkt-hub-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid var(--accent-line);
}
.mkt-hub h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-1);
    margin: 0 0 4px;
}
.mkt-hub p {
    font-size: 11px;
    color: var(--text-3);
    margin: 0;
    line-height: 1.4;
}

/* Vitória banner */
.mkt-helia-banner {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: var(--surface);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: center;
    padding: 32px 36px;
}
.mkt-helia-banner-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 0% 50%, rgba(var(--accent-rgb), 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 50% 60% at 100% 30%, rgba(79, 127, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}
.mkt-helia-avatar {
    position: relative;
    z-index: 1;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(25, 45, 162, 0.22);
    flex-shrink: 0;
}
.mkt-helia-avatar .helix-avatar,
.mkt-helia-avatar .helix-avatar--lg {
    width: 100%;
    height: 100%;
}
.mkt-helia-avatar svg,
.mkt-helia-avatar img { width: 100%; height: 100%; display: block; object-fit: cover; }
.mkt-helia-copy {
    position: relative;
    z-index: 1;
    min-width: 0;
}
.mkt-helia-copy h3 {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-1);
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}
.mkt-helia-copy p {
    font-size: 14px;
    color: var(--text-3);
    margin: 0 0 16px;
    line-height: 1.6;
    max-width: 560px;
}
.mkt-helia-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.mkt-helia-chip {
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 100px;
    background: var(--accent-dim);
    border: 1px solid var(--accent-line);
    color: var(--accent);
}

/* Wide CTA banner */
.mkt-cta-banner {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 48px 40px;
    background: var(--brand-gradient);
}
[data-theme="dark"] .mkt-cta-banner {
    background: linear-gradient(135deg, #0a0c16 0%, #121a42 100%);
}
.mkt-cta-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}
.mkt-cta-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
}
.mkt-cta-banner h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(26px, 3.5vw, 32px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}
.mkt-cta-banner p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.76);
    margin: 0 0 24px;
    line-height: 1.6;
}

/* ── Footer ── */
.mkt-footer {
    border-top: 1px solid var(--border);
    background: var(--surface);
    padding: 56px 24px 0;
}
[data-theme="light"] .mkt-footer { background: #f8fafc; }

.mkt-footer-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.mkt-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}

.mkt-footer-col--brand {
    padding-right: 16px;
}

.mkt-footer-logo {
    height: 28px;
    width: auto;
    margin-bottom: 12px;
    opacity: 0.92;
    display: block;
}
.mkt-footer-logo.platform-logo-placeholder-wrap {
    height: auto; max-height: 28px;
}

.mkt-footer-tagline {
    font-family: 'Sora', sans-serif;
    font-size: 12px; font-weight: 700;
    color: var(--accent);
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.mkt-footer-desc {
    font-size: 13px;
    color: var(--text-3);
    line-height: 1.6;
    margin: 0 0 16px;
}

.mkt-footer-support {
    margin-top: 0 !important;
}
.mkt-footer .platform-support,
.platform-support.mkt-footer-support {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
}
.mkt-footer .platform-support__item {
    font-size: 12.5px;
    color: var(--text-3);
    display: flex; align-items: center; gap: 7px;
    text-decoration: none;
    transition: color 0.15s;
}
.mkt-footer .platform-support__item:hover { color: var(--accent); }
.mkt-footer .platform-support__item i { color: var(--accent); font-size: 11px; }

.mkt-footer-col-title {
    font-family: 'Sora', sans-serif;
    font-size: 11px; font-weight: 700;
    color: var(--text-2);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 16px;
}

.mkt-footer-links {
    list-style: none;
    padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 10px;
}
.mkt-footer-links a {
    font-size: 13px;
    color: var(--text-3);
    text-decoration: none;
    display: flex; align-items: center; gap: 7px;
    transition: color 0.15s;
}
.mkt-footer-links a i { color: var(--accent); font-size: 11px; width: 14px; text-align: center; }
.mkt-footer-links a:hover { color: var(--text-1); }

.mkt-footer-badge {
    font-size: 12px;
    color: var(--text-3);
    display: flex; align-items: center; gap: 7px;
}
.mkt-footer-badge i { color: var(--accent); font-size: 11px; width: 14px; text-align: center; }

.mkt-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 16px;
}

.mkt-footer-copy {
    font-size: 12px;
    color: var(--text-3);
    margin: 0;
}
.mkt-footer-copy strong { color: var(--text-2); }

.mkt-footer-bottom-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mkt-footer-built {
    font-size: 12px;
    color: var(--text-3);
    display: flex; align-items: center; gap: 5px;
}
.mkt-footer-built i { color: #f87171; font-size: 11px; }

.mkt-footer-theme-btn {
    width: 32px; height: 32px;
    font-size: 13px;
}

@media (max-width: 991.98px) {
    .mkt-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .mkt-footer-col--brand { grid-column: 1 / -1; padding-right: 0; }
    .mkt-footer .platform-support,
    .platform-support.mkt-footer-support { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 575.98px) {
    .mkt-footer { padding: 40px 20px 0; }
    .mkt-footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .mkt-footer-col--brand { grid-column: auto; }
    .mkt-footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
    .mkt-footer-built { display: none; }
}

/* Trust strip */
.mkt-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
    padding: 20px 24px;
}
.mkt-strip-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.mkt-strip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--text-3);
    line-height: 1.35;
}
.mkt-strip-item i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--accent-dim);
    border: 1px solid var(--accent-line);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}
.mkt-strip-item strong {
    display: block;
    color: var(--text-1);
    font-size: 13px;
    font-weight: 700;
}

/* Steps */
.mkt-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.mkt-step {
    position: relative;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--surface-2);
    padding: 24px 20px;
    transition: border-color 0.15s, transform 0.12s;
}
.mkt-step:hover {
    border-color: var(--accent-line);
    transform: translateY(-2px);
}
.mkt-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent-dim);
    border: 1px solid var(--accent-line);
    color: var(--accent);
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 14px;
}
.mkt-step-body h3 {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-1);
    margin: 0 0 8px;
}
.mkt-step-body p {
    font-size: 12.5px;
    color: var(--text-3);
    margin: 0;
    line-height: 1.55;
}

/* Personas */
.mkt-personas {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.mkt-persona {
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--surface-2);
    padding: 24px 20px;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.mkt-persona:hover {
    border-color: var(--accent-line);
    box-shadow: 0 10px 28px rgba(25, 45, 162, 0.08);
}
.mkt-persona-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--accent-dim);
    border: 1px solid var(--accent-line);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
}
.mkt-persona h3 {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-1);
    margin: 0 0 8px;
}
.mkt-persona > p {
    font-size: 12.5px;
    color: var(--text-3);
    margin: 0 0 14px;
    line-height: 1.55;
}
.mkt-persona ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.mkt-persona li {
    font-size: 11.5px;
    color: var(--text-2);
    padding-left: 16px;
    position: relative;
}
.mkt-persona li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.7;
}

/* RH banner */
.mkt-rh-banner {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--border);
    padding: 36px 40px;
}
.mkt-rh-banner-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(var(--accent-rgb), 0.10) 0%, var(--surface) 45%, var(--surface-2) 100%);
    pointer-events: none;
}
.mkt-rh-banner-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}
.mkt-rh-banner-copy .mkt-section-title {
    text-align: left;
    margin-bottom: 12px;
}
.mkt-rh-modules {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.mkt-rh-modules li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text-2);
}
.mkt-rh-modules li i {
    color: var(--accent);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

/* Showcase */
.mkt-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.mkt-showcase-card {
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--surface-2);
    padding: 22px 18px;
    transition: border-color 0.15s, transform 0.12s;
}
.mkt-showcase-card:hover {
    border-color: var(--accent-line);
    transform: translateY(-2px);
}
.mkt-showcase-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--accent-dim);
    border: 1px solid var(--accent-line);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 12px;
}
.mkt-showcase-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-1);
    margin: 0 0 6px;
}
.mkt-showcase-card p {
    font-size: 12px;
    color: var(--text-3);
    margin: 0;
    line-height: 1.5;
}

/* Security */
.mkt-security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.mkt-security-card {
    text-align: center;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--surface-2);
    padding: 28px 22px;
}
.mkt-security-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    margin: 0 auto 14px;
    background: var(--accent-dim);
    border: 1px solid var(--accent-line);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.mkt-security-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-1);
    margin: 0 0 8px;
}
.mkt-security-card p {
    font-size: 12.5px;
    color: var(--text-3);
    margin: 0;
    line-height: 1.55;
}

/* FAQ */
.mkt-faq {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mkt-faq-item {
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--surface-2);
    overflow: hidden;
}
.mkt-faq-item summary {
    padding: 16px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-1);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: background 0.12s;
}
.mkt-faq-item summary::-webkit-details-marker { display: none; }
.mkt-faq-item summary::after {
    content: '+';
    font-size: 18px;
    font-weight: 400;
    color: var(--accent);
    flex-shrink: 0;
    line-height: 1;
}
.mkt-faq-item[open] summary::after { content: '−'; }
.mkt-faq-item summary:hover { background: var(--nav-hover-bg); }
.mkt-faq-item p {
    padding: 0 18px 16px;
    margin: 0;
    font-size: 13px;
    color: var(--text-3);
    line-height: 1.6;
}

/* ── Métricas animadas ── */
.mkt-metric-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}
.mkt-metric-card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.mkt-metric-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.18); }
.mkt-metric-card--accent {
    background: var(--accent-dim);
    border-color: var(--accent-line);
}
.mkt-metric-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: var(--accent-dim);
    border: 1px solid var(--accent-line);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    margin-bottom: 8px;
}
.mkt-metric-card--accent .mkt-metric-icon { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.mkt-metric-val {
    font-family: 'Sora', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    display: flex; align-items: flex-start; gap: 2px;
}
.mkt-metric-val sup { font-size: 20px; font-weight: 700; margin-top: 4px; }
.mkt-metric-card--accent .mkt-metric-val { color: var(--text-1); }
.mkt-metric-label {
    font-size: 13px; font-weight: 700; color: var(--text-1);
}
.mkt-metric-sub { font-size: 11.5px; color: var(--text-3); }

/* Coverage bars */
.mkt-coverage-chart {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 36px;
    max-width: 820px;
    margin: 0 auto;
}
.mkt-chart-title {
    font-family: 'Sora', sans-serif;
    font-size: 15px; font-weight: 700;
    color: var(--text-1);
    margin: 0 0 24px;
}
.mkt-bars { display: flex; flex-direction: column; gap: 16px; }
.mkt-bar-row {
    display: grid;
    grid-template-columns: 160px 1fr 44px;
    align-items: center;
    gap: 14px;
}
.mkt-bar-label { font-size: 13px; font-weight: 500; color: var(--text-2); }
.mkt-bar-track {
    height: 10px;
    background: var(--border);
    border-radius: 6px;
    overflow: hidden;
}
.mkt-bar-fill {
    height: 100%;
    width: 0;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--accent), #2DD4FF);
    transition: width 1.2s cubic-bezier(0.22,1,0.36,1);
}
.mkt-bars--visible .mkt-bar-fill { width: var(--pct); }
.mkt-bar-pct { font-size: 12px; font-weight: 700; color: var(--accent); text-align: right; }
.mkt-chart-note { font-size: 11px; color: var(--text-3); margin: 20px 0 0; font-style: italic; }

/* ── Dashboard preview (app mockup) ── */
.mkt-dashboard-preview {
    position: relative;
}
.mkt-dash-window {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.04),
        0 24px 64px rgba(0, 0, 0, 0.18),
        0 8px 24px rgba(25, 45, 162, 0.08);
}
[data-theme="light"] .mkt-dash-window {
    box-shadow:
        0 0 0 1px rgba(0,0,0,0.04),
        0 24px 64px rgba(25, 45, 162, 0.10),
        0 8px 24px rgba(0, 0, 0, 0.06);
}

/* Chrome bar */
.mkt-dash-chrome {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    background: var(--surface-2);
    border-bottom: 1px solid var(--border);
}
.mkt-dash-chrome-dots {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}
.mkt-dash-chrome-dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--border-2);
}
.mkt-dash-chrome-dots span:nth-child(1) { background: #f87171; }
.mkt-dash-chrome-dots span:nth-child(2) { background: #fbbf24; }
.mkt-dash-chrome-dots span:nth-child(3) { background: #4ade80; }
.mkt-dash-chrome-title {
    flex: 1;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-2);
    display: flex;
    align-items: center;
    gap: 8px;
}
.mkt-dash-chrome-title i { color: var(--accent); font-size: 13px; }
.mkt-dash-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #4ade80;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.25);
}
.mkt-dash-live-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #4ade80;
    animation: mktPulse 2s ease-in-out infinite;
}
@keyframes mktPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
    50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(74,222,128,0); }
}

/* Toolbar */
.mkt-dash-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 20px;
    border-bottom: 1px solid var(--border);
    background: color-mix(in srgb, var(--surface) 96%, var(--accent-dim));
    flex-wrap: wrap;
}
.mkt-dash-toolbar-left,
.mkt-dash-toolbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.mkt-dash-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-2);
    padding: 5px 12px;
    border-radius: 8px;
    background: var(--surface-2);
    border: 1px solid var(--border);
}
.mkt-dash-pill i { color: var(--accent); font-size: 10px; }
.mkt-dash-pill--muted { color: var(--text-3); font-weight: 500; }
.mkt-dash-pill--muted i { color: var(--text-3); }
.mkt-dash-pill--action {
    color: #f87171;
    border-color: rgba(239,68,68,0.3);
    background: rgba(239,68,68,0.06);
}
.mkt-dash-pill--action i { color: #f87171; }

/* KPIs */
.mkt-dash-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 16px 20px 0;
}
.mkt-dash-kpi {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    transition: border-color 0.15s, transform 0.15s;
}
.mkt-dash-kpi:hover {
    border-color: var(--accent-line);
    transform: translateY(-1px);
}
.mkt-dash-kpi-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.mkt-dash-kpi-icon {
    width: 32px; height: 32px;
    border-radius: 9px;
    background: var(--accent-dim);
    border: 1px solid var(--accent-line);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    font-size: 13px;
}
.mkt-dash-kpi-icon--cyan { background: rgba(45,212,255,0.12); border-color: rgba(45,212,255,0.3); color: #2DD4FF; }
.mkt-dash-kpi-icon--red { background: rgba(239,68,68,0.1); border-color: rgba(239,68,68,0.3); color: #f87171; }
.mkt-dash-spark {
    width: 56px; height: 22px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.45;
}
.mkt-dash-spark--up { stroke: #4ade80; }
.mkt-dash-kpi-pulse {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #f87171;
    animation: mktPulse 1.5s ease-in-out infinite;
}
.mkt-dash-kpi--good { border-color: rgba(45,212,255,0.2); }
.mkt-dash-kpi--crit {
    border-color: rgba(239,68,68,0.35);
    background: linear-gradient(135deg, rgba(239,68,68,0.06) 0%, var(--surface-2) 100%);
}
.mkt-dash-kpi-val {
    font-family: 'Sora', sans-serif;
    font-size: 26px; font-weight: 800;
    color: var(--text-1);
    line-height: 1.1;
}
.mkt-dash-kpi-val small { font-size: 14px; font-weight: 600; }
.mkt-dash-kpi--good .mkt-dash-kpi-val { color: #2DD4FF; }
.mkt-dash-kpi--crit .mkt-dash-kpi-val { color: #f87171; }
.mkt-dash-kpi-label { font-size: 11.5px; font-weight: 600; color: var(--text-2); margin-top: 2px; }
.mkt-dash-kpi-delta { font-size: 10.5px; color: var(--text-3); margin-top: 4px; display: flex; align-items: center; gap: 4px; }
.mkt-dash-kpi-delta--ok { color: #4ade80; }
.mkt-dash-kpi-delta--warn { color: #fb923c; }
.mkt-dash-kpi-delta--crit { color: #f87171; }

/* Main grid */
.mkt-dash-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 12px;
    padding: 16px 20px 20px;
    align-items: start;
}
.mkt-dash-main-left,
.mkt-dash-main-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

/* Chart cards */
.mkt-dash-chart-card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px;
}
.mkt-dash-chart-card--wide { flex: 1; }
.mkt-dash-chart-head {
    font-size: 12px; font-weight: 600; color: var(--text-2);
    margin-bottom: 16px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 8px; flex-wrap: wrap;
}
.mkt-dash-chart-head > span:first-child {
    display: flex; align-items: center; gap: 7px;
}
.mkt-dash-chart-head i { color: var(--accent); }
.mkt-dash-chart-badge {
    font-size: 10px;
    font-weight: 600;
    color: var(--accent);
    padding: 3px 8px;
    border-radius: 6px;
    background: var(--accent-dim);
    border: 1px solid var(--accent-line);
}
.mkt-dash-chart-link {
    font-size: 11px;
    color: var(--accent);
    cursor: default;
    display: flex; align-items: center; gap: 4px;
}

/* Bar chart */
.mkt-dash-bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 140px;
    padding-top: 8px;
}
.mkt-dash-bar-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    height: 100%;
    position: relative;
    cursor: default;
}
.mkt-dash-bar-col::before {
    content: attr(data-val);
    position: absolute;
    top: 0;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-3);
    opacity: 0;
    transition: opacity 0.2s;
}
.mkt-dash-bar-col:hover::before { opacity: 1; }
.mkt-dash-bar-col span { font-size: 10px; font-weight: 600; color: var(--text-3); }
.mkt-dash-bar-fill {
    width: 100%;
    max-width: 36px;
    height: 0;
    border-radius: 6px 6px 0 0;
    background: linear-gradient(180deg, #4F6BF5 0%, var(--accent) 100%);
    transition: height 1s cubic-bezier(0.22,1,0.36,1);
}
.mkt-bars--visible .mkt-dash-bar-fill { height: var(--h); }
.mkt-dash-bar-col--dim .mkt-dash-bar-fill { background: var(--border-2); opacity: 0.6; }
.mkt-dash-bar-col--peak .mkt-dash-bar-fill {
    background: linear-gradient(180deg, #2DD4FF 0%, var(--accent) 100%);
    box-shadow: 0 -4px 16px rgba(45,212,255,0.25);
}
.mkt-dash-bar-col--peak span { color: var(--accent); font-weight: 700; }

/* Ticket feed */
.mkt-dash-tickets {
    list-style: none;
    padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 8px;
}
.mkt-dash-ticket {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--surface);
    transition: border-color 0.15s, background 0.15s;
}
.mkt-dash-ticket:hover { border-color: var(--accent-line); background: var(--nav-hover-bg); }
.mkt-dash-ticket--p1 { border-left: 3px solid #f87171; }
.mkt-dash-ticket--p2 { border-left: 3px solid #fb923c; }
.mkt-dash-ticket-pri {
    font-size: 9px;
    font-weight: 800;
    padding: 3px 6px;
    border-radius: 5px;
    background: rgba(239,68,68,0.12);
    color: #f87171;
    flex-shrink: 0;
    letter-spacing: 0.04em;
}
.mkt-dash-ticket--p2 .mkt-dash-ticket-pri { background: rgba(251,146,60,0.12); color: #fb923c; }
.mkt-dash-ticket-pri--p3 { background: rgba(45,212,255,0.12); color: #2DD4FF; }
.mkt-dash-ticket-body { flex: 1; min-width: 0; }
.mkt-dash-ticket-body strong {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mkt-dash-ticket-body span { font-size: 10.5px; color: var(--text-3); }
.mkt-dash-ticket-status {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 100px;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.mkt-dash-ticket-status--open { background: rgba(239,68,68,0.1); color: #f87171; }
.mkt-dash-ticket-status--prog { background: rgba(45,212,255,0.1); color: #2DD4FF; }
.mkt-dash-ticket-status--done { background: rgba(74,222,128,0.1); color: #4ade80; }

/* Donut */
.mkt-dash-donut-wrap {
    position: relative;
    width: 110px; height: 110px;
    margin: 0 auto 14px;
}
.mkt-dash-donut {
    width: 110px; height: 110px;
    border-radius: 50%;
    background: conic-gradient(
        var(--accent) 0% 58%,
        #2DD4FF 58% 85%,
        var(--border-2) 85% 100%
    );
    -webkit-mask: radial-gradient(transparent 40px, #000 41px);
    mask: radial-gradient(transparent 40px, #000 41px);
}
.mkt-dash-donut-center {
    position: absolute;
    inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 1px;
}
.mkt-dash-donut-center strong { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800; color: var(--text-1); }
.mkt-dash-donut-center span { font-size: 10px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.05em; }
.mkt-dash-legend {
    display: flex; flex-direction: column; gap: 8px;
}
.mkt-dash-legend span {
    font-size: 11.5px; color: var(--text-2);
    display: flex; align-items: center; gap: 8px;
    justify-content: space-between;
}
.mkt-dash-legend b { color: var(--text-1); font-weight: 700; }
.mkt-legend-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* SLA bars */
.mkt-sla-bars { display: flex; flex-direction: column; gap: 12px; }
.mkt-sla-row {
    display: grid;
    grid-template-columns: 36px 1fr 36px;
    align-items: center;
    gap: 10px;
}
.mkt-sla-label { font-size: 12px; color: var(--text-2); display: flex; align-items: center; gap: 6px; }
.mkt-sla-dot {
    width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.mkt-sla-dot--p1 { background: #f87171; }
.mkt-sla-dot--p2 { background: #fb923c; }
.mkt-sla-dot--p3 { background: #facc15; }
.mkt-sla-dot--p4 { background: #4ade80; }
.mkt-sla-track { height: 7px; background: var(--border); border-radius: 4px; overflow: hidden; }
.mkt-sla-fill {
    height: 100%; width: 0; border-radius: 4px;
    background: linear-gradient(90deg, var(--accent), #2DD4FF);
    transition: width 1.2s cubic-bezier(0.22,1,0.36,1);
}
.mkt-sla-fill--warn { background: linear-gradient(90deg, #fb923c, #facc15); }
.mkt-bars--visible .mkt-sla-fill { width: var(--pct); }
.mkt-sla-val { font-size: 11.5px; font-weight: 700; color: var(--accent); text-align: right; }
.mkt-sla-fill--warn ~ .mkt-sla-val,
.mkt-sla-row:first-child .mkt-sla-val { color: #fb923c; }

/* Vitória insight card */
.mkt-dash-vitoria {
    border-radius: 14px;
    padding: 16px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-dim) 80%, var(--surface-2)) 0%, var(--surface-2) 100%);
    border: 1px solid var(--accent-line);
    position: relative;
    overflow: hidden;
}
.mkt-dash-vitoria::before {
    content: '';
    position: absolute;
    top: -20px; right: -20px;
    width: 80px; height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45,212,255,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.mkt-dash-vitoria-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.mkt-dash-vitoria-avatar {
    width: 32px; height: 32px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent), #2DD4FF);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 13px;
    flex-shrink: 0;
}
.mkt-dash-vitoria-head strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-1);
}
.mkt-dash-vitoria-head span { font-size: 10px; color: var(--text-3); }
.mkt-dash-vitoria p {
    font-size: 12px;
    color: var(--text-2);
    line-height: 1.6;
    margin: 0 0 12px;
}
.mkt-dash-vitoria-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.mkt-dash-vitoria-btn {
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    background: var(--accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: default;
}
.mkt-dash-vitoria-btn--ghost {
    background: transparent;
    color: var(--text-2);
    border: 1px solid var(--border);
}

/* CSAT + Team row */
.mkt-dash-mini-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.mkt-dash-csat,
.mkt-dash-team {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--surface-2);
}
.mkt-dash-csat-ring {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 3px solid #4ade80;
    border-top-color: var(--border-2);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transform: rotate(-45deg);
}
.mkt-dash-csat-ring span {
    transform: rotate(45deg);
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #4ade80;
}
.mkt-dash-csat strong,
.mkt-dash-team strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-1);
}
.mkt-dash-csat span,
.mkt-dash-team span { font-size: 10px; color: var(--text-3); }
.mkt-dash-team-avatars {
    display: flex;
    flex-shrink: 0;
}
.mkt-dash-team-avatars span {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--accent-dim);
    border: 2px solid var(--surface-2);
    display: flex; align-items: center; justify-content: center;
    font-size: 9px;
    font-weight: 700;
    color: var(--accent);
    margin-left: -8px;
}
.mkt-dash-team-avatars span:first-child { margin-left: 0; }
.mkt-dash-team-more {
    background: var(--accent) !important;
    color: #fff !important;
    font-size: 8px !important;
}

/* Footnote */
.mkt-dash-footnote {
    font-size: 11px;
    color: var(--text-3);
    text-align: center;
    padding: 12px 20px;
    margin: 0;
    border-top: 1px solid var(--border);
    background: var(--surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.mkt-dash-footnote i { color: var(--accent); font-size: 11px; }

/* ── Comparação ── */
.mkt-compare-wrap {
    overflow-x: auto;
    border-radius: 20px;
    border: 1px solid var(--border);
}
.mkt-compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.mkt-compare-table thead th,
.mkt-compare-table tbody td {
    padding: 16px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.mkt-compare-table thead th:first-child,
.mkt-compare-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text-2);
    background: var(--surface-2);
}
.mkt-compare-table tbody tr:last-child td { border-bottom: none; }
.mkt-compare-table tbody tr:hover td { background: var(--nav-hover-bg); }
.mkt-compare-th {
    font-weight: 700; font-size: 13px; color: var(--text-2);
    background: var(--surface-2);
}
.mkt-compare-th--unio {
    background: var(--accent-dim);
    border-left: 2px solid var(--accent-line);
    border-right: 2px solid var(--accent-line);
}
.mkt-compare-brand {
    font-family: 'Sora', sans-serif;
    font-size: 15px; font-weight: 800;
    color: var(--accent);
    display: block;
}
.mkt-compare-badge {
    display: inline-block; margin-top: 4px;
    font-size: 10px; font-weight: 700;
    background: var(--accent); color: #fff;
    padding: 2px 8px; border-radius: 20px;
    text-transform: uppercase; letter-spacing: 0.05em;
}
.mkt-compare-yes {
    color: #4ade80; font-size: 18px;
    background: rgba(74,222,128,0.06);
    border-left: 2px solid var(--accent-line);
    border-right: 2px solid var(--accent-line);
}
.mkt-compare-no { color: var(--text-3); font-size: 18px; }
.mkt-compare-partial { color: #facc15; font-size: 14px; }
.mkt-compare-text-good { font-weight: 700; color: #4ade80; }
.mkt-compare-text-bad { font-weight: 700; color: #f87171; }

/* ── Who strip (personas compactas) ── */
.mkt-who-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
    justify-content: center;
}
.mkt-who-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 18px;
    flex: 1;
    min-width: 180px;
    max-width: 260px;
}
.mkt-who-item > i {
    font-size: 18px;
    color: var(--accent);
    flex-shrink: 0;
    width: 36px; height: 36px;
    background: var(--accent-dim);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
}
.mkt-who-item div { display: flex; flex-direction: column; gap: 2px; }
.mkt-who-item strong { font-size: 13px; font-weight: 700; color: var(--text-1); }
.mkt-who-item span { font-size: 11.5px; color: var(--text-3); }

/* ── CSS Tabs ── */
.mkt-tab-input { display: none; }
.mkt-tabs-wrap { max-width: 1100px; margin: 0 auto; }
.mkt-tabs-nav {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 0;
}
.mkt-tabs-nav label {
    padding: 12px 24px;
    font-size: 14px; font-weight: 600;
    color: var(--text-3);
    cursor: pointer;
    border-radius: 10px 10px 0 0;
    border: 1px solid transparent;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    display: flex; align-items: center; gap: 8px;
    transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.mkt-tabs-nav label:hover { color: var(--text-1); background: var(--nav-hover-bg); }
.mkt-tab-panel { display: none; }
#tab-rh:checked ~ .mkt-tabs-content #panel-rh,
#tab-ti:checked ~ .mkt-tabs-content #panel-ti,
#tab-rec:checked ~ .mkt-tabs-content #panel-rec { display: block; }
#tab-rh:checked ~ .mkt-tabs-nav label[for="tab-rh"],
#tab-ti:checked ~ .mkt-tabs-nav label[for="tab-ti"],
#tab-rec:checked ~ .mkt-tabs-nav label[for="tab-rec"] {
    color: var(--accent);
    border-bottom-color: var(--accent);
    background: var(--accent-dim);
}
.mkt-tab-panel .mkt-rh-banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 32px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 20px;
}
.mkt-tab-panel .mkt-rh-banner-copy h3 {
    font-family: 'Sora', sans-serif;
    font-size: 22px; font-weight: 700;
    color: var(--text-1);
    margin: 0 0 12px;
    line-height: 1.3;
}
.mkt-tab-panel .mkt-rh-banner-copy p {
    font-size: 14px; color: var(--text-2);
    margin: 0 0 20px; line-height: 1.6;
}

/* ── Depoimentos ── */
.mkt-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.mkt-testimonial {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.mkt-testimonial:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.15); }
.mkt-testimonial-stars { color: #facc15; font-size: 12px; display: flex; gap: 2px; }
.mkt-testimonial blockquote {
    margin: 0;
    font-size: 13.5px;
    color: var(--text-2);
    line-height: 1.65;
    font-style: italic;
    flex: 1;
}
.mkt-testimonial-author {
    display: flex; align-items: center; gap: 12px;
    margin-top: 4px;
}
.mkt-testimonial-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--accent-dim);
    border: 1px solid var(--accent-line);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; flex-shrink: 0;
}
.mkt-testimonial-author strong { font-size: 13px; font-weight: 700; color: var(--text-1); display: block; }
.mkt-testimonial-author span { font-size: 11.5px; color: var(--text-3); }

/* ── Integrações ── */
/* ── Integrações ── */
.mkt-int-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-width: 160px;
    flex: 1 1 calc(25% - 12px);
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-2);
    transition: border-color 0.15s, color 0.15s;
}
.mkt-int-badge i { color: var(--accent); font-size: 20px; margin-bottom: 4px; }
.mkt-int-badge span { font-size: 13px; }
.mkt-int-badge small {
    font-size: 11px;
    font-weight: 400;
    color: var(--text-3);
    line-height: 1.4;
}
.mkt-int-badge:hover { border-color: var(--accent-line); color: var(--text-1); }
.mkt-int-badge--api { border-style: dashed; border-color: var(--accent-line); color: var(--accent); }
.mkt-int-badge--api i { color: var(--accent); }

/* ── LGPD Trust band ── */
.mkt-trust-band {
    background: color-mix(in srgb, var(--surface-2) 60%, var(--accent-dim));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
}
[data-theme="light"] .mkt-trust-band { background: #f0f9ff; border-color: #bae6fd; }
.mkt-trust-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: center;
}
.mkt-trust-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; color: var(--text-2);
}
.mkt-trust-item i { color: var(--accent); font-size: 16px; flex-shrink: 0; }
.mkt-trust-item strong { color: var(--text-1); }

/* Hub TI banner — variante do mkt-rh-banner */
.mkt-ti-banner {
    border-color: rgba(45, 212, 255, 0.18);
    background: linear-gradient(135deg, color-mix(in srgb, var(--surface-2) 96%, #2DD4FF) 0%, var(--surface-2) 100%);
}
[data-theme="light"] .mkt-ti-banner {
    background: linear-gradient(135deg, #f0f9ff 0%, #fff 100%);
    border-color: #bae6fd;
}

/* Núcleos grid expandido */
.mkt-hubs {
    grid-template-columns: repeat(4, 1fr) !important;
}
.mkt-hub--more {
    background: var(--accent-dim);
    border-color: var(--accent-line);
}
.mkt-hub--more .mkt-hub-icon {
    background: var(--accent-dim);
    color: var(--accent);
}
.mkt-hub--more h3 {
    color: var(--accent);
}

/* Strip 3-colunas no desktop */
.mkt-strip-inner {
    grid-template-columns: repeat(3, 1fr) !important;
}

/* Showcase 3 colunas no desktop */
.mkt-showcase {
    grid-template-columns: repeat(3, 1fr) !important;
}

/* Features 3 colunas */
.mkt-features {
    grid-template-columns: repeat(3, 1fr) !important;
}

/* Responsive */
@media (max-width: 991.98px) {
    .mkt-hero-inner { grid-template-columns: 1fr; gap: 36px; }
    .mkt-hero-visual { min-height: auto; }
    .mkt-features { grid-template-columns: 1fr 1fr !important; }
    .mkt-hubs { grid-template-columns: repeat(3, 1fr) !important; }
    .mkt-helia-banner { grid-template-columns: 1fr; text-align: center; }
    .mkt-helia-chips { justify-content: center; }
    .mkt-nav { display: none; }
    .mkt-steps { grid-template-columns: repeat(2, 1fr); }
    .mkt-rh-banner-grid, .mkt-tab-panel .mkt-rh-banner-grid { grid-template-columns: 1fr; }
    .mkt-metric-grid { grid-template-columns: repeat(2, 1fr); }
    .mkt-dash-kpis { grid-template-columns: repeat(2, 1fr); }
    .mkt-dash-main { grid-template-columns: 1fr; }
    .mkt-dash-mini-row { grid-template-columns: 1fr; }
    .mkt-bar-row { grid-template-columns: 130px 1fr 40px; }
    .mkt-testimonials { grid-template-columns: 1fr; }
    .mkt-who-strip { gap: 8px; }
    .mkt-who-item { min-width: 150px; }
    .mkt-trust-inner { gap: 16px; }
    .mkt-section-head--split { grid-template-columns: 1fr; gap: 12px; align-items: start; }
    .mkt-pro-strip-inner { grid-template-columns: repeat(3, 1fr); }
    .mkt-pillars { grid-template-columns: 1fr; }
    .mkt-outcomes { grid-template-columns: repeat(2, 1fr); }
    .mkt-helia-capabilities { grid-template-columns: 1fr; }
    .mkt-cta-banner-inner { grid-template-columns: 1fr; gap: 28px; }
    .mkt-int-badge { flex: 1 1 calc(33% - 12px); }
}
@media (max-width: 575.98px) {
    .mkt-hubs { grid-template-columns: repeat(2, 1fr) !important; }
    .mkt-hero { padding: 48px 20px 64px; }
    .mkt-section { padding: 48px 20px; }
    .mkt-cta-banner { padding: 36px 24px; }
    .mkt-steps { grid-template-columns: 1fr; }
    .mkt-features { grid-template-columns: 1fr !important; }
    .mkt-rh-modules { grid-template-columns: 1fr; }
    .mkt-rh-banner { padding: 28px 22px; }
    .mkt-metric-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .mkt-metric-val { font-size: 32px; }
    .mkt-dash-kpis { grid-template-columns: 1fr 1fr; padding: 12px 16px 0; }
    .mkt-dash-main { padding: 12px 16px 16px; }
    .mkt-dash-chrome { padding: 10px 16px; }
    .mkt-dash-toolbar { padding: 8px 16px; }
    .mkt-dash-bar-chart { height: 110px; gap: 6px; }
    .mkt-dash-vitoria-actions { flex-direction: column; }
    .mkt-dash-vitoria-btn { justify-content: center; }
    .mkt-bar-row { grid-template-columns: 100px 1fr 36px; gap: 8px; }
    .mkt-coverage-chart { padding: 24px 18px; }
    .mkt-compare-table thead th, .mkt-compare-table tbody td { padding: 12px 14px; font-size: 12px; }
    .mkt-tabs-nav { flex-wrap: wrap; }
    .mkt-tabs-nav label { padding: 10px 16px; font-size: 13px; }
    .mkt-trust-inner { flex-direction: column; align-items: flex-start; padding: 0 4px; }
    .mkt-who-item { min-width: 140px; flex: 1 1 calc(50% - 6px); }
    .mkt-pro-strip-inner { grid-template-columns: 1fr 1fr; }
    .mkt-outcomes { grid-template-columns: 1fr; }
    .mkt-helia-examples-grid { grid-template-columns: 1fr; }
    .mkt-int-badge { flex: 1 1 calc(50% - 12px); min-width: 0; }
    .mkt-cta-banner { padding: 32px 24px; }
    .mkt-cta-banner-actions { align-items: stretch; }
    .mkt-cta-banner-actions .mkt-btn { justify-content: center; }
}
