/* ============================================
   PRODUCT & PRICING PAGES
   DT Network
   ============================================ */

/* Pricing Cards */
.pricing-card { text-align: center; position: relative; }
.pricing-card--featured {
  border-color: var(--dt-border-orange);
  transform: scale(1.03);
}
.pricing-card--featured::after { opacity: 1; }

.pricing-card__price {
  margin: var(--dt-space-6) 0;
  line-height: 1;
}
.pricing-card__old {
  font-size: var(--dt-text-sm);
  color: var(--dt-text-dim);
  text-decoration: line-through;
  display: block;
  margin-bottom: var(--dt-space-1);
}
.pricing-card__currency {
  font-size: var(--dt-text-xl);
  font-weight: var(--dt-font-bold);
  color: var(--dt-text-muted);
  vertical-align: super;
}
.pricing-card__value {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: var(--dt-font-extrabold);
  color: var(--dt-orange);
}
.pricing-card__period {
  font-size: var(--dt-text-sm);
  color: var(--dt-text-dim);
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: var(--dt-space-6) 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: var(--dt-space-2);
}
.pricing-card__features li {
  font-size: var(--dt-text-sm);
  color: var(--dt-text-muted);
  padding: var(--dt-space-1) 0;
}

/* Legal pages */
.legal-content h2,
.legal-content h3 {
  margin-top: var(--dt-space-8);
  margin-bottom: var(--dt-space-3);
}
.legal-content p {
  margin-bottom: var(--dt-space-4);
}
.legal-content ul, .legal-content ol {
  margin: var(--dt-space-4) 0;
  padding-left: var(--dt-space-6);
  list-style: disc;
}
.legal-content li {
  margin-bottom: var(--dt-space-2);
}

/* Entry content (WP editor output) */
.entry-content h2,
.entry-content h3 {
  margin-top: var(--dt-space-8);
  margin-bottom: var(--dt-space-3);
}
.entry-content p { margin-bottom: var(--dt-space-4); }
.entry-content a { color: var(--dt-orange); }
.entry-content img { border-radius: var(--dt-radius-lg); margin: var(--dt-space-6) 0; }

@media (max-width: 768px) {
  .pricing-card--featured { transform: scale(1); }
}

/* ============================================
   HOTSPOT BENEFITS — Vertical Tabs + Mockups
   ============================================ */

/* Main layout: sidebar + panels side by side */
.hb-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  border: 1px solid var(--dt-border);
  border-radius: var(--dt-radius-lg);
  overflow: hidden;
  min-height: 560px;
}

/* Vertical sidebar */
.hb-sidebar {
  display: flex;
  flex-direction: column;
  background: rgba(10,10,30,0.4);
  border-right: 1px solid var(--dt-border);
  overflow-y: auto;
  scrollbar-width: thin;
}
[data-theme="light"] .hb-sidebar {
  background: rgba(0,0,0,0.02);
}

.hb-tab {
  background: none;
  border: none;
  border-left: 3px solid transparent;
  color: var(--dt-text-dim);
  padding: 14px 16px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: left;
  transition: all 0.2s;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--dt-border);
}
.hb-tab:last-child { border-bottom: none; }
.hb-tab:hover {
  color: var(--dt-text-muted);
  background: rgba(255,255,255,0.03);
}
.hb-tab.is-active {
  color: #fff;
  border-left-color: var(--dt-orange);
  background: rgba(237,71,0,0.08);
}
.hb-tab__num {
  color: var(--dt-orange);
  font-weight: 800;
  font-size: 12px;
  min-width: 20px;
}
.hb-tab__label { flex: 1; }
[data-theme="light"] .hb-tab.is-active { color: var(--dt-text); }
[data-theme="light"] .hb-tab:hover { background: rgba(0,0,0,0.03); }

/* Panels container */
.hb-panels { flex: 1; min-width: 0; }

