/* Hero dashboard — janela de app Kairos (mock HTML/CSS) */

.landing-hero-dashboard {
  --lhd-design-px: 544; /* 34rem */
  position: relative;
  width: 100%;
  max-width: 34rem;
  margin-inline: auto;
  perspective: 1200px;
}

/* Wrapper de escala (mobile): o stage mantém largura de design e faz scale */
.landing-hero-dashboard__fit-clip {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start; /* NÃO stretch — senão a altura do clip esmaga o mock */
}

.landing-hero-dashboard__stage {
  position: relative;
  width: 100%;
  flex-shrink: 0;
  align-self: flex-start;
  height: auto;
}

.landing-hero-dashboard__glow {
  position: absolute;
  inset: 8% 4% -8%;
  background: radial-gradient(
    ellipse at 50% 55%,
    rgba(249, 115, 22, 0.28),
    transparent 68%
  );
  filter: blur(36px);
  pointer-events: none;
  z-index: 0;
}

.landing-hero-dashboard__floor {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -1.25rem;
  height: 2.5rem;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(0, 0, 0, 0.55),
    transparent 72%
  );
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.landing-hero-dashboard__window {
  position: relative;
  z-index: 1;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(165deg, rgba(28, 31, 46, 0.96) 0%, rgba(11, 12, 21, 0.98) 100%);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35) inset,
    0 32px 64px -24px rgba(0, 0, 0, 0.85),
    0 0 48px -16px rgba(249, 115, 22, 0.2);
  overflow: hidden;
  transform: rotateY(-7deg) rotateX(4deg);
  transform-origin: center center;
  animation: lhd-float 7s ease-in-out infinite;
}

.landing-hero-dashboard__glass {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 38%,
    transparent 62%,
    rgba(255, 255, 255, 0.03) 100%
  );
  pointer-events: none;
  z-index: 4;
}

.landing-hero-dashboard__chrome {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 9, 16, 0.92);
}

.landing-hero-dashboard__dots {
  display: flex;
  gap: 0.35rem;
}

.landing-hero-dashboard__dots span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(100, 116, 139, 0.55);
}

.landing-hero-dashboard__dots span:nth-child(1) {
  background: rgba(248, 113, 113, 0.75);
}

.landing-hero-dashboard__dots span:nth-child(2) {
  background: rgba(250, 204, 21, 0.75);
}

.landing-hero-dashboard__dots span:nth-child(3) {
  background: rgba(74, 222, 128, 0.75);
}

.landing-hero-dashboard__url {
  flex: 1;
  min-width: 0;
  padding: 0.28rem 0.55rem;
  border-radius: 0.4rem;
  font-size: 0.62rem;
  color: rgba(148, 163, 184, 0.95);
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.06);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.landing-hero-dashboard__screen {
  position: relative;
  padding: 0.75rem;
  min-height: 15.5rem;
  background:
    radial-gradient(circle at 85% 12%, rgba(249, 115, 22, 0.07), transparent 42%),
    linear-gradient(180deg, #0d0f18 0%, #0a0b12 100%);
}

.landing-hero-dashboard__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.landing-hero-dashboard__toolbar-title {
  font-size: 0.72rem;
  font-weight: 600;
  color: #f1f5f9;
  letter-spacing: 0.02em;
}

.landing-hero-dashboard__pill {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fdba74;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.14);
  border: 1px solid rgba(249, 115, 22, 0.28);
}

.landing-hero-dashboard__pill--live {
  color: #86efac;
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.28);
  animation: lhd-pulse 2.4s ease-in-out infinite;
}

/* Kanban mock */
.lhd-kanban {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  min-height: 12.5rem;
}

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

.lhd-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-radius: 0.55rem;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.lhd-col__head {
  padding: 0.38rem 0.45rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(15, 23, 42, 0.85);
}

.lhd-col__head::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-bottom: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.85), transparent);
}

