/* =============================================================================
   Tema CLEAN — BrasilTeamSpeak (brand.home_style = 'clean')
   Claro: fundo #f4f6fa, cards brancos, menu lateral navy, acento azul + teal.
   Carregado depois do app.css e do Brand::cssVars() (que já traz o azul da marca).
   ============================================================================= */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700&display=swap');

:root {
    --cl-page:  #f4f6fa;
    --cl-card:  #ffffff;
    --cl-line:  #e6eaf2;
    --cl-txt:   #0f172a;
    --cl-muted: #64748b;
    --cl-blue:  #2f80ff;
    --cl-blue-d:#1f6ae6;
    --cl-teal:  #14b8a6;
    --cl-amber: #f59e0b;
    --cl-navy:  #0f1a2e;
    --cl-navy-2:#16233d;
    --font: 'Sora', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --gray-50: var(--cl-page);
    --border: var(--cl-line);
    --radius: 12px; --radius-lg: 16px; --radius-sm: 9px;
    --shadow-sm: 0 1px 2px rgba(15,23,42,.05);
    --shadow: 0 8px 24px rgba(15,23,42,.07);
    --shadow-lg: 0 20px 50px rgba(15,23,42,.12);
}
body { background: var(--cl-page); color: var(--cl-txt); }
h1, h2, h3 { letter-spacing: -.01em; color: var(--cl-txt); }
a { color: var(--cl-blue); } a:hover { color: var(--cl-blue-d); }