/* Panels */
.hb-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  animation: hbFadeIn 0.25s ease;
}
.hb-panel.is-active { display: grid; }
@keyframes hbFadeIn {
  from { opacity: 0; transform: translateX(8px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Panel content (left) */
.hb-panel__content {
  padding: var(--dt-space-10) var(--dt-space-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--dt-border);
}

/* Inline stat (shown in content area) */
.hb-panel__stat--inline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: var(--dt-space-6);
  background: rgba(17,17,48,0.8);
  border: 1px solid var(--dt-border);
  border-radius: var(--dt-radius);
  padding: 10px 16px;
  align-self: flex-start;
}
[data-theme="light"] .hb-panel__stat--inline { background: #f5f5fa; }
.hb-panel__stat--inline .hb-panel__stat-value {
  font-size: 22px;
  font-weight: 900;
  color: var(--dt-orange);
  line-height: 1;
}
.hb-panel__stat--inline .hb-panel__stat-label {
  font-size: 11px;
  color: var(--dt-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hb-panel__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(237,71,0,0.1);
  border: 1px solid rgba(237,71,0,0.25);
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--dt-orange);
  text-transform: uppercase;
  align-self: flex-start;
  margin-bottom: var(--dt-space-4);
}

.hb-panel__title {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin: 0 0 var(--dt-space-3);
  color: var(--dt-text);
}

.hb-panel__headline {
  font-size: 16px;
  color: var(--dt-text-muted);
  line-height: 1.5;
  font-style: italic;
  margin: 0 0 var(--dt-space-6);
  opacity: 0.8;
}

.hb-panel__desc {
  font-size: 14px;
  color: var(--dt-text-dim);
  line-height: 1.7;
  margin: 0 0 var(--dt-space-8);
}

.hb-panel__benefit {
  background: linear-gradient(135deg, rgba(237,71,0,0.12), rgba(237,71,0,0.04));
  border: 1px solid rgba(237,71,0,0.2);
  border-radius: var(--dt-radius);
  padding: 14px 18px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.hb-panel__benefit svg { flex-shrink: 0; margin-top: 2px; }
.hb-panel__benefit p {
  margin: 0;
  font-size: 13px;
  color: var(--dt-text-muted);
  line-height: 1.5;
}
.hb-panel__benefit strong { color: var(--dt-orange); }

/* Panel mockup (right) */
.hb-panel__mockup {
  background: rgba(10,10,34,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--dt-space-6);
}
[data-theme="light"] .hb-panel__mockup {
  background: rgba(0,0,0,0.03);
}

.hb-panel__glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237,71,0,0.12) 0%, transparent 70%);
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hb-mockup {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 280px;
}

/* ============================================
   MOCKUP COMPONENTS (shared)
   ============================================ */
.hbm-phone {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  color: #222;
}
.hbm-phone__header {
  padding: 14px 16px;
  text-align: center;
}
.hbm-phone__header--flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.hbm-phone__brand {
  background: rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 6px 14px;
  display: inline-block;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}
.hbm-phone__sub {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  margin-top: 8px;
}
.hbm-phone__body { padding: 16px; }
.hbm-phone__footer {
  font-size: 10px;
  color: #aaa;
  text-align: center;
  margin-top: 10px;
}

/* Social buttons */
.hbm-social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f5f5f5;
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #222;
}
.hbm-social-btn__icon {
  background: var(--btn-c);
  color: #fff;
  border-radius: 4px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

/* Portal mockup */
.hbm-portal__header {
  background: #111157;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hbm-portal__logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--dt-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  color: #fff;
}
.hbm-portal__name { color: #fff; font-size: 13px; font-weight: 700; }
.hbm-portal__sub2 { color: rgba(255,255,255,0.5); font-size: 10px; }
.hbm-portal__banner {
  background: var(--dt-orange);
  padding: 10px 16px;
  text-align: center;
}
.hbm-portal__promo { color: #fff; font-size: 12px; font-weight: 700; }
.hbm-portal__promo-sub { color: rgba(255,255,255,0.7); font-size: 10px; }
.hbm-portal__cta {
  background: #111157;
  color: #fff;
  border-radius: 8px;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

/* Dark cards */
.hbm-dark-card {
  background: #0d0d2b;
  border-radius: 12px;
  padding: 16px;
  color: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
[data-theme="light"] .hbm-dark-card {
  background: #f7f7fa;
  color: #222;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.hbm-dark-card__label {
  font-size: 10px;
  color: #7878aa;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}
[data-theme="light"] .hbm-dark-card__label { color: #999; }
.hbm-dark-card__footer {
  font-size: 10px;
  color: #5555aa;
  text-align: center;
  margin-top: 12px;
}

/* Metric rows */
.hbm-metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.hbm-metric-row__label { font-size: 12px; color: #ccc; }
.hbm-metric-row__value { font-size: 14px; font-weight: 800; }
[data-theme="light"] .hbm-metric-row__label { color: #666; }

/* Progress bars */
.hbm-bar {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
}
[data-theme="light"] .hbm-bar { background: #e8e8ee; }
.hbm-bar__fill {
  height: 100%;
  background: #d0d0e0;
  border-radius: 4px;
  transition: width 0.6s ease;
}
.hbm-bar__fill.is-highlight { background: var(--dt-orange); }

/* Automations */
.hbm-auto-label {
  font-size: 11px;
  font-weight: 700;
  color: #999;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.hbm-auto-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}
.hbm-auto-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hbm-auto-row__info { flex: 1; }
.hbm-auto-row__name { font-size: 13px; font-weight: 600; color: #111; }
.hbm-auto-row__delay { font-size: 11px; color: #aaa; }
.hbm-auto-badge {
  font-size: 10px;
  background: #f5f5f5;
  border-radius: 4px;
  padding: 3px 8px;
  color: #555;
  font-weight: 600;
}
.hbm-auto-multi {
  margin-top: 12px;
  background: #fff8f5;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.hbm-auto-multi__title { font-size: 12px; font-weight: 700; color: var(--dt-orange); }
.hbm-auto-multi__sub { font-size: 11px; color: #888; }

/* Campaigns */
.hbm-camp-seg {
  background: #f7f7f7;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 10px;
}
.hbm-camp-seg__label { font-size: 11px; color: #888; margin-bottom: 4px; }
.hbm-camp-seg__value { font-size: 13px; font-weight: 700; color: #111; }
.hbm-camp-seg__count { font-size: 11px; color: var(--dt-orange); font-weight: 700; margin-top: 4px; }
.hbm-camp-channels {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}
.hbm-camp-channels span {
  flex: 1;
  background: #f0f0f0;
  color: #888;
  border-radius: 6px;
  padding: 6px 0;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
}
.hbm-camp-channels span.is-active {
  background: var(--dt-orange);
  color: #fff;
}
.hbm-camp-msg {
  background: #f7f7f7;
  border-radius: 8px;
  padding: 10px;
  font-size: 12px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 12px;
}

/* Dashboard mockup */
.hbm-dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
.hbm-dash-kpi {
  background: #1a1a40;
  border-radius: 8px;
  padding: 10px 12px;
}
[data-theme="light"] .hbm-dash-kpi { background: #fff; border: 1px solid #eee; }
.hbm-dash-kpi__val { font-size: 20px; font-weight: 900; }
.hbm-dash-kpi__label { font-size: 11px; color: #6666aa; }
[data-theme="light"] .hbm-dash-kpi__label { color: #999; }

.hbm-dash-chart {
  background: #1a1a40;
  border-radius: 8px;
  padding: 10px 12px;
}
[data-theme="light"] .hbm-dash-chart { background: #fff; border: 1px solid #eee; }
.hbm-dash-chart__label {
  font-size: 10px;
  color: #6666aa;
  margin-bottom: 10px;
  font-weight: 700;
}
.hbm-dash-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 48px;
}
.hbm-dash-bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  height: 100%;
  justify-content: flex-end;
}
.hbm-dash-bar__fill {
  width: 100%;
  background: #2e2e60;
  border-radius: 3px 3px 0 0;
  transition: height 0.4s ease;
}
[data-theme="light"] .hbm-dash-bar__fill { background: #e0e0ee; }
.hbm-dash-bar__fill.is-highlight { background: var(--dt-orange); }
.hbm-dash-bar__day { font-size: 9px; color: #4444aa; }

/* NPS mockup */
.hbm-nps-q { font-size: 12px; font-weight: 700; color: #333; margin-bottom: 4px; }
.hbm-nps-sub { font-size: 11px; color: #aaa; margin-bottom: 14px; }
.hbm-nps-scale {
  display: flex;
  gap: 3px;
  justify-content: center;
  margin-bottom: 14px;
}
.hbm-nps-num {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  border: 2px solid transparent;
}
.hbm-nps-num.is-red { color: #ef5350; }
.hbm-nps-num.is-yellow { color: #ff9800; }
.hbm-nps-num.is-green { color: #4caf50; }
.hbm-nps-num.is-selected {
  background: #4caf50;
  color: #fff;
  border-color: #4caf50;
}
.hbm-nps-results {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid #f0f0f0;
}
.hbm-nps-group { text-align: center; }
.hbm-nps-group__val { font-size: 16px; font-weight: 900; }
.hbm-nps-group__label { font-size: 10px; color: #aaa; }

/* Poll/enquetes */
.hbm-poll-row { margin-bottom: 10px; }
.hbm-poll-row__head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}
.hbm-poll-row__label { font-size: 12px; color: #444; }
.hbm-poll-row__label.is-top { font-weight: 700; }
.hbm-poll-row__pct { font-size: 12px; font-weight: 700; color: #999; }
.hbm-poll-row__pct.is-top { color: var(--dt-orange); }

/* Voucher */
.hbm-voucher-plan {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-radius: 8px;
  margin-bottom: 8px;
  background: #f7f7f7;
  font-size: 13px;
  font-weight: 600;
  color: #111;
}
.hbm-voucher-plan strong { font-size: 15px; font-weight: 800; }
.hbm-voucher-plan.is-highlight {
  background: var(--dt-orange);
  color: #fff;
}
.hbm-voucher-methods {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.hbm-voucher-methods span {
  flex: 1;
  background: #111157;
  color: #fff;
  border-radius: 8px;
  padding: 8px 0;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}

/* Integrations */
.hbm-integ-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}
.hbm-integ-item {
  background: #1a1a40;
  border-radius: 8px;
  padding: 10px 6px;
  text-align: center;
  font-size: 10px;
  color: #aaa;
  font-weight: 600;
}
[data-theme="light"] .hbm-integ-item { background: #fff; border: 1px solid #eee; color: #555; }
.hbm-integ-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4caf50;
  margin: 0 auto 6px;
  box-shadow: 0 0 6px #4caf50;
  display: block;
}
.hbm-integ-api {
  background: var(--dt-orange);
  border-radius: 8px;
  padding: 10px 0;
  text-align: center;
}
.hbm-integ-api__val { font-size: 18px; font-weight: 900; color: #fff; }
.hbm-integ-api__label { font-size: 10px; color: rgba(255,255,255,0.7); }

/* ============================================
   CHAT CORP MOCKUP COMPONENTS
   ============================================ */

/* Status rows (API oficial mockup) */
.ccm-status-row {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 8px;
}
.ccm-status-row--ok { background: #e8fdf0; }
.ccm-status-row--danger { background: #fff3f0; }
.ccm-status-row__title { font-size: 12px; font-weight: 700; }
.ccm-status-row__sub { font-size: 10px; }
.ccm-status-row svg { flex-shrink: 0; }

/* Queue rows (fila de atendimento) */
.ccm-queue-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid #f5f5f5;
}
.ccm-queue-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.ccm-queue-badge {
  font-size: 10px;
  background: #f0f2f5;
  border-radius: 6px;
  padding: 3px 8px;
  color: #555;
}

/* Chat bubbles (WhatsApp style) */
.ccm-bubble {
  padding: 8px 10px;
  max-width: 85%;
  font-size: 11px;
  color: #111;
  line-height: 1.4;
  margin-bottom: 8px;
}
.ccm-bubble--in {
  background: #fff;
  border-radius: 0 10px 10px 10px;
}
.ccm-bubble--out {
  background: #dcf8c6;
  border-radius: 10px 0 10px 10px;
  margin-left: auto;
}

/* NPS buttons */
.ccm-nps-btn {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #dcf8c6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #555;
  border: 2px solid transparent;
}
.ccm-nps-btn.is-selected {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

/* History rows */
.ccm-hist-row {
  display: flex;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid #f5f5f5;
}
.ccm-hist-bar {
  width: 4px;
  border-radius: 2px;
  flex-shrink: 0;
  min-height: 30px;
}

/* IA suggestion */
.ccm-ia-suggestion {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 8px;
  border: 1px solid #e0e0e0;
}
.ccm-ia-suggestion__label {
  font-size: 9px;
  color: #888;
  font-weight: 700;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.ccm-ia-summary {
  background: #e8f5e9;
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 10px;
  color: #2e7d32;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* White label rows */
.ccm-wl-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f5f5f5;
}
.ccm-wl-row span:last-child {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet: sidebar narrower */
@media (max-width: 1024px) {
  .hb-layout { grid-template-columns: 180px 1fr; }
  .hb-tab { padding: 12px 12px; font-size: 10px; }
}

/* Mobile: switch to horizontal tabs */
@media (max-width: 768px) {
  .hb-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hb-sidebar {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    border-right: none;
    border-bottom: 1px solid var(--dt-border);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .hb-sidebar::-webkit-scrollbar { display: none; }
  .hb-tab {
    border-left: none;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    padding: 12px 14px;
    font-size: 10px;
    flex-shrink: 0;
  }
  .hb-tab:last-child { border-right: none; }
  .hb-tab.is-active {
    border-left-color: transparent;
    border-bottom-color: var(--dt-orange);
  }
  .hb-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hb-panel__content {
    padding: var(--dt-space-6) var(--dt-space-4);
    border-right: none;
    border-bottom: 1px solid var(--dt-border);
  }
  .hb-panel__mockup {
    padding: var(--dt-space-6) var(--dt-space-4);
    min-height: 320px;
  }
  .hb-mockup { max-width: 260px; }
  .hb-panel__stat--inline {
    align-self: stretch;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hb-tab__label { font-size: 9px; }
  .hb-tab__num { display: none; }
  .hb-panel__title { font-size: 1.25rem; }
  .hb-mockup { max-width: 240px; }
  .ccm-wl-row { flex-direction: column; align-items: flex-start; gap: 2px; }
  .ccm-queue-row { padding: 8px 10px; gap: 8px; }
}

/* ============================================
   ISP BENEFITS — Mockup Components
   ============================================ */

/* Tax comparison */
.isp-tax {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  margin: 16px 0 12px;
}
.isp-tax__col { text-align: center; flex: 1; }
.isp-tax__label {
  font-size: 10px;
  font-weight: 700;
  color: #7878aa;
  margin-bottom: 8px;
}
[data-theme="light"] .isp-tax__label { color: #888; }
.isp-tax__bar {
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.isp-tax__segment {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px;
}
.isp-tax__segment span { font-size: 8px; color: rgba(255,255,255,0.8); }
.isp-tax__segment strong { font-size: 11px; color: #fff; }
.isp-tax__segment--icms { background: #ef5350; }
.isp-tax__segment--pis { background: #ff9800; }
.isp-tax__segment--base { background: #555; }
.isp-tax__segment--lucro { background: #00d47e; }
.isp-tax__arrow {
  font-size: 20px;
  color: var(--dt-orange);
  font-weight: 900;
  align-self: center;
}
.isp-tax__savings {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(0,212,126,0.1);
  border: 1px solid rgba(0,212,126,0.2);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #00d47e;
}

/* Revenue chart */
.isp-chart__bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 100px;
  margin-bottom: 10px;
}
.isp-chart__bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  height: 100%;
  justify-content: flex-end;
}
.isp-chart__val {
  font-size: 8px;
  color: #7878aa;
  font-weight: 700;
}
.isp-chart__fill {
  width: 100%;
  background: #2e2e60;
  border-radius: 3px 3px 0 0;
  transition: height 0.4s ease;
}
[data-theme="light"] .isp-chart__fill { background: #e0e0ee; }
.isp-chart__fill--hl { background: var(--dt-orange); }
.isp-chart__month {
  font-size: 9px;
  color: #5555aa;
}
.isp-chart__legend {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  font-size: 10px;
  color: #7878aa;
}
.isp-chart__dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  display: inline-block;
}
.isp-chart__dot--base { background: #2e2e60; }
.isp-chart__dot--hl { background: var(--dt-orange); margin-left: 8px; }

/* Churn gauge */
.isp-churn { text-align: center; }
.isp-churn__gauge {
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
}
.isp-churn__score {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.isp-churn__value {
  font-size: 28px;
  font-weight: 900;
  color: #00d47e;
  display: block;
  line-height: 1;
}
.isp-churn__label {
  font-size: 9px;
  color: #7878aa;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.isp-churn__metrics {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 10px;
  margin-top: 6px;
}
[data-theme="light"] .isp-churn__metrics { border-top-color: #eee; }
.isp-churn__row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 12px;
  color: #aaa;
}
[data-theme="light"] .isp-churn__row { color: #666; }
.isp-churn__row--hl {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 4px;
  padding-top: 8px;
}

/* White label body */
.isp-wl-body { padding: 14px 16px; background: #fff; }
.isp-wl-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
}
.isp-wl-item:last-child { border-bottom: none; }
.isp-wl-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e8f5e9;
  color: #4caf50;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
}

/* Multi-company panel */
.isp-multi__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
[data-theme="light"] .isp-multi__header { border-bottom-color: #eee; }
.isp-multi__row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
[data-theme="light"] .isp-multi__row { border-bottom-color: #f0f0f0; }
.isp-multi__row:last-child { border-bottom: none; }
.isp-multi__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.isp-multi__info { flex: 1; }
.isp-multi__name {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}
[data-theme="light"] .isp-multi__name { color: #222; }
.isp-multi__stats {
  font-size: 10px;
  color: #7878aa;
}
[data-theme="light"] .isp-multi__stats { color: #999; }
.isp-multi__badge {
  font-size: 9px;
  background: rgba(76,175,80,0.15);
  color: #4caf50;
  border-radius: 4px;
  padding: 2px 8px;
  font-weight: 700;
}

/* Comparison table */
.isp-compare__header {
  display: grid;
  grid-template-columns: 1fr 60px 60px;
  gap: 4px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 4px;
}
[data-theme="light"] .isp-compare__header { border-bottom-color: #eee; }
.isp-compare__h {
  font-size: 9px;
  font-weight: 700;
  color: #7878aa;
  text-align: center;
  text-transform: uppercase;
}
.isp-compare__h--hl { color: var(--dt-orange); }
.isp-compare__row {
  display: grid;
  grid-template-columns: 1fr 60px 60px;
  gap: 4px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
[data-theme="light"] .isp-compare__row { border-bottom-color: #f5f5f5; }
.isp-compare__feature {
  font-size: 11px;
  color: #ccc;
}
[data-theme="light"] .isp-compare__feature { color: #555; }
.isp-compare__cell {
  text-align: center;
  font-size: 14px;
}

/* Infra cloud */
.isp-infra { text-align: center; }
.isp-infra__cloud {
  margin-bottom: 14px;
  opacity: 0.8;
}
.isp-infra__stats {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.isp-infra__stat {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 8px 4px;
  text-align: center;
}
[data-theme="light"] .isp-infra__stat { background: #f5f5fa; }
.isp-infra__val {
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}
.isp-infra__lbl {
  font-size: 9px;
  color: #7878aa;
}
.isp-infra__features {
  text-align: left;
}
.isp-infra__feat {
  font-size: 11px;
  color: #ccc;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
[data-theme="light"] .isp-infra__feat { color: #555; }

/* ============================================
   ISP REVENUE — Grid + Card Illustrations
   ============================================ */

.isp-rev-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--dt-space-6);
}

.isp-rev-card {
  background: var(--dt-bg-card);
  border: 1px solid var(--dt-border);
  border-radius: var(--dt-radius-lg);
  overflow: hidden;
  transition: border-color var(--dt-transition), box-shadow var(--dt-transition);
}
.isp-rev-card:hover {
  border-color: var(--dt-border-orange);
  box-shadow: var(--dt-shadow-card-hover);
}

.isp-rev-card__illust {
  background: rgba(10,10,34,0.5);
  padding: var(--dt-space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  position: relative;
  overflow: hidden;
}
[data-theme="light"] .isp-rev-card__illust { background: rgba(0,0,0,0.03); }

.isp-rev-card__illust::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,92,26,0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.isp-rev-ill { position: relative; z-index: 1; width: 100%; max-width: 220px; }

.isp-rev-card__num {
  font-size: 11px;
  font-weight: 800;
  color: var(--dt-orange);
  padding: var(--dt-space-4) var(--dt-space-5) 0;
  letter-spacing: 1px;
}

.isp-rev-card__title {
  font-size: var(--dt-text-lg);
  font-weight: var(--dt-font-bold);
  color: var(--dt-text);
  padding: var(--dt-space-2) var(--dt-space-5) 0;
  margin: 0;
}

.isp-rev-card__desc {
  font-size: var(--dt-text-sm);
  color: var(--dt-text-dim);
  line-height: var(--dt-leading-normal);
  padding: var(--dt-space-2) var(--dt-space-5);
  margin: 0;
}

.isp-rev-card__tag {
  display: inline-flex;
  margin: 0 var(--dt-space-5) var(--dt-space-5);
  font-size: 10px;
  font-weight: 700;
  color: var(--dt-orange);
  background: rgba(255,92,26,0.1);
  border: 1px solid rgba(255,92,26,0.2);
  border-radius: 4px;
  padding: 3px 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Revenue Illustrations */

/* Funnel (leads) */
.isp-rev-funnel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.isp-rev-funnel__top {
  background: rgba(79,182,255,0.15);
  border: 1px solid rgba(79,182,255,0.3);
  border-radius: 8px;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4fb6ff;
  font-size: 11px;
  font-weight: 700;
}
.isp-rev-funnel__mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 10px;
  color: #7878aa;
}
.isp-rev-funnel__arrow {
  font-size: 16px;
  color: var(--dt-orange);
  animation: ispPulseDown 1.5s ease infinite;
}
@keyframes ispPulseDown {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(4px); opacity: 0.5; }
}
.isp-rev-funnel__bottom {
  background: rgba(255,92,26,0.1);
  border: 1px solid rgba(255,92,26,0.25);
  border-radius: 8px;
  padding: 8px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* MRR chart (rent) */
.isp-rev-mrr { text-align: center; }
.isp-rev-mrr__label {
  font-size: 9px;
  font-weight: 700;
  color: #7878aa;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.isp-rev-mrr__bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
  margin-bottom: 8px;
}
.isp-rev-mrr__bar {
  flex: 1;
  background: #2e2e60;
  border-radius: 3px 3px 0 0;
  transition: height 0.4s ease;
}
[data-theme="light"] .isp-rev-mrr__bar { background: #e0e0ee; }
.isp-rev-mrr__bar--hl { background: var(--dt-orange); }
.isp-rev-mrr__value {
  font-size: 16px;
  font-weight: 900;
  color: var(--dt-orange);
}
.isp-rev-mrr__value span {
  font-size: 10px;
  color: #7878aa;
  font-weight: 400;
}

/* Ad mockup */
.isp-rev-ad { text-align: center; }
.isp-rev-ad__phone {
  background: #1a1a40;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
[data-theme="light"] .isp-rev-ad__phone { background: #fff; border: 1px solid #eee; }
.isp-rev-ad__header {
  background: var(--dt-navy);
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}
.isp-rev-ad__banner {
  background: linear-gradient(135deg, #ff5c1a, #ff2d6f);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.isp-rev-ad__badge {
  background: rgba(0,0,0,0.3);
  color: #fff;
  font-size: 8px;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 3px;
}
.isp-rev-ad__revenue {
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Voucher plans (revenue) */
.isp-rev-voucher { text-align: center; }
.isp-rev-voucher__plan {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  padding: 8px 14px;
  margin-bottom: 4px;
  font-size: 12px;
  color: #ccc;
}
[data-theme="light"] .isp-rev-voucher__plan { background: #f5f5fa; color: #444; }
.isp-rev-voucher__plan strong {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}
[data-theme="light"] .isp-rev-voucher__plan strong { color: #222; }
.isp-rev-voucher__plan--hl {
  background: var(--dt-orange);
  color: #fff;
}
.isp-rev-voucher__plan--hl strong { color: #fff; }
.isp-rev-voucher__methods {
  display: flex;
  gap: 4px;
  margin-top: 8px;
}
.isp-rev-voucher__method {
  flex: 1;
  color: #fff;
  border-radius: 6px;
  padding: 6px 0;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
}

/* SVA tax savings */
.isp-rev-sva__row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.isp-rev-sva__label {
  font-size: 10px;
  color: #aaa;
  min-width: 65px;
}
.isp-rev-sva__bar {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}
[data-theme="light"] .isp-rev-sva__bar { background: #eee; }
.isp-rev-sva__fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.6s ease;
}
.isp-rev-sva__pct {
  font-size: 12px;
  font-weight: 800;
  min-width: 40px;
  text-align: right;
}
.isp-rev-sva__savings {
  text-align: center;
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Loyalty ring */
.isp-rev-loyalty { text-align: center; }
.isp-rev-loyalty__ring {
  position: relative;
  display: inline-block;
}
.isp-rev-loyalty__pct {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  font-weight: 900;
  color: var(--dt-orange);
}
.isp-rev-loyalty__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
}

/* ARPU plans */
.isp-rev-arpu__plans {
  display: flex;
  align-items: center;
  gap: 6px;
}
.isp-rev-arpu__plan {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
}
[data-theme="light"] .isp-rev-arpu__plan { background: #f5f5fa; }
.isp-rev-arpu__plan--hl {
  background: var(--dt-orange);
  box-shadow: 0 4px 16px rgba(255,92,26,0.3);
}
.isp-rev-arpu__arrow {
  font-size: 16px;
  color: var(--dt-orange);
  font-weight: 900;
}

/* Acquisition funnel */
.isp-rev-acq {
  display: flex;
  align-items: center;
  gap: 4px;
}
.isp-rev-acq__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: #aaa;
  font-weight: 700;
}
.isp-rev-acq__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.isp-rev-acq__line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--dt-border), var(--dt-orange));
  min-width: 20px;
  margin-bottom: 16px;
}

/* Map pins (mobility) */
.isp-rev-map__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.isp-rev-map__pin {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: #aaa;
  font-weight: 600;
}
.isp-rev-map__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--dt-orange);
  box-shadow: 0 0 12px rgba(255,92,26,0.4);
  animation: ispMapPulse 2s ease infinite;
}
.isp-rev-map__dot--green {
  background: #00d47e;
  box-shadow: 0 0 12px rgba(0,212,126,0.4);
}
.isp-rev-map__dot--blue {
  background: #4fb6ff;
  box-shadow: 0 0 12px rgba(79,182,255,0.4);
}
.isp-rev-map__pin--1 .isp-rev-map__dot { animation-delay: 0s; }
.isp-rev-map__pin--2 .isp-rev-map__dot { animation-delay: 0.5s; }
.isp-rev-map__pin--3 .isp-rev-map__dot { animation-delay: 1s; }
.isp-rev-map__pin--4 .isp-rev-map__dot { animation-delay: 1.5s; }
@keyframes ispMapPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

/* Event venue */
.isp-rev-event { text-align: center; }
.isp-rev-event__venue {
  display: inline-block;
  margin-bottom: 8px;
}
.isp-rev-event__roof {
  width: 100px;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 20px solid var(--dt-navy-light);
  margin: 0 auto;
}
.isp-rev-event__body {
  background: var(--dt-navy-light);
  width: 100px;
  padding: 8px 0 6px;
  border-radius: 0 0 4px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.isp-rev-event__wifi {
  animation: ispWifiBlink 2s ease infinite;
}
@keyframes ispWifiBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.isp-rev-event__people {
  display: flex;
  gap: 4px;
  font-size: 8px;
  color: rgba(255,255,255,0.5);
}
.isp-rev-event__info {
  margin-top: 4px;
}

/* ============================================
   ISP REVENUE — Responsive
   ============================================ */

@media (max-width: 768px) {
  .isp-rev-grid {
    grid-template-columns: 1fr;
  }
  .isp-rev-card__illust {
    min-height: 140px;
  }
}

@media (max-width: 480px) {
  .isp-rev-acq {
    gap: 2px;
  }
  .isp-rev-acq__icon {
    width: 32px;
    height: 32px;
  }
  .isp-rev-arpu__plans {
    flex-direction: column;
  }
  .isp-rev-arpu__arrow {
    transform: rotate(90deg);
  }
}

/* ============================================
   REVENDEDOR BENEFITS — Mockup Components
   ============================================ */

/* White label rows */
.rbm-wl-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 12px;
}
.rbm-wl-row:last-child { border-bottom: none; }
.rbm-wl-row__label { color: #888; font-weight: 600; }
.rbm-wl-row__val { color: #111; font-weight: 700; font-size: 11px; }

/* Margin calculator */
.rbm-margin-calc { margin-bottom: 12px; }
.rbm-margin-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}
.rbm-margin-label { font-size: 12px; color: #ccc; }
[data-theme="light"] .rbm-margin-label { color: #666; }
.rbm-margin-val { font-size: 14px; font-weight: 800; }
.rbm-margin-val--big { font-size: 20px; font-weight: 900; }
.rbm-margin-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 4px 0;
}
[data-theme="light"] .rbm-margin-divider { background: #eee; }
.rbm-margin-pct {
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--dt-orange);
  background: rgba(237,71,0,0.1);
  border-radius: 6px;
  padding: 6px 0;
  margin-top: 8px;
}

/* MRR total */
.rbm-mrr-total {
  text-align: center;
  margin-top: 10px;
}
.rbm-mrr-total__val {
  font-size: 24px;
  font-weight: 900;
  color: var(--dt-orange);
}
.rbm-mrr-total__label {
  font-size: 12px;
  color: #7878aa;
}
[data-theme="light"] .rbm-mrr-total__label { color: #999; }

/* Product cards */
.rbm-product-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f7f7f7;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 8px;
}
.rbm-product-card__icon { flex-shrink: 0; }
.rbm-product-card__info { flex: 1; }
.rbm-product-card__name { font-size: 13px; font-weight: 700; color: #111; }
.rbm-product-card__desc { font-size: 11px; color: #888; }
.rbm-product-card__badge {
  font-size: 9px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
}
.rbm-portfolio-tip {
  background: #fff8f5;
  border-radius: 8px;
  padding: 10px;
  font-size: 11px;
  color: var(--dt-orange);
  font-weight: 600;
  text-align: center;
  margin-top: 4px;
}

/* Client rows (painel revenda) */
.rbm-client-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
[data-theme="light"] .rbm-client-row { border-bottom-color: #f0f0f0; }
.rbm-client-row:last-child { border-bottom: none; }
.rbm-client-row__name { font-size: 12px; font-weight: 700; color: #fff; }
[data-theme="light"] .rbm-client-row__name { color: #222; }
.rbm-client-row__prod { font-size: 10px; color: #7878aa; }
[data-theme="light"] .rbm-client-row__prod { color: #999; }
.rbm-client-row__status { font-size: 10px; font-weight: 800; }

/* Training steps */
.rbm-step-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}
.rbm-step-row:last-child { border-bottom: none; }
.rbm-step-row__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #888;
  flex-shrink: 0;
}
.rbm-step-row__num.is-done {
  background: #e8f5e9;
  color: #4caf50;
}
.rbm-step-row__info { flex: 1; }
.rbm-step-row__label { font-size: 13px; font-weight: 600; color: #111; }
.rbm-step-row__time { font-size: 11px; color: #aaa; }
.rbm-cert-badge {
  background: linear-gradient(135deg, var(--dt-orange), #ff6b35);
  color: #fff;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-top: 12px;
}

/* Materials grid */
.rbm-materials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  margin-bottom: 12px;
}
.rbm-material-item {
  background: #1a1a40;
  border-radius: 8px;
  padding: 10px 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
[data-theme="light"] .rbm-material-item { background: #fff; border: 1px solid #eee; }
.rbm-material-item__name {
  font-size: 10px;
  color: #aaa;
  font-weight: 600;
}
[data-theme="light"] .rbm-material-item__name { color: #666; }
.rbm-material-item__count {
  font-size: 14px;
  font-weight: 900;
  color: var(--dt-orange);
}

/* Support time badge */
.rbm-support-time {
  text-align: center;
  margin-top: 8px;
}
.rbm-support-time__badge {
  display: inline-block;
  background: #e8f5e9;
  color: #4caf50;
  font-size: 10px;
  font-weight: 700;
  border-radius: 12px;
  padding: 4px 12px;
}

/* Compare columns (zero investimento) */
.rbm-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}
.rbm-compare__col {
  border-radius: 8px;
  padding: 10px;
}
.rbm-compare__col--bad {
  background: rgba(239,83,80,0.08);
  border: 1px solid rgba(239,83,80,0.2);
}
.rbm-compare__col--good {
  background: rgba(76,175,80,0.08);
  border: 1px solid rgba(76,175,80,0.2);
}
.rbm-compare__title {
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.rbm-compare__col--bad .rbm-compare__title { color: #ef5350; }
.rbm-compare__col--good .rbm-compare__title { color: #4caf50; }
.rbm-compare__item {
  font-size: 11px;
  color: #ccc;
  padding: 4px 0;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
[data-theme="light"] .rbm-compare__item { color: #555; border-bottom-color: #eee; }
.rbm-compare__item:last-child { border-bottom: none; }
.rbm-compare__col--bad .rbm-compare__item { text-decoration: line-through; opacity: 0.7; }
.rbm-compare__col--good .rbm-compare__item { font-weight: 700; color: #4caf50; }

/* Scale timeline */
.rbm-scale-timeline { margin-bottom: 12px; }
.rbm-scale-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  border-radius: 6px;
}
[data-theme="light"] .rbm-scale-row { border-bottom-color: #f0f0f0; }
.rbm-scale-row.is-highlight {
  background: rgba(237,71,0,0.1);
  border: 1px solid rgba(237,71,0,0.25);
}
.rbm-scale-row__month {
  font-size: 11px;
  font-weight: 700;
  color: #7878aa;
  min-width: 50px;
}
[data-theme="light"] .rbm-scale-row__month { color: #888; }
.rbm-scale-row__data {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: #ccc;
}
[data-theme="light"] .rbm-scale-row__data { color: #555; }

/* Commission summary */
.rbm-commission-summary {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.rbm-commission-kpi {
  flex: 1;
  background: #1a1a40;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}
[data-theme="light"] .rbm-commission-kpi { background: #fff; border: 1px solid #eee; }
.rbm-commission-kpi__val { font-size: 18px; font-weight: 900; }
.rbm-commission-kpi__label { font-size: 10px; color: #7878aa; }
[data-theme="light"] .rbm-commission-kpi__label { color: #999; }

/* ===========================================
   SEGMENT GRID — Product pages (Hotspot + Chat Corp)
   Cards clicáveis por nicho de negócio
   =========================================== */
.seg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
  gap: var(--dt-space-3);
  margin-top: var(--dt-space-8);
}
@media (min-width: 480px) {
  .seg-grid { grid-template-columns: repeat(auto-fill, minmax(128px, 1fr)); }
}
@media (min-width: 1024px) {
  .seg-grid { grid-template-columns: repeat(auto-fill, minmax(115px, 1fr)); }
}
.seg-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--dt-space-2);
  padding: var(--dt-space-5) var(--dt-space-3);
  background: var(--dt-bg-card);
  border: 1px solid var(--dt-border);
  border-radius: var(--dt-radius-lg);
  text-decoration: none;
  color: var(--dt-text);
  transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
}
.seg-card:hover {
  border-color: var(--dt-orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(237,71,0,0.13);
}
.seg-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(237,71,0,0.07);
  border-radius: var(--dt-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dt-orange);
  flex-shrink: 0;
  transition: background 0.18s;
}
.seg-card:hover .seg-card__icon { background: rgba(237,71,0,0.14); }
.seg-card__label {
  font-size: 11.5px;
  font-weight: var(--dt-font-semibold);
  text-align: center;
  line-height: 1.3;
  color: var(--dt-text);
}
[data-theme="light"] .seg-card { background: #fff; }
[data-theme="light"] .seg-card__icon { background: rgba(237,71,0,0.06); }
[data-theme="light"] .seg-card:hover .seg-card__icon { background: rgba(237,71,0,0.11); }

/* =============================================
   CASE VIDEO GRID — 2 colunas lado a lado
   Usado em páginas de nicho (product.css)
   ============================================= */
.case-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--dt-space-8);
  max-width: 800px;
  margin: 0 auto;
}
.case-video-card {
  border-radius: var(--dt-radius-xl);
  overflow: hidden;
  background: var(--dt-bg-card);
  border: 1px solid var(--dt-border);
  transition: transform .2s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
}
.case-video-card:hover {
  transform: translateY(-4px);
  border-color: var(--dt-orange);
}
.case-video-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #0b1120;
  display: block;
  flex-shrink: 0;
}
.case-video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
  display: block;
}
.case-video-card:hover .case-video-card__thumb img { transform: scale(1.04); }
.case-video-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.25);
}
.case-video-card__play svg {
  width: 44px;
  height: 44px;
  fill: #fff;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.5));
  transition: transform .2s ease;
}
.case-video-card:hover .case-video-card__play svg { transform: scale(1.1); }
.case-video-card__meta {
  padding: var(--dt-space-4) var(--dt-space-5);
}
.case-video-card__company {
  font-weight: var(--dt-font-bold);
  font-size: var(--dt-text-base);
  color: var(--dt-text);
  margin-bottom: 2px;
}
.case-video-card__role {
  font-size: var(--dt-text-sm);
  color: var(--dt-text-muted);
}
@media (max-width: 640px) {
  .case-video-grid { grid-template-columns: 1fr; }
}
/* Thumbnail (usado pelas sections/videos-*.php) */
.case-video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #0b1120;
  flex-shrink: 0;
}
.case-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}
.case-video-card:hover .case-video-thumb img { transform: scale(1.04); }
.case-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.case-video-play svg {
  width: 56px;
  height: 56px;
  background: rgba(237,71,0,0.9);
  border-radius: 50%;
  padding: 15px 15px 15px 18px;
  fill: white;
  transition: transform .2s ease, background .2s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.case-video-card:hover .case-video-play svg {
  transform: scale(1.1);
  background: var(--dt-orange);
}
.case-video-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* Info abaixo do video */
.case-video-info {
  padding: var(--dt-space-5) var(--dt-space-6);
  display: flex;
  flex-direction: column;
  gap: var(--dt-space-4);
}
.case-video-header {
  display: flex;
  align-items: flex-start;
  gap: var(--dt-space-3);
  justify-content: space-between;
}
.case-video-name {
  font-weight: var(--dt-font-bold);
  font-size: var(--dt-text-base);
  color: var(--dt-text);
}
.case-video-role {
  font-size: var(--dt-text-sm);
  color: var(--dt-text-muted);
}
.case-video-segment {
  font-size: var(--dt-text-xs);
  color: var(--dt-text-muted);
  opacity: .7;
}
.case-video-quote {
  font-size: var(--dt-text-sm);
  color: var(--dt-text-muted);
  line-height: 1.6;
  background: rgba(255,255,255,.04);
  border-radius: var(--dt-radius-lg);
  padding: var(--dt-space-4);
  border: 1px solid rgba(255,255,255,.06);
  position: relative;
}
.case-video-quote__icon {
  color: var(--dt-orange);
  opacity: .5;
  margin-right: 4px;
  vertical-align: text-top;
  flex-shrink: 0;
}

[data-theme="light"] .case-video-card {
  background: #fff;
  border-color: #e2e8f0;
}
[data-theme="light"] .case-video-card:hover { border-color: var(--dt-orange); }
[data-theme="light"] .case-video-quote {
  background: #f8fafc;
  border-color: #e2e8f0;
}

