/* ────────────────────────────────────────────────────────────
   Connected Purpose — styles.css
   Paleta: deep space dark  |  violet + cyan + lime accents
   ──────────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg:        #05050f;
    --bg-card:   rgba(10, 11, 28, 0.82);
    --surface:   rgba(14, 16, 38, 0.75);
    --line:      rgba(110, 120, 230, 0.18);
    --text:      #f0f4ff;
    --muted:     #8a9bbf;
    --subtle:    #8a9bbf;   /* alias usado nas páginas internas */
    --primary:   #9580ff;   /* violet  */
    --accent:    #9cff4d;   /* lime    */
    --cyan:      #39b8ff;
    --shadow:    0 24px 64px rgba(0, 0, 10, 0.65);
    color-scheme: dark;
}

/* ── Tema escuro explícito (quando usuário seleciona manualmente) ── */
[data-theme="dark"] {
    --bg:        #05050f;
    --bg-card:   rgba(10, 11, 28, 0.82);
    --surface:   rgba(14, 16, 38, 0.75);
    --line:      rgba(110, 120, 230, 0.18);
    --text:      #f0f4ff;
    --muted:     #8a9bbf;
    --subtle:    #8a9bbf;
    --primary:   #9580ff;
    --accent:    #9cff4d;
    --cyan:      #39b8ff;
    --shadow:    0 24px 64px rgba(0, 0, 10, 0.65);
    color-scheme: dark;
}

/* ── Tema claro ── */
[data-theme="light"] {
    --bg:        #f4f6ff;
    --bg-card:   rgba(255, 255, 255, 0.92);
    --surface:   rgba(238, 242, 255, 0.88);
    --line:      rgba(106, 80, 240, 0.18);
    --text:      #0c0e28;
    --muted:     #546080;
    --subtle:    #646e98;
    --primary:   #6a50f0;
    --accent:    #9cff4d;   /* mantido vivo — usado em gradientes de botões */
    --cyan:      #39b8ff;   /* mantido vivo — usado em gradientes de botões */
    --shadow:    0 24px 64px rgba(80, 90, 180, 0.13);
    color-scheme: light;
}

html { scroll-behavior: smooth; }

body {
    min-height: 100vh;
    color: var(--text);
    background: var(--bg);
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
}

/* ── Atmospheric background glows (fixed) ── */
.cp-page {
    position: relative;
    overflow-x: hidden;
}

.cp-page::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 1100px 700px at 50% -5%,  rgba(149, 128, 255, 0.25) 0%, transparent 65%),
        radial-gradient(ellipse 650px  450px at 88% 55%,  rgba(57, 184, 255, 0.12)  0%, transparent 65%),
        radial-gradient(ellipse 550px  380px at 12% 82%,  rgba(156, 255, 77, 0.09)  0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

main, .header, footer { position: relative; z-index: 1; }

main {
    width: min(1180px, 92%);
    margin: 0 auto;
    padding: 20px 0 72px;
}

/* ─────────────────────────────
   SPLASH SCREEN
───────────────────────────── */
.splashScreen {
    width: 100%;
    min-height: 100vh;
    padding: 32px;
    background:
        radial-gradient(ellipse 900px 500px at 50% 30%, rgba(149, 128, 255, 0.3) 0%, transparent 65%),
        linear-gradient(180deg, #030310 0%, #07091f 60%, #030310 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
}

.splashScreen::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(3, 3, 16, 0.88) 100%);
}

.imgSplashLogo,
.cpSplashLoader,
.welcomeSplash {
    position: relative;
}

.imgSplashLogo {
    width: clamp(210px, 46vw, 480px);
    max-width: 100%;
    animation: cpSplashLogoEnter 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.cpSplashLoader {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 50%;
}

.cpSplashLoader::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary);
    border-right-color: var(--cyan);
    animation: cpSplashSpin 1s linear infinite;
}

.cpSplashLoader::after {
    content: "";
    position: absolute;
    inset: 13px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    animation: cpSplashPulse 1.8s ease-in-out infinite;
}

.cpSplashLoaderCore {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--primary));
    box-shadow: 0 0 0 8px rgba(149, 128, 255, 0.12);
}

.cpSplashLoaderLabel {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    clip-path: inset(50%);
}

.welcomeSplash {
    font-size: clamp(15px, 2vw, 22px);
    text-align: center;
    color: #e2ecff;
    max-width: 820px;
    font-family: "Sora", sans-serif;
    line-height: 1.5;
}

@keyframes cpSplashSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes cpSplashPulse {
    0%,
    100% {
        opacity: 0.35;
        transform: scale(0.95);
    }

    50% {
        opacity: 0.95;
        transform: scale(1.05);
    }
}

