/* === Nexo Partners — frontend === */

.nexo-pt-form,
.nexo-pt-panel,
.nexo-pt-card,
.nexo-pt-notice {
    max-width: 980px;
    margin: 0 auto;
    font-family: 'DM Sans', system-ui, sans-serif;
    color: #111;
}

.nexo-pt-form {
    background: #fff;
    padding: 40px;
    border: 1px solid #E4DED4;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(17,17,17,.04);
}
.nexo-pt-form h1,
.nexo-pt-form__title,
.nexo-pt-form__section,
.nexo-pt-panel h1 {
    font-family: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-weight: 600;
    letter-spacing: -.015em;
    margin: 0 0 .4em;
}
.nexo-pt-form__title { font-size: 28px; }
.nexo-pt-form__section { font-size: 18px; margin-top: 32px; padding-bottom: 8px; border-bottom: 1px solid #E4DED4; }
.nexo-pt-form__lead { color: #6B6357; margin: 0 0 24px; }
.nexo-pt-form__hint { font-size: 13px; color: #6B6357; margin-top: 16px; }

.nexo-pt-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.nexo-pt-grid--full { grid-column: 1 / -1; }
.nexo-pt-grid label,
.nexo-pt-form > label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #6B6357;
}
.nexo-pt-form input[type=text],
.nexo-pt-form input[type=email],
.nexo-pt-form input[type=url],
.nexo-pt-form input[type=number],
.nexo-pt-form select,
.nexo-pt-form textarea {
    font-family: inherit;
    font-size: 15px;
    color: #111;
    text-transform: none;
    letter-spacing: 0;
    padding: 12px 14px;
    border: 1px solid #E4DED4;
    border-radius: 2px;
    background: #fff;
    transition: border-color .2s;
}
.nexo-pt-form input:focus,
.nexo-pt-form select:focus,
.nexo-pt-form textarea:focus {
    outline: none;
    border-color: #AD5D3A;
}

@media (max-width: 640px) {
    .nexo-pt-grid { grid-template-columns: 1fr; }
    .nexo-pt-form { padding: 24px; }
}

/* botões */
.nexo-pt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: #111;
    color: #F6F3EE;
    font-family: inherit;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #111;
    border-radius: 2px;
    cursor: pointer;
    transition: all .2s;
}
.nexo-pt-btn:hover { background: #AD5D3A; border-color: #AD5D3A; color: #fff; }
.nexo-pt-btn--ghost { background: transparent; color: #111; }
.nexo-pt-btn--ghost:hover { background: #111; color: #F6F3EE; }
.nexo-pt-btn--lg { padding: 18px 36px; font-size: 13px; }
/* mais respiro entre os campos e o botão de envio do cadastro */
.nexo-pt-grid + .nexo-pt-btn { margin-top: 40px; }

.nexo-pt-submit { margin-top: 32px; text-align: right; }

/* itens do pedido */
.nexo-pt-item {
    display: grid;
    grid-template-columns: 1fr 90px 36px;
    gap: 10px;
    margin-bottom: 10px;
    align-items: start;
}
/* seletor, quantidade e × na mesma altura (60px do seletor de produto) */
.nexo-pt-item > input[type=number] {
    height: 60px;
    box-sizing: border-box;
    text-align: center;
}

/* === Picker custom de produtos === */
.nexo-pt-pick {
    position: relative;
}
.nexo-pt-pick__trigger {
    width: 100%;
    min-height: 60px;
    padding: 8px 14px;
    background: #fff;
    border: 1px solid #E4DED4;
    border-radius: 2px;
    font-family: inherit;
    font-size: 14px;
    color: #111;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    transition: border-color .2s;
}
.nexo-pt-pick__trigger:hover { border-color: #AD5D3A; background: #F6EEE2; color: #111; }
.nexo-pt-pick__placeholder { color: #6B6357; font-style: italic; }
.nexo-pt-pick__caret { color: #6B6357; flex-shrink: 0; font-size: 12px; }

/* item escolhido no trigger */
.nexo-pt-pick__chosen {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}
.nexo-pt-pick__chosen-img {
    width: 44px;
    height: 44px;
    background-size: cover;
    background-position: center;
    background-color: #FAF7F1;
    border-radius: 2px;
    flex-shrink: 0;
}
.nexo-pt-pick__chosen-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.nexo-pt-pick__chosen-name {
    font-family: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #111;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.nexo-pt-pick__chosen-price {
    font-size: 12px;
    color: #AD5D3A;
    font-weight: 500;
}

/* painel suspenso */
.nexo-pt-pick__panel {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #E4DED4;
    border-radius: 2px;
    box-shadow: 0 8px 30px rgba(17,17,17,.12);
    z-index: 100;
    max-height: 360px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.nexo-pt-pick__panel[hidden] { display: none !important; }
.nexo-pt-pick__search {
    width: 100% !important;
    padding: 10px 14px !important;
    border: none !important;
    border-bottom: 1px solid #E4DED4 !important;
    border-radius: 0 !important;
    font-size: 14px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}
.nexo-pt-pick__list {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-y: auto;
    flex: 1;
}
.nexo-pt-pick__opt {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    cursor: pointer;
    border-bottom: 1px solid #F4EFE5;
    transition: background .15s;
}
.nexo-pt-pick__opt:last-child { border-bottom: none; }
.nexo-pt-pick__opt:hover { background: #FAF7F1; }
.nexo-pt-pick__opt-img {
    width: 48px;
    height: 48px;
    background-size: cover;
    background-position: center;
    background-color: #FAF7F1;
    border-radius: 2px;
    flex-shrink: 0;
}
.nexo-pt-pick__opt-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.nexo-pt-pick__opt-name {
    font-family: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #111;
}
.nexo-pt-pick__opt-price {
    font-size: 12px;
    color: #AD5D3A;
}
.nexo-pt-item__rm {
    background: transparent;
    border: 1px solid #E4DED4;
    width: 36px; height: 60px;
    box-sizing: border-box;
    cursor: pointer;
    font-size: 18px;
    color: #B04A4A;
    border-radius: 2px;
}
.nexo-pt-item__rm:hover { background: #fdf0f0; }

/* notificações */
.nexo-pt-notice {
    padding: 14px 18px;
    margin-bottom: 20px;
    border-radius: 2px;
    font-size: 14px;
}
.nexo-pt-notice--success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.nexo-pt-notice--error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* cards genéricos */
.nexo-pt-card {
    padding: 32px;
    border: 1px solid #E4DED4;
    background: #fff;
    border-radius: 2px;
}
.nexo-pt-card h2, .nexo-pt-card h3 {
    font-family: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-weight: 500;
    margin: 0 0 12px;
}
.nexo-pt-card--info { background: #FAF7F1; }
.nexo-pt-card--success { border-color: #AD5D3A; background: #FFFCF6; }

/* link box */
.nexo-pt-link-box {
    margin-top: 24px;
    padding: 20px;
    background: #F6F3EE;
    border-radius: 2px;
}
.nexo-pt-link-box label {
    display: block;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #6B6357;
    margin-bottom: 8px;
}
.nexo-pt-link-row {
    display: flex;
    gap: 8px;
    align-items: stretch;
}
.nexo-pt-link-row input {
    flex: 1;
    padding: 12px 14px;
    border: 1px solid #E4DED4;
    background: #fff;
    border-radius: 2px;
    font-family: monospace;
    font-size: 13px;
}
.nexo-pt-link-hint {
    margin-top: 12px;
    font-size: 13px;
}
.nexo-pt-link-hint a { color: #AD5D3A; margin-right: 10px; }

/* painel */
.nexo-pt-panel__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}
.nexo-pt-panel__head h1 { font-size: 36px; margin: 0; }
.nexo-pt-eyebrow {
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #AD5D3A;
    margin: 0 0 6px;
}
.nexo-pt-panel__actions { display: flex; gap: 10px; flex-wrap: wrap; }

.nexo-pt-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}
.nexo-pt-metric {
    padding: 24px;
    background: #fff;
    border: 1px solid #E4DED4;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.nexo-pt-metric span {
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #6B6357;
}
.nexo-pt-metric strong {
    font-family: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-size: 28px;
    font-weight: 500;
}

.nexo-pt-section-title {
    font-family: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-weight: 500;
    font-size: 22px;
    margin: 0 0 16px;
}

.nexo-pt-empty {
    padding: 40px;
    background: #FAF7F1;
    border: 1px dashed #E4DED4;
    border-radius: 2px;
    text-align: center;
    color: #6B6357;
}

/* tabela de pedidos */
.nexo-pt-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #E4DED4;
    border-radius: 2px;
    overflow: hidden;
}
.nexo-pt-table th, .nexo-pt-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #E4DED4;
    font-size: 14px;
    vertical-align: middle;
}
.nexo-pt-table th {
    background: #FAF7F1;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #6B6357;
    font-weight: 500;
}
.nexo-pt-table tr:last-child td { border-bottom: none; }
.nexo-pt-table small { color: #6B6357; }

.nexo-pt-link-copy {
    background: transparent;
    border: 1px solid #AD5D3A;
    color: #AD5D3A;
    padding: 6px 12px;
    border-radius: 2px;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    margin-right: 6px;
}
.nexo-pt-link-copy:hover { background: #AD5D3A; color: #fff; }

/* login form */
.nexo-pt-form--login {
    max-width: 460px;
    padding: 48px 40px;
}
.nexo-pt-checkbox {
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-size: 14px !important;
    color: #111 !important;
    cursor: pointer;
    margin: 8px 0 16px;
}
.nexo-pt-checkbox input { margin: 0; }
.nexo-pt-login-form > * { margin-bottom: 14px; }
.nexo-pt-login-form .nexo-pt-btn { margin-top: 8px; }
.nexo-pt-form__hint a { color: #AD5D3A; font-weight: 500; }

/* status no painel */
.nexo-pt-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 2px;
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.nexo-pt-status--pending,
.nexo-pt-status--on-hold     { background: #fff3cd; color: #7a5d00; }
.nexo-pt-status--processing  { background: #cfe2ff; color: #084298; }
.nexo-pt-status--completed   { background: #d4edda; color: #155724; }
.nexo-pt-status--cancelled,
.nexo-pt-status--failed,
.nexo-pt-status--refunded    { background: #f8d7da; color: #721c24; }

/* ============================================================
   Fase 3 — Área do Parceiro (nav, cards, gráficos, timeline)
   ============================================================ */

.nexo-pt-nav { display:flex; flex-wrap:wrap; gap:4px; margin:18px 0 26px; border-bottom:1px solid #e6e0d8; }
.nexo-pt-nav a { padding:10px 16px; color:#7a6a55; text-decoration:none; font-weight:500; border-bottom:2px solid transparent; }
.nexo-pt-nav a:hover { color:#1d1d1d; }
.nexo-pt-nav a.is-active { color:#AD5D3A; border-bottom-color:#AD5D3A; }
.nexo-pt-nav__out { margin-left:auto; color:#b04b3c !important; }

.nexo-pt-welcome { color:#6b6b6b; margin-top:8px; max-width:680px; line-height:1.5; }

.nexo-pt-bigcards { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:16px; margin:20px 0; }
.nexo-pt-bigcards--4 { grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); }
.nexo-pt-bigcard { background:#fff; border:1px solid #ece5db; border-radius:12px; padding:18px 20px; box-shadow:0 2px 6px rgba(0,0,0,.04); }
.nexo-pt-bigcard span { display:block; font-size:12px; text-transform:uppercase; letter-spacing:.06em; color:#9a8c78; }
.nexo-pt-bigcard strong { display:block; font-size:24px; margin:6px 0 2px; color:#1d1d1d; }
.nexo-pt-bigcard em { font-style:normal; font-size:12px; color:#8a8a8a; }

.nexo-pt-charts { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:18px; }
.nexo-pt-chart { background:#fff; border:1px solid #ece5db; border-radius:12px; padding:16px; }
.nexo-pt-chart h3 { margin:0 0 10px; font-size:13px; color:#7a6a55; }
.nexo-pt-chart canvas { max-height:220px; }

.nexo-pt-filters { display:flex; gap:10px; flex-wrap:wrap; margin:6px 0 18px; }
.nexo-pt-filters input, .nexo-pt-filters select { padding:8px 10px; border:1px solid #d9d0c4; border-radius:8px; }

.nexo-pt-back { color:#7a6a55; text-decoration:none; }
.nexo-pt-back:hover { color:#1d1d1d; }

.nexo-pt-orderhead h1 { margin-bottom:10px; }
.nexo-pt-orderhead dl { display:grid; grid-template-columns:repeat(auto-fit,minmax(160px,1fr)); gap:14px; margin:0; }
.nexo-pt-orderhead dt { font-size:11px; text-transform:uppercase; letter-spacing:.05em; color:#9a8c78; }
.nexo-pt-orderhead dd { margin:2px 0 0; font-weight:600; }

.nexo-pt-timeline { list-style:none; margin:0; padding:0; }
.nexo-pt-timeline li { padding:8px 0; color:#9a8c78; border-bottom:1px dashed #ece5db; }
.nexo-pt-timeline li.done { color:#1d6f42; }
.nexo-pt-timeline li.current { color:#AD5D3A; font-weight:600; }
.nexo-pt-timeline .mark { display:inline-block; width:28px; }

.nexo-pt-exports { display:flex; gap:10px; margin-top:16px; }

.nexo-pt-docs { list-style:none; margin:0 0 18px; padding:0; }
.nexo-pt-docs li { display:flex; align-items:center; gap:12px; padding:12px 14px; background:#fff; border:1px solid #ece5db; border-radius:10px; margin-bottom:8px; }
.nexo-pt-docs__ic { font-size:18px; }
.nexo-pt-docs__name { flex:1; font-weight:500; }

.nexo-pt-support { margin-top:30px; padding:20px; background:#f6f1ea; border-radius:12px; text-align:center; }
.nexo-pt-support h3 { margin:0 0 12px; }

.nexo-pt-status--nexo-producao,
.nexo-pt-status--nexo-acabamento { background:#ece1f5; color:#5b2a86; }
.nexo-pt-status--nexo-faturado   { background:#ffe5cc; color:#8a4b00; }
.nexo-pt-status--nexo-expedicao  { background:#cfe2ff; color:#084298; }

/* notificações */
.nexo-pt-nav__badge { background:#b04b3c; color:#fff; border-radius:10px; padding:1px 7px; font-size:11px; margin-left:4px; }
.nexo-pt-notiflist { list-style:none; margin:0; padding:0; }
.nexo-pt-notiflist li { display:flex; align-items:center; gap:12px; padding:14px 16px; background:#fff; border:1px solid #ece5db; border-radius:10px; margin-bottom:8px; }
.nexo-pt-notiflist li.unread { border-left:3px solid #AD5D3A; background:#fffdf9; }
.nexo-pt-notiflist .ic { font-size:16px; }
.nexo-pt-notiflist time { margin-left:auto; color:#9a8c78; font-size:12px; white-space:nowrap; }

/* ============================================================
   Brand polish — alinhamento fino à identidade Nexo
   (usa os tokens do tema com fallback)
   ============================================================ */
.nexo-pt-panel, .nexo-pt-card, .nexo-pt-form, .nexo-pt-notice {
    --pt-accent:      var(--nexo-terra, #AD5D3A);
    --pt-accent-dark: var(--nexo-terra-dark, #8E4A2D);
    --pt-ink:         var(--nexo-ink, #1E1E1E);
    --pt-bg:          var(--nexo-bg, #FEF8EF);
    --pt-bg-alt:      var(--nexo-bg-alt2, #F5EEE3);
    --pt-line:        var(--nexo-line, #E4DCCF);
    --pt-muted:       var(--nexo-muted-dark, #6B6357);
}

/* Guard / cartões de aviso — primeira impressão */
.nexo-pt-card--info {
    max-width: 540px;
    margin: 48px auto;
    text-align: center;
    padding: 48px 40px;
    background: #fff;
    border: 1px solid var(--pt-line);
    border-top: 3px solid var(--pt-accent);
    box-shadow: var(--nexo-shadow-md, 0 8px 24px rgba(30,30,30,.08));
}
.nexo-pt-card--info h3 {
    font-size: 26px;
    margin-bottom: 10px;
}
.nexo-pt-card--info p { color: var(--pt-muted); line-height: 1.6; }
.nexo-pt-card--info .nexo-pt-btn { margin: 6px 4px; }

/* Cabeçalho do painel — régua editorial sob o título */
.nexo-pt-panel__head {
    border-bottom: 1px solid var(--pt-line);
    padding-bottom: 22px;
}
.nexo-pt-panel__head h1 { letter-spacing: -.01em; line-height: 1.05; }
.nexo-pt-eyebrow { font-weight: 600; }

/* Navegação — pill ativa terracota */
.nexo-pt-nav { gap: 2px; }
.nexo-pt-nav a { border-radius: 2px 2px 0 0; transition: color .2s, border-color .2s, background .2s; }
.nexo-pt-nav a:hover { background: var(--pt-bg-alt); }
.nexo-pt-nav a.is-active { color: var(--pt-accent); border-bottom-color: var(--pt-accent); }
.nexo-pt-nav__badge { background: var(--pt-accent); }

/* Cards do dashboard — editoriais, com acento e leve elevação no hover */
.nexo-pt-bigcard {
    border: 1px solid var(--pt-line);
    border-radius: 2px;
    box-shadow: var(--nexo-shadow-sm, 0 1px 2px rgba(30,30,30,.06));
    position: relative;
    transition: transform .18s ease, box-shadow .18s ease;
}
.nexo-pt-bigcard::before {
    content: ""; position: absolute; left: 0; top: 18px; bottom: 18px; width: 3px;
    background: var(--pt-accent); border-radius: 0 2px 2px 0; opacity: 0;
    transition: opacity .18s ease;
}
.nexo-pt-bigcard:hover { transform: translateY(-2px); box-shadow: var(--nexo-shadow-md, 0 8px 24px rgba(30,30,30,.08)); }
.nexo-pt-bigcard:hover::before { opacity: 1; }
.nexo-pt-bigcard span { color: var(--pt-muted); }

/* Charts e seções */
.nexo-pt-chart { border: 1px solid var(--pt-line); border-radius: 2px; }
.nexo-pt-chart h3 { font-family: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif; color: var(--pt-ink); }
.nexo-pt-section-title { font-family: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif; }

/* Tabelas — cabeçalho areia */
.nexo-pt-table thead th { background: var(--pt-bg-alt); color: var(--pt-muted); }

/* Documentos / suporte */
.nexo-pt-docs li, .nexo-pt-notiflist li { border-radius: 2px; }
.nexo-pt-support { background: var(--pt-bg-alt); border: 1px solid var(--pt-line); border-radius: 2px; }

/* Valores monetários: DM Sans com numerais alinhados/tabulares. */
.nexo-pt-bigcard strong,
.nexo-adm-card strong {
    font-family: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-weight: 600;
    white-space: nowrap !important;
    font-variant-numeric: lining-nums tabular-nums;
    font-feature-settings: "lnum" 1, "tnum" 1;
}
/* "R$" inline e na mesma linha do número (o símbolo vinha como bloco) */
.nexo-pt-bigcard strong .woocommerce-Price-amount,
.nexo-pt-bigcard strong .woocommerce-Price-currencySymbol,
.nexo-adm-card strong .woocommerce-Price-amount,
.nexo-adm-card strong .woocommerce-Price-currencySymbol {
    display: inline !important;
    white-space: nowrap !important;
}
.nexo-pt-bigcard strong .woocommerce-Price-currencySymbol,
.nexo-adm-card strong .woocommerce-Price-currencySymbol { margin-right: 2px; }
/* canvas dos gráficos com respiro */
.nexo-pt-chart canvas { width: 100% !important; }

/* ============================================================
   Brand bar — wordmark no topo (substitui o header do tema)
   ============================================================ */
.nexo-pt-brandbar {
    max-width: 1080px;
    margin: 0 auto;
    padding: 26px 0 22px;
    border-bottom: 1px solid var(--nexo-line, #E4DCCF);
    margin-bottom: 36px;
}
.nexo-pt-brandbar a { display: inline-block; line-height: 0; text-decoration: none; }
.nexo-pt-brandbar__logo { height: 44px; width: auto; display: block; }
@media (max-width: 640px) { .nexo-pt-brandbar__logo { height: 36px; } }

/* seletor de variação (cor) na criação de pedido */
.nexo-pt-var-wrap { margin-top: 12px; }
.nexo-pt-var-wrap[hidden] { display: none !important; }
.nexo-pt-var-label { display: block; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: #6B6357; margin-bottom: 5px; }

.nexo-pt-vpick { position: relative; }
.nexo-pt-vpick__trigger {
    width: 100%; min-height: 48px; padding: 8px 14px; background: #fff;
    border: 1px solid #E4DED4; border-radius: 2px; font-family: inherit; font-size: 14px;
    color: #111; cursor: pointer; text-align: left; display: flex; align-items: center;
    justify-content: space-between; gap: 8px; transition: border-color .2s;
}
.nexo-pt-vpick__trigger:hover { border-color: #AD5D3A; background: #F6EEE2; color: #111; }
.nexo-pt-vpick__chosen { display: flex; align-items: center; gap: 10px; min-width: 0; }
.nexo-pt-vpick__name { font-size: 14px; color: #111; }

/* quadradinho de cor */
.nexo-pt-swatch { width: 18px; height: 18px; border-radius: 4px; border: 1px solid rgba(0,0,0,.15); flex-shrink: 0; display: inline-block; }
.nexo-pt-swatch--none { background: repeating-linear-gradient(45deg,#eee,#eee 4px,#fff 4px,#fff 8px); }

.nexo-pt-vpick__panel {
    position: absolute; top: calc(100% + 4px); left: 0; right: 0; background: #fff;
    border: 1px solid #E4DED4; border-radius: 2px; box-shadow: 0 8px 30px rgba(17,17,17,.12);
    z-index: 100; max-height: 300px; overflow-y: auto;
}
.nexo-pt-vpick__panel[hidden] { display: none !important; }
.nexo-pt-vpick__list { list-style: none; margin: 0; padding: 0; }
.nexo-pt-vpick__opt { display: flex; align-items: center; gap: 10px; padding: 10px 14px; cursor: pointer; border-bottom: 1px solid #F4EFE5; }
.nexo-pt-vpick__opt:last-child { border-bottom: none; }
.nexo-pt-vpick__opt:hover { background: #FAF7F1; }
.nexo-pt-vpick__optname { flex: 1; font-size: 14px; color: #111; }
.nexo-pt-vpick__optprice { font-size: 12px; color: #AD5D3A; }
.nexo-pt-vpick__opt.is-off { opacity: .5; cursor: not-allowed; }

/* ============================================================
   Landing "Arquiteto Parceiro Nexo" — [nexo_partner_landing]
   ============================================================ */
/* mata o scroll horizontal causado pelo 100vw (que conta a barra de rolagem) */
body.nexo-lp-page { overflow-x: clip; }
.nexo-lp {
    /* alinha o conteúdo ao container do site (mesma borda da logo: 1600px + 24px) */
    --lp-edge: max(24px, calc((100vw - 1552px) / 2));
    font-family: 'DM Sans', system-ui, sans-serif; color: #1E1E1E;
    /* full-bleed: escapa do container do tema e ocupa a largura toda */
    width: 100vw; max-width: 100vw;
    margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
}
.nexo-lp * { box-sizing: border-box; }
.nexo-lp-eyebrow { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: #AD5D3A; font-weight: 600; margin: 0 0 10px; }
.nexo-lp-center { text-align: center; }
.nexo-lp-h2 { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: clamp(26px, 3.4vw, 40px); letter-spacing: -.02em; text-align: center; margin: 0 0 36px; }

/* HERO */
.nexo-lp-hero { display: grid; grid-template-columns: 1.05fr 1fr; gap: 0; align-items: stretch; background: #FEF8EF; min-height: 460px; }
.nexo-lp-hero__text { padding: clamp(48px, 6vw, 84px) clamp(40px, 4vw, 60px) clamp(48px, 6vw, 84px) var(--lp-edge); display: flex; flex-direction: column; justify-content: center; }
.nexo-lp-hero__text h1 { font-weight: 600; font-size: clamp(34px, 4.6vw, 56px); line-height: 1.08; letter-spacing: -.025em; margin: 0 0 18px; }
.nexo-lp-hero__text h1 em { font-style: normal; color: #AD5D3A; }
.nexo-lp-lead { font-size: clamp(15px, 1.5vw, 18px); line-height: 1.6; color: #6B6357; max-width: 520px; margin: 0 0 30px; }
.nexo-lp-hero__img { background-size: cover; background-position: center; min-height: 360px; }

.nexo-lp-cta {
    display: inline-flex; align-items: center; justify-content: center; align-self: flex-start;
    padding: 16px 34px; background: #1E1E1E; color: #FEF8EF !important; text-decoration: none;
    font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
    border: 1px solid #1E1E1E; border-radius: 2px; transition: all .2s;
}
.nexo-lp-cta:hover { background: #AD5D3A; border-color: #AD5D3A; color: #fff !important; }

/* SEÇÕES */
.nexo-lp-section { padding: clamp(56px, 7vw, 96px) 24px; max-width: 1600px; margin: 0 auto; }
.nexo-lp-section--alt { background: #F5EEE3; max-width: none; }
.nexo-lp-section--alt > * { max-width: 1552px; margin-left: auto; margin-right: auto; }

/* BENEFÍCIOS */
.nexo-lp-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.nexo-lp-card { background: #fff; border: 1px solid #E4DCCF; border-radius: 4px; padding: 30px 26px; transition: transform .18s, box-shadow .18s; }
.nexo-lp-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(30,30,30,.08); }
.nexo-lp-card__ic { display: block; margin-bottom: 16px; color: #AD5D3A; }
.nexo-lp-card__ic svg { width: 30px; height: 30px; display: block; }
.nexo-lp-card h3 { font-size: 18px; font-weight: 600; margin: 0 0 8px; }
.nexo-lp-card p { font-size: 14px; line-height: 1.6; color: #6B6357; margin: 0; }

/* PASSO A PASSO */
.nexo-lp-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 24px; }
.nexo-lp-step { text-align: center; padding: 10px; }
.nexo-lp-step__num { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; background: #AD5D3A; color: #fff; font-size: 22px; font-weight: 600; margin-bottom: 16px; }
.nexo-lp-step h3 { font-size: 17px; font-weight: 600; margin: 0 0 6px; }
.nexo-lp-step p { font-size: 14px; line-height: 1.55; color: #6B6357; margin: 0; }

/* VITRINE */
.nexo-lp-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.nexo-lp-gallery__img { min-height: 320px; background-size: cover; background-position: center; }

/* FORM */
.nexo-lp-form-sec { padding: clamp(56px, 7vw, 96px) 24px; max-width: 760px; margin: 0 auto; }
.nexo-lp-form-sec__head { text-align: center; margin-bottom: 32px; }
.nexo-lp-formlead { font-size: 16px; color: #6B6357; line-height: 1.6; max-width: 520px; margin: 0 auto; }
.nexo-lp-form-sec .nexo-pt-form { max-width: 100%; }
.nexo-lp-form-sec .nexo-pt-form__title { display: none; } /* já temos o título da seção */

@media (max-width: 820px) {
    .nexo-lp-hero { grid-template-columns: 1fr; }
    .nexo-lp-hero__img { min-height: 260px; order: -1; }
    .nexo-lp-gallery { grid-template-columns: 1fr; }
    .nexo-lp-gallery__img { min-height: 240px; }
}
