:root {
  --ptp-bg: #f7f8fc;
  --ptp-card: #ffffff;
  --ptp-text: #151515;
  --ptp-muted: #686868;
  --ptp-border: #e5e5e5;
  --ptp-primary: #fe8b00;
  --ptp-primary-soft: #fff4e8;
  --ptp-dark: #050505;
  --ptp-success: #168554;
  --ptp-warning: #a86700;
  --ptp-danger: #b42318;
  --ptp-radius: 22px;
}

.ptp-shell,
.ptp-shell * {
  box-sizing: border-box;
}

.ptp-shell {
  width: min(1180px, calc(100% - 28px));
  margin: 28px auto;
  color: var(--ptp-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
}

.ptp-shell button,
.ptp-shell input,
.ptp-shell select {
  font: inherit;
}

.ptp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  gap: 24px;
  padding: 38px;
  border-radius: 28px;
  background: linear-gradient(135deg, #050505 0%, #121212 72%, #1d1d1d 100%);
  color: #fff;
  box-shadow: 0 18px 48px rgba(18, 31, 57, .18);
}

.ptp-eyebrow {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .72;
}

.ptp-hero h1 {
  max-width: 760px;
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -.035em;
  color: #fff;
}

.ptp-hero p {
  max-width: 740px;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 17px;
}

.ptp-hero-rule {
  align-self: stretch;
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background: rgba(255,255,255,.08);
}

.ptp-hero-rule > span {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: rgba(255,255,255,.12);
}

.ptp-hero-rule svg,
.ptp-time-note svg,
.ptp-choice-icon svg,
.ptp-pin-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ptp-hero-rule strong,
.ptp-hero-rule small {
  display: block;
}

.ptp-hero-rule small {
  margin-top: 5px;
  color: rgba(255,255,255,.68);
}

.ptp-control-card,
.ptp-results {
  margin-top: 22px;
  padding: 30px;
  border: 1px solid var(--ptp-border);
  border-radius: var(--ptp-radius);
  background: var(--ptp-card);
  box-shadow: 0 12px 34px rgba(20, 31, 55, .06);
}

.ptp-control-head,
.ptp-result-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.ptp-control-head > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ptp-control-head h2,
.ptp-result-head h2,
.ptp-result-section h3 {
  margin: 0;
  color: var(--ptp-text);
}

.ptp-step {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--ptp-primary);
  color: #fff;
  font-weight: 800;
}

.ptp-mode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ptp-mode-card,
.ptp-choice,
.ptp-brand,
.ptp-platform,
.ptp-scope,
.ptp-model-card,
.ptp-store-card {
  appearance: none;
  border: 1px solid var(--ptp-border);
  background: #fff;
  color: var(--ptp-text);
  cursor: pointer;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.ptp-mode-card:hover,
.ptp-choice:hover,
.ptp-brand:hover,
.ptp-platform:hover,
.ptp-scope:hover,
.ptp-model-card:hover,
.ptp-store-card:hover {
  transform: translateY(-1px);
  border-color: #f2b35f;
}

.ptp-mode-card.is-active,
.ptp-choice.is-active,
.ptp-brand.is-active,
.ptp-platform.is-active,
.ptp-scope.is-active,
.ptp-model-card.is-active,
.ptp-store-card.is-active {
  border-color: var(--ptp-primary);
  background: var(--ptp-primary-soft);
  box-shadow: 0 0 0 1px var(--ptp-primary) inset;
}

.ptp-mode-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  text-align: left;
}

.ptp-mode-card > svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.ptp-mode-card strong,
.ptp-mode-card small,
.ptp-choice strong,
.ptp-choice small,
.ptp-platform strong,
.ptp-platform small,
.ptp-scope strong,
.ptp-scope small {
  display: block;
}

.ptp-mode-card small,
.ptp-choice small,
.ptp-platform small,
.ptp-scope small {
  margin-top: 3px;
  color: var(--ptp-muted);
}

.ptp-period-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 14px;
  margin-top: 20px;
}

.ptp-period-grid label > span,
.ptp-amount > span,
.ptp-login-form label {
  display: block;
  margin-bottom: 7px;
  color: var(--ptp-muted);
  font-size: 13px;
  font-weight: 700;
}

.ptp-period-grid input,
.ptp-period-grid select,
.ptp-inline-add input,
.ptp-login-form input,
.ptp-amount input {
  width: 100%;
  min-height: 48px;
  padding: 10px 13px;
  border: 1px solid var(--ptp-border);
  border-radius: 12px;
  outline: none;
  background: #fff;
  color: var(--ptp-text);
}

.ptp-period-grid input:focus,
.ptp-period-grid select:focus,
.ptp-inline-add input:focus,
.ptp-login-form input:focus,
.ptp-amount input:focus {
  border-color: var(--ptp-primary);
  box-shadow: 0 0 0 3px rgba(31,79,209,.1);
}

.ptp-time-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 13px;
  background: #f3f6fb;
  color: #43506a;
  font-size: 13px;
}

.ptp-time-note svg {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.ptp-time-note.is-warning {
  background: #fff6e8;
  color: #84530b;
}

.ptp-section-intro {
  margin: -8px 0 22px;
  color: var(--ptp-muted);
}

.ptp-campaign-card {
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid var(--ptp-border);
  border-radius: 20px;
  background: #fbfcff;
}

.ptp-campaign-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--ptp-border);
  background: #fff;
}