@keyframes cpSplashLogoEnter {
    from {
        opacity: 0;
        transform: scale(0.85) translateY(-12px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* ─────────────────────────────
   HEADER
───────────────────────────── */
.header {
    width: min(1180px, 92%);
    margin: 20px auto 0;
    padding: 10px 18px;
    background: rgba(6, 7, 18, 0.8);
    border: 1px solid var(--line);
    border-radius: 16px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: relative;
    z-index: 10;
}

.logo-header { display: inline-flex; align-items: center; }
.logo-header img { width: clamp(110px, 10vw, 136px); }

.header-menu { display: flex; align-items: center; gap: 4px; }

.link-menu {
    color: #ccd8f8;
    text-decoration: none;
    font-size: 14px;
    padding: 9px 13px;
    border-radius: 10px;
    transition: background 0.2s, color 0.2s;
}
.link-menu:hover {
    background: rgba(149, 128, 255, 0.16);
    color: #fff;
}

.header-actions { display: flex; align-items: center; gap: 8px; }

.flags { min-width: 148px; }

.lang-dropdown {
    position: relative;
    display: inline-flex;
    flex-direction: column;
}

.lang-dropdown-trigger {
    color: var(--text);
    background-color: rgba(12, 14, 36, 0.95);
    border: 1px solid rgba(110, 120, 230, 0.28);
    border-radius: 10px;
    height: 36px;
    padding: 8px 10px;
    font-size: 13px;
    font-family: "Manrope", sans-serif;
    min-width: 148px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    cursor: pointer;
}

.lang-dropdown-label {
    flex: 1;
    text-align: left;
}

.lang-flag {
    width: 18px;
    height: 12px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.lang-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lang-dropdown-menu {
    list-style: none;
    margin: 6px 0 0;
    padding: 6px;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(110, 120, 230, 0.28);
    background: rgba(12, 14, 36, 0.98);
    box-shadow: var(--shadow);
    display: none;
    z-index: 30;
}

.lang-dropdown.is-open .lang-dropdown-menu {
    display: block;
}

.lang-dropdown-option {
    width: 100%;
    background: transparent;
    color: var(--text);
    border: 0;
    border-radius: 8px;
    padding: 7px 8px;
    font-size: 13px;
    font-family: "Manrope", sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
    cursor: pointer;
}

/* ─────────────────────────────
   CONNECTED SEO PLAYBOOK PANEL
───────────────────────────── */
.cp-landing-playbook {
    margin-top: 32px;
    display: grid;
    gap: 20px;
}

.cp-landing-playbook__head,
.cp-landing-playbook__panel,
.cp-landing-playbook__ad-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.cp-landing-playbook__head {
    padding: 24px;
}

.cp-landing-playbook__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.cp-landing-playbook__head h2,
.cp-landing-playbook__ads-head h3,
.cp-landing-playbook__panel h3,
.cp-landing-playbook__ad-card h4 {
    font-family: "Sora", sans-serif;
}

.cp-landing-playbook__head h2 {
    font-size: clamp(24px, 3vw, 34px);
    margin-bottom: 10px;
}

.cp-landing-playbook__head p,
.cp-landing-playbook__ads-head p,
.cp-landing-playbook__list p,
.cp-landing-playbook__ad-copy p {
    color: var(--muted);
    line-height: 1.65;
}

.cp-landing-playbook__overview {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.cp-landing-playbook__panel {
    padding: 22px;
}

.cp-landing-playbook__panel h3,
.cp-landing-playbook__ads-head h3 {
    font-size: 20px;
    margin-bottom: 14px;
}

.cp-landing-playbook__list {
    list-style: none;
    display: grid;
    gap: 14px;
}

.cp-landing-playbook__list li {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.cp-landing-playbook__list strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
}

.cp-landing-playbook__list--compact li {
    padding: 12px 14px;
}

.cp-landing-playbook__ads-head {
    padding: 0 4px;
}

.cp-landing-playbook__ads-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.cp-landing-playbook__ad-card {
    padding: 20px;
    display: grid;
    gap: 14px;
}

.cp-landing-playbook__ad-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.cp-landing-playbook__badge,
.cp-landing-playbook__stage {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.04em;
}

.cp-landing-playbook__badge {
    background: rgba(57, 184, 255, 0.16);
    color: #8dd8ff;
    border: 1px solid rgba(57, 184, 255, 0.24);
}

.cp-landing-playbook__stage {
    background: rgba(156, 255, 77, 0.12);
    color: #c7ff9d;
    border: 1px solid rgba(156, 255, 77, 0.18);
}

.cp-landing-playbook__ad-card h4 {
    font-size: 22px;
    line-height: 1.3;
}

.cp-landing-playbook__ad-copy {
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cp-landing-playbook__ad-copy span {
    display: block;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

[data-theme="light"] .cp-landing-playbook__list li {
    background: rgba(106, 80, 240, 0.05);
    border-color: rgba(106, 80, 240, 0.12);
}

[data-theme="light"] .cp-landing-playbook__badge {
    background: rgba(64, 102, 201, 0.12);
    color: #3557b9;
    border-color: rgba(64, 102, 201, 0.18);
}

[data-theme="light"] .cp-landing-playbook__stage {
    background: rgba(44, 160, 111, 0.1);
    color: #227754;
    border-color: rgba(44, 160, 111, 0.18);
}

@media (max-width: 900px) {
    .cp-landing-playbook__overview,
    .cp-landing-playbook__ads-grid {
        grid-template-columns: 1fr;
    }
}

.lang-dropdown-option img {
    width: 18px;
    height: 12px;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.lang-dropdown-option:hover,
.lang-dropdown-option[aria-selected="true"] {
    background: rgba(149, 128, 255, 0.16);
}

.changeLang-native {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

.form-select {
    color: var(--text);
    background-color: rgba(12, 14, 36, 0.95);
    border: 1px solid rgba(110, 120, 230, 0.28);
    border-radius: 10px;
    padding: 8px 10px 8px 34px;
    font-size: 13px;
    font-family: "Manrope", sans-serif;
}
.form-option {
    background-color: #0a0b1a;
    color: var(--text);
    font-family: "Manrope", sans-serif;
}

.lets-talk {
    text-decoration: none;
    color: #06091a;
    background: linear-gradient(90deg, var(--accent) 0%, var(--cyan) 100%);
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 800;
    font-family: "Sora", sans-serif;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}
.lets-talk:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(156, 255, 77, 0.24);
}

/* ─────────────────────────────
   HERO (centralizado + orb)
───────────────────────────── */
.hero {
    margin-top: 24px;
    padding: 80px 28px 64px;
    min-height: 560px;
    border-radius: 24px;
    border: 1px solid rgba(149, 128, 255, 0.22);
    background: rgba(6, 6, 18, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 32px 80px rgba(0, 0, 10, 0.6);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: rise-in 0.75s ease;
}

/* Radial glowing orb behind hero content */
.hero-orb {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        circle,
        rgba(149, 128, 255, 0.24) 0%,
        rgba(57, 184, 255, 0.12) 40%,
        transparent 70%
    );
    filter: blur(20px);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-tag, .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    color: #b8a9ff;
    font-size: 11.5px;
    letter-spacing: 0.15em;
    margin-bottom: 18px;
}
.hero-tag::before, .section-kicker::before {
    content: "";
    width: 28px;
    height: 1px;
    background: rgba(184, 169, 255, 0.75);
}

.hero-inner h1 {
    font-family: "Sora", sans-serif;
    font-size: clamp(32px, 5.2vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
}

.hero-subtext {
    color: #bfcef5;
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.75;
    max-width: 680px;
    margin: 0 auto 28px;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-primary-modern {
    text-decoration: none;
    color: #07111f;
    background: linear-gradient(90deg, var(--accent) 0%, var(--cyan) 100%);
    border-radius: 12px;
    padding: 14px 24px;
    font-weight: 800;
    font-size: 14px;
    font-family: "Sora", sans-serif;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(156, 255, 77, 0.26);
}

.btn-outline-modern {
    text-decoration: none;
    color: #dce9ff;
    border: 1px solid rgba(149, 128, 255, 0.38);
    background: rgba(10, 8, 28, 0.55);
    border-radius: 12px;
    padding: 14px 24px;
    font-weight: 700;
    font-size: 14px;
    transition: border-color 0.2s, color 0.2s;
}
.btn-outline-modern:hover {
    border-color: rgba(149, 128, 255, 0.75);
    color: #fff;
}

.hero-metrics {
    display: inline-flex;
    align-items: center;
    background: rgba(8, 8, 22, 0.7);
    border: 1px solid rgba(110, 130, 230, 0.22);
    border-radius: 16px;
    padding: 14px 20px;
    gap: 0;
}

.hero-metrics > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 26px;
}

.metric-divider {
    width: 1px !important;
    height: 38px;
    padding: 0 !important;
    background: rgba(120, 140, 230, 0.25);
    flex-shrink: 0;
}

.hero-metrics strong {
    color: #fff;
    font-size: 26px;
    font-family: "Sora", sans-serif;
    line-height: 1;
}

.hero-metrics span {
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ─────────────────────────────
   TRUST BAR
───────────────────────────── */
.trust-bar {
    margin: 14px 0 0;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-bar > span {
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    white-space: nowrap;
}

.trust-bar-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.trust-bar-items span {
    padding: 6px 13px;
    border-radius: 999px;
    border: 1px solid rgba(110, 125, 230, 0.22);
    background: rgba(10, 11, 24, 0.85);
    color: #c4d4f0;
    font-size: 12px;
    letter-spacing: 0.04em;
}

/* ─────────────────────────────
   SECTION SHARED
───────────────────────────── */
.services,
.how-it-works,
.segments,
.proof {
    margin-top: 56px;
}

.section-title-wrap { margin-bottom: 28px; }

.section-title-wrap h2 {
    font-family: "Sora", sans-serif;
    font-size: clamp(22px, 3vw, 38px);
    line-height: 1.14;
    letter-spacing: -0.02em;
    margin-top: 4px;
}

/* ─────────────────────────────
   SERVICES CARDS
───────────────────────────── */
.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.incards {
    padding: 26px 22px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: var(--bg-card);
    backdrop-filter: blur(6px);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.2s, border-color 0.2s;
}
.incards:hover {
    transform: translateY(-4px);
    border-color: rgba(149, 128, 255, 0.38);
}

.mini-cards { width: 40px; }

.incards h3 {
    color: #fff;
    font-family: "Sora", sans-serif;
    font-size: 18px;
    line-height: 1.28;
}
.incards span { color: var(--accent); }
.incards p { color: #b4c4e8; line-height: 1.68; font-size: 14px; }

/* ─────────────────────────────
   HOW IT WORKS — 4 STEPS
───────────────────────────── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.step-card {
    padding: 26px 20px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: var(--bg-card);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s;
}
.step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(149, 128, 255, 0.38);
}

/* Subtle top-edge accent line on hover */
.step-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--cyan));
    opacity: 0;
    transition: opacity 0.25s;
}
.step-card:hover::before { opacity: 1; }

.step-number {
    font-family: "Sora", sans-serif;
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, rgba(149, 128, 255, 0.6), rgba(57, 184, 255, 0.35));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-card h3 {
    color: #f0f4ff;
    font-family: "Sora", sans-serif;
    font-size: 16px;
    line-height: 1.35;
}
.step-card p { color: #9caacb; font-size: 14px; line-height: 1.62; }

/* ─────────────────────────────
   SEGMENTS
───────────────────────────── */
.segment-subtitle {
    color: var(--muted);
    max-width: 760px;
    line-height: 1.68;
    margin-top: 6px;
}

.segment-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.segment-card {
    padding: 24px 22px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: var(--bg-card);
    box-shadow: var(--shadow);
    transition: transform 0.2s, border-color 0.2s;
}
.segment-card:hover {
    transform: translateY(-4px);
    border-color: rgba(57, 184, 255, 0.35);
}

.segment-card h3 {
    font-family: "Sora", sans-serif;
    font-size: 18px;
    margin-bottom: 8px;
    color: #f0f4ff;
}
.cp-service-card__image {
    width: 58px;
    height: 58px;
    object-fit: contain;
    margin-bottom: 14px;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.25));
}
.segment-card > p { color: #b4c4e8; line-height: 1.68; font-size: 14px; }

.segment-card ul {
    margin-top: 14px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.segment-card li {
    color: var(--muted);
    padding-left: 18px;
    position: relative;
    font-size: 14px;
    line-height: 1.5;
}
.segment-card li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--accent), var(--cyan));
    position: absolute;
    left: 0;
    top: 7px;
}

/* ─────────────────────────────
   PORTFOLIO / PROOF
───────────────────────────── */
.portfolio-filter {
    margin-bottom: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-btn {
    border: 1px solid rgba(110, 125, 230, 0.28);
    background: rgba(10, 12, 26, 0.85);
    color: #b4c4e8;
    border-radius: 999px;
    padding: 9px 15px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.filter-btn:hover {
    border-color: rgba(149, 128, 255, 0.5);
    color: #f0f4ff;
}
.filter-btn.is-active {
    color: #07111f;
    border-color: transparent;
    background: linear-gradient(90deg, var(--accent) 0%, var(--cyan) 100%);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.portfolio-card {
    border-radius: 18px;
    border: 1px solid var(--line);
    background: var(--bg-card);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.25s, border-color 0.25s;
}
.portfolio-card:hover {
    transform: translateY(-4px);
    border-color: rgba(149, 128, 255, 0.4);
}
.portfolio-card.is-hidden { display: none; }

.project-thumb {
    width: 100%;
    height: 150px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(57, 184, 255, 0.12), rgba(149, 128, 255, 0.16));
    border-bottom: 1px solid var(--line);
}
.project-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 5, 15, 0) 35%, rgba(5, 5, 15, 0.75) 100%);
}

.project-thumb.thumb-fallback::before {
    content: "Preview indisponível";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8a9bbf;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    z-index: 1;
}

.project-thumb-img { width: 100%; height: 100%; object-fit: cover; }

.project-thumb-domain {
    position: absolute;
    left: 10px;
    bottom: 8px;
    z-index: 2;
    color: #e2ecff;
    font-size: 10px;
    letter-spacing: 0.05em;
}

.portfolio-card-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.proof-label {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.12em;
}

.portfolio-card h3 {
    font-family: "Sora", sans-serif;
    font-size: 18px;
    color: #f0f4ff;
}
.portfolio-card > .portfolio-card-body > p {
    color: #b4c4e8;
    font-size: 13px;
    line-height: 1.62;
    flex: 1;
}

.stack-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.stack-tags span {
    border: 1px solid rgba(110, 125, 230, 0.22);
    background: rgba(8, 9, 20, 0.9);
    color: #b4c4e8;
    border-radius: 999px;
    font-size: 10px;
    padding: 4px 9px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #07111f;
    background: linear-gradient(90deg, var(--accent) 0%, var(--cyan) 100%);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 4px;
}
.portfolio-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(156, 255, 77, 0.22);
}

/* ─────────────────────────────
   LEAD / CONTACT SECTION
───────────────────────────── */
.lead-section {
    margin-top: 56px;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 18px;
}

.lead-copy, .form-contato {
    border-radius: 18px;
    border: 1px solid var(--line);
    background: var(--bg-card);
    box-shadow: var(--shadow);
}

.lead-copy { padding: 30px 28px; }

.lead-copy h3 {
    font-family: "Sora", sans-serif;
    font-size: clamp(20px, 2.6vw, 30px);
    line-height: 1.25;
    margin-bottom: 12px;
    color: #f0f4ff;
    margin-top: 4px;
}
.lead-copy > p { color: #b4c4e8; line-height: 1.72; margin-bottom: 18px; }

.lead-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lead-list li {
    color: var(--muted);
    padding-left: 22px;
    position: relative;
    line-height: 1.55;
    font-size: 14px;
}
.lead-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--accent), var(--cyan));
    position: absolute;
    left: 0;
    top: 6px;
}

.form-contato { padding: 30px 28px; }
.in-form-contato { width: 100%; }

.formulario-contato {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.formulario-contato input {
    width: 100%;
    height: 50px;
    border: 1px solid rgba(110, 125, 230, 0.26);
    border-radius: 10px;
    padding: 0 14px;
    background: rgba(6, 7, 18, 0.85);
    color: #f0f4ff;
    font-size: 14px;
    outline: none;
    font-family: "Manrope", sans-serif;
    transition: border-color 0.2s;
}
.formulario-contato textarea {
    width: 100%;
    min-height: 120px;
    border: 1px solid rgba(110, 125, 230, 0.26);
    border-radius: 10px;
    padding: 14px;
    background: rgba(6, 7, 18, 0.85);
    color: #f0f4ff;
    font-size: 14px;
    outline: none;
    font-family: "Manrope", sans-serif;
    transition: border-color 0.2s;
    resize: vertical;
}
.formulario-contato input:focus,
.formulario-contato textarea:focus {
    border-color: rgba(149, 128, 255, 0.65);
}
.formulario-contato input::placeholder,
.formulario-contato textarea::placeholder { color: #6278a0; }

.pre-analysis-box {
    margin-top: 8px;
    border: 1px solid rgba(110, 125, 230, 0.28);
    border-radius: 12px;
    background: rgba(5, 7, 22, 0.72);
    padding: 14px;
}
.pre-analysis-intro h4,
.pre-analysis-step h4 {
    font-family: "Sora", sans-serif;
    font-size: 16px;
    margin: 0 0 8px;
    color: #edf2ff;
}
.pre-analysis-intro p,
.pre-analysis-progress,
.pre-analysis-done {
    margin: 0;
    color: #9fb3da;
    font-size: 13px;
    line-height: 1.5;
}
.pre-analysis-progress {
    margin-bottom: 8px;
}
.pre-analysis-step textarea {
    margin-top: 8px;
    min-height: 110px;
}
.pre-analysis-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}
.pre-analysis-start-btn,
.pre-analysis-action-btn {
    border: 1px solid rgba(149, 128, 255, 0.45);
    border-radius: 10px;
    background: rgba(16, 21, 47, 0.92);
    color: #d5e1ff;
    font-family: "Sora", sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 12px;
    cursor: pointer;
}
.pre-analysis-start-btn:hover,
.pre-analysis-action-btn:hover {
    border-color: rgba(149, 128, 255, 0.72);
}
.pre-analysis-action-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.pre-analysis-done {
    color: #95ff73;
}

.lead-success-panel {
    border: 1px solid rgba(110, 125, 230, 0.28);
    border-radius: 12px;
    background: linear-gradient(160deg, rgba(7, 12, 34, 0.92), rgba(9, 19, 45, 0.92));
    padding: 20px;
}
.lead-success-panel__kicker {
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 11px;
    color: #8aa2d7;
}
.lead-success-panel h4 {
    margin: 0 0 10px;
    font-family: "Sora", sans-serif;
    font-size: 22px;
    color: #eef3ff;
}
.lead-success-panel p {
    margin: 0;
    color: #b8c8e9;
    line-height: 1.65;
}
.lead-success-panel__contact-title {
    margin-top: 16px !important;
    color: #d3e1ff !important;
    font-weight: 700;
}
.lead-success-panel__contact-list {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.lead-success-panel__contact-list li {
    color: #b8c8e9;
    font-size: 14px;
}
.lead-success-panel__contact-list a {
    color: #9ee5ff;
    text-decoration: none;
}
.lead-success-panel__contact-list a:hover {
    text-decoration: underline;
}
.lead-success-panel__cta {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    border-radius: 10px;
    padding: 11px 16px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--cyan) 100%);
    color: #071220;
    font-family: "Sora", sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.18s, box-shadow 0.18s;
}
.lead-success-panel__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(156, 255, 77, 0.22);
    text-decoration: none;
}

.home-btn-cadastrar { margin-top: 4px; width: 100%; }
.home-btn-cadastrar button {
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-family: "Sora", sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #06101e;
    background: linear-gradient(90deg, var(--accent) 0%, var(--cyan) 100%);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.home-btn-cadastrar button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(156, 255, 77, 0.24);
}
.home-btn-cadastrar-disabled button,
.home-btn-cadastrar-received button {
    background: #2a3a5a;
    color: #b0c4e8;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.alert {
    margin-bottom: 0;
    width: 100%;
    border-radius: 10px;
    font-size: 13px;
    position: relative;
    padding: 10px 38px 10px 14px;
}
.alert-danger {
    background: rgba(190, 38, 60, 0.18);
    border: 1px solid rgba(255, 100, 120, 0.32);
    color: #ffc8ce;
}
.alert-success {
    background: rgba(28, 140, 90, 0.18);
    border: 1px solid rgba(55, 220, 140, 0.32);
    color: #b8ffe2;
}
.display-none { display: none; }
.close {
    width: 22px;
    height: 22px;
    border: none;
    background: transparent;
    position: absolute;
    top: 8px;
    right: 8px;
    cursor: pointer;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ─────────────────────────────
   FOOTER
───────────────────────────── */
.footer {
    width: min(1180px, 92%);
    margin: 52px auto 28px;
    padding: 22px 24px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(5, 5, 16, 0.85);
    display: grid;
    grid-template-columns: 1.2fr auto 1fr;
    gap: 16px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.footer p, .footer div { color: #b4c4e8; line-height: 1.6; font-size: 14px; }
.logo-footer { width: 130px; }
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.footer-cnpj { color: #6278a0; font-size: 11px; letter-spacing: 0.06em; text-align: center; margin: 0; }
.link-social-midia, .footer a { text-decoration: none; color: #d6e8ff; }
.social-midia { font-size: 22px; margin: 0 6px; }
.logo-whatsApp { margin-left: 4px; font-size: 17px; }

/* ─────────────────────────────
   ANIMATION
───────────────────────────── */
@keyframes rise-in {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────
   RESPONSIVE — TABLET
───────────────────────────── */
/* ─────────────────────────────
   PLUGINS / PRODUTOS
───────────────────────────── */
.plugins { margin-top: 56px; }

.plugins-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.plugin-card {
    border-radius: 18px;
    border: 1px solid var(--line);
    background: var(--bg-card);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: transform 0.25s, border-color 0.25s;
    animation: rise-in 0.55s ease both;
}
.plugin-card:hover {
    transform: translateY(-4px);
    border-color: rgba(149, 128, 255, 0.45);
}

.plugins-grid .plugin-card:nth-child(3n + 1) { animation-delay: 0.04s; }
.plugins-grid .plugin-card:nth-child(3n + 2) { animation-delay: 0.12s; }
.plugins-grid .plugin-card:nth-child(3n + 3) { animation-delay: 0.2s; }

/* Variant: destaque popular */
.plugin-card.is-popular {
    border-color: rgba(149, 128, 255, 0.5);
    background: rgba(14, 12, 36, 0.92);
}
.plugin-card.is-popular::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--cyan));
}

.plugin-popular-badge {
    position: absolute;
    top: 14px; right: 14px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #06101e;
    background: linear-gradient(90deg, var(--accent), var(--cyan));
}

.plugin-card-header {
    padding: 22px 22px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.plugin-budget-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    transform: none;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #041d15;
    background: linear-gradient(90deg, #8bffb0 0%, #39e38f 48%, #39b8ff 100%);
    border: 1px solid rgba(4, 29, 21, 0.2);
    box-shadow: 0 8px 22px rgba(57, 227, 143, 0.26);
    z-index: 2;
}

.plugin-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 14px;
    border: 1px solid rgba(149, 128, 255, 0.3);
    background: linear-gradient(135deg, rgba(149, 128, 255, 0.22), rgba(57, 184, 255, 0.14));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #c4b0ff;
}

.plugin-compat-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(110, 125, 230, 0.22);
    background: rgba(8, 9, 22, 0.85);
    border-radius: 999px;
    padding: 5px 11px;
    font-size: 11px;
    color: #c4d4f0;
    letter-spacing: 0.04em;
}
.plugin-compat-tag i { color: var(--primary); font-size: 12px; }

.plugin-card-body {
    padding: 0 22px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.plugin-card-body h3 {
    font-family: "Sora", sans-serif;
    font-size: 19px;
    color: #f0f4ff;
    line-height: 1.3;
}
.plugin-card-body > p {
    color: #b4c4e8;
    font-size: 14px;
    line-height: 1.68;
}

.plugin-features {
    list-style: none;
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.plugin-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}
.plugin-features li i {
    color: var(--accent);
    font-size: 11px;
    margin-top: 3px;
    flex-shrink: 0;
}

.plugin-card-footer {
    padding: 16px 22px 22px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.plugin-price { display: flex; flex-direction: column; gap: 2px; }
.plugin-price .price-label {
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.plugin-price .price-amount {
    font-family: "Sora", sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #f0f4ff;
    line-height: 1;
}
.plugin-price .price-period {
    color: #8a9bbf;
    font-size: 11px;
}

.btn-buy {
    text-decoration: none;
    color: #06101e;
    background: linear-gradient(90deg, var(--accent) 0%, var(--cyan) 100%);
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 800;
    font-family: "Sora", sans-serif;
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-buy:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(156, 255, 77, 0.26);
    color: #06101e;
}

.plugin-card-custom {
    position: relative;
    isolation: isolate;
    border-style: dashed;
    border-color: rgba(57, 184, 255, 0.45);
    background:
        radial-gradient(circle at 8% 10%, rgba(57, 184, 255, 0.11), transparent 44%),
        radial-gradient(circle at 92% 88%, rgba(149, 128, 255, 0.14), transparent 48%),
        var(--bg-card);
}

.plugin-card-custom::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?w=1400&q=80&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.24;
    transition: transform 0.45s ease, opacity 0.35s ease;
    z-index: 0;
}

.plugin-card-custom::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(8, 14, 34, 0.9) 0%, rgba(11, 16, 40, 0.82) 55%, rgba(10, 14, 36, 0.92) 100%);
    z-index: 1;
}

.plugin-card-custom:hover::before {
    transform: scale(1.04);
    opacity: 0.3;
}

.plugin-card-custom .plugin-card-header,
.plugin-card-custom .plugin-card-body,
.plugin-card-custom .plugin-card-footer {
    position: relative;
    z-index: 2;
}

.plugin-card-custom .plugin-card-body > p {
    color: #c1d2f8;
}

.plugin-card-custom .plugin-card-footer {
    justify-content: flex-start;
}

.btn-buy-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #25d366 0%, #39b8ff 100%);
}

.btn-buy-whatsapp i {
    font-size: 15px;
}

@media (prefers-reduced-motion: reduce) {
    .plugin-card {
        animation: none;
    }
}

/* ─────────────────────────────
   PORTFOLIO CTA CARD
───────────────────────────── */
.portfolio-cta-card {
    grid-column: 1 / -1;
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(149, 128, 255, 0.32);
    background: rgba(8, 8, 22, 0.9);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    min-height: clamp(260px, 30vw, 380px);
    display: flex;
    align-items: flex-end;
    transition: border-color 0.25s, transform 0.25s;
}
.portfolio-cta-card:hover {
    border-color: rgba(149, 128, 255, 0.6);
    transform: translateY(-4px);
}

/* Imagem de fundo via Unsplash — empresária sorrindo, contexto digital */
.cta-card-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?w=1400&q=80&auto=format&fit=crop');
    background-size: cover;
    background-position: center 20%;
    transition: transform 0.5s ease;
}
.portfolio-cta-card:hover .cta-card-bg {
    transform: scale(1.03);
}

/* Degradê escuro sobre a imagem — esquerda opaca, direita semi-transparente */
.cta-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(5, 5, 15, 0.94) 0%,
        rgba(10, 8, 30, 0.82) 45%,
        rgba(20, 10, 50, 0.55) 75%,
        rgba(30, 15, 70, 0.2) 100%
    );
}

/* Borda superior em gradiente */
.portfolio-cta-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--cyan), var(--accent));
    z-index: 2;
}

.cta-card-content {
    position: relative;
    z-index: 3;
    padding: 32px 36px;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-card-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    color: var(--accent);
    font-size: 11px;
    letter-spacing: 0.18em;
    font-weight: 700;
}
.cta-card-kicker::before {
    content: "";
    width: 22px;
    height: 1px;
    background: var(--accent);
}

.cta-card-content h3 {
    font-family: "Sora", sans-serif;
    font-size: clamp(22px, 2.8vw, 34px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #f0f4ff;
    margin: 0;
}

.cta-card-content > p {
    color: #bfcef5;
    font-size: 15px;
    line-height: 1.72;
    max-width: 420px;
}

.cta-card-btn { align-self: flex-start; margin-top: 4px; }

/* ─────────────────────────────
   ECOMMERCE CTA SECTION
───────────────────────────── */
.ecommerce-cta-section {
    margin-top: 56px;
    margin-bottom: 56px;
    border-radius: 18px;
    border: 1px solid rgba(149, 128, 255, 0.32);
    background: rgba(8, 8, 22, 0.9);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: border-color 0.25s, transform 0.25s;
}
.ecommerce-cta-section:hover {
    border-color: rgba(149, 128, 255, 0.6);
    transform: translateY(-2px);
}

/* Imagem de fundo da CTA de ecommerce */
.ecommerce-cta-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1556740738-b6a63e27c4df?w=1400&q=80&auto=format&fit=crop');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 4%;
    transition: transform 0.5s ease;
}
.ecommerce-cta-section:hover .ecommerce-cta-bg {
    transform: scale(1.03);
}

/* Degradê escuro sobre a imagem */
.ecommerce-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(5, 5, 15, 0.94) 0%,
        rgba(10, 8, 30, 0.82) 45%,
        rgba(20, 10, 50, 0.55) 75%,
        rgba(30, 15, 70, 0.2) 100%
    );
}

/* Borda superior em gradiente */
.ecommerce-cta-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--primary), var(--accent));
    z-index: 2;
}

.ecommerce-cta-content {
    position: relative;
    z-index: 3;
    padding: 40px 48px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ecommerce-cta-content .cta-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    color: var(--accent);
    font-size: 11px;
    letter-spacing: 0.18em;
    font-weight: 700;
}
.ecommerce-cta-content .cta-kicker::before {
    content: "";
    width: 22px;
    height: 1px;
    background: var(--accent);
}