/* ---------- botões ---------- */
.btn { border-radius: 10px; font-weight: 600; transition: transform .12s, box-shadow .12s, background .12s; }
.btn-primary { background: var(--cl-blue); border-color: var(--cl-blue); color: #fff; box-shadow: 0 6px 16px rgba(47,128,255,.22); }
.btn-primary:hover { background: var(--cl-blue-d); border-color: var(--cl-blue-d); transform: translateY(-1px); color: #fff; }
.btn-secondary { background: var(--cl-teal); border-color: var(--cl-teal); color: #fff; }
.btn-secondary:hover { filter: brightness(.94); color: #fff; }
.btn-ghost { background: var(--cl-card); border: 1px solid var(--cl-line); color: var(--cl-txt); }
.btn-ghost:hover { border-color: var(--cl-blue); color: var(--cl-blue); background: #f7faff; }

/* ---------- shell do cliente (sidebar navy) ---------- */
.app-shell { grid-template-columns: 252px 1fr; }
.sidebar { background: var(--cl-navy); border-right: 0; }
.sidebar .brand { border-bottom: 1px solid rgba(255,255,255,.08); padding: .35rem 1.25rem 1.1rem; }
.sidebar .brand img { height: 34px; width: auto; display: block; }
.sidebar nav a { color: #a9b6cc; border-left: 0; margin: 2px 10px; padding: .68rem .95rem; border-radius: 10px; font-weight: 500; }
.sidebar nav a svg { opacity: .9; }
.sidebar nav a:hover { background: rgba(255,255,255,.06); color: #fff; }
.sidebar nav a.active { background: rgba(47,128,255,.22); color: #fff; font-weight: 600; box-shadow: inset 3px 0 0 var(--cl-blue); }
.sidebar nav a.active svg { color: #7fb1ff; opacity: 1; }
.sidebar .divider { color: rgba(255,255,255,.35); }
.sidebar .foot { border-top: 1px solid rgba(255,255,255,.08); color: #a9b6cc; }
.sidebar .foot .avatar { background: var(--cl-blue); color: #fff; }
.sidebar .foot .name { color: #fff; }
.sidebar .foot .logout-btn { border-color: rgba(255,255,255,.18); color: #a9b6cc; }
.sidebar .foot .logout-btn:hover { color: #fff; border-color: #fff; }
.main { background: var(--cl-page); }
.main-header h1 { font-size: 1.75rem; }
.main-header .sub { color: var(--cl-muted); }
.neon-rule { display: none; }

/* ---------- cards / kpis / tabelas ---------- */
.kpi, .card { background: var(--cl-card); border: 1px solid var(--cl-line); box-shadow: var(--shadow-sm); }
.card:hover { box-shadow: var(--shadow); }
.table { background: var(--cl-card); border-color: var(--cl-line); }
.table thead th { background: #f8fafc; color: var(--cl-muted); }
.table tbody tr:hover { background: #f7faff; }
.form-control { background: #fff; border-color: #d5dbe6; }
.form-control:focus { border-color: var(--cl-blue); box-shadow: 0 0 0 3px rgba(47,128,255,.15); }
.auth-card { border-radius: 18px; border: 1px solid var(--cl-line); box-shadow: var(--shadow-lg); }
.server-tab.active { color: var(--cl-blue); border-bottom-color: var(--cl-blue); }

/* ---------- shell público ---------- */
.nx-shell { display: grid; grid-template-columns: 252px 1fr; min-height: 100vh; background: var(--cl-page); }
.nx-top { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; height: 68px; padding: 0 1.75rem 0 1.5rem;
    border-bottom: 1px solid var(--cl-line); background: var(--cl-card); position: sticky; top: 0; z-index: 30; }
.nx-top .nx-logo img { height: 36px; width: auto; display: block; }
.nx-top .nx-acts { display: flex; align-items: center; gap: .6rem; }
.nx-top .nx-acts a { display: inline-flex; align-items: center; gap: .5rem; height: 42px; padding: 0 1rem; border-radius: 10px;
    border: 1px solid var(--cl-line); background: var(--cl-card); color: var(--cl-txt); font-size: .9rem; font-weight: 500; text-decoration: none; transition: all .12s; }
.nx-top .nx-acts a:hover { border-color: var(--cl-blue); color: var(--cl-blue); }
.nx-top .nx-acts a.nx-cta { background: var(--cl-blue); border-color: var(--cl-blue); color: #fff; font-weight: 600; box-shadow: 0 6px 16px rgba(47,128,255,.22); }
.nx-top .nx-acts a.nx-cta:hover { background: var(--cl-blue-d); color: #fff; transform: translateY(-1px); }
.nx-top .nx-acts a svg { width: 18px; height: 18px; }
.nx-side { background: var(--cl-navy); padding: 1.1rem .9rem; display: flex; flex-direction: column; gap: 4px; position: sticky; top: 68px; height: calc(100vh - 68px); overflow-y: auto; }
.nx-side a { display: flex; align-items: center; gap: .75rem; padding: .7rem .9rem; border-radius: 10px; color: #a9b6cc; font-size: .93rem; font-weight: 500; text-decoration: none; transition: all .12s; }
.nx-side a svg { width: 20px; height: 20px; flex: none; }
.nx-side a:hover { background: rgba(255,255,255,.06); color: #fff; }
.nx-side a.active { background: rgba(47,128,255,.22); color: #fff; font-weight: 600; box-shadow: inset 3px 0 0 var(--cl-blue); }
.nx-side a.active svg { color: #7fb1ff; }
.nx-main { padding: 2.1rem 2.5rem; min-width: 0; }
.nx-foot { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding: .9rem 2.5rem;
    border-top: 1px solid var(--cl-line); font-size: .8rem; color: var(--cl-muted); background: var(--cl-card); }
.nx-foot a { color: var(--cl-muted); text-decoration: none; margin-left: 1.1rem; }
.nx-foot a:hover { color: var(--cl-blue); }

/* ---------- home (blocos + notícias) ---------- */
.nx-h1 { margin: 0; font-size: 1.9rem; font-weight: 700; letter-spacing: -.01em; }
.nx-sub { margin: .35rem 0 0; color: var(--cl-muted); font-size: .97rem; }
.nx-tiles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.1rem; margin: 1.6rem 0 2rem; }
.nx-tile { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.4rem 1.5rem; border-radius: 16px; color: #fff; text-decoration: none;
    transition: transform .15s, box-shadow .15s, filter .15s; }
.nx-tile:hover { transform: translateY(-3px); filter: brightness(1.04); color: #fff; }
.nx-tile strong { display: block; font-size: 1.25rem; font-weight: 700; line-height: 1.15; }
.nx-tile span { display: block; font-size: .82rem; opacity: .9; margin-top: .25rem; }
.nx-tile i { display: flex; align-items: center; justify-content: center; width: 54px; height: 54px; flex: none; border-radius: 14px; background: rgba(255,255,255,.18); }
.nx-tile i svg { width: 28px; height: 28px; }
.nx-tile.green, .nx-tile.blue { background: var(--cl-blue); box-shadow: 0 10px 24px rgba(47,128,255,.28); }
.nx-tile.teal  { background: var(--cl-teal); box-shadow: 0 10px 24px rgba(20,184,166,.28); }
.nx-tile.amber { background: var(--cl-amber); box-shadow: 0 10px 24px rgba(245,158,11,.28); }
.nx-sec-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: .9rem; }
.nx-sec-head h2 { margin: 0; font-size: 1.4rem; font-weight: 700; }
.nx-sec-head a { font-size: .85rem; color: var(--cl-muted); text-decoration: none; }
.nx-news { display: flex; flex-direction: column; gap: .9rem; }
.nx-news article { display: flex; gap: 1.25rem; padding: 1.25rem 1.4rem; border-radius: 14px; border: 1px solid var(--cl-line); background: var(--cl-card); box-shadow: var(--shadow-sm); transition: box-shadow .15s, transform .15s; }
.nx-news article:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.nx-news .nx-date { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 60px; height: 60px; flex: none; border-radius: 12px;
    background: rgba(47,128,255,.10); color: var(--cl-blue); font-weight: 700; line-height: 1; }
.nx-date b { font-size: 1.4rem; } .nx-date small { font-size: .7rem; letter-spacing: .08em; margin-top: 2px; }
.nx-news h3 { margin: 0 0 .35rem; font-size: 1.08rem; font-weight: 600; }
.nx-news h3 a { color: var(--cl-txt); text-decoration: none; } .nx-news h3 a:hover { color: var(--cl-blue); }
.nx-news p { margin: 0; color: var(--cl-muted); font-size: .9rem; line-height: 1.55; }
.nx-news .nx-more { display: inline-flex; align-items: center; gap: .35rem; margin-top: .45rem; font-size: .85rem; font-weight: 600; color: var(--cl-blue); text-decoration: none; }
.nx-empty { padding: 2rem; border-radius: 14px; border: 1px dashed #cfd6e2; color: var(--cl-muted); text-align: center; background: var(--cl-card); }
.nx-article { max-width: 860px; }
.nx-article .nx-body { line-height: 1.7; font-size: 1rem; }
.nx-article .nx-body img { border-radius: 12px; max-width: 100%; }
.nx-meta { color: var(--cl-muted); font-size: .85rem; margin: .25rem 0 1.25rem; }
.neon-status { margin: 0; padding: .9rem 1rem; border-radius: 12px; border: 1px solid var(--cl-line); background: var(--cl-card); }
.neon-status strong { display: flex; align-items: center; gap: .4rem; color: var(--cl-txt); font-size: .9rem; }
.neon-status strong svg { width: 16px; height: 16px; color: var(--cl-blue); }
.neon-status span { display: block; font-size: .82rem; color: var(--cl-muted); margin-top: .3rem; line-height: 1.5; }

/* ---------- planos ---------- */
.nx-plans { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.1rem; }
.nx-plan { position: relative; padding: 1.4rem; border-radius: 16px; border: 1px solid var(--cl-line); background: var(--cl-card); display: flex; flex-direction: column; gap: .8rem; box-shadow: var(--shadow-sm); transition: transform .15s, box-shadow .15s, border-color .15s; }
.nx-plan:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #c9dbff; }
.nx-plan.destaque { border-color: var(--cl-blue); box-shadow: 0 12px 30px rgba(47,128,255,.16); }
.nx-plan .nx-tag { position: absolute; top: -12px; left: 1.2rem; padding: .25rem .7rem; border-radius: 999px; font-size: .7rem; font-weight: 700; letter-spacing: .06em; background: var(--cl-blue); color: #fff; }
.nx-plan h3 { margin: 0; font-size: 1.05rem; }
.nx-plan .nx-slots { font-size: 2rem; font-weight: 700; line-height: 1; color: var(--cl-blue); }
.nx-plan .nx-slots small { font-size: .9rem; color: var(--cl-muted); font-weight: 500; }
.nx-plan .nx-price { font-size: 1rem; color: var(--cl-muted); } .nx-plan .nx-price strong { font-size: 1.45rem; color: var(--cl-txt); }
.nx-plan ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .4rem; font-size: .85rem; color: var(--cl-muted); }
.nx-plan ul li::before { content: '✓'; color: var(--cl-teal); font-weight: 700; margin-right: .5rem; }
.nx-plan .btn { margin-top: auto; }

/* ---------- responsivo ---------- */
@media (max-width: 960px) {
    .nx-shell { grid-template-columns: 1fr; }
    .nx-side { position: static; height: auto; flex-direction: row; flex-wrap: wrap; gap: .3rem; padding: .6rem; }
    .nx-side a { padding: .5rem .75rem; font-size: .86rem; }
    .nx-main { padding: 1.4rem 1.2rem; }
    .nx-tiles { grid-template-columns: 1fr; }
    .nx-foot { padding: .9rem 1.2rem; }
    .app-shell { grid-template-columns: 1fr; }
}

/* =============================================================================
   v2 — barra superior branca na área do cliente + visão geral em cards
   ============================================================================= */
.cl-top { display: flex; align-items: center; justify-content: space-between; height: 68px; padding: 0 1.5rem;
    background: var(--cl-card); border-bottom: 1px solid var(--cl-line); position: sticky; top: 0; z-index: 40; }
.cl-top .cl-logo img { height: 36px; width: auto; display: block; }
.cl-top .cl-acts { display: flex; align-items: center; gap: .6rem; }
.cl-top .cl-icon { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--cl-line); color: var(--cl-muted); background: var(--cl-card); }
.cl-top .cl-icon svg { width: 20px; height: 20px; }
.cl-top .cl-icon:hover { border-color: var(--cl-blue); color: var(--cl-blue); }
.cl-top .cl-user { display: flex; align-items: center; gap: .6rem; height: 42px; padding: 0 .9rem 0 .4rem; border-radius: 10px; border: 1px solid var(--cl-line); background: var(--cl-card); color: var(--cl-txt); text-decoration: none; font-size: .9rem; font-weight: 500; }
.cl-top .cl-user:hover { border-color: var(--cl-blue); }
.cl-top .cl-user svg { width: 16px; height: 16px; color: var(--cl-muted); }
.cl-top .cl-avatar { display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; background: var(--cl-blue); color: #fff; font-weight: 700; font-size: .85rem; }
.app-shell { min-height: calc(100vh - 68px); }
.sidebar { position: sticky; top: 68px; height: calc(100vh - 68px); overflow-y: auto; }
.sidebar nav { padding-top: .75rem; }
.sidebar .foot { margin-top: auto; }

.cl-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1.4rem; }
.cl-head h1 { margin: 0; font-size: 1.85rem; font-weight: 700; letter-spacing: -.01em; }
.cl-head p { margin: .3rem 0 0; color: var(--cl-muted); }
.cl-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; margin-bottom: 1.6rem; }
.cl-stat { display: flex; align-items: center; gap: .9rem; padding: 1rem 1.1rem; border-radius: 14px; border: 1px solid var(--cl-line); background: var(--cl-card); box-shadow: var(--shadow-sm); text-decoration: none; color: var(--cl-txt); transition: box-shadow .15s, transform .15s; }
a.cl-stat:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.cl-stat-ico { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; flex: none; border-radius: 12px; background: rgba(47,128,255,.10); color: var(--cl-blue); }
.cl-stat-ico.amber { background: rgba(245,158,11,.12); color: #d97706; }
.cl-stat-ico.teal  { background: rgba(20,184,166,.12); color: #0f9488; }
.cl-stat-ico svg { width: 22px; height: 22px; }
.cl-stat b { display: block; font-size: 1.6rem; line-height: 1; font-weight: 700; }
.cl-stat small { display: block; color: var(--cl-muted); font-size: .8rem; margin-top: .3rem; }
.cl-grid { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); gap: 1.4rem; align-items: start; }
.cl-srvs { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1rem; }  /* v4: 1 servidor = largura toda, 2+ = colunas */
.cl-srv { display: flex; flex-direction: column; gap: .8rem; padding: 1.15rem 1.25rem; border-radius: 14px; border: 1px solid var(--cl-line); background: var(--cl-card); box-shadow: var(--shadow-sm); }
.cl-srv-top { display: flex; align-items: flex-start; justify-content: space-between; gap: .75rem; }
.cl-srv-t { min-width: 0; }
.cl-srv-t strong { display: block; font-size: 1.05rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cl-srv-t small { display: block; color: var(--cl-muted); font-size: .78rem; margin-top: .15rem; }
.cl-pill { display: inline-flex; align-items: center; gap: .4rem; padding: .3rem .65rem; border-radius: 999px; font-size: .74rem; font-weight: 600; white-space: nowrap; }
.cl-pill i { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.cl-pill.ok { color: #15803d; background: #ecfdf3; border: 1px solid #bbf7d0; }
.cl-pill.warn { color: #b45309; background: #fffbeb; border: 1px solid #fde68a; }
.cl-pill.muted { color: var(--cl-muted); background: #f1f5f9; border: 1px solid var(--cl-line); }
.cl-addr { display: flex; align-items: center; gap: .6rem; padding: .55rem .5rem .55rem .8rem; border-radius: 10px; background: var(--cl-page); border: 1px solid var(--cl-line); font-family: ui-monospace, Menlo, Consolas, monospace; font-size: .86rem; }
.cl-addr span { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cl-addr.muted { font-family: inherit; color: var(--cl-muted); font-size: .82rem; }
.cl-copy { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; flex: none; border-radius: 8px; border: 1px solid var(--cl-line); background: var(--cl-card); color: var(--cl-muted); cursor: pointer; }
.cl-copy svg { width: 16px; height: 16px; } .cl-copy:hover { color: var(--cl-blue); border-color: var(--cl-blue); }
.cl-copy.ok { color: #15803d; border-color: #86efac; background: #ecfdf3; }
.cl-srv-acts { display: flex; gap: .6rem; }
.cl-srv-acts .btn-primary { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: .4rem; }
.cl-srv-acts .btn svg { width: 15px; height: 15px; }
.cl-card { padding: 1rem 1.1rem; border-radius: 14px; border: 1px solid var(--cl-line); background: var(--cl-card); box-shadow: var(--shadow-sm); }
.cl-muted { margin: 0; color: var(--cl-muted); font-size: .9rem; }
.cl-inv { width: 100%; border-collapse: collapse; font-size: .86rem; }
.cl-inv th { text-align: left; padding: .35rem .4rem .6rem; font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--cl-muted); }
.cl-inv td { padding: .65rem .4rem; border-top: 1px solid var(--cl-line); vertical-align: middle; }
.cl-inv tbody tr { cursor: pointer; } .cl-inv tbody tr:hover td { background: #f7faff; }
.cl-inv code { background: transparent; padding: 0; color: var(--cl-txt); font-size: .82rem; }
.cl-tickets { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.cl-tickets li + li { border-top: 1px solid var(--cl-line); }
.cl-tickets a { display: flex; flex-direction: column; gap: .15rem; padding: .6rem .2rem; text-decoration: none; color: var(--cl-txt); font-size: .9rem; }
.cl-tickets a:hover span { color: var(--cl-blue); }
.cl-tickets small { color: var(--cl-muted); font-size: .76rem; }
.btn-block { width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: .45rem; }
.btn-block svg { width: 16px; height: 16px; }
@media (max-width: 1100px) { .cl-grid { grid-template-columns: 1fr; } .cl-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .cl-srvs { grid-template-columns: 1fr; } .cl-stats { grid-template-columns: 1fr; } .cl-top .cl-name { display: none; } }

/* v3 */
.cl-col { padding: 0; min-width: 0; }
.cl-top .cl-user svg { flex: none; }

/* =============================================================================
   v6 — Loja no estilo da página de planos da Soul (faixa + cards centralizados)
   ============================================================================= */
.pl-hero { padding: 1.5rem 2rem; margin: 0 0 1.5rem; max-width: none; border-radius: 16px; text-align: left; color: #fff;
    background: linear-gradient(135deg, #1f6ae6 0%, #2f80ff 55%, #3b9cff 100%); box-shadow: 0 10px 28px rgba(47,128,255,.20);
    display: grid; grid-template-columns: 1fr auto; align-items: center; column-gap: 2rem; }
.pl-hero .pl-badge { grid-column: 2; grid-row: 1 / span 2; justify-self: end; }
.pl-hero .pl-badge { display: inline-block; padding: .4rem .95rem; border-radius: 999px; background: rgba(255,255,255,.18); font-size: .85rem; font-weight: 600; }
.pl-hero h1 { grid-column: 1; margin: 0 0 .3rem; font-size: 1.6rem; font-weight: 700; color: #fff; letter-spacing: -.01em; }
.pl-hero p { grid-column: 1; margin: 0; max-width: 720px; font-size: .95rem; opacity: .92; line-height: 1.5; }
.pl-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.25rem; max-width: none; margin: 0; }
.pl-card { display: flex; flex-direction: column; padding: 1.5rem 1.4rem 1.4rem; border-radius: 14px; border: 2px solid var(--cl-line); background: var(--cl-card); text-align: center; transition: transform .18s, border-color .18s, box-shadow .18s; }
.pl-card:hover { transform: translateY(-4px); border-color: var(--cl-blue); box-shadow: 0 12px 30px rgba(47,128,255,.14); }
.pl-card.featured { border-color: var(--cl-blue); background: linear-gradient(180deg, #f3f8ff 0%, #fff 100%); box-shadow: 0 6px 24px rgba(47,128,255,.12); }
.pl-kind { display: block; padding: .3rem .6rem; border-radius: 6px; background: var(--cl-navy); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .06em; margin-bottom: .9rem; }
.pl-kind.ts6 { background: var(--cl-blue); }
.pl-card h3 { margin: 0 0 .4rem; font-size: 1.12rem; line-height: 1.3; color: var(--cl-txt); min-height: 2.6em; display: flex; align-items: center; justify-content: center; }
.pl-slots { font-size: 2.3rem; font-weight: 700; line-height: 1; color: var(--cl-blue); margin: .5rem 0 .3rem; }
.pl-slots small { font-size: .85rem; font-weight: 500; color: var(--cl-muted); }
.pl-price { margin: 0 0 .9rem; font-size: 1.05rem; font-weight: 600; color: var(--cl-txt); }
.pl-price small { font-size: .85rem; font-weight: 400; color: var(--cl-muted); }
.pl-card ul { list-style: none; margin: .25rem 0 1.25rem; padding: .9rem 0 0; border-top: 1px solid var(--cl-line); text-align: left; flex: 1; }
.pl-card li { padding: .38rem 0; font-size: .88rem; color: #334155; display: flex; gap: .55rem; align-items: flex-start; }
.pl-card li::before { content: '✓'; color: #16a34a; font-weight: 700; flex: none; }
.pl-card .btn-block { margin-top: auto; height: 46px; }
@media (max-width: 960px) { .pl-hero { grid-template-columns: 1fr; padding: 1.25rem 1.1rem; } .pl-hero .pl-badge { grid-column: 1; grid-row: auto; justify-self: start; margin-bottom: .6rem; } .pl-hero h1 { font-size: 1.35rem; } }

/* =============================================================================
   v9 — Confirmar contratação em duas colunas (formulário + resumo do pedido fixo)
   ============================================================================= */
.ck { max-width: 1240px; }
.ck-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.ck-head h1 { margin: 0; font-size: 1.7rem; font-weight: 700; letter-spacing: -.01em; }
.ck-head p { margin: .3rem 0 0; color: var(--cl-muted); }
.ck-steps { list-style: none; margin: 0; padding: 0; display: flex; gap: .4rem; }
.ck-steps li { display: flex; align-items: center; gap: .45rem; padding: .45rem .7rem; border-radius: 999px; border: 1px solid var(--cl-line); background: var(--cl-card); font-size: .8rem; color: var(--cl-muted); }
.ck-steps li span { display: inline-flex; align-items: center; justify-content: center; width: 1.35rem; height: 1.35rem; border-radius: 50%; background: #e2e8f0; color: #334155; font-size: .72rem; font-weight: 700; }
.ck-steps li.on { color: var(--cl-blue); border-color: var(--cl-blue); font-weight: 600; } .ck-steps li.on span { background: var(--cl-blue); color: #fff; }
.ck-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 1.5rem; align-items: start; }
.ck-main { min-width: 0; }
.ck-card { padding: 1.5rem 1.6rem; border-radius: 16px; border: 1px solid var(--cl-line); background: var(--cl-card); box-shadow: var(--shadow-sm); }
.ck-kind { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--cl-teal); margin-bottom: .45rem; }
.ck-kind.ts6 { color: var(--cl-blue); }
.ck-card h2 { margin: 0 0 .4rem; font-size: 1.35rem; line-height: 1.3; }
.ck-desc { margin: 0 0 1rem; color: var(--cl-muted); font-size: .92rem; }
.ck-specs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .75rem; margin: 1.1rem 0; }
.ck-specs div { padding: .8rem .9rem; border-radius: 12px; background: var(--cl-page); border: 1px solid var(--cl-line); }
.ck-specs b { display: block; font-size: 1.15rem; font-weight: 700; } .ck-specs small { color: var(--cl-muted); font-size: .76rem; }
.ck-feat { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .45rem 1.25rem; }
.ck-feat li { display: flex; gap: .5rem; align-items: flex-start; font-size: .88rem; color: #334155; }
.ck-feat li::before { content: '✓'; color: #16a34a; font-weight: 700; flex: none; }
.ck-sec { margin: 1.5rem 0 .8rem; font-size: 1.15rem; font-weight: 700; }
.ck-cycles { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: .8rem; }
.ck-cycle { position: relative; display: flex; align-items: flex-start; gap: .65rem; padding: 1rem 1rem .9rem; border-radius: 14px; border: 2px solid var(--cl-line); background: var(--cl-card); cursor: pointer; transition: border-color .12s, box-shadow .12s, background .12s; }
.ck-cycle:hover { border-color: #b9d2ff; }
.ck-cycle:has(input:checked) { border-color: var(--cl-blue); background: #f3f8ff; box-shadow: 0 6px 18px rgba(47,128,255,.14); }
.ck-cycle input { accent-color: var(--cl-blue); width: 18px; height: 18px; margin-top: .15rem; flex: none; }
.ck-cycle-t { display: flex; flex-direction: column; gap: .15rem; min-width: 0; }
.ck-cycle-t strong { font-size: .95rem; } .ck-cycle-t b { font-size: 1.15rem; font-weight: 700; } .ck-cycle-t small { color: var(--cl-muted); font-size: .76rem; }
.ck-eco { position: absolute; top: .7rem; right: .7rem; padding: .18rem .55rem; border-radius: 999px; background: #fce7f3; color: #be185d; font-size: .7rem; font-weight: 700; }
.ck-hint, .ck-card .form-hint { color: var(--cl-muted); font-size: .8rem; margin: .5rem 0 0; }
.ck-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.ck-card .form-group { margin: 0 0 1rem; } .ck-card .form-group > label, .ck-lbl { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .4rem; }
.ck-card .form-control { height: 46px; } .ck-req { color: #dc2626; }
.ck-fmt { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; }
.ck-opt { display: flex; gap: .6rem; align-items: flex-start; padding: .85rem .9rem; border-radius: 12px; border: 2px solid var(--cl-line); cursor: pointer; transition: border-color .12s, background .12s; }
.ck-opt:hover { border-color: #b9d2ff; } .ck-opt:has(input:checked) { border-color: var(--cl-blue); background: #f3f8ff; }
.ck-opt input { accent-color: var(--cl-blue); width: 18px; height: 18px; margin-top: .1rem; flex: none; }
.ck-opt span { display: flex; flex-direction: column; gap: .15rem; } .ck-opt strong { font-size: .92rem; } .ck-opt small { color: var(--cl-muted); font-size: .78rem; }
.ck-opt code { background: #eef2f7; padding: 0 .3rem; border-radius: 4px; font-size: .78rem; }
.ck-side { position: sticky; top: 88px; }
.ck-sum { padding: 1.5rem 1.5rem 1.4rem; border-radius: 18px; color: #fff; background: linear-gradient(160deg, #1d5fd6 0%, #0b3fa8 100%); box-shadow: 0 18px 44px rgba(11,63,168,.32); }
.ck-sum h3 { margin: 0 0 1rem; font-size: 1.2rem; font-weight: 600; color: #fff; }
.ck-sum-prod { display: flex; justify-content: space-between; gap: 1rem; align-items: flex-start; padding-bottom: .9rem; border-bottom: 1px solid rgba(255,255,255,.18); }
.ck-sum-prod strong { display: block; font-size: .95rem; line-height: 1.3; } .ck-sum-prod small { color: rgba(255,255,255,.75); font-size: .78rem; }
.ck-sum-prod > span { white-space: nowrap; font-weight: 700; } .ck-sum-prod > span small { font-weight: 400; color: rgba(255,255,255,.75); }
.ck-sum-box { margin: .9rem 0; padding: .9rem 1rem; border-radius: 12px; background: rgba(0,0,0,.22); display: flex; flex-direction: column; gap: .45rem; font-size: .86rem; }
.ck-sum-box div { display: flex; justify-content: space-between; gap: 1rem; } .ck-sum-box span { color: rgba(255,255,255,.75); } .ck-sum-box b { font-weight: 600; }
.ck-sum-total { padding-top: .6rem; border-top: 1px solid rgba(255,255,255,.18); }
.ck-sum-total small { display: block; font-size: .76rem; color: rgba(255,255,255,.75); letter-spacing: .02em; }
.ck-sum-total b { display: block; font-size: 2.2rem; font-weight: 700; line-height: 1.1; margin: .15rem 0 1rem; }
.ck-btn { display: flex; align-items: center; justify-content: center; gap: .5rem; width: 100%; height: 52px; border: 0; border-radius: 12px; background: #fff; color: #0b3fa8; font: inherit; font-weight: 700; font-size: 1rem; cursor: pointer; transition: transform .12s, box-shadow .12s; }
.ck-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,0,0,.18); } .ck-btn svg { width: 18px; height: 18px; }
.ck-sum-note { margin: .8rem 0 0; font-size: .76rem; line-height: 1.45; color: rgba(255,255,255,.75); } .ck-sum-note a { color: #fff; text-decoration: underline; }
.nx-main .checkout-wrap-solo { padding: 0; background: transparent; min-height: 0; }
@media (max-width: 1100px) { .ck-grid { grid-template-columns: 1fr; } .ck-side { position: static; } }
@media (max-width: 640px) { .ck-row, .ck-fmt, .ck-feat, .ck-specs { grid-template-columns: 1fr; } .ck-card { padding: 1.1rem 1rem; } }
.pl-badge { display: inline-flex; align-items: center; gap: .45rem; } .pl-flag { flex: none; border-radius: 2px; box-shadow: 0 0 0 1px rgba(255,255,255,.35); }