.lhd-col__title {
  font-size: 0.58rem;
  font-weight: 600;
  color: #e2e8f0;
  line-height: 1.2;
}

.lhd-col__count {
  font-size: 0.52rem;
  color: #64748b;
  margin-top: 0.12rem;
}

.lhd-col__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.38rem;
  flex: 1;
}

.lhd-card {
  padding: 0.38rem 0.42rem;
  border-radius: 0.45rem;
  background: rgba(30, 41, 59, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 6px 16px -10px rgba(0, 0, 0, 0.65);
}

.lhd-card__name {
  font-size: 0.58rem;
  font-weight: 600;
  color: #f8fafc;
  line-height: 1.25;
}

.lhd-card__meta {
  margin-top: 0.2rem;
  font-size: 0.5rem;
  color: #94a3b8;
  line-height: 1.3;
}

.lhd-card__tag {
  display: inline-block;
  margin-top: 0.28rem;
  font-size: 0.48rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fdba74;
  padding: 0.12rem 0.3rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.22);
}

.lhd-card--accent {
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.08) inset;
}

.lhd-card--move {
  animation: lhd-card-move 8s ease-in-out infinite;
}

.lhd-card--new {
  animation: lhd-card-pop 8s ease-in-out infinite;
}

/* Agenda mock */
.lhd-agenda {
  display: grid;
  grid-template-columns: 2.4rem repeat(5, minmax(0, 1fr));
  gap: 0.28rem;
  min-height: 12.5rem;
}

.lhd-agenda__corner,
.lhd-agenda__day {
  font-size: 0.52rem;
  font-weight: 600;
  text-align: center;
  color: #94a3b8;
  padding: 0.28rem 0.15rem;
  border-radius: 0.35rem;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.lhd-agenda__day--today {
  color: #fdba74;
  border-color: rgba(249, 115, 22, 0.35);
  background: rgba(249, 115, 22, 0.1);
}

.lhd-agenda__time {
  font-size: 0.48rem;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 0.2rem;
}

.lhd-agenda__slot {
  position: relative;
  min-height: 1.55rem;
  border-radius: 0.35rem;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.lhd-agenda__event {
  position: absolute;
  inset: 0.12rem;
  border-radius: 0.3rem;
  padding: 0.15rem 0.22rem;
  font-size: 0.46rem;
  line-height: 1.2;
  font-weight: 600;
  color: #fff7ed;
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.92), rgba(249, 115, 22, 0.85));
  border: 1px solid rgba(251, 146, 60, 0.35);
  box-shadow: 0 4px 12px -6px rgba(249, 115, 22, 0.55);
  overflow: hidden;
}

.lhd-agenda__event--violet {
  color: #ede9fe;
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.88), rgba(139, 92, 246, 0.82));
  border-color: rgba(167, 139, 250, 0.35);
  box-shadow: 0 4px 12px -6px rgba(139, 92, 246, 0.45);
}

.lhd-agenda__event--teal {
  color: #ccfbf1;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.9), rgba(20, 184, 166, 0.82));
  border-color: rgba(45, 212, 191, 0.35);
  box-shadow: 0 4px 12px -6px rgba(20, 184, 166, 0.45);
}

.lhd-agenda__event--blink {
  animation: lhd-slot-blink 6s ease-in-out infinite;
}

/* ── Restaurante hero: Kanban premium (fiel ao CRM) ── */
.landing-hero-dashboard--restaurante {
  --lhd-design-px: 608; /* 38rem */
  max-width: 38rem;
}

.landing-hero-dashboard--restaurante .landing-hero-dashboard__window {
  border-radius: 1.15rem;
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(165deg, rgba(32, 36, 52, 0.98) 0%, rgba(10, 11, 18, 0.99) 100%);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.4) inset,
    0 40px 80px -28px rgba(0, 0, 0, 0.9),
    0 0 64px -20px rgba(249, 115, 22, 0.22);
}