.ecommerce-cta-content h2 {
    font-family: "Sora", sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #f0f4ff;
    margin: 0;
}

@media (max-width: 900px) {
    .ecommerce-cta-bg {
        background-size: cover;
        background-position: center 8%;
    }
}

.ecommerce-cta-content > p {
    color: #bfcef5;
    font-size: 15px;
    line-height: 1.72;
    max-width: 480px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
    flex-wrap: wrap;
}

/* ─────────────────────────────
   ECOMMERCE PAIN POINTS & BENEFITS
───────────────────────────── */
.ecommerce-pains, .ecommerce-benefits {
    margin-top: 84px;
    margin-bottom: 84px;
}

.pains-grid, .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.pain-card, .benefit-card {
    position: relative;
    border-radius: 16px;
    border: 1px solid rgba(149, 128, 255, 0.3);
    background: linear-gradient(135deg, rgba(18, 20, 50, 0.85) 0%, rgba(28, 22, 60, 0.75) 100%);
    backdrop-filter: blur(10px);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.pain-card::before, .benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--cyan));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pain-card:hover, .benefit-card:hover {
    border-color: rgba(149, 128, 255, 0.5);
    background: linear-gradient(135deg, rgba(18, 20, 50, 0.95) 0%, rgba(28, 22, 60, 0.88) 100%);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(149, 128, 255, 0.25);
}

.pain-card:hover::before, .benefit-card:hover::before {
    opacity: 1;
}

.pain-icon, .benefit-icon {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(149, 128, 255, 0.25) 0%, rgba(57, 184, 255, 0.18) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary);
    border: 1.5px solid rgba(149, 128, 255, 0.4);
    transition: all 0.3s ease;
}

.pain-card:hover .pain-icon, .benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, rgba(149, 128, 255, 0.4) 0%, rgba(57, 184, 255, 0.3) 100%);
    border-color: rgba(149, 128, 255, 0.7);
    transform: scale(1.15);
    color: var(--cyan);
}

.pain-card h3, .benefit-card h3 {
    font-family: "Sora", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #f0f4ff;
    margin: 0;
    line-height: 1.25;
}

.pain-card p, .benefit-card p {
    color: #c0d0e8;
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #bcc8e0;
    line-height: 1.4;
}

.benefit-list li i {
    color: var(--accent);
    font-size: 0.8rem;
    flex-shrink: 0;
}


@media screen and (max-width: 1080px) {
    .header { flex-wrap: wrap; justify-content: center; }
    .hero   { padding: 52px 22px 44px; }
    .steps-grid                                              { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .cards, .segment-grid, .portfolio-grid, .plugins-grid   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lead-section                                            { grid-template-columns: 1fr; }
    .footer                                                  { grid-template-columns: 1fr; text-align: center; }
}

/* ─────────────────────────────
   RESPONSIVE — MOBILE
───────────────────────────── */
@media screen and (max-width: 720px) {
    .header-menu    { width: 100%; justify-content: center; flex-wrap: wrap; }
    .header-actions { width: 100%; justify-content: center; flex-wrap: wrap; }
    .hero-inner h1  { font-size: clamp(26px, 9vw, 42px); }
    .hero-metrics   { flex-wrap: wrap; justify-content: center; gap: 4px; }
    .metric-divider { display: none; }
    .hero-metrics > div { padding: 8px 18px; }
    .steps-grid, .cards, .segment-grid, .portfolio-grid, .plugins-grid { grid-template-columns: 1fr; }
    .portfolio-cta-card { grid-column: 1 / -1; min-height: 280px; }
    .trust-bar      { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════════════
   PÁGINAS DE PRODUTO / CHECKOUT / SUCESSO
═══════════════════════════════════════════════════════════════════ */

/* ── Wrapper geral de página interna ── */
.cp-page {
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    font-family: 'Manrope', sans-serif;
}

/* ── Navbar das páginas internas ── */
.cp-page-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    position: sticky;
    top: 0;
    background: rgba(5,5,15,.9);
    backdrop-filter: blur(12px);
    z-index: 100;
}
.cp-page-nav__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cp-nav-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 10px;
    border: 1px solid rgba(37, 211, 102, 0.45);
    background: rgba(37, 211, 102, 0.12);
    color: #98f6bf;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.cp-nav-whatsapp:hover {
    color: #b8ffd5;
    border-color: rgba(37, 211, 102, 0.68);
    background: rgba(37, 211, 102, 0.2);
    transform: translateY(-1px);
}

.cp-nav-whatsapp i {
    font-size: 1rem;
}
.cp-nav-back {
    color: var(--primary);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: opacity .2s;
}
.cp-nav-back:hover { opacity: .75; }

.cp-page-nav__left {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* ── Orbs decorativos ── */
.cp-product-hero-deco { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.cp-orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: .25; }
.cp-orb--purple { width: 420px; height: 420px; background: var(--primary); top: -80px; right: -60px; }
.cp-orb--cyan    { width: 280px; height: 280px; background: var(--cyan);    bottom: 0; left: 20%; }

/* ══════════════════════════
   PÁGINA DE PRODUTO (show)
══════════════════════════ */
.cp-product-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 40px 72px;
    max-width: 860px;
    margin: 0 auto;
}
.cp-product-hero-inner { position: relative; z-index: 1; }
.cp-product-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(149,128,255,.15);
    border: 1px solid rgba(149,128,255,.3);
    color: var(--primary);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 22px;
}
.cp-popular-pill {
    background: var(--accent);
    color: #05050f;
    font-size: .7rem;
    padding: 2px 8px;
    border-radius: 100px;
    margin-left: 4px;
}
.cp-product-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #fff 40%, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cp-product-desc {
    font-size: 1.1rem;
    color: var(--subtle);
    max-width: 640px;
    line-height: 1.7;
    margin-bottom: 28px;
}
.cp-product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cp-product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .95rem;
    color: var(--text);
}
.cp-product-features li .fa-circle-check { color: var(--accent); }

.cp-product-cta {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.cp-product-price { display: flex; flex-direction: column; }
.cp-price-label   { font-size: .75rem; color: var(--subtle); text-transform: uppercase; letter-spacing: .06em; }
.cp-price-value   { font-size: 2.4rem; font-weight: 800; color: #fff; line-height: 1.1; }
.cp-price-note    { font-size: .78rem; color: var(--subtle); margin-top: 2px; }

/* Botão primário reutilizável */
.cp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 24px rgba(149,128,255,.35);
}
.cp-btn-primary:hover {
    background: #b09fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 32px rgba(149,128,255,.5);
    color: #fff;
}
.cp-btn-primary:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none;
}
.cp-btn-primary.cp-btn-full { width: 100%; justify-content: center; }
.cp-btn-primary.cp-btn-xl   { padding: 18px 40px; font-size: 1.1rem; }

/* Corpo de descrição longa */
.cp-product-body {
    padding: 0 40px 60px;
    max-width: 860px;
    margin: 0 auto;
}
.cp-product-long-desc {
    color: var(--subtle);
    line-height: 1.8;
    font-size: .97rem;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 12px;
    padding: 28px 32px;
}

/* CTA de fundo */
.cp-product-bottom-cta {
    text-align: center;
    padding: 52px 40px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.cp-product-bottom-cta p { color: var(--subtle); font-size: 1.1rem; }

.cp-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(149, 128, 255, .45);
    color: #d4c6ff;
    font-weight: 700;
    font-size: .95rem;
    padding: 13px 24px;
    border-radius: 10px;
    text-decoration: none;
    background: rgba(149, 128, 255, .09);
    transition: background .2s, border-color .2s, transform .15s;
}

.cp-btn-outline:hover {
    background: rgba(149, 128, 255, .16);
    border-color: rgba(149, 128, 255, .65);
    transform: translateY(-1px);
    color: #efe6ff;
}

/* ══════════════════════════
   PÁGINA COMERCIAL CONNECTED SEO
══════════════════════════ */
.cp-seo-sales-page {
    max-width: 1120px;
    margin: 0 auto;
    padding: 12px 24px 90px;
}

.cp-seo-hero {
    margin-top: 12px;
    border: 1px solid rgba(149, 128, 255, .28);
    background: radial-gradient(circle at 88% 10%, rgba(94, 215, 255, .12), transparent 42%), rgba(17, 19, 28, .72);
    border-radius: 20px;
    padding: 52px;
}

.cp-seo-kicker {
    display: inline-flex;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid rgba(149, 128, 255, .35);
    color: #bfaef8;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 16px;
}

.cp-seo-hero h1 {
    margin: 0;
    font-size: clamp(30px, 4.5vw, 54px);
    line-height: 1.08;
    max-width: 920px;
}

.cp-seo-hero > p {
    margin: 14px 0 0;
    max-width: 760px;
    color: var(--subtle);
    line-height: 1.7;
}

.cp-seo-hero-cta {
    margin-top: 24px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cp-seo-recurring-note {
    margin-top: 14px;
    font-size: .9rem;
    color: #bfe8ff;
    border: 1px solid rgba(94, 215, 255, .25);
    background: rgba(94, 215, 255, .08);
    border-radius: 10px;
    padding: 10px 12px;
    display: inline-flex;
}

.cp-seo-section {
    margin-top: 26px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    background: rgba(14, 16, 24, .55);
    padding: 30px;
}

.cp-seo-section h2 {
    margin: 0 0 12px;
    font-size: 1.35rem;
}

.cp-seo-section p {
    margin: 0;
    color: var(--subtle);
    line-height: 1.65;
}

.cp-seo-bullets {
    margin: 0;
    padding-left: 0;
    display: grid;
    gap: 10px;
    list-style: none;
}

.cp-seo-bullets li {
    position: relative;
    padding: 10px 12px 10px 38px;
    border-radius: 10px;
    border: 1px solid rgba(149, 128, 255, .24);
    background: rgba(149, 128, 255, .08);
    color: #e9eeff;
    font-weight: 600;
    line-height: 1.5;
}

.cp-seo-bullets li::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    border-radius: 50%;
    border: 2px solid rgba(94, 215, 255, .8);
    box-shadow: inset 0 0 0 4px rgba(94, 215, 255, .22);
}

.cp-seo-grid {
    display: grid;
    gap: 12px;
}

.cp-seo-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cp-seo-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cp-seo-card,
.cp-seo-feature,
.cp-seo-plan {
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 14px;
    background: rgba(255,255,255,.03);
    padding: 16px;
}

.cp-seo-feature h3,
.cp-seo-steps h3,
.cp-seo-plan-kicker {
    margin: 0 0 6px;
    font-size: .96rem;
}

.cp-seo-feature p,
.cp-seo-steps p,
.cp-seo-plan p,
.cp-seo-card p {
    margin: 0;
    color: var(--subtle);
}

.cp-seo-steps {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 10px;
}

.cp-seo-plan--highlight {
    border-color: rgba(149, 128, 255, .45);
    background: linear-gradient(180deg, rgba(149, 128, 255, .15), rgba(149, 128, 255, .06));
}

.cp-seo-plan-cta {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cp-seo-setup-offer {
    border-color: rgba(94, 215, 255, .28);
}

.cp-seo-proof-note {
    margin-top: 10px !important;
    font-size: .86rem;
    color: #9fb3d8 !important;
}

.cp-seo-proof-grid {
    margin-top: 14px;
}

.cp-seo-proof-grid .cp-seo-card h3 {
    margin: 0 0 8px;
    font-size: .95rem;
}

.cp-seo-faq {
    display: grid;
    gap: 8px;
}

.cp-seo-faq details {
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    padding: 12px 14px;
    background: rgba(255,255,255,.02);
}

.cp-seo-faq summary {
    cursor: pointer;
    font-weight: 600;
}

.cp-seo-faq details p {
    margin-top: 8px;
}

.cp-seo-final-cta {
    margin-top: 26px;
    text-align: center;
    border: 1px solid rgba(149, 128, 255, .25);
    border-radius: 16px;
    background: rgba(149, 128, 255, .06);
    padding: 34px;
}

.cp-seo-final-cta h2 {
    margin: 0;
    font-size: clamp(1.4rem, 2.8vw, 2rem);
}

.cp-seo-final-cta .cp-seo-hero-cta {
    justify-content: center;
}

/* ══════════════════════════
   PÁGINA DE CHECKOUT
══════════════════════════ */
.cp-checkout-section {
    padding: 60px 40px 80px;
    max-width: 1040px;
    margin: 0 auto;
}
.cp-checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: start;
}