.ptp-campaign-head > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ptp-campaign-number {
  color: var(--ptp-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ptp-remove,
.ptp-link-button {
  border: 0;
  background: transparent;
  color: var(--ptp-danger);
  cursor: pointer;
  font-weight: 800;
}

.ptp-question {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 22px 20px 12px;
}

.ptp-question > span {
  display: grid;
  place-items: center;
  flex: 0 0 27px;
  width: 27px;
  height: 27px;
  border-radius: 9px;
  background: #fff4e8;
  color: var(--ptp-primary);
  font-size: 12px;
  font-weight: 900;
}

.ptp-question strong,
.ptp-question small {
  display: block;
}

.ptp-question small {
  margin-top: 2px;
  color: var(--ptp-muted);
}

.ptp-brand-grid,
.ptp-choice-grid,
.ptp-platform-grid,
.ptp-scope-grid,
.ptp-model-grid,
.ptp-store-grid {
  display: grid;
  gap: 10px;
  padding: 0 20px;
}

.ptp-brand-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ptp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 10px 12px;
  border-radius: 14px;
}

.ptp-brand-mark,
.ptp-platform-mark {
  display: grid;
  place-items: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: #f5f5f5;
  color: #151515;
  font-size: 12px;
  font-weight: 900;
}

.is-active .ptp-brand-mark,
.is-active .ptp-platform-mark {
  background: var(--ptp-primary);
  color: #fff;
}

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

.ptp-choice {
  display: flex;
  gap: 11px;
  align-items: center;
  padding: 14px;
  border-radius: 15px;
  text-align: left;
}

.ptp-choice-icon {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #f0f3f8;
}

.ptp-choice-icon svg {
  width: 21px;
  height: 21px;
}

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

.ptp-platform {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px;
  border-radius: 15px;
  text-align: left;
}

.ptp-benchmark {
  margin: 10px 20px 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: #f3f7ff;
  color: #3a4d78;
  font-size: 12px;
}

.ptp-benchmark span {
  color: var(--ptp-muted);
}

.ptp-benchmark.is-missing {
  background: #fff0ef;
  color: #8f2f27;
}

.ptp-scope-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ptp-scope {
  padding: 13px;
  border-radius: 15px;
  text-align: left;
}

.ptp-subsection {
  margin: 16px 20px 0;
  padding: 16px;
  border: 1px dashed #cad3e4;
  border-radius: 16px;
  background: #fff;
}

.ptp-subhead strong,
.ptp-subhead small {
  display: block;
}

.ptp-subhead small {
  margin-top: 2px;
  color: var(--ptp-muted);
  font-size: 12px;
}

.ptp-model-grid,
.ptp-store-grid {
  padding: 12px 0 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ptp-model-card,
.ptp-store-card {
  position: relative;
  min-height: 100px;
  padding: 12px;
  border-radius: 14px;
  text-align: left;
}

.ptp-model-card strong,
.ptp-store-card strong {
  display: block;
  margin-top: 5px;
}

.ptp-vehicle-visual {
  display: block;
  width: 100%;
  height: 48px;
  color: #34445f;
}

.ptp-car-svg {
  width: 96px;
  max-width: 100%;
  height: 44px;
  fill: currentColor;
}

.ptp-store-card {
  min-height: 78px;
}

.ptp-pin-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #eef2f8;
  color: #465879;
}

.ptp-pin-icon svg {
  width: 18px;
  height: 18px;
}

.ptp-selected-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--ptp-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.ptp-inline-add {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.ptp-inline-add input {
  min-height: 42px;
}

.ptp-inline-add .ptp-link-button {
  color: var(--ptp-primary);
  white-space: nowrap;
}

.ptp-amount {
  display: block;
  margin: 0 20px 24px;
  max-width: 360px;
}

.ptp-amount > div {
  display: flex;
  align-items: center;
  min-height: 52px;
  overflow: hidden;
  border: 1px solid var(--ptp-border);
  border-radius: 13px;
  background: #fff;
}

.ptp-amount > div:focus-within {
  border-color: var(--ptp-primary);
  box-shadow: 0 0 0 3px rgba(31,79,209,.1);
}

.ptp-amount input {
  border: 0;
  box-shadow: none !important;
}

.ptp-amount em {
  padding: 0 13px;
  color: var(--ptp-muted);
  font-style: normal;
  font-weight: 800;
}

.ptp-primary,
.ptp-secondary {
  appearance: none;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 800;
}

.ptp-primary {
  border: 1px solid var(--ptp-primary);
  background: var(--ptp-primary);
  color: #fff;
}

.ptp-primary:hover {
  filter: brightness(.96);
}

.ptp-secondary {
  border: 1px solid var(--ptp-border);
  background: #fff;
  color: var(--ptp-text);
}

.ptp-big {
  min-height: 52px;
  padding-inline: 24px;
}

.ptp-action-bar {
  position: sticky;
  bottom: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding: 15px 18px;
  border: 1px solid #ced6e5;
  border-radius: 18px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 16px 42px rgba(20,31,55,.14);
  backdrop-filter: blur(12px);
}

.ptp-action-bar strong,
.ptp-action-bar span {
  display: block;
}

.ptp-action-bar span {
  margin-top: 2px;
  color: var(--ptp-muted);
  font-size: 12px;
}

.ptp-results {
  scroll-margin-top: 20px;
}

.ptp-result-head .ptp-eyebrow {
  color: var(--ptp-primary);
  opacity: 1;
}

.ptp-risk {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.ptp-risk-low {
  background: #e8f7ef;
  color: var(--ptp-success);
}

.ptp-risk-medium {
  background: #fff4df;
  color: var(--ptp-warning);
}

.ptp-risk-high {
  background: #ffebe9;
  color: var(--ptp-danger);
}

.ptp-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
}

.ptp-summary-card {
  padding: 17px;
  border: 1px solid var(--ptp-border);
  border-radius: 16px;
  background: #fbfcff;
}

.ptp-summary-card small,
.ptp-summary-card strong,
.ptp-summary-card span {
  display: block;
}

.ptp-summary-card small,
.ptp-summary-card span {
  color: var(--ptp-muted);
}

.ptp-summary-card strong {
  margin: 4px 0;
  font-size: 22px;
  letter-spacing: -.02em;
}

.ptp-result-section {
  margin-top: 28px;
}

.ptp-result-section h3 {
  margin-bottom: 12px;
}

.ptp-decision-list {
  overflow: hidden;
  border: 1px solid var(--ptp-border);
  border-radius: 16px;
}

.ptp-decision-row {
  display: grid;
  grid-template-columns: 130px minmax(0,1.4fr) minmax(120px,.55fr) minmax(170px,.8fr);
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid var(--ptp-border);
}

.ptp-decision-row:last-child {
  border-bottom: 0;
}

.ptp-decision-visual {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ptp-decision-visual .ptp-car-svg {
  width: 72px;
  height: 34px;
}

.ptp-decision-copy small,
.ptp-decision-copy strong,
.ptp-decision-copy span,
.ptp-decision-money small,
.ptp-decision-money strong,
.ptp-decision-projection strong,
.ptp-decision-projection span {
  display: block;
}

.ptp-decision-copy small,
.ptp-decision-copy span,
.ptp-decision-money small,
.ptp-decision-projection span {
  color: var(--ptp-muted);
  font-size: 12px;
}

.ptp-decision-copy strong,
.ptp-decision-money strong,
.ptp-decision-projection strong {
  margin: 3px 0;
}

.ptp-warning-list {
  display: grid;
  gap: 10px;
}

.ptp-warning {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
}

.ptp-warning > span {
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  font-weight: 900;
}

.ptp-warning strong,
.ptp-warning p {
  margin: 0;
}

.ptp-warning p {
  margin-top: 3px;
  font-size: 13px;
}

.ptp-warning-high {
  background: #fff0ef;
  color: #8f2f27;
}

.ptp-warning-high > span {
  background: #ffd9d5;
}

.ptp-warning-medium {
  background: #fff6e8;
  color: #815516;
}

.ptp-warning-medium > span {
  background: #ffe5ba;
}

.ptp-warning-info,
.ptp-warning-low {
  background: #edf6ff;
  color: #345d86;
}

.ptp-warning-info > span,
.ptp-warning-low > span {
  background: #d7ebff;
}

.ptp-reading-rule {
  margin-top: 24px;
  padding: 20px;
  border-radius: 16px;
  background: #111827;
  color: #fff;
}

.ptp-reading-rule p {
  margin: 6px 0 0;
  color: rgba(255,255,255,.72);
}

.ptp-login-shell {
  display: grid;
  min-height: 65vh;
  place-items: center;
}

.ptp-login-card {
  width: min(460px, 100%);
  padding: 30px;
  border: 1px solid var(--ptp-border);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(18,31,57,.12);
}

.ptp-login-card h2 {
  margin: 0 0 8px;
}

.ptp-login-card p {
  margin: 0 0 20px;
  color: var(--ptp-muted);
}

.ptp-login-form {
  display: grid;
  gap: 14px;
}

.ptp-login-form label {
  margin: 0;
}

.ptp-login-form input {
  margin-top: 6px;
}

.ptp-login-error {
  min-height: 20px;
  color: var(--ptp-danger);
  font-size: 13px;
}

@media (max-width: 980px) {
  .ptp-hero { grid-template-columns: 1fr; }
  .ptp-period-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .ptp-brand-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .ptp-scope-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .ptp-model-grid, .ptp-store-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .ptp-summary-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .ptp-decision-row { grid-template-columns: 100px 1fr; }
}

@media (max-width: 680px) {
  .ptp-shell { width: min(100% - 18px, 1180px); margin: 12px auto; }
  .ptp-hero, .ptp-control-card, .ptp-results { padding: 20px; border-radius: 18px; }
  .ptp-hero h1 { font-size: 34px; }
  .ptp-control-head, .ptp-result-head { align-items: flex-start; flex-direction: column; }
  .ptp-mode-grid, .ptp-period-grid, .ptp-choice-grid, .ptp-platform-grid, .ptp-brand-grid, .ptp-scope-grid, .ptp-model-grid, .ptp-store-grid, .ptp-summary-grid { grid-template-columns: 1fr; }
  .ptp-brand-grid, .ptp-choice-grid, .ptp-platform-grid, .ptp-scope-grid { padding-inline: 14px; }
  .ptp-question { padding-inline: 14px; }
  .ptp-subsection { margin-inline: 14px; }
  .ptp-benchmark { margin-inline: 14px; }
  .ptp-amount { margin-inline: 14px; }
  .ptp-action-bar { position: static; flex-direction: column; align-items: stretch; }
  .ptp-action-bar .ptp-primary { width: 100%; }
  .ptp-decision-row { grid-template-columns: 1fr; }
  .ptp-decision-visual { display: none; }
  .ptp-inline-add { align-items: stretch; flex-direction: column; }
}

/* Brasauto 1.1: cards de veículos e seminovos multimarcas */
.ptp-brand-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ptp-brand-car .ptp-car-svg {
  width: 30px;
  height: 22px;
}

.ptp-vehicle-visual {
  display: grid;
  place-items: center;
  width: 100%;
  height: 72px;
  overflow: hidden;
  border-radius: 11px;
  background: #f4f6fa;
  color: #34445f;
}

.ptp-vehicle-image {
  display: block;
  width: 100%;
  height: 72px;
  object-fit: contain;
  object-position: center;
}

.ptp-model-card {
  min-height: 132px;
}

.ptp-vehicle-visual.is-generic .ptp-car-svg {
  width: 104px;
  height: 52px;
}

.ptp-brasauto-models {
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.ptp-brasauto-count-card {
  display: grid;
  grid-template-columns: 150px minmax(220px, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 14px;
  padding: 18px;
  border: 1px solid var(--ptp-border);
  border-radius: 16px;
  background: #fff;
}

.ptp-brasauto-car {
  display: grid;
  place-items: center;
  min-height: 88px;
  border-radius: 14px;
  background: #f1f4f9;
  color: #34445f;
}

.ptp-brasauto-car .ptp-car-svg {
  width: 120px;
  height: 58px;
}

.ptp-brasauto-count-card label > span,
.ptp-brasauto-count-card label > div {
  display: block;
}

.ptp-brasauto-count-card label > span {
  margin-bottom: 7px;
  color: var(--ptp-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.ptp-brasauto-count-card label > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ptp-brasauto-count-card input {
  width: 150px;
  min-height: 46px;
  padding: 9px 12px;
  border: 1px solid var(--ptp-border);
  border-radius: 11px;
  font: inherit;
  font-size: 18px;
  font-weight: 800;
}

.ptp-brasauto-count-card em {
  color: var(--ptp-muted);
  font-size: 13px;
  font-style: normal;
}

.ptp-decision-visual .ptp-vehicle-visual {
  width: 78px;
  height: 48px;
  flex: 0 0 78px;
}

.ptp-decision-visual .ptp-vehicle-image {
  height: 48px;
}

@media (max-width: 1100px) {
  .ptp-brand-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .ptp-brand-grid { grid-template-columns: 1fr; }
  .ptp-brasauto-count-card { grid-template-columns: 1fr; }
  .ptp-brasauto-count-card input { width: 100%; }
}

/* Brasauto 2.0: versão visual, identificação do cliente e showroom de marcas */
.ptp-client-ribbon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
  padding: 11px 16px;
  border: 1px solid #dfe4ee;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(18,31,57,.06);
}

.ptp-client-ribbon > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ptp-client-ribbon strong {
  font-size: 15px;
  letter-spacing: .08em;
}

.ptp-client-ribbon span,
.ptp-client-ribbon small {
  color: var(--ptp-muted);
  font-size: 12px;
}

.ptp-client-ribbon small {
  padding: 5px 9px;
  border-radius: 999px;
  background: #fff4e8;
  color: #d67200;
  font-weight: 800;
}

.ptp-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.ptp-hero-pills span {
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.88);
  font-size: 12px;
  font-weight: 700;
}

.ptp-brand-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.ptp-brand {
  position: relative;
  display: grid;
  grid-template-rows: 94px auto;
  align-items: stretch;
  gap: 8px;
  min-height: 164px;
  padding: 9px;
  overflow: hidden;
  text-align: left;
}

.ptp-brand-vehicle {
  display: grid;
  place-items: center;
  min-height: 94px;
  overflow: hidden;
  border-radius: 12px;
  background: transparent;
}

.ptp-brand-vehicle .ptp-vehicle-visual,
.ptp-brand-vehicle .ptp-vehicle-visual.is-compact {
  width: 100%;
  height: 94px;
  border-radius: 12px;
  background: transparent;
}

.ptp-brand-vehicle .ptp-vehicle-image,
.ptp-brand-vehicle .ptp-vehicle-visual.is-compact .ptp-vehicle-image {
  width: 100%;
  height: 94px;
  object-fit: cover;
}

.ptp-brand-vehicle.is-seminovos .ptp-car-svg {
  width: 112px;
  height: 58px;
}

.ptp-brand-copy {
  display: block;
  padding: 2px 3px 4px;
}

.ptp-brand-copy strong,
.ptp-brand-copy small {
  display: block;
}

.ptp-brand-copy strong {
  margin: 0;
  font-size: 14px;
}

.ptp-brand-copy small {
  margin-top: 3px;
  color: var(--ptp-muted);
  font-size: 11px;
  line-height: 1.25;
}

.ptp-brand.is-active .ptp-brand-vehicle {
  box-shadow: inset 0 0 0 2px var(--ptp-primary);
}

.ptp-brand-selected {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 999px;
  background: var(--ptp-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(31,79,209,.25);
}

.ptp-model-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.ptp-model-card {
  display: grid;
  grid-template-rows: 112px auto;
  min-height: 160px;
  padding: 9px;
  overflow: hidden;
}

.ptp-model-card .ptp-vehicle-visual {
  height: 112px;
  border-radius: 12px;
  background: transparent;
}

.ptp-model-card .ptp-vehicle-image {
  height: 112px;
  object-fit: cover;
}

.ptp-model-card strong {
  margin: 9px 3px 3px;
  font-size: 14px;
}

.ptp-brasauto-count-card {
  grid-template-columns: minmax(180px, .55fr) minmax(260px, 1fr);
  padding: 20px;
}

.ptp-brasauto-car {
  min-height: 120px;
  background: linear-gradient(135deg, #eef3ff 0%, #f8faff 100%);
}

.ptp-brasauto-car .ptp-car-svg {
  width: 156px;
  height: 76px;
}

@media (max-width: 1100px) {
  .ptp-brand-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ptp-model-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .ptp-client-ribbon,
  .ptp-client-ribbon > div { align-items: flex-start; flex-direction: column; }
  .ptp-brand-grid,
  .ptp-model-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ptp-brand { min-height: 154px; }
  .ptp-brasauto-count-card { grid-template-columns: 1fr; }
}

@media (max-width: 460px) {
  .ptp-brand-grid,
  .ptp-model-grid { grid-template-columns: 1fr; }
}

/* Brasauto 2.4.2: padronização da área visual dos veículos */
.ptp-model-card {
  grid-template-rows: 124px minmax(38px, auto);
  min-height: 180px;
}

.ptp-model-card .ptp-vehicle-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 124px;
  min-height: 124px;
  max-height: 124px;
  padding: 8px 10px;
  overflow: hidden;
  border-radius: 12px;
  background: transparent;
}

.ptp-model-card .ptp-vehicle-image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
}

.ptp-model-card strong {
  align-self: start;
  min-height: 38px;
  margin: 9px 3px 3px;
}

@media (max-width: 680px) {
  .ptp-model-card {
    grid-template-rows: 116px minmax(38px, auto);
    min-height: 172px;
  }

  .ptp-model-card .ptp-vehicle-visual {
    height: 116px;
    min-height: 116px;
    max-height: 116px;
  }
}


/* Brasauto 2.5.0: divisão automática por frentes geradas */
.ptp-scope-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ptp-front-preview {
  margin: 18px 20px 22px;
  padding: 16px;
  border: 1px solid #cbd7ee;
  border-radius: 16px;
  background: #f8faff;
}

.ptp-front-preview > div:first-child {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.ptp-front-preview strong,
.ptp-front-preview small {
  display: block;
}

.ptp-front-preview small,
.ptp-front-preview p {
  color: var(--ptp-muted);
  font-size: 12px;
}

.ptp-front-preview p {
  margin: 6px 0 0;
}

.ptp-front-preview.is-empty {
  border-style: dashed;
  background: #fff;
}

.ptp-front-preview-list {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: flex-start !important;
  gap: 7px;
  margin-top: 12px;
}

.ptp-front-preview-list span,
.ptp-front-preview-list small {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0;
  padding: 5px 9px;
  border: 1px solid #d7dfed;
  border-radius: 999px;
  background: #fff;
  color: #33415c;
  font-size: 11px;
  font-weight: 700;
}

.ptp-formula-box {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid #cbd7ee;
  border-radius: 16px;
  background: #f8faff;
}

.ptp-formula-box strong,
.ptp-formula-box span {
  display: block;
}

.ptp-formula-box strong {
  font-size: 18px;
}

.ptp-formula-box span {
  color: var(--ptp-muted);
  text-align: right;
}

.ptp-generated-front-row {
  grid-template-columns: 52px minmax(0, 1.35fr) minmax(135px, .55fr) minmax(180px, .8fr);
}

.ptp-front-number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--ptp-primary-soft);
  color: var(--ptp-primary);
  font-weight: 900;
}

.ptp-decision-money span {
  display: block;
  color: var(--ptp-muted);
  font-size: 12px;
}

@media (max-width: 1100px) {
  .ptp-scope-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (max-width: 760px) {
  .ptp-scope-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .ptp-front-preview > div:first-child,
  .ptp-formula-box { align-items: flex-start; flex-direction: column; }
  .ptp-formula-box span { text-align: left; }
  .ptp-generated-front-row { grid-template-columns: 52px minmax(0,1fr); }
  .ptp-generated-front-row .ptp-decision-money,
  .ptp-generated-front-row .ptp-decision-projection { grid-column: 2; }
}

@media (max-width: 460px) {
  .ptp-scope-grid { grid-template-columns: 1fr; }
  .ptp-front-preview { margin-inline: 14px; }
}

/* Brasauto 2.6.0: piso diário para Leads, metas por frente e período mínimo */
.ptp-time-note.is-blocked {
  border-color: #f3b7b2;
  background: #fff1f0;
  color: #991b1b;
}

.ptp-primary:disabled,
.ptp-primary[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: .48;
  filter: grayscale(.15);
  transform: none !important;
}

.ptp-action-copy {
  min-width: 0;
}

.ptp-daily-band {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 4px 10px;
  align-items: center;
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 14px;
}

.ptp-daily-band > span {
  grid-column: 1 / -1;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
}

.ptp-daily-band > strong {
  font-size: 20px;
  line-height: 1.1;
}

.ptp-daily-band > em {
  justify-self: start;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .05em;
}

.ptp-daily-band > small {
  grid-column: 1 / -1;
  font-size: 11px;
}

.ptp-daily-band.is-danger,
.ptp-budget-danger {
  border-color: #efb2ad;
  background: #fff0ef;
  color: #9f1d16;
}

.ptp-daily-band.is-danger > em {
  background: #9f1d16;
  color: #fff;
}

.ptp-daily-band.is-warning,
.ptp-budget-warning {
  border-color: #f0d090;
  background: #fff8e8;
  color: #855600;
}

.ptp-daily-band.is-warning > em {
  background: #9a6200;
  color: #fff;
}

.ptp-daily-band.is-healthy,
.ptp-budget-healthy {
  border-color: #a9d9c0;
  background: #eefaf3;
  color: #146b46;
}

.ptp-daily-band.is-healthy > em {
  background: #157a4e;
  color: #fff;
}

.ptp-daily-band.is-info {
  border-color: #cbd7ee;
  background: #f5f8ff;
  color: #294a91;
}

.ptp-goal-target-card {
  display: grid;
  grid-template-columns: minmax(230px, 1.2fr) minmax(120px, .45fr) minmax(150px, .55fr);
  gap: 12px;
  align-items: end;
  margin: 18px 20px 0;
  padding: 18px;
  border: 1px solid #cbd7ee;
  border-radius: 16px;
  background: #f8faff;
}

.ptp-goal-target-card label > span,
.ptp-goal-target-card small {
  display: block;
  margin-bottom: 6px;
  color: var(--ptp-muted);
  font-size: 12px;
  font-weight: 800;
}

.ptp-goal-target-card input {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--ptp-border);
  border-radius: 12px;
  background: #fff;
}

.ptp-goal-target-card > div {
  min-height: 66px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff;
}

.ptp-goal-target-card > div strong {
  display: block;
  font-size: 20px;
}

.ptp-goal-target-card > p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--ptp-muted);
  font-size: 12px;
}

.ptp-goal-global-hint {
  display: flex;
  min-height: 43px;
  flex-direction: column;
  justify-content: center;
  padding: 7px 10px;
  border: 1px solid var(--ptp-border);
  border-radius: 10px;
  background: #f8faff;
}

.ptp-goal-global-hint strong,
.ptp-goal-global-hint small {
  display: block;
}

.ptp-goal-global-hint small {
  color: var(--ptp-muted);
  font-size: 11px;
}

.ptp-inline-band {
  display: inline-flex;
  margin-top: 6px;
  padding: 3px 7px;
  border-radius: 999px;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .04em;
}

.ptp-inline-band.is-danger { background: #9f1d16; color: #fff; }
.ptp-inline-band.is-warning { background: #9a6200; color: #fff; }
.ptp-inline-band.is-healthy { background: #157a4e; color: #fff; }

@media (max-width: 760px) {
  .ptp-goal-target-card {
    grid-template-columns: 1fr 1fr;
    margin-inline: 14px;
  }
  .ptp-goal-target-card label {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .ptp-goal-target-card { grid-template-columns: 1fr; }
  .ptp-goal-target-card label,
  .ptp-goal-target-card > p { grid-column: 1; }
  .ptp-daily-band { grid-template-columns: 1fr; }
  .ptp-daily-band > span,
  .ptp-daily-band > small { grid-column: 1; }
}

/* Brasauto 2.7.0: verba reservada por bloco + metas individuais por frente */
.ptp-platform-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ptp-block-budget-card {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(130px, .55fr));
  gap: 12px;
  align-items: stretch;
  margin: 18px 20px 0;
  padding: 18px;
  border: 1px solid #cbd7ee;
  border-radius: 16px;
  background: #f8faff;
}

.ptp-block-budget-card > label,
.ptp-block-budget-card > div:not(.ptp-block-budget-health) {
  min-height: 70px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff;
}

.ptp-block-budget-card label > span,
.ptp-block-budget-card > div > small {
  display: block;
  margin-bottom: 6px;
  color: var(--ptp-muted);
  font-size: 12px;
  font-weight: 800;
}

.ptp-block-budget-card input {
  width: 100%;
  min-height: 44px;
  padding: 9px 11px;
  border: 1px solid var(--ptp-border);
  border-radius: 11px;
  background: #fff;
}

.ptp-block-budget-card > div > strong {
  display: block;
  font-size: 18px;
}

.ptp-block-budget-health {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 5px 10px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 14px;
}

.ptp-block-budget-health > span,
.ptp-block-budget-health > small,
.ptp-capacity-line {
  grid-column: 1 / -1;
}

.ptp-block-budget-health > span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
}

.ptp-block-budget-health > strong { font-size: 21px; }
.ptp-block-budget-health > em {
  justify-self: start;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}
.ptp-block-budget-health > small,
.ptp-capacity-line { font-size: 11px; }

.ptp-block-budget-health.is-danger { border-color:#efb2ad;background:#fff0ef;color:#9f1d16; }
.ptp-block-budget-health.is-warning { border-color:#f0d090;background:#fff8e8;color:#855600; }
.ptp-block-budget-health.is-healthy { border-color:#a9d9c0;background:#eefaf3;color:#146b46; }
.ptp-block-budget-health.is-danger > em { background:#9f1d16;color:#fff; }
.ptp-block-budget-health.is-warning > em { background:#9a6200;color:#fff; }
.ptp-block-budget-health.is-healthy > em { background:#157a4e;color:#fff; }

.ptp-goal-target-card.ptp-goal-target-matrix {
  display: block;
  margin: 18px 20px 0;
}

.ptp-goal-target-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  min-height: auto !important;
  padding: 0 !important;
  background: transparent !important;
}

.ptp-goal-target-head > div:last-child {
  flex: 0 0 auto;
  min-width: 150px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff;
}

.ptp-goal-target-head strong,
.ptp-goal-target-head small { display:block; }
.ptp-goal-target-head > div:first-child strong { font-size: 16px; }
.ptp-goal-target-head > div:last-child strong { font-size: 20px; }

.ptp-bulk-target {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 10px;
  align-items: end;
  min-height: auto !important;
  margin-top: 14px;
  padding: 12px !important;
  border: 1px dashed #cbd7ee;
  background: #fff !important;
}

.ptp-target-front-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-height: auto !important;
  margin-top: 12px;
  padding: 0 !important;
  background: transparent !important;
}

.ptp-target-front-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(130px, .45fr);
  gap: 10px;
  align-items: center;
  min-height: 82px !important;
  padding: 12px !important;
  border: 1px solid #dfe5f0;
  border-radius: 12px;
  background: #fff !important;
}

.ptp-target-front-row > div strong,
.ptp-target-front-row > div small { display:block; }
.ptp-target-front-row > div small { color:var(--ptp-muted);font-size:10px;text-transform:uppercase;letter-spacing:.06em; }
.ptp-target-front-row > div strong { margin-top:4px;font-size:13px; }
.ptp-target-front-row label { margin:0; }
.ptp-target-front-row input { min-height:40px; }

.ptp-goal-target-matrix > p {
  margin: 12px 0 0 !important;
}

@media (max-width: 900px) {
  .ptp-block-budget-card { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ptp-block-budget-card > label { grid-column: 1 / -1; }
  .ptp-target-front-list { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .ptp-block-budget-card { grid-template-columns: 1fr; margin-inline:14px; }
  .ptp-block-budget-card > label,
  .ptp-block-budget-health { grid-column: 1; }
  .ptp-goal-target-card.ptp-goal-target-matrix { margin-inline:14px; }
  .ptp-goal-target-head { align-items:flex-start;flex-direction:column; }
  .ptp-goal-target-head > div:last-child { width:100%; }
  .ptp-bulk-target { grid-template-columns:1fr; }
  .ptp-target-front-row { grid-template-columns:1fr; }
}


/* App Marketing 2.8.3: identidade oficial validada no site appmarketing.com.br */
.ptp-agency-ribbon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  padding: 12px 18px;
  border-radius: 18px;
  background: #050505;
  color: #fff;
  box-shadow: 0 10px 28px rgba(24, 32, 51, .14);
}

.ptp-agency-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ptp-agency-brand img {
  display: block;
  width: 178px;
  max-width: 40vw;
  height: auto;
  object-fit: contain;
}

.ptp-agency-brand > span,
.ptp-agency-brand strong,
.ptp-agency-brand small {
  display: block;
}

.ptp-agency-brand strong {
  font-size: 14px;
  color: #fff;
}

.ptp-agency-brand small,
.ptp-agency-ribbon > small {
  margin-top: 2px;
  color: rgba(255,255,255,.66);
  font-size: 11px;
}

.ptp-hero {
  position: relative;
  overflow: hidden;
}

.ptp-hero::after {
  content: '';
  position: absolute;
  top: -90px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(254, 139, 0, .12);
  pointer-events: none;
}

.ptp-hero > * { position: relative; z-index: 1; }
.ptp-hero .ptp-eyebrow { color: #fe8b00; opacity: 1; }
.ptp-step { box-shadow: 0 6px 16px rgba(254, 139, 0, .22); }
.ptp-primary { background: #fe8b00 !important; border-color: #fe8b00 !important; color: #050505 !important; }
.ptp-primary:hover { filter: brightness(.96); }
.ptp-secondary { border-color: #f0b76e; }

.ptp-mode-card:hover,
.ptp-choice:hover,
.ptp-brand:hover,
.ptp-platform:hover,
.ptp-scope:hover,
.ptp-model-card:hover,
.ptp-store-card:hover {
  border-color: #f3b15c;
}

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

.ptp-platform {
  min-height: 82px;
  padding: 15px 18px;
  border-radius: 18px;
}

.ptp-platform-mark {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
  background: #fff !important;
  border: 1px solid #e5e8ef;
  color: inherit !important;
}

.ptp-brand-platform-logo {
  display: block;
  width: 32px;
  height: 28px;
}

.ptp-meta-logo {
  fill: none;
  stroke: #0866ff;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ptp-google-ads-logo .ga-blue { fill: #4285f4; }
.ptp-google-ads-logo .ga-yellow { fill: #fbbc04; }
.ptp-google-ads-logo .ga-green { fill: #34a853; }

.ptp-question > span {
  color: #050505;
  background: #fff4e8;
}

.ptp-question > span svg,
.ptp-scope-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ptp-scope {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  min-height: 112px;
  padding: 14px;
  text-align: left;
  border-radius: 16px;
}

.ptp-scope-icon {
  display: grid;
  place-items: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: #fff4e8;
  color: #d67200;
}

.ptp-scope.is-active .ptp-scope-icon {
  background: #fe8b00;
  color: #050505;
}

.ptp-campaign-number,
.ptp-eyebrow { color: #d67200; }

.ptp-front-preview {
  border-color: #f2c78f;
  background: #fffaf4;
}

.ptp-front-preview-list span,
.ptp-front-preview-list small {
  border-color: #f2d6b4;
}

.ptp-brand-selected {
  color: #050505;
  box-shadow: 0 4px 12px rgba(254,139,0,.25);
}

@media (max-width: 760px) {
  .ptp-agency-ribbon,
  .ptp-agency-brand { align-items: flex-start; }
  .ptp-agency-ribbon { flex-direction: column; }
  .ptp-agency-brand { flex-direction: column; gap: 10px; }
  .ptp-agency-brand img { width: 160px; max-width: 70vw; }
  .ptp-platform-grid { grid-template-columns: 1fr; }
}


/* Oferta geral: mesma hierarquia visual das demais ofertas */
.ptp-general-offer-card {
  position: relative;
}

.ptp-general-offer-card .ptp-vehicle-visual.is-general-offer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 124px;
  min-height: 124px;
  padding: 12px;
  background: transparent;
  color: #fe8b00;
}

.ptp-general-offer-card .ptp-vehicle-visual.is-general-offer svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ptp-general-offer-copy {
  display: block;
  min-height: 52px;
  padding: 9px 3px 3px;
  text-align: left;
}

.ptp-general-offer-copy strong,
.ptp-general-offer-copy small { display:block; }
.ptp-general-offer-copy strong { margin:0; font-size:14px; }
.ptp-general-offer-copy small { margin-top:4px; color:var(--ptp-muted); font-size:11px; line-height:1.3; }

.ptp-general-offer-card.is-active .ptp-vehicle-visual.is-general-offer { color:#050505; }

@media (max-width: 680px) {
  .ptp-general-offer-card .ptp-vehicle-visual.is-general-offer { height:116px; min-height:116px; }
}

/* Ajustes finais da identidade App Marketing */
.ptp-agency-ribbon > small {
  background: rgba(254, 139, 0, .14);
  color: #fe8b00;
}

.ptp-brasauto-car {
  background: #f7f8fc;
}


/* App Marketing 2.8.3: acabamento de marca */
.ptp-agency-ribbon {
  border: 1px solid rgba(254,139,0,.22);
}
.ptp-agency-brand strong {
  letter-spacing: .01em;
}
.ptp-agency-brand small {
  color: rgba(255,255,255,.72);
}
.ptp-hero-rule > span {
  color: #fe8b00;
}
.ptp-step {
  color: #050505;
}
.ptp-mode-card > svg,
.ptp-choice-icon,
.ptp-pin-icon {
  color: #d67200;
}
.ptp-mode-card.is-active > svg,
.ptp-choice.is-active .ptp-choice-icon {
  color: #050505;
}

/* App Marketing 2.8.6: clareza entre ofertas + lojas e oferta por loja, sem alteração da lógica de cálculo */
:root {
  --ptp-bg: #f5f5f3;
  --ptp-card: #ffffff;
  --ptp-text: #171717;
  --ptp-muted: #6d6d68;
  --ptp-border: #e8e7e2;
  --ptp-border-strong: #dcdad3;
  --ptp-primary: #fe8b00;
  --ptp-primary-soft: #fff7ee;
  --ptp-dark: #0a0a0a;
  --ptp-radius: 18px;
}

.ptp-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 20px auto 48px;
  line-height: 1.38;
}

.ptp-agency-ribbon {
  min-height: 58px;
  margin-bottom: 12px;
  padding: 8px 14px;
  border-radius: 14px;
  box-shadow: none;
}

.ptp-agency-brand {
  gap: 12px;
}

.ptp-agency-brand img {
  width: 138px;
  max-height: 38px;
}

.ptp-agency-brand strong {
  font-size: 12px;
  font-weight: 800;
}

.ptp-agency-brand small {
  margin-top: 1px;
  font-size: 10px;
}

.ptp-build-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border: 1px solid rgba(254,139,0,.28);
  border-radius: 999px;
  background: rgba(254,139,0,.1);
  color: #fe8b00;
  font-size: 10px;
  font-weight: 800;
}

.ptp-hero {
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
  gap: 24px;
  padding: 26px 30px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,.1);
}

.ptp-hero::after {
  top: -125px;
  right: -85px;
  width: 300px;
  height: 300px;
  opacity: .72;
}

.ptp-hero .ptp-eyebrow {
  margin-bottom: 6px;
  font-size: 10px;
  letter-spacing: .14em;
}

.ptp-hero h1 {
  max-width: 680px;
  margin-bottom: 8px;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.02;
}

.ptp-hero p {
  max-width: 620px;
  font-size: 14px;
}

.ptp-hero-rules {
  align-self: center;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.ptp-hero-rules > div {
  min-width: 0;
  padding: 13px 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.065);
}

.ptp-hero-rules strong,
.ptp-hero-rules small {
  display: block;
}

.ptp-hero-rules strong {
  color: #fff;
  font-size: 15px;
  letter-spacing: -.02em;
  white-space: nowrap;
}

.ptp-hero-rules small {
  margin-top: 3px;
  color: rgba(255,255,255,.58);
  font-size: 9px;
  line-height: 1.2;
}

.ptp-hero-rule { display: none; }

.ptp-control-card,
.ptp-results {
  margin-top: 14px;
  padding: 22px;
  border-radius: 18px;
  border-color: var(--ptp-border);
  box-shadow: 0 5px 18px rgba(18,18,18,.035);
}

.ptp-control-head,
.ptp-result-head {
  margin-bottom: 14px;
}

.ptp-control-head h2,
.ptp-result-head h2 {
  font-size: 19px;
  letter-spacing: -.02em;
}

.ptp-step {
  width: 27px;
  height: 27px;
  border-radius: 8px;
  font-size: 12px;
  box-shadow: none;
  color: #111;
}

.ptp-mode-grid {
  gap: 10px;
}

.ptp-mode-card {
  min-height: 68px;
  gap: 12px;
  padding: 13px 15px;
  border-radius: 14px;
}

.ptp-mode-card > svg {
  width: 24px;
  height: 24px;
  color: #b86400;
}

.ptp-mode-card strong { font-size: 13px; }
.ptp-mode-card small { font-size: 10px; }

.ptp-period-grid {
  gap: 10px;
  margin-top: 14px;
}

.ptp-period-grid label > span,
.ptp-amount > span,
.ptp-login-form label {
  margin-bottom: 5px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.ptp-period-grid input,
.ptp-period-grid select,
.ptp-inline-add input,
.ptp-login-form input,
.ptp-amount input {
  min-height: 42px;
  padding: 8px 11px;
  border-radius: 10px;
  font-size: 12px;
}

.ptp-time-note {
  min-height: 38px;
  margin-top: 10px;
  padding: 8px 11px;
  border-radius: 10px;
  font-size: 11px;
}

.ptp-time-note svg {
  width: 17px;
  height: 17px;
}

.ptp-campaign-card {
  margin-top: 12px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
}

.ptp-campaign-head {
  padding: 13px 16px;
  background: #fbfbfa;
}

.ptp-campaign-number {
  font-size: 9px;
  letter-spacing: .12em;
}

.ptp-campaign-head strong {
  font-size: 12px;
}

.ptp-remove {
  font-size: 10px;
}

.ptp-question {
  gap: 8px;
  padding: 17px 16px 8px;
}

.ptp-question > span {
  flex-basis: 24px;
  width: 24px;
  height: 24px;
  border-radius: 7px;
}

.ptp-question > span svg {
  width: 15px;
  height: 15px;
}

.ptp-question strong {
  font-size: 12px;
}

.ptp-question small {
  display: none;
}

.ptp-brand-grid,
.ptp-choice-grid,
.ptp-platform-grid,
.ptp-scope-grid,
.ptp-model-grid,
.ptp-store-grid {
  gap: 8px;
  padding-inline: 16px;
}

.ptp-platform-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ptp-choice-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ptp-scope-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.ptp-brand-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.ptp-platform,
.ptp-choice,
.ptp-scope {
  min-height: 64px;
  padding: 10px 11px;
  border-radius: 12px;
}

.ptp-platform {
  gap: 10px;
}

.ptp-platform-mark {
  width: 39px;
  height: 39px;
  flex-basis: 39px;
  border-radius: 10px;
}

.ptp-brand-platform-logo {
  width: 27px;
  height: 24px;
}

.ptp-choice {
  gap: 8px;
}

.ptp-choice-icon,
.ptp-scope-icon {
  flex-basis: 30px;
  width: 30px;
  height: 30px;
  border-radius: 9px;
}

.ptp-choice-icon svg,
.ptp-scope-icon svg {
  width: 17px;
  height: 17px;
}

.ptp-platform strong,
.ptp-choice strong,
.ptp-scope strong {
  font-size: 11px;
}

.ptp-platform small,
.ptp-choice small,
.ptp-scope small {
  margin-top: 2px;
  font-size: 9px;
  line-height: 1.15;
}

.ptp-benchmark {
  margin: 7px 16px 0;
  padding: 7px 10px;
  border-radius: 9px;
  font-size: 10px;
}

.ptp-brand {
  min-height: 102px;
  padding: 8px;
  border-radius: 12px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 4px;
}

.ptp-brand-vehicle,
.ptp-brand-vehicle .ptp-vehicle-visual,
.ptp-brand-vehicle .ptp-vehicle-visual.is-compact {
  height: 58px !important;
  min-height: 58px !important;
  max-height: 58px !important;
}

.ptp-brand-vehicle .ptp-vehicle-image,
.ptp-brand-vehicle .ptp-vehicle-visual.is-compact .ptp-vehicle-image {
  max-height: 56px !important;
}

.ptp-brand-copy strong {
  font-size: 10px;
}

.ptp-brand-copy small {
  margin-top: 1px;
  font-size: 8px;
}

.ptp-brand-selected {
  top: 7px;
  right: 7px;
  width: 20px;
  height: 20px;
  font-size: 10px;
}

.ptp-subsection {
  margin: 12px 16px 0;
  padding: 12px;
  border-style: solid;
  border-color: #ece9e3;
  border-radius: 13px;
  background: #fcfcfb;
}

.ptp-subhead strong { font-size: 11px; }
.ptp-subhead small { margin-top: 1px; font-size: 9px; }

.ptp-model-grid,
.ptp-store-grid {
  padding: 9px 0 0;
}

.ptp-model-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.ptp-model-card {
  grid-template-rows: 78px minmax(30px, auto) !important;
  min-height: 120px !important;
  padding: 6px !important;
  border-radius: 11px;
}

.ptp-model-card .ptp-vehicle-visual,
.ptp-general-offer-card .ptp-vehicle-visual.is-general-offer {
  height: 78px !important;
  min-height: 78px !important;
  max-height: 78px !important;
  padding: 4px 6px !important;
  border-radius: 9px;
  background: transparent !important;
}

.ptp-model-card .ptp-vehicle-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ptp-model-card strong,
.ptp-general-offer-copy strong {
  min-height: 0;
  margin: 6px 2px 2px;
  font-size: 10px;
  line-height: 1.15;
}

.ptp-general-offer-copy {
  min-height: 0;
  padding: 0;
}

.ptp-general-offer-copy small {
  display: none;
}

.ptp-general-offer-card .ptp-vehicle-visual.is-general-offer svg {
  width: 40px;
  height: 40px;
}

.ptp-selected-dot {
  top: 6px;
  right: 6px;
  width: 19px;
  height: 19px;
  font-size: 9px;
}

.ptp-store-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ptp-store-card {
  min-height: 56px;
  padding: 9px 10px;
  border-radius: 11px;
}

.ptp-store-card strong {
  margin-top: 3px;
  font-size: 10px;
}

.ptp-pin-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
}

.ptp-pin-icon svg {
  width: 14px;
  height: 14px;
}

.ptp-inline-add {
  gap: 7px;
  margin-top: 8px;
}

.ptp-inline-add input {
  min-height: 36px;
}

.ptp-inline-add .ptp-link-button {
  font-size: 10px;
}

.ptp-block-budget-card {
  grid-template-columns: minmax(210px, 1.2fr) repeat(3, minmax(120px, .65fr));
  gap: 8px;
  margin: 12px 16px 0;
  padding: 11px;
  border-color: #ece9e3;
  border-radius: 13px;
  background: #fcfcfb;
}

.ptp-block-budget-card > label,
.ptp-block-budget-card > div:not(.ptp-block-budget-health) {
  min-height: 62px;
  padding: 8px 10px;
  border-radius: 9px;
  border: 1px solid #efede8;
}

.ptp-block-budget-card label > span,
.ptp-block-budget-card > div > small {
  margin-bottom: 4px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.ptp-block-budget-card input {
  min-height: 37px;
  padding: 7px 9px;
  border-radius: 8px;
  font-size: 12px;
}

.ptp-block-budget-card > div > strong {
  font-size: 15px;
}

.ptp-block-budget-health {
  padding: 10px 12px;
  border-radius: 10px;
}

.ptp-block-budget-health > strong {
  font-size: 18px;
}

.ptp-block-budget-health > small,
.ptp-capacity-line {
  font-size: 9px;
}

.ptp-goal-target-card.ptp-goal-target-matrix {
  margin: 12px 16px 0;
  padding: 12px;
  border-radius: 13px;
}

.ptp-target-front-list {
  gap: 7px;
  margin-top: 8px;
}

.ptp-target-front-row {
  min-height: 66px !important;
  padding: 9px !important;
  border-radius: 9px;
}

.ptp-target-front-row > div strong { font-size: 11px; }
.ptp-target-front-row > div small { font-size: 8px; }
.ptp-target-front-row input { min-height: 34px; }

.ptp-front-preview {
  margin: 12px 16px 16px;
  padding: 10px 11px;
  border-color: #eee7dc;
  border-radius: 11px;
  background: #fffaf4;
}

.ptp-front-preview > div:first-child strong {
  font-size: 10px;
}

.ptp-front-preview-list {
  gap: 5px;
  margin-top: 7px;
}

.ptp-front-preview-list span,
.ptp-front-preview-list small {
  min-height: 23px;
  padding: 3px 7px;
  border-color: #eadfd1;
  font-size: 8.5px;
  font-weight: 700;
}

.ptp-action-bar {
  bottom: 10px;
  gap: 12px;
  margin-top: 14px;
  padding: 10px 12px;
  border-color: rgba(214,210,203,.9);
  border-radius: 14px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 12px 30px rgba(0,0,0,.1);
}

.ptp-action-copy > strong {
  font-size: 11px;
}

.ptp-action-bar span {
  font-size: 9px;
}

#ptp-daily-budget-indicator {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ptp-daily-band {
  display: flex;
  gap: 7px;
  align-items: center;
  margin-top: 6px;
  padding: 5px 8px;
  border-radius: 9px;
}

.ptp-daily-band > span {
  grid-column: auto;
  font-size: 7px;
  letter-spacing: .05em;
}

.ptp-daily-band > strong {
  font-size: 12px;
}

.ptp-daily-band > em {
  padding: 2px 5px;
  font-size: 7px;
}

.ptp-daily-band > small { display: none; }

.ptp-primary,
.ptp-secondary {
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 10px;
  font-size: 11px;
}

.ptp-big {
  min-width: 142px;
  min-height: 44px;
  padding-inline: 18px;
}

/* Resultado: primeiro a resposta, depois o detalhamento */
.ptp-results {
  padding: 24px;
}

.ptp-result-head {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ptp-border);
}

.ptp-result-head .ptp-eyebrow {
  margin-bottom: 3px;
  font-size: 9px;
}

.ptp-risk {
  min-height: 28px;
  padding: 4px 9px;
  font-size: 9px;
}

.ptp-summary-grid {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 8px;
}

.ptp-summary-card {
  min-height: 78px;
  padding: 12px 13px;
  border-radius: 12px;
  background: #fafaf8;
}

.ptp-summary-card.is-highlight {
  border-color: #f3d5b1;
  background: #fff8ef;
}

.ptp-summary-card small,
.ptp-summary-card span {
  font-size: 9px;
}

.ptp-summary-card strong {
  margin: 3px 0;
  font-size: 18px;
}

.ptp-plan-result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 9px;
  margin-top: 12px;
}

.ptp-plan-result-card {
  padding: 13px;
  border: 1px solid var(--ptp-border);
  border-radius: 13px;
  background: #fff;
}

.ptp-plan-result-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #efeee9;
}

.ptp-plan-result-head small,
.ptp-plan-result-head strong,
.ptp-plan-result-head span {
  display: block;
}

.ptp-plan-result-head small {
  color: #b86400;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ptp-plan-result-head strong {
  margin-top: 2px;
  font-size: 12px;
}

.ptp-plan-result-head span {
  margin-top: 2px;
  color: var(--ptp-muted);
  font-size: 9px;
}

.ptp-plan-status {
  flex: 0 0 auto;
  padding: 4px 7px;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 900;
}

.ptp-plan-status.is-danger { background:#ffebe9;color:#9f1d16; }
.ptp-plan-status.is-warning { background:#fff3d9;color:#855600; }
.ptp-plan-status.is-healthy { background:#e8f7ef;color:#146b46; }

.ptp-plan-result-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  padding-top: 10px;
}

.ptp-plan-result-metrics > div {
  min-width: 0;
}

.ptp-plan-result-metrics small,
.ptp-plan-result-metrics strong,
.ptp-plan-result-metrics span {
  display: block;
}

.ptp-plan-result-metrics small {
  color: var(--ptp-muted);
  font-size: 8px;
}

.ptp-plan-result-metrics strong {
  margin-top: 3px;
  font-size: 11px;
  line-height: 1.2;
}

.ptp-plan-result-metrics span {
  margin-top: 2px;
  color: var(--ptp-muted);
  font-size: 8px;
}

.ptp-plan-result-projection strong {
  color: #111;
}

.ptp-result-details {
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid var(--ptp-border);
  border-radius: 13px;
  background: #fff;
}

.ptp-result-details > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  cursor: pointer;
  list-style: none;
  background: #fafaf8;
}

.ptp-result-details > summary::-webkit-details-marker { display: none; }
.ptp-result-details > summary span,
.ptp-result-details > summary strong,
.ptp-result-details > summary small { display: block; }
.ptp-result-details > summary strong { font-size: 11px; }
.ptp-result-details > summary small { margin-top:2px;color:var(--ptp-muted);font-size:8px; }
.ptp-result-details > summary b {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #fff0df;
  color: #b86400;
  font-size: 15px;
  transition: transform .16s ease;
}
.ptp-result-details[open] > summary b { transform: rotate(45deg); }

.ptp-result-table {
  padding: 0 14px 10px;
}

.ptp-result-table-head,
.ptp-result-table-row {
  display: grid;
  grid-template-columns: minmax(180px, 1.25fr) minmax(130px, .65fr) minmax(190px, .9fr);
  gap: 14px;
  align-items: center;
}

.ptp-result-table-head {
  padding: 9px 0 7px;
  color: var(--ptp-muted);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.ptp-result-table-row {
  min-height: 58px;
  padding: 8px 0;
  border-top: 1px solid #efeee9;
}

.ptp-result-table-name strong,
.ptp-result-table-name span,
.ptp-result-table-money strong,
.ptp-result-table-money span,
.ptp-result-table-projection strong,
.ptp-result-table-projection span {
  display: block;
}

.ptp-result-table-name strong,
.ptp-result-table-money strong,
.ptp-result-table-projection strong {
  font-size: 10px;
  line-height: 1.25;
}

.ptp-result-table-name span,
.ptp-result-table-money span,
.ptp-result-table-projection span {
  margin-top: 2px;
  color: var(--ptp-muted);
  font-size: 8px;
}

.ptp-result-table-money {
  padding: 6px 8px;
  border-radius: 8px;
}

.ptp-result-table-projection .ptp-inline-band {
  margin-top: 4px;
}

.ptp-result-empty {
  padding: 16px 0;
  color: var(--ptp-muted);
  font-size: 10px;
}

.ptp-result-section.ptp-result-alerts {
  margin-top: 12px;
}

.ptp-result-section.ptp-result-alerts h3 {
  margin-bottom: 7px;
  font-size: 12px;
}

.ptp-warning-list {
  gap: 7px;
}

.ptp-warning {
  gap: 8px;
  padding: 9px 10px;
  border-radius: 10px;
}

.ptp-warning > span {
  flex-basis: 22px;
  width: 22px;
  height: 22px;
  font-size: 9px;
}

.ptp-warning strong { font-size: 10px; }
.ptp-warning p { margin-top: 2px; font-size: 9px; }

.ptp-result-footnote {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--ptp-border);
  color: var(--ptp-muted);
  font-size: 8.5px;
}

.ptp-reading-rule { display: none; }

@media (max-width: 1100px) {
  .ptp-hero { grid-template-columns: 1fr; }
  .ptp-hero-rules { max-width: 620px; }
  .ptp-brand-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .ptp-model-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .ptp-scope-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .ptp-shell { width: min(100% - 20px, 1240px); }
  .ptp-hero { padding: 22px; }
  .ptp-hero-rules { grid-template-columns: repeat(3, 1fr); }
  .ptp-brand-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ptp-model-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .ptp-store-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ptp-block-budget-card { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ptp-block-budget-card > label { grid-column: 1 / -1; }
  .ptp-result-table-head { display: none; }
  .ptp-result-table-row { grid-template-columns: 1fr 1fr; gap: 8px 12px; }
  .ptp-result-table-projection { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .ptp-shell { margin-top: 10px; }
  .ptp-agency-ribbon { min-height: 52px; padding: 7px 10px; }
  .ptp-agency-brand img { width: 118px; }
  .ptp-agency-brand > span { display: none; }
  .ptp-hero { gap: 16px; padding: 20px; border-radius: 16px; }
  .ptp-hero h1 { font-size: 31px; }
  .ptp-hero p { font-size: 12px; }
  .ptp-hero-rules { grid-template-columns: 1fr; gap: 6px; }
  .ptp-hero-rules > div { display:flex;align-items:center;justify-content:space-between;gap:10px;padding:9px 11px; }
  .ptp-hero-rules small { margin:0;text-align:right; }
  .ptp-control-card, .ptp-results { padding: 15px; border-radius: 15px; }
  .ptp-control-head { align-items: center; flex-direction: row; }
  .ptp-mode-grid,
  .ptp-period-grid,
  .ptp-choice-grid,
  .ptp-platform-grid,
  .ptp-scope-grid,
  .ptp-brand-grid { grid-template-columns: 1fr; }
  .ptp-brand { min-height: 74px; flex-direction:row;align-items:center; }
  .ptp-brand-vehicle,
  .ptp-brand-vehicle .ptp-vehicle-visual,
  .ptp-brand-vehicle .ptp-vehicle-visual.is-compact { flex:0 0 88px;width:88px;height:52px !important;min-height:52px !important;max-height:52px !important; }
  .ptp-model-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ptp-store-grid { grid-template-columns: 1fr 1fr; }
  .ptp-question, .ptp-brand-grid, .ptp-choice-grid, .ptp-platform-grid, .ptp-scope-grid { padding-inline: 0; }
  .ptp-question { padding-top: 15px; }
  .ptp-subsection, .ptp-benchmark, .ptp-block-budget-card, .ptp-front-preview, .ptp-goal-target-card.ptp-goal-target-matrix { margin-inline: 0; }
  .ptp-block-budget-card { grid-template-columns: 1fr; }
  .ptp-block-budget-card > label, .ptp-block-budget-health { grid-column: 1; }
  .ptp-action-bar { position: sticky; bottom: 6px; }
  .ptp-action-copy > strong, #ptp-front-total-note { display:none; }
  #ptp-daily-budget-indicator { margin:0; }
  .ptp-daily-band { margin:0; }
  .ptp-plan-result-grid { grid-template-columns: 1fr; }
  .ptp-plan-result-metrics { grid-template-columns: 1fr 1fr; }
  .ptp-plan-result-projection { grid-column: 1 / -1; }
  .ptp-result-table-row { grid-template-columns: 1fr; }
  .ptp-result-table-projection { grid-column: 1; }
}

.ptp-result-context {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.ptp-result-context span {
  padding: 6px 9px;
  border-radius: 9px;
  background: #f2f6fb;
  color: #536273;
  font-size: 8.5px;
}

.ptp-result-context strong { color: #263442; }