.landing-hero-dashboard--restaurante .landing-hero-dashboard__chrome {
  padding: 0.6rem 0.9rem;
  background: rgba(6, 7, 12, 0.94);
  backdrop-filter: blur(12px);
}

.landing-hero-dashboard--restaurante .landing-hero-dashboard__url {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.58rem;
  letter-spacing: 0.01em;
  color: rgba(163, 174, 191, 0.95);
  background: rgba(12, 14, 22, 0.9);
  border-radius: 0.5rem;
  padding: 0.32rem 0.65rem;
}

.landing-hero-dashboard--restaurante .landing-hero-dashboard__screen {
  padding: 0.7rem 0.75rem 0.8rem;
  min-height: 19rem;
  background:
    radial-gradient(ellipse at 88% 0%, rgba(249, 115, 22, 0.09), transparent 46%),
    radial-gradient(ellipse at 12% 100%, rgba(34, 197, 94, 0.05), transparent 40%),
    linear-gradient(180deg, #11131c 0%, #0a0b12 100%);
}

.landing-hero-dashboard--restaurante .landing-hero-dashboard__toolbar {
  margin-bottom: 0.55rem;
}

.landing-hero-dashboard--restaurante .landing-hero-dashboard__toolbar-title {
  font-size: 0.78rem;
  letter-spacing: -0.01em;
}

.lhd-rest {
  min-height: 21.4rem;
}

.lhd-rest__board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  min-height: 21.4rem;
  align-items: stretch;
}

.lhd-rest__col {
  --col-accent: #f97316;
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-radius: 0.85rem;
  background: rgba(12, 14, 22, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 10px 24px -16px rgba(0, 0, 0, 0.75);
  overflow: hidden;
}

.lhd-rest__col[data-tone="novo"] { --col-accent: #f97316; }
.lhd-rest__col[data-tone="prod"] { --col-accent: #eab308; }
.lhd-rest__col[data-tone="ship"] { --col-accent: #22c55e; }

.lhd-rest__col-head {
  position: relative;
  padding: 0.55rem 0.55rem 0.45rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent);
}

.lhd-rest__col-head::before {
  content: "";
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  top: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--col-accent), transparent);
  opacity: 0.9;
}

.lhd-rest__col-title-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.lhd-rest__col-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--col-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--col-accent) 22%, transparent);
  flex-shrink: 0;
}

.lhd-rest__col-title {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 700;
  color: #f8fafc;
  letter-spacing: -0.02em;
  flex: 1;
  min-width: 0;
}

.lhd-rest__col-count {
  font-size: 0.52rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #0b0c15;
  background: var(--col-accent);
  border-radius: 999px;
  min-width: 1.1rem;
  height: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.28rem;
}

.lhd-rest__col-sub {
  margin: 0.28rem 0 0;
  font-size: 0.48rem;
  color: #64748b;
  letter-spacing: 0.01em;
}

.lhd-rest__col-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.45rem;
  flex: 1;
}