/* Resumo lateral */
.cp-order-summary {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 28px;
    position: sticky;
    top: 90px;
}
.cp-summary-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--subtle);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.cp-summary-plugin {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}
.cp-summary-icon {
    width: 44px; height: 44px;
    background: rgba(149,128,255,.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    flex-shrink: 0;
}
.cp-summary-name    { font-weight: 700; color: var(--text); font-size: .97rem; }
.cp-summary-version { font-size: .8rem; color: var(--subtle); margin-top: 2px; }
.cp-summary-divider { height: 1px; background: rgba(255,255,255,.07); margin: 16px 0; }
.cp-summary-price-row {
    display: flex;
    justify-content: space-between;
    font-size: .9rem;
    color: var(--subtle);
    margin-bottom: 8px;
}
.cp-summary-total { color: var(--text); font-size: 1.05rem; margin-top: 6px; }
.cp-summary-total strong { color: #fff; font-size: 1.2rem; }
.cp-summary-perks {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cp-summary-perks li {
    font-size: .82rem;
    color: var(--subtle);
    display: flex;
    align-items: center;
    gap: 8px;
}
.cp-summary-perks .fa-circle-check { color: var(--accent); }

/* Formulário de checkout */
.cp-checkout-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 700;
    margin-bottom: 34px;
}
.cp-form { display: flex; flex-direction: column; gap: 28px; }
.cp-form-group { display: flex; flex-direction: column; gap: 10px; }
.cp-form-group label { font-size: .88rem; font-weight: 600; color: var(--subtle); }
.cp-form-input {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;
    color: var(--text);
    font-family: 'Manrope', sans-serif;
    font-size: .97rem;
    padding: 13px 16px;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    width: 100%;
}
select.cp-form-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #cfd6ff 50%),
        linear-gradient(135deg, #cfd6ff 50%, transparent 50%);
    background-position:
        calc(100% - 18px) calc(50% - 1px),
        calc(100% - 12px) calc(50% - 1px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 34px;
}
.cp-form-input option {
    background: #0f1430;
    color: #eaf0ff;
}
.cp-form-input option:disabled {
    color: #8492be;
}
.cp-form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(149,128,255,.2);
}
.cp-form-input.is-invalid { border-color: #ff4d4d; }
.cp-form-hint {
    font-size: .82rem;
    color: #bcc8f4;
    line-height: 1.45;
    margin-top: 2px;
}

/* Mensagem de erro */
.cp-alert {
    padding: 14px 18px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .9rem;
}
.cp-alert--error {
    background: rgba(255,77,77,.1);
    border: 1px solid rgba(255,77,77,.3);
    color: #ff8080;
}
.cp-alert ul { margin: 0; padding-left: 18px; }

.cp-checkout-safe {
    text-align: center;
    font-size: .8rem;
    color: var(--subtle);
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.cp-checkout-safe .fa-shield-halved { color: var(--accent); }

.cp-currency-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--cyan);
    background: rgba(57,184,255,.14);
    border: 1px solid rgba(57,184,255,.35);
    vertical-align: middle;
}

.cp-currency-chip--big {
    font-size: .78rem;
    padding: 4px 10px;
    transform: translateY(-2px);
}

/* ══════════════════════════
   PÁGINA DE SUCESSO
══════════════════════════ */
.cp-success-section {
    padding: 80px 40px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: calc(100vh - 73px);
}
.cp-success-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    padding: 52px 48px;
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}
.cp-success-icon { font-size: 4rem; color: var(--accent); line-height: 1; }
.cp-success-title { font-family: 'Sora', sans-serif; font-size: clamp(26px, 4vw, 38px); font-weight: 700; }
.cp-success-desc { color: var(--subtle); font-size: 1rem; line-height: 1.6; }
.cp-success-plugin-info {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(149,128,255,.1);
    border: 1px solid rgba(149,128,255,.25);
    border-radius: 10px;
    padding: 10px 18px;
    font-weight: 600;
    color: var(--primary);
    font-size: .95rem;
}
.cp-success-expiry { font-size: .82rem; color: var(--subtle); }
.cp-success-expiry strong { color: var(--text); }
.cp-success-license {
    width: 100%;
    background: rgba(149,128,255,.08);
    border: 1px solid rgba(149,128,255,.22);
    border-radius: 12px;
    padding: 18px 20px;
    text-align: left;
}
.cp-success-license h3 {
    margin: 0 0 10px;
    font-size: .9rem;
    font-weight: 700;
    color: var(--subtle);
    text-transform: uppercase;
    letter-spacing: .06em;
}
.cp-success-license code,
.cp-license-inline {
    display: inline-block;
    font-family: monospace;
    font-size: .88rem;
    color: var(--primary);
    background: rgba(149,128,255,.15);
    border: 1px solid rgba(149,128,255,.2);
    border-radius: 8px;
    padding: 6px 10px;
    word-break: break-all;
}
.cp-success-license p {
    margin: 10px 0 0;
    color: var(--subtle);
    font-size: .88rem;
    line-height: 1.6;
}
.cp-success-tips {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 12px;
    padding: 22px 26px;
    text-align: left;
    width: 100%;
}
.cp-success-tips h3 { font-size: .9rem; font-weight: 700; color: var(--subtle); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.cp-success-tips ol { padding-left: 20px; margin: 0; color: var(--subtle); font-size: .9rem; line-height: 1.9; }
.cp-success-tips strong { color: var(--text); }
.cp-success-tips code { background: rgba(149,128,255,.15); color: var(--primary); padding: 1px 6px; border-radius: 4px; font-size: .85em; }
.cp-success-support { font-size: .85rem; color: var(--subtle); }
.cp-success-support a { color: var(--primary); }

/* ── RESPONSIVE das páginas internas ── */
@media screen and (max-width: 860px) {
    .cp-checkout-grid { grid-template-columns: 1fr; }
    .cp-order-summary { position: static; }
    .cp-product-hero  { padding: 52px 22px 44px; }
    .cp-product-body  { padding: 0 22px 44px; }
    .cp-checkout-section { padding: 40px 22px 60px; }
    .cp-page-nav      { padding: 16px 22px; }
    .cp-seo-sales-page { padding: 12px 18px 70px; }
    .cp-seo-hero { padding: 34px 24px; }
    .cp-seo-section { padding: 22px; }
    .cp-seo-grid--3,
    .cp-seo-grid--2 { grid-template-columns: 1fr; }
    .cp-landing-insights__charts { grid-template-columns: 1fr; }
}
@media screen and (max-width: 540px) {
    .cp-success-card { padding: 36px 22px; }
    .cp-product-cta  { flex-direction: column; align-items: flex-start; }
    .cp-seo-hero-cta,
    .cp-seo-plan-cta { flex-direction: column; }
}

/* ══════════════════════════
   PAYMENT METHOD TABS
══════════════════════════ */
.cp-payment-tabs {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 6px;
}

.cp-env-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .02em;
    margin-top: 2px;
}

.cp-env-badge--test {
    background: rgba(249,194,46,.12);
    border: 1px solid rgba(249,194,46,.38);
    color: #f9c22e;
}

[data-theme="light"] .cp-env-badge--test {
    background: rgba(244,174,37,.12);
    border-color: rgba(186,122,0,.42);
    color: #8a5900;
}
.cp-payment-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1.5px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    color: var(--text);
    font-size: .9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
}
.cp-payment-tab:hover {
    border-color: rgba(108,99,255,.45);
    color: var(--text);
    background: rgba(108,99,255,.08);
}
.cp-payment-tab.is-active {
    border-color: rgba(156,255,77,.72);
    background: linear-gradient(135deg, rgba(156,255,77,.2), rgba(57,184,255,.14));
    color: var(--text);
    box-shadow: 0 0 0 3px rgba(156,255,77,.2);
}
.cp-payment-tab:disabled {
    opacity: .35;
    cursor: not-allowed;
    pointer-events: none;
}
.cp-payment-tab .fa-pix { color: #00b4d8; font-size: 1.1em; }
.cp-payment-tab.is-active .fa-pix { color: #9cff4d; }
.cp-payment-tab:focus-visible {
    outline: 2px solid rgba(57,184,255,.8);
    outline-offset: 2px;
}

[data-theme="light"] .cp-payment-tab {
    background: rgba(255,255,255,.92);
    border-color: rgba(58,64,112,.25);
    color: #2e355f;
}
[data-theme="light"] .cp-payment-tab:hover {
    border-color: rgba(106,80,240,.55);
    background: rgba(106,80,240,.08);
    color: #1f2547;
}
[data-theme="light"] .cp-payment-tab.is-active {
    border-color: rgba(92,173,71,.9);
    background: linear-gradient(135deg, rgba(156,255,77,.26), rgba(57,184,255,.16));
    color: #1b2242;
    box-shadow: 0 0 0 3px rgba(92,173,71,.18);
}
[data-theme="light"] .cp-payment-tab .fa-pix {
    color: #2f8f5d;
}

[data-theme="light"] .cp-success-license {
    background: rgba(53,108,192,.08);
    border-color: rgba(53,108,192,.18);
}

[data-theme="light"] .cp-success-license code,
[data-theme="light"] .cp-license-inline {
    color: #2a5ca2;
    background: rgba(53,108,192,.1);
    border-color: rgba(53,108,192,.15);
}

[data-theme="light"] .cp-form-group label {
    color: #4f5d92;
}

[data-theme="light"] .cp-form-hint {
    color: #445381;
}

/* Bricks container */
.cp-bricks-container {
    min-height: 320px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}

/* Card type selector (crédito / débito) */
.cp-card-type-selector {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.cp-card-type-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 11px 14px;
    border-radius: 8px;
    border: 1.5px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    color: var(--text);
    font-size: .85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .18s;
}

.cp-card-type-btn:hover {
    border-color: rgba(108,99,255,.45);
    background: rgba(108,99,255,.08);
}

.cp-card-type-btn.is-active {
    border-color: #6c63ff;
    background: rgba(108,99,255,.18);
    color: #a8a3ff;
    box-shadow: 0 0 0 2px rgba(108,99,255,.25);
}

.cp-card-type-btn:focus-visible {
    outline: 2px solid rgba(108,99,255,.8);
    outline-offset: 2px;
}

[data-theme="light"] .cp-card-type-btn {
    background: rgba(255,255,255,.92);
    border-color: rgba(58,64,112,.25);
    color: #2e355f;
}

[data-theme="light"] .cp-card-type-btn:hover {
    border-color: rgba(106,80,240,.55);
    background: rgba(106,80,240,.08);
}

[data-theme="light"] .cp-card-type-btn.is-active {
    border-color: #6a50f0;
    background: rgba(106,80,240,.12);
    color: #4a3ba8;
    box-shadow: 0 0 0 2px rgba(106,80,240,.15);
}

/* ══════════════════════════
   TELA DE AGUARDANDO PIX
══════════════════════════ */
.cp-pix-page { min-height: 100vh; }

.cp-pix-section {
    padding: 60px 40px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.cp-pix-success {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(35,209,96,.12);
    border: 1.5px solid rgba(35,209,96,.4);
    border-radius: 12px;
    padding: 14px 22px;
    color: #23d160;
    font-weight: 700;
    font-size: 1rem;
    width: 100%;
    max-width: 900px;
    animation: fade-in-down .4s ease;
}
.cp-pix-success .fa-circle-check { font-size: 1.3em; }

.cp-pix-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 32px;
    width: 100%;
    max-width: 900px;
}

/* Summary */
.cp-pix-summary {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-self: start;
    position: sticky;
    top: 90px;
}
.cp-pix-summary-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,180,216,.12);
    border: 1px solid rgba(0,180,216,.3);
    border-radius: 999px;
    padding: 4px 14px 4px 10px;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .07em;
    color: #00b4d8;
    text-transform: uppercase;
    width: fit-content;
}
.cp-pix-summary-badge .fa-pix { font-size: 1.1em; color: #00b4d8; }
.cp-pix-summary-plugin {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}
.cp-pix-plugin-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(149,128,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent);
    flex-shrink: 0;
}
.cp-pix-plugin-name { font-weight: 700; font-size: .95rem; margin: 0 0 2px; }
.cp-pix-plugin-version { font-size: .78rem; color: var(--subtle); margin: 0; }
.cp-pix-divider { height: 1px; background: rgba(255,255,255,.08); }
.cp-pix-amount-row, .cp-pix-order-row {
    display: flex;
    justify-content: space-between;
    font-size: .88rem;
    color: var(--subtle);
}
.cp-pix-amount-row strong { color: var(--text); font-size: 1.05rem; }
.cp-pix-perks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.cp-pix-perks li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    color: var(--subtle);
}
.cp-pix-perks .fa-lock { color: var(--accent); }
.cp-pix-perks .fa-bolt { color: #f9c22e; }
.cp-pix-perks .fa-clock { color: #23d160; }

/* QR Area */
.cp-pix-qr-wrap {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}
.cp-pix-qr-header { text-align: center; }
.cp-pix-qr-header h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(22px, 3.5vw, 30px);
    font-weight: 700;
    margin: 0 0 6px;
}
.cp-pix-qr-header p { color: var(--subtle); font-size: .9rem; margin: 0; }

/* Timer */
.cp-pix-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(249,194,46,.1);
    border: 1px solid rgba(249,194,46,.3);
    border-radius: 999px;
    padding: 6px 18px;
    color: #f9c22e;
    font-weight: 700;
    font-size: .92rem;
}
.cp-pix-timer-label { font-weight: 400; font-size: .8rem; color: rgba(249,194,46,.75); }
.cp-pix-timer.is-urgent { animation: pulse-warn .9s ease-in-out infinite; }
.cp-pix-timer.is-expired { background: rgba(241,70,104,.1); border-color: rgba(241,70,104,.3); color: #f14668; }
@keyframes pulse-warn {
    0%, 100% { box-shadow: 0 0 0 0 rgba(249,194,46,.35); }
    50%        { box-shadow: 0 0 0 6px rgba(249,194,46,0); }
}

/* QR Container */
.cp-pix-qr-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.cp-pix-qr-img {
    width: 220px;
    height: 220px;
    border-radius: 14px;
    border: 3px solid rgba(108,99,255,.35);
    padding: 10px;
    background: #fff;
    display: block;
    transition: opacity .4s, filter .4s;
}
.cp-pix-qr-scan-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: var(--subtle);
}
.cp-pix-qr-na {
    width: 220px;
    height: 220px;
    border-radius: 14px;
    border: 2px dashed rgba(255,255,255,.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--subtle);
}
.cp-pix-qr-na .fa-qrcode { font-size: 3rem; color: rgba(255,255,255,.12); }

/* Copy field */
.cp-pix-copy-wrap { width: 100%; max-width: 480px; }
.cp-pix-copy-label { font-size: .8rem; color: var(--subtle); margin-bottom: 6px; }
.cp-pix-copy-field {
    display: flex;
    border: 1.5px solid rgba(255,255,255,.12);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255,255,255,.03);
}
.cp-pix-copy-input {
    flex: 1;
    padding: 10px 14px;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: .8rem;
    font-family: 'Courier New', monospace;
    min-width: 0;
    outline: none;
}
.cp-pix-copy-btn {
    padding: 0 16px;
    background: linear-gradient(135deg, #5f54e8, #4f44d8);
    border: none;
    border-left: 1px solid rgba(255,255,255,.1);
    color: #f4f7ff;
    cursor: pointer;
    font-size: 1rem;
    transition: background .2s, color .2s, transform .15s;
}
.cp-pix-copy-btn:hover {
    background: linear-gradient(135deg, #564be0, #463cc8);
    transform: translateY(-1px);
}
.cp-pix-copy-btn.is-copied { background: rgba(35,209,96,.15); color: #23d160; }
.cp-pix-copy-hint { font-size: .78rem; color: #23d160; margin-top: 6px; text-align: center; }

[data-theme="light"] .cp-pix-copy-field {
    border-color: rgba(58,64,112,.24);
    background: rgba(255,255,255,.9);
}

[data-theme="light"] .cp-pix-copy-input {
    color: #1e2444;
}

[data-theme="light"] .cp-pix-copy-btn {
    border-left-color: rgba(58,64,112,.22);
    color: #ffffff;
}

/* Status row */
.cp-pix-status-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    color: var(--subtle);
}
.cp-pix-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #f9c22e;
    animation: blink-dot 1.2s ease-in-out infinite;
    flex-shrink: 0;
}
.cp-pix-dot.is-paid { background: #23d160; animation: none; }
@keyframes blink-dot {
    0%, 100% { opacity: 1; }
    50%        { opacity: .25; }
}

.cp-pix-safe {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .79rem;
    color: var(--subtle);
}
.cp-pix-safe .fa-shield-halved { color: var(--accent); }

/* Responsive PIX */
@media screen and (max-width: 760px) {
    .cp-pix-grid { grid-template-columns: 1fr; }
    .cp-pix-summary { position: static; }
    .cp-pix-section { padding: 40px 20px 60px; }
    .cp-pix-qr-wrap { padding: 28px 20px; }
    .cp-pix-qr-img { width: 180px; height: 180px; }
}

/* ══════════════════════════
   AUTH E DASHBOARDS
══════════════════════════ */
.cp-auth-wrap {
    min-height: calc(100vh - 73px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.cp-auth-card {
    background: rgba(10, 11, 28, 0.85);
    border: 1px solid rgba(149, 128, 255, 0.18);
    border-radius: 20px;
    padding: 44px 40px;
    width: 100%;
    max-width: 460px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    backdrop-filter: blur(12px);
    box-shadow: 0 32px 80px rgba(0, 0, 10, 0.55);
    animation: rise-in 0.5s ease;
}

.cp-auth-card h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(22px, 3.5vw, 28px);
    font-weight: 700;
    color: #f0f4ff;
    margin: 0;
    line-height: 1.2;
}

.cp-auth-card p {
    color: #8a9bbf;
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

.cp-check-row {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--subtle);
    font-size: .9rem;
}

.cp-btn-ghost {
    border: 1px solid rgba(255,255,255,.2);
    color: var(--text);
    background: transparent;
    border-radius: 8px;
    padding: 8px 14px;
    cursor: pointer;
}

.cp-client-order-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid rgba(87, 163, 255, 0.45);
    background: rgba(87, 163, 255, 0.14);
    color: #9fd8ff;
    padding: 6px 10px;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color .2s ease, background .2s ease;
}

.cp-client-order-action:hover {
    color: #d5eeff;
    border-color: rgba(87, 163, 255, 0.75);
    background: rgba(87, 163, 255, 0.22);
}

/* ── Client Area: Accordion Cards ─────────────────────────── */
.cp-client-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 14px;
}

.cp-client-accordion-card {
    background: var(--cp-surface, #1e2130);
    border: 1px solid var(--cp-border, rgba(255,255,255,.08));
    border-radius: 14px;
    overflow: hidden;
}

.cp-client-accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: inherit;
    transition: background .15s;
}

.cp-client-accordion-trigger:hover {
    background: rgba(255,255,255,.04);
}

.cp-client-accordion-trigger__info {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.cp-client-accordion-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.cp-client-accordion-icon--orders {
    background: rgba(87, 163, 255, 0.14);
    color: #57a3ff;
}

.cp-client-accordion-icon--subs {
    background: rgba(100, 220, 160, 0.14);
    color: #64dca0;
}

.cp-client-accordion-trigger__meta {
    min-width: 0;
}

.cp-client-accordion-trigger__meta h2 {
    font-size: .95rem;
    font-weight: 600;
    margin: 0 0 5px;
    line-height: 1.2;
}

.cp-client-accordion-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.cp-client-accordion-chip {
    font-size: .72rem;
    font-weight: 500;
    padding: 2px 9px;
    border-radius: 20px;
    letter-spacing: .01em;
}

.cp-client-accordion-chip--paid {
    background: rgba(40, 200, 120, .15);
    color: #28c878;
    border: 1px solid rgba(40, 200, 120, .25);
}

.cp-client-accordion-chip--pending {
    background: rgba(255, 190, 50, .15);
    color: #ffbe32;
    border: 1px solid rgba(255, 190, 50, .25);
}

.cp-client-accordion-chip--failed {
    background: rgba(255, 90, 90, .12);
    color: #ff7070;
    border: 1px solid rgba(255, 90, 90, .22);
}

.cp-client-accordion-chip--active {
    background: rgba(100, 220, 160, .14);
    color: #64dca0;
    border: 1px solid rgba(100, 220, 160, .25);
}

.cp-client-accordion-chip--empty {
    background: rgba(255,255,255,.06);
    color: var(--cp-muted, #8892aa);
    border: 1px solid rgba(255,255,255,.1);
}

.cp-client-accordion-chevron {
    flex-shrink: 0;
    color: var(--cp-muted, #8892aa);
    transition: transform .22s ease;
}

.cp-client-accordion-trigger[aria-expanded="true"] .cp-client-accordion-chevron {
    transform: rotate(180deg);
}

.cp-client-accordion-body {
    display: none;
    padding: 0 0 8px;
    border-top: 1px solid var(--cp-border, rgba(255,255,255,.06));
}

.cp-client-accordion-body.is-open {
    display: block;
}

.cp-client-cta-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.cp-client-cta-card {
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 16px;
    background:
        radial-gradient(circle at 84% 10%, rgba(87, 163, 255, 0.18), transparent 32%),
        radial-gradient(circle at 12% 92%, rgba(149, 128, 255, 0.16), transparent 28%),
        rgba(10, 12, 30, 0.7);
}

.cp-client-cta-card__kicker {
    margin: 0;
    color: #8ea3d5;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cp-client-cta-card h3 {
    margin: 8px 0 8px;
    color: #eef3ff;
    font-size: 1.08rem;
}

.cp-client-cta-card p {
    margin: 0;
    color: #b7c6e9;
    line-height: 1.55;
    font-size: 0.9rem;
}

.cp-client-cta-card__btn {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid rgba(149,128,255,.45);
    background: rgba(149,128,255,.16);
    color: #d9cfff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.84rem;
    padding: 9px 12px;
    transition: border-color .2s ease, background .2s ease;
}

.cp-client-cta-card__btn:hover {
    color: #f2ebff;
    border-color: rgba(149,128,255,.72);
    background: rgba(149,128,255,.24);
}

.cp-dashboard-wrap {
    max-width: 1200px;
    margin: 30px auto 80px;
    padding: 0 20px;
}

.cp-dashboard-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 6px;
    margin-bottom: 10px;
}

.cp-dashboard-head h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    margin: 0;
    line-height: 1.1;
}

.cp-dashboard-head p {
    margin: 0;
    color: var(--subtle);
}

.cp-admin-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
    margin-bottom: 22px;
}

.cp-admin-menu__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.03);
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    transition: border-color .2s, background .2s, color .2s;
}

.cp-admin-menu__link:hover {
    border-color: rgba(149,128,255,.35);
    color: #fff;
}

.cp-admin-menu__link.is-active {
    background: rgba(149,128,255,.14);
    border-color: rgba(149,128,255,.35);
    color: var(--primary);
}

.cp-kpi-grid {
    margin-top: 24px;
    margin-bottom: 24px;
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cp-kpi-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cp-kpi-card span {
    color: var(--subtle);
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.cp-kpi-card strong {
    font-size: 1.25rem;
}

.cp-kpi-grid--compact {
    margin-top: 0;
}

.cp-insights-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 16px 0 20px;
}

.cp-insight-card {
    text-align: left;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(12, 16, 42, 0.85), rgba(9, 12, 30, 0.85));
    padding: 14px;
    color: #d8e3ff;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.cp-insight-card:hover {
    border-color: rgba(87, 163, 255, .5);
    transform: translateY(-2px);
}

.cp-insight-card.is-active {
    border-color: rgba(87, 163, 255, .6);
    box-shadow: 0 0 0 1px rgba(87, 163, 255, .25), 0 12px 26px rgba(9, 12, 30, .35);
}

.cp-insight-card__head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.cp-insight-card__title {
    margin: 0;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #8ea3d5;
    font-weight: 700;
}

.cp-insight-card__total {
    color: #eef3ff;
    font-size: 1.5rem;
    font-weight: 800;
}

.cp-insight-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .82rem;
    color: #b7c6e9;
    margin-top: 8px;
}

.cp-insight-metric strong {
    color: #e7efff;
    font-weight: 700;
}

.cp-insight-bar {
    width: 100%;
    height: 7px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    overflow: hidden;
    margin-top: 6px;
}

.cp-insight-bar > span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #57a3ff, #7ddfa0);
}

.cp-insight-bar--alt > span {
    background: linear-gradient(90deg, #57a3ff, #8edcff);
}

.cp-insight-bar--danger > span {
    background: linear-gradient(90deg, #ff8080, #ff4d4d);
}

.cp-insight-bar--warm > span {
    background: linear-gradient(90deg, #ffd08a, #ffba4d);
}

.cp-dashboard-list-panel {
    display: none;
}

.cp-dashboard-list-panel.is-active {
    display: block;
    animation: cp-page-in .22s ease;
}

/* ---------- Dashboard section head ---------- */
.cp-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 28px;
    margin-bottom: 6px;
    gap: 12px;
}

.cp-section-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #c8d4f0;
    margin: 0;
}

.cp-section-head__intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-width: 0;
}

.cp-section-subtitle {
    margin: 0;
    font-size: 0.84rem;
    color: var(--subtle);
    line-height: 1.35;
}

.cp-btn-ghost--sm {
    font-size: .82rem;
    padding: 5px 14px;
}

.cp-btn-primary--sm {
    font-size: .85rem;
    padding: 8px 18px;
}

/* ---------- Orders filter bar ---------- */
.cp-orders-filters {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px auto auto;
    gap: 10px;
    align-items: end;
    padding: 12px;
    border: 1px solid rgba(149, 128, 255, 0.2);
    border-radius: 14px;
    background: rgba(10, 12, 30, 0.5);
    margin-bottom: 4px;
}

.cp-orders-filters__group {
    display: grid;
    gap: 6px;
}

.cp-orders-filters__group label {
    color: #8ea3d5;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.cp-orders-filters__group--compact {
    max-width: 220px;
}

.cp-orders-filters__actions {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    padding-bottom: 0;
    flex-wrap: wrap;
}

.cp-orders-filters__meta {
    color: #aab8de;
    font-size: 0.86rem;
    font-weight: 600;
    text-align: right;
    padding-bottom: 10px;
    align-self: end;
}

.cp-table-wrap {
    margin-top: 18px;
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    overflow-x: auto;
}

.cp-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.cp-table th,
.cp-table td {
    padding: 14px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    text-align: left;
    font-size: .9rem;
}

.cp-table th {
    color: var(--subtle);
    font-weight: 700;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.cp-table--contacts {
    min-width: 980px;
}

.cp-table-link {
    color: var(--primary);
    text-decoration: none;
}

.cp-table-link:hover {
    text-decoration: underline;
}

.cp-table-message {
    min-width: 260px;
    white-space: pre-wrap;
    line-height: 1.6;
}

.cp-lead-email-row {
    margin-top: 4px;
}

.cp-origin-chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #d8e2ff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.cp-origin-chip--app {
    border-color: rgba(57, 184, 255, 0.45);
    background: rgba(57, 184, 255, 0.16);
    color: #8edcff;
}

.cp-origin-chip--ecommerce {
    border-color: rgba(126, 230, 109, 0.42);
    background: rgba(126, 230, 109, 0.14);
    color: #b9efad;
}

.cp-origin-chip--campaigns {
    border-color: rgba(255, 186, 77, 0.48);
    background: rgba(255, 186, 77, 0.14);
    color: #ffd08a;
}

.cp-origin-chip--default {
    border-color: rgba(170, 186, 230, 0.35);
    background: rgba(170, 186, 230, 0.12);
    color: #d7e0ff;
}

.cp-lead-attribution {
    color: #9fb0d6;
    font-size: 0.8rem;
    line-height: 1.45;
    word-break: break-word;
}

.cp-status {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 700;
}

.cp-status--paid {
    background: rgba(74, 200, 110, 0.18);
    color: #7ddfa0;
    border: 1px solid rgba(74, 200, 110, 0.3);
}

.cp-status--pending {
    background: rgba(57,184,255,.15);
    color: var(--cyan);
}

.cp-status--failed {
    background: rgba(255,77,77,.15);
    color: #ff8080;
}

.cp-alert--ok {
    margin-top: 12px;
    background: rgba(156,255,77,.1);
    border: 1px solid rgba(156,255,77,.25);
    color: #ccffa0;
    border-radius: 10px;
    padding: 12px 14px;
}

.cp-pagination-wrap {
    margin-top: 22px;
}

.cp-pagination-wrap nav {
    display: flex;
    justify-content: center;
}

.cp-pagination-wrap svg {
    width: 18px;
    height: 18px;
}

.cp-pagination-wrap .cp-pagination {
    margin-top: 0;
}

/* ---------- Custom Paginator ---------- */
@keyframes cp-page-in {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.cp-pagination {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.cp-pagination__info {
    font-size: 0.78rem;
    color: #8ea3d5;
    font-weight: 500;
    letter-spacing: 0.02em;
    opacity: 0.8;
}

.cp-pagination__pages {
    display: flex;
    align-items: center;
    gap: 4px;
}

.cp-pagination__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 6px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #c8d4f0;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.12s, box-shadow 0.18s;
    line-height: 1;
}

.cp-pagination__btn--nav:hover {
    background: rgba(149, 128, 255, 0.18);
    border-color: rgba(149, 128, 255, 0.5);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(106, 80, 240, 0.25);
}

.cp-pagination__btn--nav:active {
    transform: translateY(0);
    box-shadow: none;
}

.cp-pagination__btn--active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    cursor: default;
    box-shadow: 0 2px 14px rgba(106, 80, 240, 0.45);
}

.cp-pagination__btn--disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

.cp-pagination__btn--ellipsis {
    background: transparent;
    border-color: transparent;
    cursor: default;
    color: #8ea3d5;
    min-width: 24px;
}

/* Fade-in da tabela ao entrar na página */
.cp-table-wrap {
    animation: cp-page-in 0.28s ease both;
}

[data-theme="light"] .cp-pagination__info {
    color: #6678a7;
}

[data-theme="light"] .cp-pagination__btn {
    background: rgba(106, 80, 240, 0.06);
    border-color: rgba(106, 80, 240, 0.15);
    color: #3a3060;
}

[data-theme="light"] .cp-pagination__btn--nav:hover {
    background: rgba(106, 80, 240, 0.14);
    border-color: rgba(106, 80, 240, 0.4);
    color: #2a1a8a;
    box-shadow: 0 4px 12px rgba(106, 80, 240, 0.2);
}

[data-theme="light"] .cp-pagination__btn--active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

[data-theme="light"] .cp-pagination__btn--ellipsis {
    color: #8a94b8;
}

/* ── Admin / Notas Fiscais ─────────────────────────────────────────────── */
.cp-invoice-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 1300;
}

.cp-invoice-modal.is-open {
    display: flex;
}

.cp-invoice-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 8, 18, 0.72);
    backdrop-filter: blur(4px);
}

.cp-invoice-modal__dialog {
    position: relative;
    width: min(760px, 100%);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    border-radius: 16px;
    border: 1px solid rgba(149, 128, 255, 0.22);
    background:
        radial-gradient(circle at 90% 7%, rgba(57, 184, 255, 0.11), transparent 30%),
        radial-gradient(circle at 10% 92%, rgba(149, 128, 255, 0.12), transparent 26%),
        rgba(10, 12, 30, 0.95);
    padding: 16px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.46);
}

.cp-invoice-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.cp-invoice-modal__header h3 {
    margin: 2px 0 0;
    font-size: 1.08rem;
    color: #eef3ff;
}

.cp-invoice-modal__close {
    border: 1px solid rgba(149, 128, 255, 0.32);
    background: rgba(149, 128, 255, 0.12);
    color: #b9abff;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
}

.cp-invoice-modal__content {
    margin-top: 12px;
    color: #c8d4f0;
    display: grid;
    gap: 10px;
}

.cp-invoice-modal__content h4 {
    margin: 8px 0 0;
    font-size: 0.95rem;
    color: #a9bbff;
}

.cp-invoice-modal__content ol,
.cp-invoice-modal__content ul {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 6px;
}

.cp-invoice-form {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.cp-invoice-form__actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

@media screen and (max-width: 740px) {
    .cp-invoice-form {
        grid-template-columns: 1fr;
    .cp-nav-whatsapp span { display: none; }
    .cp-nav-whatsapp { padding: 9px 10px; }
    .cp-client-cta-grid { grid-template-columns: 1fr; }
    }
}

[data-theme="light"] .cp-invoice-modal__dialog {
    border-color: rgba(106, 80, 240, 0.2);
    background:
        radial-gradient(circle at 90% 7%, rgba(57, 184, 255, 0.08), transparent 30%),
        radial-gradient(circle at 10% 92%, rgba(149, 128, 255, 0.08), transparent 26%),
        rgba(255, 255, 255, 0.96);
}

[data-theme="light"] .cp-invoice-modal__header {
    border-bottom-color: rgba(106, 80, 240, 0.15);
}

[data-theme="light"] .cp-invoice-modal__header h3 {
    color: #2f3a68;
}

[data-theme="light"] .cp-invoice-modal__content {
    color: #4d5d86;
}

[data-theme="light"] .cp-invoice-modal__content h4 {
    color: #3c4f86;
}

/* ── Admin / Pre-analises ─────────────────────────────────────────────── */
.cp-pre-analyses-grid {
    margin-top: 18px;
    display: grid;
    gap: 18px;
}

.cp-pre-analyses-filters {
    margin-top: 14px;
    padding: 12px;
    border: 1px solid rgba(149, 128, 255, 0.2);
    border-radius: 14px;
    background: rgba(10, 12, 30, 0.5);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px auto;
    gap: 10px;
    align-items: end;
}

.cp-pre-analyses-filters__group {
    display: grid;
    gap: 6px;
}

.cp-pre-analyses-filters__group label {
    color: #8ea3d5;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.cp-pre-analyses-filters__group--compact {
    max-width: 260px;
}

.cp-pre-analyses-filters__meta {
    color: #aab8de;
    font-size: 0.86rem;
    font-weight: 600;
    text-align: right;
    padding-bottom: 10px;
}

.cp-pre-analyses-grid--list {
    gap: 12px;
}

.cp-pre-analysis-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 14px 16px;
    background:
        radial-gradient(circle at 92% 6%, rgba(57, 184, 255, 0.12), transparent 28%),
        radial-gradient(circle at 8% 94%, rgba(149, 128, 255, 0.12), transparent 24%),
        rgba(10, 12, 30, 0.72);
}

.cp-pre-analysis-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cp-pre-analysis-lead {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cp-pre-analysis-avatar {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(149, 128, 255, 0.3), rgba(57, 184, 255, 0.3));
    border: 1px solid rgba(149, 128, 255, 0.38);
    color: #e6eeff;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cp-pre-analysis-id {
    margin: 0;
    color: #8ea3d5;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cp-pre-analysis-lead h3 {
    margin: 2px 0 4px;
    font-size: 1.15rem;
    color: #eef3ff;
    line-height: 1.2;
}

.cp-pre-analysis-contact-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: #a9b9de;
    font-size: 0.86rem;
}

.cp-pre-analysis-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.cp-pre-analysis-meta p {
    margin: 0;
    color: #9fb0d6;
    font-size: 0.82rem;
    text-align: right;
}

.cp-pre-analysis-meta p strong {
    color: #eef3ff;
    font-weight: 700;
}

.cp-pre-analysis-chip {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(57, 184, 255, 0.45);
    background: rgba(57, 184, 255, 0.12);
    color: #8edcff;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cp-pre-analysis-summary {
    margin-bottom: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
    background: rgba(8, 10, 26, 0.45);
}

.cp-pre-analysis-summary__label {
    margin: 0 0 4px;
    color: #8ea3d5;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.cp-pre-analysis-summary__text {
    margin: 0;
    color: #c4d2ef;
    font-size: 0.92rem;
    line-height: 1.6;
    white-space: pre-wrap;
    word-break: break-word;
}

.cp-pre-analysis-answers-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cp-pre-answer-card {
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
    padding: 12px;
    background: rgba(7, 9, 22, 0.6);
}

.cp-pre-answer-card__tag {
    margin: 0 0 6px;
    color: #89a0d3;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cp-pre-answer-card h4 {
    margin: 0 0 6px;
    color: #e5ecff;
    font-size: 0.95rem;
    line-height: 1.4;
    font-family: 'Sora', sans-serif;
}

.cp-pre-answer-card p {
    margin: 0;
    color: #b7c6e8;
    font-size: 0.9rem;
    line-height: 1.65;
    white-space: pre-wrap;
    word-break: break-word;
}

.cp-pre-answer-card--empty {
    grid-column: 1 / -1;
}

/* ── Pre-analysis card: quick-action buttons ─────────────────────────── */
.cp-pre-analysis-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 0 0;
    border-top: 1px solid rgba(149, 128, 255, 0.12);
}

.cp-landing-insights__charts {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.cp-landing-insights__card {
    border: 1px solid rgba(149, 128, 255, 0.18);
    border-radius: 14px;
    background: rgba(10, 12, 30, 0.45);
    padding: 14px;
}

.cp-landing-insights__card h3 {
    margin: 0 0 12px;
    font-size: 0.96rem;
    color: #d8e0ff;
}

.cp-landing-insights__card canvas {
    width: 100% !important;
    max-height: 280px;
}

.cp-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: transform 0.15s, filter 0.15s;
    white-space: nowrap;
}

.cp-action-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.12);
}

.cp-action-btn--whatsapp {
    background: rgba(37, 211, 102, 0.18);
    color: #4de88e;
    border: 1px solid rgba(37, 211, 102, 0.35);
}

.cp-action-btn--email {
    background: rgba(149, 128, 255, 0.14);
    color: #b8a9ff;
    border: 1px solid rgba(149, 128, 255, 0.3);
}

.cp-action-btn--details {
    background: rgba(57, 184, 255, 0.12);
    color: #88dcff;
    border: 1px solid rgba(57, 184, 255, 0.34);
    cursor: pointer;
}

.cp-modal-open {
    overflow: hidden;
}

.cp-pre-analysis-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 1200;
}

.cp-pre-analysis-modal.is-open {
    display: flex;
}

.cp-pre-analysis-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 8, 18, 0.7);
    backdrop-filter: blur(3px);
}

.cp-pre-analysis-modal__dialog {
    position: relative;
    width: min(980px, 100%);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    border-radius: 16px;
    border: 1px solid rgba(149, 128, 255, 0.2);
    background:
        radial-gradient(circle at 92% 8%, rgba(57, 184, 255, 0.12), transparent 28%),
        radial-gradient(circle at 8% 90%, rgba(149, 128, 255, 0.12), transparent 24%),
        rgba(10, 12, 30, 0.95);
    padding: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.cp-pre-analysis-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.cp-pre-analysis-modal__header h3 {
    margin: 2px 0 0;
    color: #eef3ff;
    font-size: 1.1rem;
}

.cp-pre-analysis-modal__close {
    border: 1px solid rgba(149, 128, 255, 0.34);
    background: rgba(149, 128, 255, 0.12);
    color: #b7a8ff;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
}

.cp-pre-analysis-modal__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
    color: #a9b9de;
    font-size: 0.88rem;
}