.lhd-rest__card {
  position: relative;
  padding: 0.42rem 0.5rem;
  border-radius: 0.7rem;
  background: linear-gradient(165deg, rgba(36, 42, 58, 0.98) 0%, rgba(22, 26, 38, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 8px 18px -12px rgba(0, 0, 0, 0.7);
}

.lhd-rest__card--accent {
  border-color: color-mix(in srgb, #f97316 45%, rgba(255, 255, 255, 0.1));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 0 0 1px rgba(249, 115, 22, 0.12),
    0 10px 22px -12px rgba(249, 115, 22, 0.35);
}

.lhd-rest__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  margin-bottom: 0.28rem;
}

.lhd-rest__card-id {
  font-size: 0.58rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #f8fafc;
  letter-spacing: -0.02em;
}

.lhd-rest__card-name {
  margin: 0;
  font-size: 0.6rem;
  font-weight: 700;
  color: #e2e8f0;
  letter-spacing: -0.02em;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lhd-rest__card-items {
  margin: 0.18rem 0 0;
  font-size: 0.5rem;
  color: #94a3b8;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lhd-rest__card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  margin-top: 0.32rem;
  padding-top: 0.28rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lhd-rest__card-channel {
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  font-size: 0.46rem;
  font-weight: 600;
  color: #94a3b8;
}

.lhd-rest__card-channel svg {
  width: 0.7rem;
  height: 0.7rem;
  opacity: 0.8;
}

.lhd-rest__card-price {
  font-size: 0.58rem;
  font-weight: 800;
  color: #f8fafc;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.lhd-rest__chip {
  display: inline-flex;
  align-items: center;
  font-size: 0.42rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #cbd5e1;
  padding: 0.14rem 0.32rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}

.lhd-rest__chip--wa {
  color: #fdba74;
  background: rgba(249, 115, 22, 0.14);
  border-color: rgba(249, 115, 22, 0.28);
}

.lhd-rest__chip--cook {
  color: #fde68a;
  background: rgba(234, 179, 8, 0.14);
  border-color: rgba(234, 179, 8, 0.28);
}

.lhd-rest__chip--ok {
  color: #86efac;
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.28);
}

.lhd-rest__timer {
  font-size: 0.46rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #fde68a;
  background: rgba(234, 179, 8, 0.12);
  border: 1px solid rgba(234, 179, 8, 0.22);
  border-radius: 999px;
  padding: 0.12rem 0.35rem;
}

.lhd-rest__card--move {
  animation: lhd-card-move 8s ease-in-out infinite;
}

.lhd-rest__card--new {
  animation: lhd-card-pop 8s ease-in-out infinite;
}

/* ── Vendedor hero: CRM Kanban premium (fiel ao funil real) ── */
.landing-hero-dashboard--vendedor {
  --lhd-design-px: 608; /* 38rem */
  max-width: 38rem;
}

.landing-hero-dashboard--vendedor .landing-hero-dashboard__window {
  border-radius: 1.15rem;
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(165deg, rgba(32, 36, 52, 0.98) 0%, rgba(10, 11, 18, 0.99) 100%);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.4) inset,
    0 40px 80px -28px rgba(0, 0, 0, 0.9),
    0 0 64px -20px rgba(249, 115, 22, 0.22);
}

.landing-hero-dashboard--vendedor .landing-hero-dashboard__chrome {
  padding: 0.6rem 0.9rem;
  background: rgba(6, 7, 12, 0.94);
  backdrop-filter: blur(12px);
}

.landing-hero-dashboard--vendedor .landing-hero-dashboard__url {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.58rem;
  letter-spacing: 0.01em;
  color: rgba(163, 174, 191, 0.95);
  background: rgba(12, 14, 22, 0.9);
  border-radius: 0.5rem;
  padding: 0.32rem 0.65rem;
}

.landing-hero-dashboard--vendedor .landing-hero-dashboard__screen {
  padding: 0.7rem 0.75rem 0.8rem;
  min-height: 19rem;
  background:
    radial-gradient(ellipse at 88% 0%, rgba(249, 115, 22, 0.09), transparent 46%),
    radial-gradient(ellipse at 10% 100%, rgba(34, 197, 94, 0.05), transparent 40%),
    linear-gradient(180deg, #11131c 0%, #0a0b12 100%);
}

.landing-hero-dashboard--vendedor .landing-hero-dashboard__toolbar {
  margin-bottom: 0.55rem;
}

.landing-hero-dashboard--vendedor .landing-hero-dashboard__toolbar-title {
  font-size: 0.78rem;
  letter-spacing: -0.01em;
}

.lhd-vend {
  min-height: 21.4rem;
}

.lhd-vend__board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
  min-height: 21.4rem;
  align-items: stretch;
}

.lhd-vend__col {
  --col-accent: #f97316;
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-radius: 0.85rem;
  background: rgba(12, 14, 22, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 10px 24px -16px rgba(0, 0, 0, 0.75);
  overflow: hidden;
}

.lhd-vend__col[data-tone="novo"] { --col-accent: #f97316; }
.lhd-vend__col[data-tone="conversa"] { --col-accent: #0ea5e9; }
.lhd-vend__col[data-tone="interessado"] { --col-accent: #a855f7; }
.lhd-vend__col[data-tone="cliente"] { --col-accent: #22c55e; }

.lhd-vend__col-head {
  position: relative;
  padding: 0.5rem 0.5rem 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent);
}

.lhd-vend__col-head::before {
  content: "";
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  top: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--col-accent), transparent);
  opacity: 0.9;
}

.lhd-vend__col-title-row {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.lhd-vend__col-dot {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--col-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--col-accent) 22%, transparent);
  flex-shrink: 0;
}

.lhd-vend__col-title {
  margin: 0;
  font-size: 0.56rem;
  font-weight: 700;
  color: #f8fafc;
  letter-spacing: -0.02em;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lhd-vend__col-count {
  font-size: 0.5rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #0b0c15;
  background: var(--col-accent);
  border-radius: 999px;
  min-width: 1rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.25rem;
  flex-shrink: 0;
}

.lhd-vend__col-sub {
  margin: 0.26rem 0 0;
  font-size: 0.46rem;
  color: #64748b;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lhd-vend__col-body {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
  padding: 0.4rem;
  flex: 1;
}

.lhd-vend__card {
  position: relative;
  padding: 0.45rem 0.48rem;
  border-radius: 0.7rem;
  background: linear-gradient(165deg, rgba(36, 42, 58, 0.98) 0%, rgba(22, 26, 38, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 8px 18px -12px rgba(0, 0, 0, 0.7);
}

.lhd-vend__card--accent {
  border-color: color-mix(in srgb, #f97316 45%, rgba(255, 255, 255, 0.1));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 0 0 1px rgba(249, 115, 22, 0.12),
    0 10px 22px -12px rgba(249, 115, 22, 0.35);
}

.lhd-vend__card-head {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  min-width: 0;
}

.lhd-vend__avatar {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.42rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(145deg, var(--lead-cor, #ea580c), color-mix(in srgb, var(--lead-cor, #ea580c) 68%, #000));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14),
    0 3px 8px -3px color-mix(in srgb, var(--lead-cor, #ea580c) 60%, transparent);
  flex-shrink: 0;
}

.lhd-vend__card-id-wrap {
  min-width: 0;
  flex: 1;
}

.lhd-vend__card-name {
  margin: 0;
  font-size: 0.58rem;
  font-weight: 700;
  color: #f1f5f9;
  letter-spacing: -0.02em;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lhd-vend__card-meta {
  margin: 0.1rem 0 0;
  font-size: 0.48rem;
  color: #94a3b8;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lhd-vend__card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.3rem;
  margin-top: 0.38rem;
  padding-top: 0.32rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lhd-vend__card-price {
  font-size: 0.56rem;
  font-weight: 800;
  color: #f8fafc;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.lhd-vend__chip {
  display: inline-flex;
  align-items: center;
  font-size: 0.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #cbd5e1;
  padding: 0.13rem 0.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}

.lhd-vend__chip--wa {
  color: #86efac;
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.26);
}

.lhd-vend__chip--hot {
  color: #fdba74;
  background: rgba(249, 115, 22, 0.14);
  border-color: rgba(249, 115, 22, 0.28);
}

.lhd-vend__chip--pause {
  color: #fde68a;
  background: rgba(234, 179, 8, 0.14);
  border-color: rgba(234, 179, 8, 0.28);
}

.lhd-vend__chip--ok {
  color: #86efac;
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.28);
}

.lhd-vend__card--move {
  animation: lhd-card-move 8s ease-in-out infinite;
}

.lhd-vend__card--new {
  animation: lhd-card-pop 8s ease-in-out infinite;
}

/* ── Secretário hero: Agenda Soft Pastel (fiel ao app) ── */
.landing-hero-dashboard--secretario {
  --lhd-design-px: 608; /* 38rem */
  max-width: 38rem;
}

.landing-hero-dashboard--secretario .landing-hero-dashboard__window {
  border-radius: 1.15rem;
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(165deg, rgba(32, 36, 52, 0.98) 0%, rgba(10, 11, 18, 0.99) 100%);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.4) inset,
    0 40px 80px -28px rgba(0, 0, 0, 0.9),
    0 0 64px -20px rgba(249, 115, 22, 0.22);
}

.landing-hero-dashboard--secretario .landing-hero-dashboard__chrome {
  padding: 0.6rem 0.9rem;
  background: rgba(6, 7, 12, 0.94);
  backdrop-filter: blur(12px);
}

.landing-hero-dashboard--secretario .landing-hero-dashboard__url {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.58rem;
  letter-spacing: 0.01em;
  color: rgba(163, 174, 191, 0.95);
  background: rgba(12, 14, 22, 0.9);
  border-radius: 0.5rem;
  padding: 0.32rem 0.65rem;
}

.landing-hero-dashboard--secretario .landing-hero-dashboard__screen {
  padding: 0.7rem 0.75rem 0.8rem;
  min-height: 19rem;
  background:
    radial-gradient(ellipse at 88% 0%, rgba(249, 115, 22, 0.09), transparent 46%),
    radial-gradient(ellipse at 8% 100%, rgba(14, 165, 233, 0.05), transparent 42%),
    linear-gradient(180deg, #11131c 0%, #0a0b12 100%);
}

.landing-hero-dashboard--secretario .landing-hero-dashboard__toolbar {
  margin-bottom: 0.55rem;
}

.landing-hero-dashboard--secretario .landing-hero-dashboard__toolbar-title {
  font-size: 0.78rem;
  letter-spacing: -0.01em;
}

.lhd-sec {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 15.5rem;
}

.lhd-sec__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.35rem 0.4rem;
  border-radius: 0.7rem;
  background: rgba(15, 18, 28, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.lhd-sec__nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
}

.lhd-sec__icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #94a3b8;
  padding: 0;
  cursor: default;
}

.lhd-sec__icon-btn svg {
  width: 0.85rem;
  height: 0.85rem;
}

.lhd-sec__date {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
  padding-inline: 0.15rem;
}

.lhd-sec__date-day {
  font-size: 0.68rem;
  font-weight: 700;
  color: #f8fafc;
  letter-spacing: -0.02em;
}

.lhd-sec__date-num {
  font-size: 0.5rem;
  color: #94a3b8;
}

.lhd-sec__modes {
  display: inline-flex;
  padding: 0.15rem;
  border-radius: 0.55rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.lhd-sec__mode {
  font-size: 0.52rem;
  font-weight: 600;
  color: #64748b;
  padding: 0.28rem 0.55rem;
  border-radius: 0.4rem;
  letter-spacing: 0.02em;
}

.lhd-sec__mode.is-active {
  color: #fff7ed;
  background: linear-gradient(145deg, rgba(249, 115, 22, 0.95), rgba(234, 88, 12, 0.9));
  box-shadow: 0 2px 8px -2px rgba(249, 115, 22, 0.55);
}

.lhd-sec__pros {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.lhd-sec__pro {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  padding: 0.22rem 0.5rem 0.22rem 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lhd-sec__pro-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--pro-cor, #ea580c);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--pro-cor, #ea580c) 25%, transparent);
}

.lhd-sec__pro-name {
  font-size: 0.52rem;
  font-weight: 600;
  color: #e2e8f0;
  letter-spacing: 0.01em;
}

.lhd-sec__board {
  display: grid;
  grid-template-columns: 2.15rem minmax(0, 1fr);
  gap: 0.35rem;
  flex: 1;
  min-height: 0;
}

.lhd-sec__times {
  display: grid;
  grid-template-rows: repeat(4, minmax(2.35rem, 1fr));
  gap: 0.28rem;
  padding-top: 1.55rem;
}

.lhd-sec__times span {
  font-size: 0.48rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: #64748b;
  text-align: right;
  line-height: 1;
  padding-top: 0.15rem;
}

.lhd-sec__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem;
  min-width: 0;
}

.lhd-sec__col {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-radius: 0.75rem;
  background: rgba(12, 14, 22, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  box-shadow: 0 8px 20px -14px rgba(0, 0, 0, 0.7);
}

.lhd-sec__col-head {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.45rem;
  font-size: 0.55rem;
  font-weight: 700;
  color: #f1f5f9;
  letter-spacing: -0.01em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
}

.lhd-sec__col-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--agenda-cor, #ea580c);
  flex-shrink: 0;
}

.lhd-sec__track {
  display: grid;
  grid-template-rows: repeat(4, minmax(2.35rem, 1fr));
  gap: 0.28rem;
  padding: 0.35rem;
  flex: 1;
  background:
    repeating-linear-gradient(
      to bottom,
      transparent,
      transparent calc(25% - 1px),
      rgba(255, 255, 255, 0.03) calc(25% - 1px),
      rgba(255, 255, 255, 0.03) 25%
    );
}

.lhd-sec__slot {
  position: relative;
  min-height: 2.35rem;
  border-radius: 0.55rem;
}

.lhd-sec__slot--empty {
  background: rgba(255, 255, 255, 0.015);
  border: 1px dashed rgba(255, 255, 255, 0.05);
}

.lhd-sec__card {
  position: relative;
  height: 100%;
  min-height: 2.35rem;
  padding: 0.32rem 0.4rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.92);
  background:
    radial-gradient(120% 90% at 100% -10%, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.28) 32%, transparent 58%),
    linear-gradient(135deg, var(--theme-light, #fff7ed) 0%, var(--theme-lighter, #fffbf7) 100%);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.05),
    0 6px 14px -8px rgba(15, 23, 42, 0.28),
    0 0 0 1px color-mix(in srgb, var(--agenda-cor, #ea580c) 12%, transparent);
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  overflow: hidden;
}

.lhd-sec__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem;
}

.lhd-sec__card-time {
  font-size: 0.5rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--theme-text, #334155);
  letter-spacing: 0.01em;
}

.lhd-sec__card-avatar {
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.38rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(145deg, var(--agenda-cor, #ea580c), color-mix(in srgb, var(--agenda-cor, #ea580c) 70%, #000));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
}

.lhd-sec__card-wait-ico {
  font-size: 0.62rem;
  line-height: 1;
  color: var(--theme-text, #334155);
  opacity: 0.75;
}

.lhd-sec__card-name {
  margin: 0;
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--theme-text, #1e293b);
  letter-spacing: -0.02em;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lhd-sec__card-svc {
  margin: 0;
  font-size: 0.46rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--theme-text, #334155) 72%, transparent);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lhd-sec__card-badge {
  position: absolute;
  right: 0.28rem;
  bottom: 0.28rem;
  font-size: 0.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9a3412;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  padding: 0.08rem 0.28rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.lhd-sec__card--live {
  animation: lhd-sec-card-glow 5.5s ease-in-out infinite;
}

.lhd-sec__card--wait {
  border-style: dashed;
  border-color: color-mix(in srgb, var(--agenda-cor, #0d9488) 35%, #fff);
  background:
    radial-gradient(120% 90% at 100% -10%, rgba(255, 255, 255, 0.65) 0%, transparent 55%),
    linear-gradient(135deg, var(--theme-light, #d5f5f0) 0%, var(--theme-lighter, #ecfaf7) 100%);
}

@keyframes lhd-sec-card-glow {
  0%,
  70%,
  100% {
    box-shadow:
      0 1px 2px rgba(15, 23, 42, 0.05),
      0 6px 14px -8px rgba(15, 23, 42, 0.28);
  }
  78%,
  86% {
    box-shadow:
      0 1px 2px rgba(15, 23, 42, 0.05),
      0 0 0 2px color-mix(in srgb, var(--agenda-cor, #ea580c) 45%, transparent),
      0 10px 22px -6px color-mix(in srgb, var(--agenda-cor, #ea580c) 55%, transparent);
  }
}

@keyframes lhd-float {
  0%,
  100% {
    transform: rotateY(-7deg) rotateX(4deg) translateY(0);
  }
  50% {
    transform: rotateY(-7deg) rotateX(4deg) translateY(-6px);
  }
}

@keyframes lhd-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.65;
  }
}

@keyframes lhd-card-move {
  0%,
  18% {
    opacity: 1;
    transform: translateX(0);
  }
  28%,
  38% {
    opacity: 0;
    transform: translateX(8px) scale(0.96);
  }
  48%,
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes lhd-card-pop {
  0%,
  38% {
    opacity: 0;
    transform: translateY(6px) scale(0.96);
  }
  48%,
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes lhd-slot-blink {
  0%,
  70%,
  100% {
    box-shadow: 0 4px 12px -6px rgba(249, 115, 22, 0.55);
  }
  78% {
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.45), 0 4px 16px -4px rgba(249, 115, 22, 0.65);
  }
}

@media (max-width: 1023px) {
  .landing-hero-dashboard {
    max-width: 100%;
    perspective: none;
  }

  /* Evita overflow horizontal do mock escalado */
  .landing-hero-dashboard__fit-clip {
    overflow: hidden;
  }

  /*
   * Pré-escala CSS (sem esperar JS): evita flash da “versão PC” no mobile.
   * O JS refina scale + altura do clip e marca [data-lhd-ready].
   */
  .landing-hero-dashboard[data-lhd-fit] .landing-hero-dashboard__stage {
    width: calc(var(--lhd-design-px, 608) * 1px);
    max-width: none;
    transform-origin: top center;
    transform: scale(min(1, calc((100vw - 3rem) / (var(--lhd-design-px, 608) * 1px))));
  }

  .landing-hero-dashboard[data-lhd-fit]:not([data-lhd-ready]) {
    opacity: 0;
  }

  .landing-hero-dashboard[data-lhd-fit][data-lhd-ready] {
    opacity: 1;
    transition: opacity 0.12s ease;
  }

  /* Reserva espaço aproximado enquanto o JS mede a altura real */
  .landing-hero-dashboard[data-lhd-fit]:not([data-lhd-ready]) .landing-hero-dashboard__fit-clip {
    min-height: min(72vw, 26rem);
  }

  /* Scale fica no stage (JS/CSS); float leve só no window */
  .landing-hero-dashboard__window {
    transform: none;
    width: 100%;
    animation: lhd-float-mobile 7s ease-in-out infinite;
  }

  @keyframes lhd-float-mobile {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
  }
}

@media (min-width: 1024px) {
  .landing-hero-dashboard__fit-clip {
    overflow: visible;
    height: auto !important;
  }

  .landing-hero-dashboard__stage {
    width: 100% !important;
    transform: none !important;
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-hero-dashboard__window,
  .lhd-card--move,
  .lhd-card--new,
  .lhd-rest__card--move,
  .lhd-rest__card--new,
  .lhd-vend__card--move,
  .lhd-vend__card--new,
  .lhd-agenda__event--blink,
  .lhd-sec__card--live,
  .landing-hero-dashboard__pill--live {
    animation: none;
  }
}