.cp-pre-analysis-modal__message {
    margin-bottom: 12px;
}

.cp-pre-analysis-modal__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(149, 128, 255, 0.12);
}

@media screen and (max-width: 980px) {
    .cp-pre-analyses-filters {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .cp-pre-analyses-filters__group--compact {
        max-width: none;
    }

    .cp-pre-analyses-filters__meta {
        text-align: left;
        padding-bottom: 0;
    }

    .cp-pre-analysis-card__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cp-pre-analysis-meta {
        align-items: flex-start;
    }

    .cp-pre-analysis-meta p {
        text-align: left;
    }
}

@media screen and (max-width: 740px) {
    .cp-pre-analysis-answers-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 980px) {
    .cp-insights-cards {
        grid-template-columns: 1fr;
    }

    .cp-orders-filters {
        grid-template-columns: 1fr 1fr;
    }

    .cp-orders-filters__meta {
        grid-column: span 2;
        text-align: left;
        padding-bottom: 0;
    }
}

@media screen and (max-width: 600px) {
    .cp-orders-filters {
        grid-template-columns: 1fr;
    }

    .cp-orders-filters__group--compact {
        max-width: none;
    }

    .cp-orders-filters__meta {
        grid-column: span 1;
    }

    .cp-section-head {
        flex-wrap: wrap;
    }
}

/* ── Admin / Assinaturas ─────────────────────────────────────────────── */
.cp-subscriptions-create {
    margin-top: 14px;
    padding: 22px;
    border: 1px solid rgba(149, 128, 255, 0.2);
    border-radius: 16px;
    background:
        radial-gradient(circle at 88% 12%, rgba(57, 184, 255, 0.08), transparent 36%),
        radial-gradient(circle at 12% 88%, rgba(149, 128, 255, 0.08), transparent 32%),
        rgba(12, 14, 32, 0.58);
    backdrop-filter: blur(8px);
}

.cp-subscriptions-create__head {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.cp-subscriptions-create__head h3 {
    margin: 0;
    font-family: 'Sora', sans-serif;
    font-size: clamp(20px, 2.3vw, 26px);
    color: #ecf2ff;
}

.cp-subscriptions-create__head p {
    margin: 0;
    color: #b6c5eb;
    font-size: .93rem;
}

.cp-subscriptions-form {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.cp-subscriptions-form .cp-form-group {
    gap: 8px;
}

.cp-subscriptions-form .cp-form-group label {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #9eb1de;
}

.cp-subscriptions-form .cp-form-input {
    min-height: 44px;
}

.cp-dashboard-wrap select.cp-form-input {
    appearance: auto;
    -webkit-appearance: menulist;
    -moz-appearance: menulist;
    background-image: none;
    padding-right: 16px;
}

.cp-subscriptions-form__notes {
    grid-column: span 2;
}

.cp-subscriptions-form__actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    margin-top: 4px;
}

.cp-subscriptions-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #c8d4f3;
    font-size: .9rem;
    min-height: 44px;
}

.cp-subscriptions-check input[type="checkbox"] {
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
}

.cp-subscriptions-table-wrap {
    margin-top: 14px;
}

.cp-subscriptions-plan {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(149, 128, 255, 0.32);
    background: rgba(149, 128, 255, 0.12);
    color: #d7ceff;
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 700;
}

.cp-subscriptions-edit {
    position: relative;
}

.cp-subscriptions-edit__toggle {
    list-style: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 6px 12px;
    border-radius: 9px;
    border: 1px solid rgba(149, 128, 255, 0.28);
    background: rgba(149, 128, 255, 0.08);
    color: #d4dcff;
    font-size: .84rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, border-color .2s;
}

.cp-subscriptions-edit__toggle::-webkit-details-marker {
    display: none;
}

.cp-subscriptions-edit__toggle:hover {
    background: rgba(149, 128, 255, 0.16);
    border-color: rgba(149, 128, 255, 0.45);
}

.cp-subscriptions-edit[open] .cp-subscriptions-edit__toggle {
    margin-bottom: 10px;
}

.cp-subscriptions-edit__form {
    margin-top: 6px;
    min-width: 280px;
    display: grid;
    gap: 14px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(149, 128, 255, 0.18);
    background: rgba(9, 11, 28, 0.62);
}

.cp-subscriptions-modal {
    margin: auto;
    width: min(820px, calc(100vw - 24px));
    border: none;
    padding: 0;
    background: transparent;
}

/* ── Confirm dialog: gerar nova chave de licença ── */
.cp-license-confirm-dialog {
    margin: auto;
    width: min(420px, calc(100vw - 24px));
    border: none;
    padding: 0;
    background: transparent;
}

.cp-license-confirm-dialog::backdrop {
    background:
        radial-gradient(circle at 30% 30%, rgba(57, 184, 255, 0.11), transparent 50%),
        rgba(4, 8, 18, 0.84);
    backdrop-filter: blur(6px);
}

.cp-license-confirm-dialog__inner {
    border-radius: 20px;
    border: 1px solid rgba(92, 132, 255, 0.34);
    background: linear-gradient(165deg, rgba(11, 19, 44, 0.98), rgba(7, 12, 29, 0.98));
    box-shadow:
        0 26px 60px rgba(0, 0, 0, 0.52),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cp-license-confirm-dialog__head p {
    margin: 0 0 6px;
    color: #95a9dc;
    font-size: .75rem;
    letter-spacing: .09em;
    text-transform: uppercase;
    font-weight: 700;
}

.cp-license-confirm-dialog__head h3 {
    margin: 0;
    font-size: 1.05rem;
    color: #eff4ff;
    letter-spacing: .01em;
}

.cp-license-confirm-dialog__body code {
    display: block;
    font-family: monospace;
    color: #e8dbff;
    background: linear-gradient(135deg, rgba(149, 128, 255, 0.22), rgba(87, 165, 255, 0.14));
    border: 1px solid rgba(149, 128, 255, 0.38);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: .92rem;
    text-align: center;
    word-break: break-all;
    letter-spacing: .04em;
}

.cp-license-confirm-dialog__footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.cp-subscriptions-modal::backdrop {
    background:
        radial-gradient(circle at 12% 12%, rgba(57, 184, 255, 0.14), transparent 45%),
        radial-gradient(circle at 88% 84%, rgba(156, 255, 77, 0.12), transparent 42%),
        rgba(4, 8, 18, 0.78);
    backdrop-filter: blur(6px);
}

.cp-subscriptions-modal__dialog {
    border-radius: 20px;
    border: 1px solid rgba(92, 132, 255, 0.34);
    background: linear-gradient(165deg, rgba(11, 19, 44, 0.98), rgba(7, 12, 29, 0.98));
    box-shadow:
        0 26px 60px rgba(0, 0, 0, 0.52),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    padding: 22px;
}

.cp-subscriptions-modal__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cp-subscriptions-modal__eyebrow {
    margin: 0 0 6px;
    color: #95a9dc;
    font-size: .75rem;
    letter-spacing: .09em;
    text-transform: uppercase;
    font-weight: 700;
}

.cp-subscriptions-modal__head h3 {
    margin: 0;
    font-size: 1.12rem;
    color: #eff4ff;
    letter-spacing: .01em;
}

.cp-subscriptions-modal__close {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.05);
    color: #e5ecff;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
    transition: all .2s ease;
}

.cp-subscriptions-modal__close:hover {
    background: rgba(255, 92, 128, 0.18);
    border-color: rgba(255, 92, 128, 0.44);
    color: #ffdce6;
}

.cp-subscriptions-modal__license {
    margin-bottom: 16px;
    color: #b9c6ea;
    font-size: .84rem;
    letter-spacing: .07em;
    text-transform: uppercase;
    font-weight: 700;
    display: grid;
    gap: 8px;
}

.cp-subscriptions-modal__license code {
    display: inline-flex;
    width: fit-content;
    font-family: monospace;
    color: #e8dbff;
    background: linear-gradient(135deg, rgba(149,128,255,.2), rgba(87,165,255,.14));
    border: 1px solid rgba(149,128,255,.36);
    border-radius: 10px;
    padding: 8px 12px;
    font-size: .86rem;
    word-break: break-all;
}

.cp-subscriptions-edit__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.cp-subscriptions-edit__full {
    grid-column: 1 / -1;
}

.cp-subscriptions-license-field {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
}

.cp-subscriptions-license-generate {
    min-height: 46px;
    white-space: nowrap;
}

.cp-subscriptions-modal__footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 2px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cp-subscriptions-empty {
    text-align: center;
    color: #a9badf;
    font-size: .95rem;
    padding: 28px 14px !important;
}

.cp-subscriptions-empty i {
    margin-right: 8px;
    opacity: .8;
}

@media screen and (max-width: 900px) {
    .cp-kpi-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cp-subscriptions-form__notes {
        grid-column: 1 / -1;
    }

    .cp-subscriptions-form__actions {
        justify-content: stretch;
    }

    .cp-subscriptions-form__actions .cp-btn-primary {
        width: 100%;
        justify-content: center;
    }

    .cp-subscriptions-edit__grid {
        grid-template-columns: 1fr;
    }

    .cp-subscriptions-license-field {
        grid-template-columns: 1fr;
    }

    .cp-subscriptions-modal__footer {
        flex-direction: column-reverse;
    }

    .cp-subscriptions-modal__footer .cp-btn-primary,
    .cp-subscriptions-modal__footer .cp-btn-secondary {
        width: 100%;
    }
}

@media screen and (max-width: 540px) {
    .cp-kpi-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   TEMA CLARO — overrides para elementos com cores hardcoded
═══════════════════════════════════════════════════════════════════ */

/* ── Botão toggle de tema ── */
.theme-toggle {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--text);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.theme-toggle:hover {
    background: rgba(149, 128, 255, 0.15);
    border-color: rgba(149, 128, 255, 0.45);
    color: var(--primary);
}

/* ── Background global e glow atmosférico ── */
[data-theme="light"] body { background: var(--bg); color: var(--text); }

[data-theme="light"] .cp-page::before {
    background:
        radial-gradient(ellipse 1100px 700px at 50% -5%,  rgba(149, 128, 255, 0.09) 0%, transparent 65%),
        radial-gradient(ellipse 650px  450px at 88% 55%,  rgba(57,  184, 255, 0.06) 0%, transparent 65%),
        radial-gradient(ellipse 550px  380px at 12% 82%,  rgba(156, 255,  77, 0.05) 0%, transparent 65%);
}

/* ── Splash ── */
[data-theme="light"] .splashScreen {
    background:
        radial-gradient(ellipse 900px 500px at 50% 30%, rgba(149, 128, 255, 0.12) 0%, transparent 65%),
        linear-gradient(180deg, #f4f5ff 0%, #eceeff 60%, #f4f5ff 100%);
}
[data-theme="light"] .welcomeSplash { color: #3a4070; }
[data-theme="light"] .cpSplashLoader::before {
    border-color: rgba(90, 102, 160, 0.2);
    border-top-color: #6a50f0;
    border-right-color: #39b8ff;
}
[data-theme="light"] .cpSplashLoader::after {
    border-color: rgba(90, 102, 160, 0.3);
}
[data-theme="light"] .cpSplashLoaderCore {
    box-shadow: 0 0 0 8px rgba(106, 80, 240, 0.14);
}

/* ── Header ── */
[data-theme="light"] .header {
    background: rgba(255, 255, 255, 0.92);
}
[data-theme="light"] .link-menu { color: #3a4070; }
[data-theme="light"] .link-menu:hover {
    background: rgba(106, 80, 240, 0.1);
    color: var(--primary);
}
[data-theme="light"] .lang-dropdown-trigger {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--text);
    border-color: rgba(106, 80, 240, 0.22);
}
[data-theme="light"] .lang-dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(106, 80, 240, 0.22);
}
[data-theme="light"] .lang-dropdown-option {
    color: #0c0e28;
}
[data-theme="light"] .lang-dropdown-option:hover,
[data-theme="light"] .lang-dropdown-option[aria-selected="true"] {
    background: rgba(106, 80, 240, 0.1);
}
[data-theme="light"] .form-select {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--text);
    border-color: rgba(106, 80, 240, 0.22);
}
[data-theme="light"] .lang-flag {
    box-shadow: 0 0 0 1px rgba(12, 14, 40, 0.18);
}
[data-theme="light"] .form-option {
    background-color: #fff;
    color: #0c0e28;
}

/* ── Hero ── */
[data-theme="light"] .hero {
    background: rgba(248, 249, 255, 0.82);
    border-color: rgba(106, 80, 240, 0.18);
}
[data-theme="light"] .hero-subtext { color: var(--muted); }

/* ── Cards de serviço ── */
[data-theme="light"] .incards h3,
[data-theme="light"] .step-card h3,
[data-theme="light"] .segment-card h3,
[data-theme="light"] .plugin-card-body h3,
[data-theme="light"] .lead-copy h3 { color: var(--text); }

[data-theme="light"] .incards p,
[data-theme="light"] .step-card p,
[data-theme="light"] .segment-card > p,
[data-theme="light"] .plugin-card-body > p,
[data-theme="light"] .lead-copy > p { color: var(--muted); }

/* Accent limão em texto sobre fundo claro → usar primary */
[data-theme="light"] .incards span { color: var(--primary); }
[data-theme="light"] .proof-label   { color: var(--primary); }
[data-theme="light"] .plugin-features li i { color: var(--primary); }
[data-theme="light"] .plugin-compat-tag i  { color: var(--primary); }

/* ── Logos SVG brancas → escuras no tema claro ── */
[data-theme="light"] .logo-header img,
[data-theme="light"] .imgSplashLogo {
    filter: brightness(0);
}
[data-theme="light"] .logo-footer {
    filter: brightness(0);
}
[data-theme="light"] .cp-nav-logo img {
    filter: brightness(0);
}

/* ── Ícones SVG dos cards de serviço ── */
[data-theme="light"] .mini-cards {
    filter: brightness(0);
}

/* ── Número dos steps: cor sólida legível no claro (sem background-clip) ── */
[data-theme="light"] .step-number {
    color: var(--primary);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: unset;
}

/* ── Hero tag / Section kicker ── */
[data-theme="light"] .hero-tag,
[data-theme="light"] .section-kicker {
    color: var(--primary);
}
[data-theme="light"] .hero-tag::before,
[data-theme="light"] .section-kicker::before {
    background: rgba(106, 80, 240, 0.6);
}

/* ── Hero metrics: fundo escuro hardcoded ── */
[data-theme="light"] .hero-metrics {
    background: rgba(248, 249, 255, 0.92);
    border-color: rgba(106, 80, 240, 0.18);
}
[data-theme="light"] .hero-metrics strong { color: var(--text); }

/* ── Trust bar tags: fundo escuro hardcoded ── */
[data-theme="light"] .trust-bar-items span {
    background: rgba(238, 241, 255, 0.92);
    color: #2a3566;
    border-color: rgba(106, 80, 240, 0.2);
}

/* ── Portfolio / Proof ── */
[data-theme="light"] .portfolio-card h3 { color: var(--text); }
[data-theme="light"] .portfolio-card > .portfolio-card-body > p { color: var(--muted); }

[data-theme="light"] .filter-btn {
    background: rgba(238, 241, 255, 0.92);
    color: #3a4070;
    border-color: rgba(106, 80, 240, 0.22);
}
[data-theme="light"] .filter-btn:hover { color: var(--primary); }

[data-theme="light"] .stack-tags span {
    background: rgba(220, 228, 255, 0.88);
    color: #2a3566;
    border-color: rgba(106, 80, 240, 0.2);
}
[data-theme="light"] .plugin-compat-tag {
    background: rgba(220, 228, 255, 0.88);
    color: #2a3566;
    border-color: rgba(106, 80, 240, 0.2);
}

/* ── Plugin cards ── */
[data-theme="light"] .plugin-card.is-popular {
    background: rgba(248, 247, 255, 0.96);
}
[data-theme="light"] .plugin-card-custom {
    border-color: rgba(57, 184, 255, 0.35);
    background:
        radial-gradient(circle at 8% 10%, rgba(57, 184, 255, 0.08), transparent 44%),
        radial-gradient(circle at 92% 88%, rgba(106, 80, 240, 0.1), transparent 48%),
        rgba(250, 251, 255, 0.96);
}
[data-theme="light"] .plugin-card-custom::before {
    opacity: 0.2;
}
[data-theme="light"] .plugin-card-custom::after {
    background: linear-gradient(145deg, rgba(247, 249, 255, 0.92) 0%, rgba(243, 246, 255, 0.9) 55%, rgba(238, 242, 255, 0.94) 100%);
}
[data-theme="light"] .plugin-card-custom .plugin-card-body > p {
    color: #53618f;
}
[data-theme="light"] .plugin-budget-badge {
    color: #062619;
    border-color: rgba(6, 38, 25, 0.2);
    box-shadow: 0 8px 18px rgba(57, 184, 255, 0.18);
}
[data-theme="light"] .plugin-price .price-amount { color: var(--text); }
[data-theme="light"] .plugin-price .price-period  { color: var(--muted); }

/* ── Contact form ── */
[data-theme="light"] .formulario-contato input,
[data-theme="light"] .formulario-contato textarea {
    background: rgba(255, 255, 255, 0.92);
    color: var(--text);
    border-color: rgba(106, 80, 240, 0.2);
}
[data-theme="light"] .formulario-contato input::placeholder,
[data-theme="light"] .formulario-contato textarea::placeholder { color: #8898c0; }
[data-theme="light"] .pre-analysis-box {
    background: rgba(245, 248, 255, 0.94);
    border-color: rgba(106, 80, 240, 0.2);
}
[data-theme="light"] .pre-analysis-intro h4,
[data-theme="light"] .pre-analysis-step h4 {
    color: #21324f;
}
[data-theme="light"] .pre-analysis-intro p,
[data-theme="light"] .pre-analysis-progress {
    color: #5f729b;
}
[data-theme="light"] .pre-analysis-start-btn,
[data-theme="light"] .pre-analysis-action-btn {
    background: #ffffff;
    color: #2c3a5e;
    border-color: rgba(106, 80, 240, 0.3);
}
[data-theme="light"] .pre-analysis-done {
    color: #236643;
}
[data-theme="light"] .lead-success-panel {
    background: linear-gradient(160deg, rgba(247, 250, 255, 0.96), rgba(241, 246, 255, 0.96));
    border-color: rgba(106, 80, 240, 0.2);
}
[data-theme="light"] .lead-success-panel__kicker {
    color: #5b72a5;
}
[data-theme="light"] .lead-success-panel h4 {
    color: #21324f;
}
[data-theme="light"] .lead-success-panel p,
[data-theme="light"] .lead-success-panel__contact-list li {
    color: #526389;
}
[data-theme="light"] .lead-success-panel__contact-title {
    color: #2e4672 !important;
}
[data-theme="light"] .lead-success-panel__contact-list a {
    color: #2f66a8;
}
[data-theme="light"] .lead-success-panel__cta {
    color: #102339;
    box-shadow: 0 8px 18px rgba(74, 177, 255, 0.24);
}

/* ── Footer ── */
[data-theme="light"] .footer {
    background: rgba(240, 243, 255, 0.9);
}
[data-theme="light"] .footer p,
[data-theme="light"] .footer div { color: var(--muted); }
[data-theme="light"] .footer a,
[data-theme="light"] .link-social-midia { color: var(--primary); }

/* ── Páginas internas — nav ── */
[data-theme="light"] .cp-page-nav {
    background: rgba(248, 250, 255, 0.95);
    border-color: rgba(110, 120, 230, 0.15);
}

[data-theme="light"] .cp-nav-back {
    color: #5a4fe0;
}

[data-theme="light"] .cp-product-hero {
    background:
        radial-gradient(580px 300px at 88% 12%, rgba(106, 80, 240, 0.18), transparent 65%),
        linear-gradient(180deg, rgba(246, 248, 255, 0.96), rgba(236, 240, 252, 0.82));
    border: 1px solid rgba(110, 120, 230, 0.14);
    border-radius: 18px;
}

[data-theme="light"] .cp-product-hero-badge {
    background: rgba(106, 80, 240, 0.1);
    border-color: rgba(106, 80, 240, 0.28);
    color: #5a4fe0;
}

/* Título de produto com gradiente ── fundo claro */
[data-theme="light"] .cp-product-title {
    color: var(--text);
    background-image: linear-gradient(135deg, var(--text) 40%, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme="light"] .cp-product-desc,
[data-theme="light"] .cp-price-note,
[data-theme="light"] .cp-product-bottom-cta p {
    color: #5d6b96;
}

[data-theme="light"] .cp-product-body {
    padding-top: 20px;
}

[data-theme="light"] .cp-tech-report-page .cp-tech-report-hero {
    background:
        radial-gradient(620px 320px at 86% 14%, rgba(124, 108, 255, 0.2), transparent 62%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 246, 255, 0.95));
}

[data-theme="light"] .cp-tech-report-page .cp-tech-report-title {
    color: #1f2547;
    background: none;
    -webkit-text-fill-color: initial;
}

[data-theme="light"] .cp-tech-report-page .cp-tech-report-title-accent {
    color: #335fe6 !important;
    -webkit-text-fill-color: #335fe6;
}

[data-theme="light"] .cp-tech-report-page .cp-tech-report-desc {
    color: #49557a;
}

[data-theme="light"] .cp-tech-report-page .cp-tech-report-badge {
    background: rgba(106, 80, 240, 0.08);
    border-color: rgba(106, 80, 240, 0.22);
    color: #6b5ce7;
}

[data-theme="light"] .cp-tech-report-page .cp-tech-report-metrics {
    box-shadow: 0 18px 44px rgba(88, 92, 204, 0.14);
}

[data-theme="light"] .cp-tech-report-page code {
    color: #1f3d8f;
}

.cp-tech-report-page {
    background: linear-gradient(135deg, #0d1022 0%, #121731 100%);
}

.cp-tech-report-hero {
    margin-top: 2rem;
}

.cp-tech-report-pill {
    background: #ef4444;
    color: #fff;
}

.cp-tech-report-title-accent {
    color: #06b6d4;
    font-size: 0.9em;
}

.cp-tech-report-desc {
    max-width: 800px;
}

.cp-tech-report-metrics {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cp-tech-report-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.cp-tech-report-metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.cp-tech-report-metric-label {
    opacity: 0.9;
    font-size: 0.9rem;
}

.cp-tech-report-content {
    padding: 3rem 2rem;
}

.cp-tech-report-section {
    margin-bottom: 3rem;
}

.cp-tech-report-heading {
    color: #cfd7ff;
    border-bottom: 2px solid #06b6d4;
    padding-bottom: 1rem;
    margin: 0 0 2rem;
}

.cp-tech-report-panel,
.cp-tech-report-block,
.cp-tech-report-cta {
    border-radius: 8px;
}

.cp-tech-report-panel {
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cp-tech-report-panel p,
.cp-tech-report-block-body p,
.cp-tech-report-panel li,
.cp-tech-report-cta-copy {
    line-height: 1.8;
}

.cp-tech-report-panel-title {
    margin: 0 0 1rem;
}

.cp-tech-report-panel-title--summary { color: #8fd7ff; }
.cp-tech-report-panel-title--danger { color: #ff9b9b; }
.cp-tech-report-panel-title--warning { color: #ffd37a; }
.cp-tech-report-panel-title--success { color: #83e4aa; }

.cp-tech-report-panel--summary {
    background: rgba(18, 72, 104, 0.16);
    border-left: 4px solid #0284c7;
}

.cp-tech-report-panel--danger {
    background: rgba(127, 29, 29, 0.18);
    border-color: rgba(239, 68, 68, 0.28);
}

.cp-tech-report-panel--warning {
    background: rgba(133, 77, 14, 0.18);
    border-color: rgba(245, 158, 11, 0.3);
}

.cp-tech-report-panel--success {
    background: rgba(20, 83, 45, 0.16);
    border-color: rgba(34, 197, 94, 0.24);
}

.cp-tech-report-panel--bordered {
    border-left: 4px solid #0284c7;
}

.cp-tech-report-panel-last,
.cp-tech-report-list.cp-tech-report-panel-last {
    margin-bottom: 0;
}

.cp-tech-report-success-text {
    color: #22c55e;
}

.cp-tech-report-list {
    margin: 0;
    padding-left: 1.2rem;
}

.cp-tech-report-list--spaced li {
    margin-bottom: 0.55rem;
}

.cp-tech-report-badge-label {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.85rem;
    color: #fff;
}

.cp-tech-report-badge-label--critical { background: #ef4444; }
.cp-tech-report-badge-label--warning { background: #f97316; }

.cp-tech-report-error-showcase {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cp-tech-report-error-banner {
    background: #f97316;
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cp-tech-report-error-card {
    width: 100%;
    max-width: 600px;
    margin: 1rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid #ef4444;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cp-tech-report-error-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cp-tech-report-error-icon {
    color: #ef4444;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.cp-tech-report-error-message {
    margin: 0;
    color: #1f2937;
    font-weight: 700;
    font-size: 1rem;
}

.cp-tech-report-error-note {
    background: #fef2f2;
    padding: 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: #657280;
}

.cp-tech-report-block {
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.03);
}

.cp-tech-report-block-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.cp-tech-report-block-title {
    margin: 0;
    color: #eef2ff;
}

.cp-tech-report-block-body {
    padding: 1.5rem;
}

.cp-tech-report-file {
    margin: 0 0 1rem;
}

.cp-tech-report-code {
    background: #1f2937;
    color: #e5e7eb;
    padding: 1rem;
    border-radius: 4px;
    overflow-x: auto;
    font-size: 0.85rem;
}

.cp-tech-report-code--compact {
    font-size: 0.8rem;
}

.cp-tech-report-flow {
    background: rgba(255, 255, 255, 0.04);
    padding: 1.5rem;
    border-radius: 4px;
    font-family: "Monaco", monospace;
    font-size: 0.9rem;
    line-height: 1.8;
    color: #dbe4ff;
}

.cp-tech-report-flow-accent { color: #38bdf8; }
.cp-tech-report-flow-danger { color: #f87171; }

.cp-tech-report-table-wrap {
    overflow-x: auto;
}

.cp-tech-report-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.cp-tech-report-table thead tr {
    background: #0284c7;
    color: #fff;
}

.cp-tech-report-table--files thead tr {
    background: #1f2937;
}

.cp-tech-report-table th,
.cp-tech-report-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}

.cp-tech-report-table tbody tr:last-child td {
    border-bottom: 0;
}

.cp-tech-report-table-center {
    text-align: center !important;
}

.cp-tech-report-status-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

.cp-tech-report-status-badge--ok {
    background: #d1fae5;
    color: #065f46;
}

.cp-tech-report-status-badge--error {
    background: #fee2e2;
    color: #991b1b;
}

.cp-tech-report-impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.cp-tech-report-donation {
    margin: 4rem 0;
    padding: 3rem 2rem;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cp-tech-report-donation-inner {
    max-width: 900px;
    margin: 0 auto;
}

.cp-tech-report-donation-title {
    margin: 0 0 1.5rem;
    font-size: 1.8rem;
}

.cp-tech-report-donation-copy {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.cp-tech-report-donation-copy p {
    margin: 0 0 1.5rem;
}

.cp-tech-report-donation-note {
    margin-bottom: 2rem !important;
    font-style: italic;
    opacity: 0.95;
}

.cp-tech-report-donation-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cp-tech-report-donation-card-title {
    margin: 0 0 1.5rem;
    font-size: 1.3rem;
}

.cp-tech-report-donation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 8px;
}

.cp-tech-report-donation-label {
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.cp-tech-report-donation-value {
    font-size: 1.1rem;
    font-weight: 700;
}

.cp-tech-report-donation-footer {
    margin: 1.5rem 0 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

.cp-tech-report-muted {
    opacity: 0.8;
    font-size: 0.95rem;
}

.cp-tech-report-cta {
    background: rgba(248, 250, 252, 0.05);
    border: 2px solid rgba(226, 232, 240, 0.18);
    padding: 2rem;
    text-align: center;
}

.cp-tech-report-cta-title {
    margin: 0 0 1rem;
    color: #eef2ff;
}

.cp-tech-report-cta-copy {
    color: #aebbd8;
    margin-bottom: 1.5rem;
}

.cp-tech-report-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cp-tech-report-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.cp-tech-report-btn:hover {
    transform: translateY(-1px);
    opacity: 0.96;
}

.cp-tech-report-btn--cyan {
    background: #06b6d4;
}

.cp-tech-report-btn--violet {
    background: #667eea;
}

.cp-tech-report-page code {
    background: rgba(255, 255, 255, 0.08);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-size: 0.9em;
    color: #e8edff;
}

.cp-tech-report-page pre code {
    background: none;
    padding: 0;
    color: inherit;
}

[data-theme="light"] .cp-tech-report-page {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

[data-theme="light"] .cp-tech-report-heading {
    color: #1e1b4b;
}

[data-theme="light"] .cp-tech-report-panel,
[data-theme="light"] .cp-tech-report-block,
[data-theme="light"] .cp-tech-report-cta {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: rgba(148, 163, 184, 0.24);
}

[data-theme="light"] .cp-tech-report-block-header {
    background: #f3f4f6;
    border-bottom-color: #e5e7eb;
}

[data-theme="light"] .cp-tech-report-block-title,
[data-theme="light"] .cp-tech-report-cta-title {
    color: #1f2937;
}

[data-theme="light"] .cp-tech-report-flow {
    background: #f9fafb;
    color: #334155;
}

[data-theme="light"] .cp-tech-report-table th,
[data-theme="light"] .cp-tech-report-table td {
    border-bottom-color: #e5e7eb;
}

[data-theme="light"] .cp-tech-report-donation-grid {
    background: rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .cp-tech-report-cta {
    background: #f8fafc;
    border-color: #e2e8f0;
}

[data-theme="light"] .cp-tech-report-cta-copy,
[data-theme="light"] .cp-tech-report-muted {
    color: #64748b;
}

@media (max-width: 768px) {
    .cp-tech-report-hero {
        padding: 2rem 1rem;
    }

    .cp-tech-report-title {
        font-size: 1.8rem;
    }

    .cp-tech-report-content {
        padding: 2rem 1rem;
    }

    .cp-tech-report-page code {
        font-size: 0.8em;
    }

    .cp-tech-report-code {
        font-size: 0.75rem;
    }

    .cp-tech-report-table {
        font-size: 0.9rem;
    }

    .cp-tech-report-metrics,
    .cp-tech-report-donation,
    .cp-tech-report-donation-card,
    .cp-tech-report-panel,
    .cp-tech-report-block-body,
    .cp-tech-report-block-header,
    .cp-tech-report-cta {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* ── Panels com rgba(255,255,255,.02-.05) — quase invisíveis em claro ── */
[data-theme="light"] .cp-order-summary,
[data-theme="light"] .cp-success-card,
[data-theme="light"] .cp-success-tips,
[data-theme="light"] .cp-product-long-desc,
[data-theme="light"] .cp-auth-card,
[data-theme="light"] .cp-kpi-card,
[data-theme="light"] .cp-table-wrap {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(110, 120, 230, 0.18);
}
[data-theme="light"] .cp-auth-card h1 {
    color: #2f3a68;
}
[data-theme="light"] .cp-auth-card p {
    color: #6a7d9a;
}
[data-theme="light"] .cp-product-long-desc {
    background: rgba(238, 242, 255, 0.7);
}

[data-theme="light"] .cp-admin-menu__link {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(110, 120, 230, 0.18);
    color: #2f3a68;
}

[data-theme="light"] .cp-admin-menu__link:hover,
[data-theme="light"] .cp-admin-menu__link.is-active {
    background: rgba(106, 80, 240, 0.12);
    border-color: rgba(110, 120, 230, 0.3);
    color: #4f3fc2;
}

/* ── Tabela ── */
[data-theme="light"] .cp-table th,
[data-theme="light"] .cp-table td {
    border-color: rgba(110, 120, 230, 0.14);
}

[data-theme="light"] .cp-pre-analysis-card {
    border-color: rgba(110, 120, 230, 0.18);
    background:
        radial-gradient(circle at 92% 6%, rgba(57, 184, 255, 0.16), transparent 28%),
        radial-gradient(circle at 8% 94%, rgba(106, 80, 240, 0.12), transparent 24%),
        rgba(255, 255, 255, 0.92);
}

[data-theme="light"] .cp-pre-analysis-card__header {
    border-bottom-color: rgba(110, 120, 230, 0.14);
}

[data-theme="light"] .cp-pre-analysis-avatar {
    color: #2a375f;
    border-color: rgba(106, 80, 240, 0.35);
}

[data-theme="light"] .cp-pre-analysis-id {
    color: #6b7da8;
}

[data-theme="light"] .cp-pre-analysis-lead h3,
[data-theme="light"] .cp-pre-analysis-meta p strong {
    color: #212c4e;
}

[data-theme="light"] .cp-pre-analysis-contact-row,
[data-theme="light"] .cp-pre-analysis-meta p {
    color: #5d6e98;
}

[data-theme="light"] .cp-pre-analysis-chip {
    border-color: rgba(57, 184, 255, 0.45);
    background: rgba(57, 184, 255, 0.12);
    color: #2a6698;
}

[data-theme="light"] .cp-pre-analyses-filters {
    border-color: rgba(106, 80, 240, 0.2);
    background: rgba(255, 255, 255, 0.92);
}

[data-theme="light"] .cp-pre-analyses-filters__group label {
    color: #6678a7;
}

[data-theme="light"] .cp-pre-analyses-filters__meta {
    color: #5d6e98;
}

[data-theme="light"] .cp-orders-filters {
    border-color: rgba(106, 80, 240, 0.2);
    background: rgba(255, 255, 255, 0.92);
}

[data-theme="light"] .cp-orders-filters__group label {
    color: #6678a7;
}

[data-theme="light"] .cp-orders-filters__meta {
    color: #5d6e98;
}

[data-theme="light"] .cp-nav-whatsapp {
    border-color: rgba(31, 154, 75, 0.36);
    background: rgba(44, 186, 96, 0.12);
    color: #146739;
}

[data-theme="light"] .cp-nav-whatsapp:hover {
    border-color: rgba(31, 154, 75, 0.52);
    background: rgba(44, 186, 96, 0.18);
    color: #0f5b31;
}

[data-theme="light"] .cp-btn-outline {
    border-color: rgba(53, 108, 192, .34);
    color: #2a5ca2;
    background: rgba(53, 108, 192, .08);
}

[data-theme="light"] .cp-btn-outline:hover {
    border-color: rgba(53, 108, 192, .54);
    background: rgba(53, 108, 192, .14);
    color: #1e467e;
}

[data-theme="light"] .cp-seo-hero {
    border-color: rgba(53, 108, 192, .25);
    background: radial-gradient(circle at 88% 10%, rgba(53, 108, 192, .1), transparent 42%), #f8fbff;
}

[data-theme="light"] .cp-seo-kicker {
    border-color: rgba(53, 108, 192, .3);
    color: #315e9f;
}

[data-theme="light"] .cp-seo-recurring-note {
    color: #1f4b86;
    border-color: rgba(53, 108, 192, .3);
    background: rgba(53, 108, 192, .1);
}

[data-theme="light"] .cp-seo-hero > p,
[data-theme="light"] .cp-seo-section p,
[data-theme="light"] .cp-seo-feature p,
[data-theme="light"] .cp-seo-plan p,
[data-theme="light"] .cp-seo-card p,
[data-theme="light"] .cp-seo-steps p {
    color: #4f5f84;
}

[data-theme="light"] .cp-seo-section,
[data-theme="light"] .cp-seo-card,
[data-theme="light"] .cp-seo-feature,
[data-theme="light"] .cp-seo-plan,
[data-theme="light"] .cp-seo-faq details {
    background: #fff;
    border-color: rgba(0,0,0,.09);
}

[data-theme="light"] .cp-seo-plan--highlight,
[data-theme="light"] .cp-seo-final-cta {
    border-color: rgba(53, 108, 192, .3);
    background: rgba(53, 108, 192, .08);
}

[data-theme="light"] .cp-seo-bullets li {
    color: #22345a;
    border-color: rgba(53, 108, 192, .26);
    background: rgba(53, 108, 192, .1);
}

[data-theme="light"] .cp-seo-bullets li::before {
    border-color: rgba(53, 108, 192, .85);
    box-shadow: inset 0 0 0 4px rgba(53, 108, 192, .2);
}

[data-theme="light"] .cp-seo-proof-note {
    color: #60739f !important;
}

[data-theme="light"] .cp-landing-insights__card {
    border-color: rgba(53, 108, 192, .24);
    background: rgba(255, 255, 255, 0.95);
}

[data-theme="light"] .cp-landing-insights__card h3 {
    color: #2b3b63;
}

[data-theme="light"] .cp-client-accordion-card {
    background: #fff;
    border-color: rgba(0,0,0,.1);
}

[data-theme="light"] .cp-client-accordion-trigger:hover {
    background: rgba(0,0,0,.03);
}

[data-theme="light"] .cp-client-accordion-icon--orders {
    background: rgba(53, 108, 192, .1);
    color: #2a5ca2;
}

[data-theme="light"] .cp-client-accordion-icon--subs {
    background: rgba(16, 140, 80, .1);
    color: #0f7040;
}

[data-theme="light"] .cp-client-accordion-chip--paid {
    background: rgba(16, 140, 80, .1);
    color: #0a6032;
    border-color: rgba(16, 140, 80, .2);
}

[data-theme="light"] .cp-client-accordion-chip--pending {
    background: rgba(180, 120, 0, .1);
    color: #7a5000;
    border-color: rgba(180, 120, 0, .2);
}

[data-theme="light"] .cp-client-accordion-chip--failed {
    background: rgba(200, 40, 40, .08);
    color: #8b1a1a;
    border-color: rgba(200, 40, 40, .18);
}

[data-theme="light"] .cp-client-accordion-chip--active {
    background: rgba(16, 140, 80, .1);
    color: #0a6032;
    border-color: rgba(16, 140, 80, .2);
}

[data-theme="light"] .cp-client-accordion-chip--empty {
    background: rgba(0,0,0,.04);
    color: #667;
    border-color: rgba(0,0,0,.1);
}

[data-theme="light"] .cp-client-accordion-body {
    border-top-color: rgba(0,0,0,.08);
}

[data-theme="light"] .cp-client-order-action {
    border-color: rgba(53, 108, 192, 0.35);
    background: rgba(53, 108, 192, 0.12);
    color: #2a5ca2;
}

[data-theme="light"] .cp-client-order-action:hover {
    border-color: rgba(53, 108, 192, 0.5);
    background: rgba(53, 108, 192, 0.18);
    color: #204b86;
}

[data-theme="light"] .cp-client-cta-card {
    border-color: rgba(106, 80, 240, 0.2);
    background: rgba(255, 255, 255, 0.94);
}

[data-theme="light"] .cp-client-cta-card__kicker {
    color: #6678a7;
}

[data-theme="light"] .cp-client-cta-card h3 {
    color: #23315a;
}

[data-theme="light"] .cp-client-cta-card p {
    color: #576892;
}

[data-theme="light"] .cp-client-cta-card__btn {
    border-color: rgba(106, 80, 240, 0.35);
    background: rgba(106, 80, 240, 0.12);
    color: #4f3bb5;
}

[data-theme="light"] .cp-client-cta-card__btn:hover {
    border-color: rgba(106, 80, 240, 0.5);
    background: rgba(106, 80, 240, 0.2);
    color: #3f2f95;
}

[data-theme="light"] .cp-insight-card {
    border-color: rgba(106, 80, 240, 0.2);
    background: rgba(255, 255, 255, 0.94);
    color: #3a4a73;
}

[data-theme="light"] .cp-insight-card__title {
    color: #6678a7;
}

[data-theme="light"] .cp-insight-card__total,
[data-theme="light"] .cp-insight-metric strong {
    color: #23315a;
}

[data-theme="light"] .cp-insight-metric {
    color: #55658f;
}

[data-theme="light"] .cp-insight-bar {
    background: rgba(110, 120, 230, 0.15);
}

[data-theme="light"] .cp-section-title {
    color: #2f3a68;
}

[data-theme="light"] .cp-pre-analysis-summary {
    border-color: rgba(110, 120, 230, 0.16);
    background: rgba(246, 249, 255, 0.92);
}

[data-theme="light"] .cp-pre-analysis-summary__label {
    color: #6678a7;
}

[data-theme="light"] .cp-pre-analysis-summary__text {
    color: #4f5f89;
}

[data-theme="light"] .cp-pre-answer-card {
    border-color: rgba(110, 120, 230, 0.18);
    background: rgba(248, 250, 255, 0.95);
}

[data-theme="light"] .cp-pre-answer-card__tag {
    color: #6678a7;
}

[data-theme="light"] .cp-pre-answer-card h4 {
    color: #25315a;
}

[data-theme="light"] .cp-pre-answer-card p {
    color: #526289;
}

[data-theme="light"] .cp-pre-analysis-card__actions {
    border-top-color: rgba(110, 120, 230, 0.14);
}

[data-theme="light"] .cp-action-btn--whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #1a8c50;
    border-color: rgba(37, 211, 102, 0.4);
}

[data-theme="light"] .cp-action-btn--email {
    background: rgba(106, 80, 240, 0.08);
    color: #5535c4;
    border-color: rgba(106, 80, 240, 0.3);
}

[data-theme="light"] .cp-action-btn--details {
    background: rgba(57, 184, 255, 0.12);
    color: #2369a0;
    border-color: rgba(57, 184, 255, 0.38);
}

[data-theme="light"] .cp-pre-analysis-modal__backdrop {
    background: rgba(24, 32, 56, 0.4);
}

[data-theme="light"] .cp-pre-analysis-modal__dialog {
    border-color: rgba(106, 80, 240, 0.2);
    background:
        radial-gradient(circle at 88% 12%, rgba(57, 184, 255, 0.12), transparent 36%),
        radial-gradient(circle at 12% 88%, rgba(106, 80, 240, 0.1), transparent 32%),
        rgba(255, 255, 255, 0.96);
}

[data-theme="light"] .cp-pre-analysis-modal__header {
    border-bottom-color: rgba(110, 120, 230, 0.16);
}

[data-theme="light"] .cp-pre-analysis-modal__header h3 {
    color: #1f2b4f;
}

[data-theme="light"] .cp-pre-analysis-modal__close {
    border-color: rgba(106, 80, 240, 0.3);
    background: rgba(106, 80, 240, 0.1);
    color: #5f47d0;
}

[data-theme="light"] .cp-pre-analysis-modal__meta {
    color: #5d6e98;
}

[data-theme="light"] .cp-pre-analysis-modal__actions {
    border-top-color: rgba(110, 120, 230, 0.16);
}

[data-theme="light"] .cp-status--paid {
    background: rgba(34, 170, 90, 0.12);
    color: #1a7a45;
    border-color: rgba(34, 170, 90, 0.3);
}

[data-theme="light"] .cp-subscriptions-create {
    border-color: rgba(106, 80, 240, 0.2);
    background:
        radial-gradient(circle at 88% 12%, rgba(57, 184, 255, 0.12), transparent 36%),
        radial-gradient(circle at 12% 88%, rgba(106, 80, 240, 0.1), transparent 32%),
        rgba(255, 255, 255, 0.92);
}

[data-theme="light"] .cp-subscriptions-create__head h3 {
    color: #1e2547;
}

[data-theme="light"] .cp-subscriptions-create__head p,
[data-theme="light"] .cp-subscriptions-form .cp-form-group label {
    color: #53608f;
}

[data-theme="light"] .cp-subscriptions-check {
    color: #4f5d92;
}

[data-theme="light"] .cp-subscriptions-plan {
    color: #4d3fb0;
    border-color: rgba(106, 80, 240, 0.28);
    background: rgba(106, 80, 240, 0.12);
}

[data-theme="light"] .cp-subscriptions-edit__toggle {
    color: #4a3bb1;
    border-color: rgba(106, 80, 240, 0.3);
    background: rgba(106, 80, 240, 0.09);
}

[data-theme="light"] .cp-subscriptions-edit__toggle:hover {
    border-color: rgba(106, 80, 240, 0.45);
    background: rgba(106, 80, 240, 0.14);
}

[data-theme="light"] .cp-subscriptions-edit__form {
    border-color: rgba(106, 80, 240, 0.2);
    background: rgba(247, 248, 255, 0.95);
}

[data-theme="light"] .cp-subscriptions-empty {
    color: #5f6c99;
}

[data-theme="light"] .cp-summary-divider {
    background: rgba(110, 120, 230, 0.18);
}

/* ── Form inputs (páginas internas) ── */
[data-theme="light"] .cp-form-input {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(110, 120, 230, 0.28);
    color: var(--text);
}
[data-theme="light"] select.cp-form-input {
    background-image:
        linear-gradient(45deg, transparent 50%, #4f5d8f 50%),
        linear-gradient(135deg, #4f5d8f 50%, transparent 50%);
    background-position:
        calc(100% - 18px) calc(50% - 1px),
        calc(100% - 12px) calc(50% - 1px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 34px;
}
[data-theme="light"] .cp-dashboard-wrap select.cp-form-input {
    background-image: none;
}
[data-theme="light"] .cp-form-input option {
    background: #ffffff;
    color: #1a1f36;
}
[data-theme="light"] .cp-form-input option:disabled {
    color: #7f8bb3;
}
[data-theme="light"] .cp-form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(106, 80, 240, 0.14);
}

/* ── Currency chip ── */
[data-theme="light"] .cp-currency-chip {
    color: var(--primary);
    background: rgba(106, 80, 240, 0.1);
    border-color: rgba(106, 80, 240, 0.3);
}

/* ── Success / checkmarks ── */
[data-theme="light"] .cp-success-icon { color: var(--primary); }
[data-theme="light"] .cp-summary-perks .fa-circle-check,
[data-theme="light"] .cp-product-features li .fa-circle-check { color: var(--primary); }

/* ── Texto hardcoded claro dentro de cards ── */
[data-theme="light"] .cp-summary-total strong { color: var(--text); }
[data-theme="light"] .cp-price-value           { color: var(--text); }
[data-theme="light"] .cp-alert--ok {
    background: rgba(106, 80, 240, 0.08);
    border-color: rgba(106, 80, 240, 0.25);
    color: var(--primary);
}

[data-theme="light"] .alert-success {
    background: rgba(18, 148, 96, 0.12);
    border-color: rgba(18, 148, 96, 0.28);
    color: #0f6b49;
}

[data-theme="light"] .alert-danger {
    background: rgba(198, 48, 77, 0.1);
    border-color: rgba(198, 48, 77, 0.25);
    color: #9f1835;
}

/* ═══════════════════════════════════════════════════════════════════
   PÁGINAS DE ERRO (404, 403, 419, 500)
═══════════════════════════════════════════════════════════════════ */

/* ── Variante de erro ── */
.cp-error-card {
    text-align: center;
    align-items: center;
    max-width: 480px;
}

.cp-error-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 4px;
}

.cp-error-icon--warn {
    background: rgba(249, 194, 46, 0.14);
    border: 1.5px solid rgba(249, 194, 46, 0.35);
    color: #f9c22e;
}

.cp-error-icon--info {
    background: rgba(57, 184, 255, 0.14);
    border: 1.5px solid rgba(57, 184, 255, 0.35);
    color: #39b8ff;
}

.cp-error-icon--danger {
    background: rgba(255, 77, 77, 0.14);
    border: 1.5px solid rgba(255, 77, 77, 0.35);
    color: #ff6b6b;
}

.cp-error-code {
    font-family: 'Sora', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, rgba(149, 128, 255, 0.65), rgba(57, 184, 255, 0.4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cp-error-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 6px;
}

/* Botão secundário */
.cp-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(149, 128, 255, 0.08);
    border: 1px solid rgba(149, 128, 255, 0.28);
    color: #b0aaff;
    font-weight: 600;
    font-size: 0.93rem;
    padding: 13px 24px;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    width: 100%;
}
.cp-btn-secondary:hover {
    background: rgba(149, 128, 255, 0.16);
    border-color: rgba(149, 128, 255, 0.5);
    color: #d0cbff;
}

.cp-error-contact {
    font-size: 0.82rem !important;
    color: #6278a0 !important;
    margin-top: 4px;
}
.cp-error-contact a {
    color: var(--primary);
    text-decoration: none;
}
.cp-error-contact a:hover {
    text-decoration: underline;
}

/* ── Responsive ── */
@media screen and (max-width: 540px) {
    .cp-auth-card { padding: 32px 22px; }
    .cp-error-card { padding: 32px 22px; }
}

/* ── Light theme ── */
[data-theme="light"] .cp-btn-primary {
    background: #6a50f0;
    color: #fff;
    box-shadow: 0 4px 24px rgba(106, 80, 240, 0.3);
}
[data-theme="light"] .cp-btn-primary:hover {
    background: #5840d0;
    box-shadow: 0 8px 32px rgba(106, 80, 240, 0.4);
}
[data-theme="light"] .cp-btn-secondary {
    background: rgba(106, 80, 240, 0.06);
    border-color: rgba(106, 80, 240, 0.25);
    color: #5f4bcf;
}
[data-theme="light"] .cp-btn-secondary:hover {
    background: rgba(106, 80, 240, 0.12);
    border-color: rgba(106, 80, 240, 0.5);
    color: #4535a8;
}
[data-theme="light"] .cp-error-contact { color: #8090b8 !important; }
[data-theme="light"] .cp-check-row { color: #4f5d92; }

/* ── Delete / danger action variants ── */
.cp-btn-ghost--danger {
    border-color: rgba(255, 77, 77, 0.45);
    color: #ff8080;
    background: rgba(255, 77, 77, 0.08);
}

.cp-btn-ghost--danger:hover {
    background: rgba(255, 77, 77, 0.16);
    border-color: rgba(255, 77, 77, 0.7);
    color: #ffaaaa;
}

.cp-action-btn--delete {
    background: rgba(255, 77, 77, 0.1);
    color: #ff8080;
    border: 1px solid rgba(255, 77, 77, 0.38);
    cursor: pointer;
}

.cp-action-btn--delete:hover {
    background: rgba(255, 77, 77, 0.18);
}

.cp-subscriptions-edit__toggle--delete {
    border-color: rgba(255, 77, 77, 0.38);
    background: rgba(255, 77, 77, 0.08);
    color: #ff8080;
}

.cp-subscriptions-edit__toggle--delete:hover {
    background: rgba(255, 77, 77, 0.16);
    border-color: rgba(255, 77, 77, 0.6);
}

[data-theme="light"] .cp-btn-ghost--danger {
    border-color: rgba(200, 40, 40, 0.4);
    color: #c42828;
    background: rgba(200, 40, 40, 0.07);
}

[data-theme="light"] .cp-btn-ghost--danger:hover {
    background: rgba(200, 40, 40, 0.14);
    border-color: rgba(200, 40, 40, 0.6);
    color: #a01f1f;
}

[data-theme="light"] .cp-action-btn--delete {
    background: rgba(200, 40, 40, 0.08);
    color: #c42828;
    border-color: rgba(200, 40, 40, 0.35);
}

[data-theme="light"] .cp-subscriptions-edit__toggle--delete {
    border-color: rgba(200, 40, 40, 0.38);
    background: rgba(200, 40, 40, 0.07);
    color: #c42828;
}

[data-theme="light"] .cp-subscriptions-edit__toggle--delete:hover {
    background: rgba(200, 40, 40, 0.14);
    border-color: rgba(200, 40, 40, 0.55);
}
