:root {
  --primary: #155eef;
  --accent: #14b8a6;
  --ink: #121826;
  --muted: #667085;
  --line: #d9e1ec;
  --panel: #ffffff;
  --page: #f4f7fb;
  --danger: #c93535;
  --radius: 8px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, Segoe UI, Arial, sans-serif;
  color: var(--ink);
  background: var(--page);
}

button, input, select {
  font: inherit;
}

button {
  border: 0;
  border-radius: var(--radius);
  padding: 12px 16px;
  cursor: pointer;
  background: var(--primary);
  color: white;
  font-weight: 700;
}

button.secondary { background: #e8eef8; color: var(--ink); }
button.danger { background: var(--danger); }
button.ghost { background: transparent; color: var(--primary); border: 1px solid var(--line); }
button.small { padding: 8px 10px; font-size: 12px; }
button:disabled { opacity: .55; cursor: not-allowed; }

input, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: white;
  color: var(--ink);
}

input[type="color"] {
  min-height: 50px;
  padding: 6px;
  cursor: pointer;
}

input[type="file"] {
  padding: 10px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.logo-upload img {
  width: 76px;
  height: 76px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: contain;
  background: white;
  padding: 6px;
}

a { color: inherit; text-decoration: none; }

.shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 250px 1fr;
}

.sidebar {
  background: #101828;
  color: white;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
}

.public-brand {
  gap: 12px;
}

.public-brand > span:not(.logo) {
  display: grid;
  gap: 2px;
  line-height: 1.05;
}

.public-brand strong {
  font-size: 19px;
  letter-spacing: 0;
}

.public-brand small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.logo {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
  overflow: hidden;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.logo.system-logo img {
  object-fit: contain;
  background: white;
  padding: 2px;
}

.nav {
  display: grid;
  gap: 8px;
}

.nav a {
  padding: 11px 12px;
  border-radius: 8px;
  color: #d0d5dd;
}

.nav a.active, .nav a:hover {
  background: rgba(255,255,255,.12);
  color: white;
}

.content {
  padding: 28px;
  display: grid;
  gap: 22px;
  align-content: start;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.topbar h1 { margin: 0; font-size: 28px; }
.topbar p { margin: 4px 0 0; color: var(--muted); }

.topbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: end;
  justify-content: flex-end;
}

.workspace-picker {
  min-width: 220px;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 24px rgba(16,24,40,.06);
}

.card h2, .card h3 { margin: 0 0 14px; }

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

.metric {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 24px rgba(16,24,40,.05);
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.metric strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(24px, 3vw, 38px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

.table th, .table td {
  padding: 11px 8px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.table th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(21,94,239,.86), rgba(20,184,166,.74)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='800' viewBox='0 0 1200 800'%3E%3Crect width='1200' height='800' fill='%23eef4ff'/%3E%3Cpath d='M0 680 C180 590 290 740 470 650 C650 560 710 450 910 520 C1030 562 1110 520 1200 470 L1200 800 L0 800 Z' fill='%23dff7f1'/%3E%3Ccircle cx='930' cy='190' r='150' fill='%23c8d9ff'/%3E%3C/svg%3E");
  background-size: cover;
}

.login-card {
  width: min(440px, 100%);
  background: white;
  border-radius: 8px;
  padding: 30px;
  display: grid;
  gap: 16px;
  box-shadow: 0 24px 70px rgba(16,24,40,.22);
}

.login-card h1 {
  margin: 4px 0 0;
  font-size: 24px;
}

.login-help {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding-top: 6px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.home {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr;
  background: #f6f8fc;
}

.home-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(12px);
}

.home-main {
  width: min(1180px, calc(100% - 40px));
  padding: 54px 0;
  display: grid;
  gap: 52px;
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: 34px;
  align-items: center;
  min-height: 620px;
}

.hero-copy {
  display: grid;
  gap: 20px;
}

.eyebrow {
  width: fit-content;
  border: 1px solid #b7c8ff;
  background: #edf3ff;
  color: var(--primary);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
  font-size: 13px;
}

.home-main h1 {
  font-size: clamp(40px, 6vw, 72px);
  margin: 0;
  line-height: .98;
  max-width: 760px;
}

.home-main h2 {
  margin: 0 0 16px;
  font-size: clamp(26px, 4vw, 42px);
}

.home-main p {
  font-size: 19px;
  color: var(--muted);
  max-width: 760px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions button,
.landing-cta button {
  min-height: 52px;
  padding-inline: 22px;
  font-size: 16px;
}

.contact-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  padding: 13px 20px;
  background: #16a34a;
  color: white;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(22, 163, 74, .22);
}

.contact-button.light {
  background: white;
  color: #101828;
  box-shadow: none;
}

.whatsapp-mark {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.18);
  font-size: 16px;
}

.contact-button.light .whatsapp-mark {
  background: #dcfce7;
  color: #15803d;
}

.tv-mockup {
  border: 12px solid #121826;
  border-radius: 18px;
  background: #0b1630;
  box-shadow: 0 34px 90px rgba(16,24,40,.22);
  overflow: hidden;
  animation: float-panel 5s ease-in-out infinite;
}

@keyframes float-panel {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.mockup-top {
  display: flex;
  justify-content: space-between;
  padding: 14px 18px;
  color: white;
  background: rgba(255,255,255,.08);
  font-weight: 900;
}

.mockup-screen {
  min-height: 360px;
  display: grid;
  grid-template-columns: 1fr 150px;
}

.mockup-screen > div {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  color: white;
  background: radial-gradient(circle at 20% 20%, rgba(20,184,166,.34), transparent 36%), #101d3d;
}

.mockup-screen span {
  color: #b8c8e8;
  text-transform: uppercase;
  font-weight: 900;
}

.mockup-screen strong {
  font-size: clamp(78px, 12vw, 150px);
  line-height: .9;
}

.mockup-screen em {
  font-style: normal;
  background: var(--accent);
  color: #05201d;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 1000;
  font-size: 26px;
}

.mockup-screen aside {
  display: grid;
  gap: 10px;
  align-content: center;
  padding: 16px;
  background: #172036;
  color: white;
}

.mockup-screen small {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  padding: 12px;
  font-weight: 900;
  font-size: 20px;
  background: rgba(255,255,255,.08);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.feature strong {
  display: block;
  margin-top: 10px;
  font-size: 18px;
}

.benefit-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #edf3ff;
  color: var(--primary);
  font-weight: 1000;
}

.landing-section {
  display: grid;
  gap: 14px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.steps div {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.steps span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-weight: 900;
}

.steps strong {
  display: block;
  margin-top: 14px;
  font-size: 18px;
}

.segments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.segments span {
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 34px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(16,24,40,.08);
}

.contact-section h2 {
  margin-bottom: 10px;
}

.contact-section p {
  margin: 0;
  font-size: 17px;
}

.landing-cta {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 12px;
  padding: 42px 20px;
  background: #101828;
  color: white;
  border-radius: 8px;
}

.landing-cta p {
  color: #d0d5dd;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

.home-redesign {
  --home-ink: #101828;
  --home-deep: #0b1220;
  --home-blue: #155eef;
  --home-cyan: #11b8d8;
  --home-soft: #eef5ff;
  color: var(--home-ink);
  background:
    linear-gradient(180deg, rgba(238,245,255,.72), rgba(255,255,255,.96) 42%, #f6f8fc 100%),
    repeating-linear-gradient(90deg, rgba(21,94,239,.045) 0 1px, transparent 1px 76px),
    repeating-linear-gradient(0deg, rgba(21,94,239,.035) 0 1px, transparent 1px 76px);
}

.premium-header {
  min-height: 74px;
  padding: 14px clamp(18px, 4%, 56px);
  background: rgba(255,255,255,.88);
  box-shadow: 0 1px 0 rgba(16,24,40,.08), 0 18px 54px rgba(16,24,40,.06);
}

.home-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #475467;
  font-size: 14px;
  font-weight: 800;
}

.home-nav a {
  padding: 10px 2px;
}

.home-nav a:hover {
  color: var(--home-blue);
}

.home-menu {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  background: #eef4ff;
  color: var(--home-blue);
}

.home-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-actions .ghost {
  border-color: #cfd9ea;
  color: var(--home-ink);
  background: white;
}

.premium-main {
  width: min(1180px, calc(100% - 40px));
  padding: 72px 0 36px;
  gap: 76px;
}

.home-redesign section {
  scroll-margin-top: 170px;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr);
  align-items: center;
  gap: 44px;
  min-height: 650px;
}

.premium-copy {
  display: grid;
  gap: 22px;
}

.premium-main .eyebrow {
  border: 1px solid rgba(21,94,239,.18);
  background: rgba(238,244,255,.92);
  color: var(--home-blue);
  box-shadow: 0 8px 22px rgba(21,94,239,.08);
}

.premium-main .eyebrow.small {
  padding: 7px 11px;
  font-size: 12px;
}

.premium-main h1 {
  max-width: 720px;
  margin: 0;
  font-size: 68px;
  line-height: .95;
  letter-spacing: 0;
}

.premium-main h1 span {
  color: var(--home-blue);
}

.premium-main h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.06;
  letter-spacing: 0;
}

.premium-main h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.18;
}

.premium-main p {
  margin: 0;
  color: #526179;
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  align-items: center;
}

.home-redesign button,
.home-redesign .contact-button {
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.home-redesign button:hover,
.home-redesign .contact-button:hover {
  transform: translateY(-1px);
}

.contact-button {
  text-decoration: none;
}

.main-cta,
.header-cta {
  background: var(--home-blue);
  box-shadow: 0 18px 36px rgba(21,94,239,.24);
}

.header-cta {
  min-height: 46px;
  padding: 11px 16px;
}

.whatsapp-mark {
  flex: 0 0 auto;
}

.home-icon {
  width: 22px;
  height: 22px;
}

.mini-icon {
  width: 16px;
  height: 16px;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: #475467;
  font-size: 14px;
  font-weight: 800;
}

.trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-line svg {
  color: #0f9f6e;
}

.product-showcase {
  position: relative;
  min-height: 590px;
  display: grid;
  align-items: center;
  isolation: isolate;
}

.product-showcase::before {
  content: "";
  position: absolute;
  inset: 26px 0 48px 64px;
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(21,94,239,.2), rgba(17,184,216,.08)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.38) 0 1px, transparent 1px 28px);
  filter: blur(.2px);
  z-index: -1;
}

.live-badge {
  position: absolute;
  top: 34px;
  right: 24px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: white;
  border: 1px solid #e3ebf7;
  color: #0f766e;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(16,24,40,.1);
}

.live-badge span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #13c296;
  box-shadow: 0 0 0 7px rgba(19,194,150,.14);
}

.showcase-tv {
  width: min(100%, 650px);
  margin-left: auto;
  border: 12px solid #0f172a;
  border-radius: 8px;
  background: #0b1430;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(16,24,40,.25);
}

.showcase-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 0 18px;
  color: white;
  background: #1d2a44;
  font-weight: 900;
}

.showcase-top strong {
  color: #a7f3d0;
  font-size: 13px;
}

.showcase-screen {
  min-height: 335px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
}

.showcase-screen section {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  color: white;
  background:
    linear-gradient(135deg, rgba(17,184,216,.18), transparent 42%),
    #11204a;
}

.showcase-screen small,
.demo-tv small {
  color: #bdd0f4;
  font-weight: 1000;
  text-transform: uppercase;
}

.showcase-screen section strong,
.demo-tv strong {
  font-size: 118px;
  line-height: .82;
  letter-spacing: 0;
}

.showcase-screen em {
  font-style: normal;
  background: #21c4b7;
  color: #031c1b;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 24px;
  font-weight: 1000;
}

.showcase-screen aside {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 16px;
  color: white;
  background: #16213a;
}

.showcase-screen aside div {
  display: grid;
  gap: 10px;
}

.showcase-screen aside span {
  padding: 11px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  font-weight: 1000;
  font-size: 18px;
}

.showcase-ad {
  margin: 14px;
  padding: 14px;
  border-radius: 8px;
  color: #d7e2f6;
  background: rgba(255,255,255,.07);
  border: 1px dashed rgba(255,255,255,.18);
  text-align: center;
  font-weight: 800;
}

.agent-card {
  position: absolute;
  left: 12px;
  bottom: 42px;
  width: 275px;
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 8px;
  background: white;
  border: 1px solid #e0e8f4;
  box-shadow: 0 26px 60px rgba(16,24,40,.18);
}

.agent-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.agent-top span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #edf4ff;
  color: var(--home-blue);
}

.agent-card label {
  color: #64748b;
}

.agent-card button,
.demo-control button {
  background: var(--home-blue);
}

.agent-card small {
  color: #0f9f6e;
  font-weight: 800;
}

.signal-path {
  position: absolute;
  left: 280px;
  bottom: 142px;
  display: flex;
  gap: 8px;
}

.signal-path span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--home-cyan);
  animation: signal-dot 1.35s ease-in-out infinite;
}

.signal-path span:nth-child(2) { animation-delay: .16s; }
.signal-path span:nth-child(3) { animation-delay: .32s; }

@keyframes signal-dot {
  0%, 100% { opacity: .25; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(9px); }
}

.showcase-tv.is-calling,
.demo-tv.is-calling {
  animation: call-pop .46s ease;
}

@keyframes call-pop {
  0% { transform: scale(.985); box-shadow: 0 0 0 rgba(21,94,239,0); }
  45% { transform: scale(1.012); box-shadow: 0 0 0 8px rgba(21,94,239,.12); }
  100% { transform: scale(1); box-shadow: inherit; }
}

.trust-band {
  display: grid;
  gap: 20px;
  padding: 22px;
  background: white;
  border: 1px solid #e2eaf6;
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(16,24,40,.06);
}

.trust-band p {
  max-width: none;
  text-align: center;
  font-weight: 800;
  color: #344054;
}

.audience-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.audience-row span,
.segment-tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border: 1px solid #dbe5f2;
  border-radius: 8px;
  background: #f8fbff;
  color: #1d2939;
  font-weight: 900;
}

.audience-row svg,
.segment-tabs svg {
  color: var(--home-blue);
}

.section-heading {
  display: grid;
  gap: 12px;
}

.section-heading.center {
  justify-items: center;
  text-align: center;
}

.section-heading.center p {
  margin-inline: auto;
}

.solutions-section {
  display: grid;
  gap: 30px;
}

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

.solution-group {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid #dfe8f5;
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 20px 58px rgba(16,24,40,.08);
}

.solution-group.atendimento {
  border-top: 4px solid #155eef;
}

.solution-group.restaurante {
  border-top: 4px solid #16a34a;
}

.solution-group-copy {
  display: grid;
  gap: 10px;
}

.solution-group-copy > span {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: #155eef;
  background: #eef4ff;
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.solution-group.restaurante .solution-group-copy > span {
  color: #047857;
  background: #ecfdf3;
}

.solution-group-copy p {
  font-size: 16px;
}

.solution-tv-preview,
.solution-kitchen-preview {
  min-height: 190px;
  border-radius: 8px;
  border: 1px solid #dbe6f5;
  background:
    linear-gradient(135deg, rgba(21,94,239,.16), transparent 44%),
    #0e1931;
  color: white;
  overflow: hidden;
}

.solution-tv-preview {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  text-align: center;
}

.solution-tv-preview span,
.solution-tv-preview small,
.solution-kitchen-preview span {
  color: #c7d7ee;
  font-weight: 900;
}

.solution-tv-preview strong {
  font-size: 76px;
  line-height: .95;
}

.solution-kitchen-preview {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(22,163,74,.18), transparent 42%),
    #101828;
}

.solution-kitchen-preview article {
  display: grid;
  gap: 5px;
  padding: 14px;
  border-radius: 8px;
  background: white;
  color: #101828;
  border-left: 4px solid #f97316;
}

.solution-kitchen-preview b {
  color: #155eef;
  text-transform: uppercase;
  font-size: 12px;
}

.solution-kitchen-preview strong {
  font-size: 18px;
}

.solution-kitchen-preview span {
  color: #475467;
  font-size: 14px;
}

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

.solution-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 8px;
  background: #f8fbff;
  border: 1px solid #e5edf8;
}

.solution-item > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #155eef;
  background: #eef4ff;
}

.solution-group.restaurante .solution-item > span {
  color: #047857;
  background: #ecfdf3;
}

.solution-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}

.solution-item p {
  font-size: 15px;
  line-height: 1.5;
}

.before-after,
.flow-section,
.feature-story,
.segment-experience,
.faq-section {
  display: grid;
  gap: 28px;
}

.compare-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 10px;
  border-radius: 8px;
  background: #eaf1fb;
  border: 1px solid #dce6f3;
}

.compare-side {
  padding: 26px;
  border-radius: 8px;
  background: white;
}

.compare-side.before {
  background: #fff8f8;
}

.compare-side.after {
  color: white;
  background: linear-gradient(135deg, #0d1b3f, #122b69);
}

.compare-label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--home-blue);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.after .compare-label {
  color: #7dd3fc;
}

.compare-side ul,
.offer-panel ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.compare-side li,
.offer-panel li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.45;
  font-weight: 750;
}

.before svg {
  color: #d92d20;
}

.after svg,
.offer-panel svg {
  color: #12b76a;
}

.flow-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 18px;
  align-items: stretch;
}

.flow-steps {
  display: grid;
  gap: 12px;
}

.flow-steps div {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 18px 18px 18px 66px;
  border-radius: 8px;
  background: white;
  border: 1px solid #dfe8f5;
  box-shadow: 0 12px 34px rgba(16,24,40,.05);
}

.flow-steps span {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--home-blue);
  color: white;
  font-weight: 1000;
}

.flow-steps p {
  font-size: 15px;
}

.interactive-demo {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 16px;
  padding: 16px;
  border-radius: 8px;
  background: #0d1831;
  border: 1px solid #24324f;
  color: white;
  box-shadow: 0 26px 70px rgba(16,24,40,.18);
}

.demo-control {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}

.demo-control span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cfe0ff;
  font-weight: 900;
}

.demo-tv {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  min-height: 300px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(17,184,216,.22), transparent 44%),
    #122456;
}

.demo-tv strong {
  color: white;
}

.demo-tv span {
  color: #9fe7db;
  font-weight: 900;
}

.feature-story {
  padding: 34px;
  border-radius: 8px;
  background: white;
  border: 1px solid #e2eaf6;
}

.feature-row {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid #e8eef7;
}

.feature-row.reverse {
  grid-template-columns: 1fr .85fr;
}

.feature-row.reverse .feature-visual {
  order: 2;
}

.feature-visual {
  min-height: 220px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 24px;
  border-radius: 8px;
  background: #f3f7ff;
  border: 1px solid #dfe8f6;
  color: var(--home-blue);
  text-align: center;
}

.feature-visual svg {
  width: 42px;
  height: 42px;
}

.feature-visual strong {
  color: #101828;
  font-size: 22px;
}

.feature-visual span {
  color: #5b6980;
  font-weight: 800;
}

.feature-visual.live {
  background: linear-gradient(135deg, #eff6ff, #ecfeff);
}

.feature-visual.queue {
  background: #f8fbff;
}

.feature-visual.media {
  background: linear-gradient(135deg, #f5f8ff, #f0fdfa);
}

.feature-visual.devices {
  grid-template-columns: auto auto;
}

.feature-visual.devices strong {
  grid-column: 1 / -1;
}

.segment-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.segment-tabs button {
  color: #344054;
  cursor: pointer;
}

.segment-tabs button.active {
  border-color: var(--home-blue);
  background: #edf4ff;
  color: var(--home-blue);
  box-shadow: 0 10px 24px rgba(21,94,239,.12);
}

.segment-panel {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 28px;
  align-items: center;
  min-height: 330px;
  padding: 26px;
  border-radius: 8px;
  background: white;
  border: 1px solid #dfe8f5;
  box-shadow: 0 18px 48px rgba(16,24,40,.07);
}

.segment-visual {
  position: relative;
  min-height: 270px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #0e1b3a, #143679);
}

.segment-tv {
  width: min(82%, 350px);
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: white;
  border: 1px solid rgba(255,255,255,.12);
}

.segment-tv span {
  color: #9fe7db;
  font-weight: 900;
}

.segment-tv strong {
  font-size: 60px;
  line-height: 1;
}

.segment-tv small {
  color: #bdd0f4;
  font-weight: 900;
}

.segment-note {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 8px;
  background: white;
  color: #101828;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(16,24,40,.18);
}

.segment-copy {
  display: grid;
  gap: 14px;
}

.segment-copy strong {
  color: var(--home-blue);
  font-size: 16px;
}

.validation-band {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 30px;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, #0b1220, #112c66);
}

.validation-band div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.validation-band svg {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: #7dd3fc;
}

.validation-band p {
  color: #d7e2f6;
}

.offer-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
  align-items: center;
}

.offer-panel {
  display: grid;
  gap: 18px;
  padding: 26px;
  border-radius: 8px;
  background: white;
  border: 1px solid #dfe8f5;
  box-shadow: 0 20px 54px rgba(16,24,40,.1);
}

.offer-panel ul {
  margin: 0;
}

.offer-panel .contact-button {
  width: 100%;
}

.contact-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--home-blue);
  font-weight: 900;
  text-decoration: none;
}

.contact-text-link .whatsapp-mark {
  background: #dcfce7;
  color: #15803d;
}

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

.faq-list details {
  border: 1px solid #dfe8f5;
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 32px rgba(16,24,40,.04);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

.faq-list details p {
  padding: 0 20px 18px;
  font-size: 16px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 26px;
  align-items: center;
  padding: 36px;
  border-radius: 8px;
  color: white;
  background:
    linear-gradient(135deg, rgba(17,184,216,.18), transparent 40%),
    #0b1220;
  box-shadow: 0 28px 80px rgba(16,24,40,.2);
}

.final-cta h2,
.final-cta p {
  color: white;
}

.final-cta p {
  color: #d7e2f6;
}

.final-preview {
  display: grid;
  grid-template-columns: 1fr 120px;
  min-height: 240px;
  border: 10px solid #172036;
  border-radius: 8px;
  overflow: hidden;
  background: #122456;
}

.final-preview div,
.final-preview aside {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  color: white;
}

.final-preview strong {
  font-size: 70px;
  line-height: 1;
}

.final-preview small {
  padding: 8px 12px;
  border-radius: 8px;
  background: #21c4b7;
  color: #031c1b;
  font-weight: 1000;
}

.final-preview aside {
  padding: 14px;
  background: rgba(255,255,255,.07);
}

.final-preview aside span {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  background: rgba(255,255,255,.08);
}

.home-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 34px;
  padding: 34px 0 42px;
  color: #475467;
  border-top: 1px solid #dfe8f5;
}

.home-footer p {
  max-width: 390px;
  margin: 12px 0 0;
  line-height: 1.5;
}

.home-footer nav {
  display: grid;
  align-content: start;
  gap: 9px;
  min-width: 150px;
}

.home-footer strong {
  color: #101828;
}

.home-footer a:hover {
  color: var(--home-blue);
}

.home-footer > small {
  grid-column: 1 / -1;
  color: #667085;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .home-redesign *,
  .signal-path span {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1050px) {
  .premium-main h1 {
    font-size: 54px;
  }
  .home-hero,
  .flow-grid,
  .solutions-grid,
  .segment-panel,
  .validation-band,
  .offer-section,
  .final-cta {
    grid-template-columns: 1fr;
  }
  .home-hero {
    min-height: auto;
  }
  .product-showcase {
    min-height: 560px;
  }
  .audience-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
  }
  .feature-row.reverse .feature-visual {
    order: 0;
  }
}

@media (max-width: 760px) {
  .premium-header {
    position: sticky;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 12px 14px;
  }
  .home-menu {
    display: grid;
  }
  .home-nav {
    display: none;
    grid-column: 1 / -1;
    padding: 12px;
    border-radius: 8px;
    background: white;
    border: 1px solid #dfe8f5;
  }
  .home-nav.open {
    display: grid;
  }
  .home-actions {
    grid-column: 1 / -1;
    justify-content: stretch;
  }
  .home-actions .ghost {
    display: none;
  }
  .home-actions .contact-button {
    width: 100%;
  }
  .premium-main {
    width: min(100% - 28px, 1180px);
    padding-top: 40px;
    gap: 54px;
  }
  .premium-main h1 {
    font-size: 42px;
  }
  .premium-main h2 {
    font-size: 31px;
  }
  .premium-main p {
    font-size: 16px;
  }
  .hero-actions,
  .trust-line {
    display: grid;
  }
  .hero-actions .contact-button,
  .hero-actions button {
    width: 100%;
  }
  .product-showcase {
    min-height: auto;
    padding-bottom: 190px;
  }
  .showcase-tv {
    border-width: 8px;
  }
  .showcase-screen {
    grid-template-columns: 1fr;
  }
  .showcase-screen section strong,
  .demo-tv strong {
    font-size: 74px;
  }
  .showcase-screen aside {
    grid-template-columns: auto 1fr;
    align-items: center;
  }
  .showcase-screen aside div {
    grid-template-columns: repeat(3, 1fr);
  }
  .showcase-screen aside span {
    padding: 9px;
    text-align: center;
    font-size: 14px;
  }
  .agent-card {
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
  }
  .signal-path {
    display: none;
  }
  .audience-row,
  .compare-board,
  .interactive-demo,
  .final-preview,
  .home-footer {
    grid-template-columns: 1fr;
  }
  .feature-story,
  .compare-side,
  .segment-panel,
  .validation-band,
  .offer-panel,
  .final-cta {
    padding: 22px;
  }
}

.home-redesign {
  --home-ink: #101828;
  --home-muted: #526179;
  --home-line: #dce6f3;
  --home-deep: #0b1220;
  --home-deep-2: #111a2f;
  --home-blue: #155eef;
  --home-cyan: #11b8d8;
  --home-green: #12b76a;
  --home-orange: #f97316;
  background:
    linear-gradient(180deg, #eef5ff 0, #ffffff 33%, #f5f8fc 100%);
}

.home-redesign section {
  scroll-margin-top: 120px;
}

.premium-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 70px;
  padding: 12px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(16, 24, 40, .08);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
}

.premium-header .public-brand small {
  color: #526179;
}

.home-menu {
  border: 1px solid #dbe5f2;
}

.home-actions .ghost {
  min-height: 46px;
  border-color: #cfd9ea;
  background: white;
  color: var(--home-ink);
}

.home-redesign .contact-button {
  min-height: 50px;
  border: 1px solid transparent;
  background: var(--home-blue);
  box-shadow: 0 18px 36px rgba(21, 94, 239, .22);
  color: white;
}

.home-redesign .contact-button.light {
  background: white;
  color: var(--home-ink);
  box-shadow: none;
}

.home-redesign .contact-text-link {
  box-shadow: none;
  background: transparent;
  color: var(--home-blue);
}

.premium-main {
  width: min(1180px, calc(100% - 40px));
  padding: 68px 0 40px;
  gap: 70px;
}

.home-hero {
  grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr);
  gap: 42px;
  min-height: 640px;
}

.premium-main .eyebrow {
  width: fit-content;
  border: 1px solid rgba(21, 94, 239, .18);
  background: #eef4ff;
  color: var(--home-blue);
  box-shadow: none;
}

.premium-main h1 {
  max-width: 760px;
  font-size: clamp(44px, 5.4vw, 70px);
  line-height: .95;
  letter-spacing: 0;
}

.premium-main h1 span {
  color: var(--home-blue);
}

.premium-main h2 {
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.05;
}

.premium-main h3 {
  font-size: 24px;
  line-height: 1.18;
}

.premium-main p {
  color: var(--home-muted);
}

.premium-copy > p {
  max-width: 660px;
  font-size: 19px;
}

.hero-actions {
  flex-wrap: wrap;
}

.home-redesign .secondary {
  min-height: 50px;
  border: 1px solid #cfd9ea;
  background: white;
  color: #1d2939;
  box-shadow: 0 12px 28px rgba(16, 24, 40, .06);
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.trust-line span {
  padding: 8px 10px;
  border: 1px solid #e0e8f4;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: #344054;
}

.platform-showcase {
  min-height: 590px;
  align-content: center;
  gap: 16px;
}

.platform-showcase::before {
  inset: 52px 0 38px 36px;
  border: 1px solid rgba(21, 94, 239, .14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(21, 94, 239, .14), rgba(17, 184, 216, .08)),
    #f8fbff;
  filter: none;
}

.live-badge {
  top: 22px;
  right: 18px;
}

.demo-tabs {
  width: fit-content;
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid #dce6f3;
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 38px rgba(16, 24, 40, .08);
}

.demo-tabs button {
  min-height: 38px;
  padding: 8px 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #526179;
  font-weight: 900;
  cursor: pointer;
}

.demo-tabs button.active {
  background: var(--home-blue);
  color: white;
  box-shadow: 0 10px 22px rgba(21, 94, 239, .22);
}

.hero-demo-panel {
  width: min(100%, 650px);
  margin-left: auto;
}

.hero-demo-screen {
  min-height: 470px;
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid #24324f;
  border-radius: 8px;
  background: #0d1831;
  color: white;
  box-shadow: 0 38px 90px rgba(16, 24, 40, .24);
}

.demo-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  color: #d7e2f6;
  font-weight: 900;
}

.demo-toolbar span,
.demo-toolbar strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.demo-toolbar strong {
  color: #a7f3d0;
  font-size: 13px;
}

.attendance-flow {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
  align-items: stretch;
}

.attendance-controls {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.attendance-controls label {
  display: grid;
  gap: 7px;
  color: #aebfda;
  font-size: 13px;
  font-weight: 850;
}

.attendance-controls strong {
  color: white;
  font-size: 17px;
}

.attendance-controls button {
  min-height: 48px;
  background: var(--home-blue);
}

.attendance-tv {
  min-height: 360px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 13px;
  border: 10px solid #18243d;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(17, 184, 216, .2), transparent 45%),
    #122456;
}

.attendance-tv small {
  color: #bdd0f4;
  font-weight: 1000;
  text-transform: uppercase;
}

.attendance-tv strong {
  font-size: 100px;
  line-height: .85;
}

.attendance-tv span {
  padding: 10px 16px;
  border-radius: 8px;
  background: #21c4b7;
  color: #031c1b;
  font-size: 22px;
  font-weight: 1000;
}

.kitchen-ticket {
  align-self: center;
  display: grid;
  gap: 14px;
  padding: 26px;
  border-left: 6px solid var(--home-orange);
  border-radius: 8px;
  background: white;
  color: var(--home-ink);
}

.kitchen-ticket > div,
.kitchen-ticket footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.kitchen-ticket b {
  color: var(--home-blue);
  text-transform: uppercase;
}

.kitchen-ticket h3 {
  font-size: 34px;
}

.kitchen-ticket p {
  color: #344054;
  font-size: 18px;
}

.kitchen-ticket footer span {
  padding: 8px 10px;
  border-radius: 999px;
  background: #ecfdf3;
  color: #047857;
  font-size: 13px;
  font-weight: 900;
}

.demo-report {
  align-content: start;
}

.demo-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.demo-metrics div,
.report-demo-card,
.report-insights div {
  display: grid;
  gap: 5px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .08);
}

.demo-metrics span,
.report-demo-card span,
.report-insights span {
  color: #aebfda;
  font-size: 13px;
  font-weight: 900;
}

.demo-metrics strong,
.report-demo-card strong,
.report-insights strong {
  color: white;
  font-size: 28px;
}

.demo-chart {
  min-height: 190px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 10px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.demo-chart span {
  height: var(--bar);
  min-height: 34px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, #7dd3fc, #155eef);
}

.premium-main {
  width: min(1240px, calc(100% - 40px));
  padding: 0 0 40px;
  gap: 68px;
}

.home-hero {
  position: relative;
  grid-template-columns: minmax(0, .82fr) minmax(480px, 1fr);
  gap: clamp(56px, 5vw, 72px);
  min-height: auto;
  padding: 72px 0 64px;
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  top: 28px;
  right: -44px;
  bottom: 34px;
  width: 58%;
  border-radius: 28px;
  background:
    radial-gradient(circle at 72% 30%, rgba(17, 184, 216, .20), transparent 32%),
    radial-gradient(circle at 34% 56%, rgba(21, 94, 239, .14), transparent 38%),
    repeating-linear-gradient(90deg, rgba(21, 94, 239, .055) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(0deg, rgba(21, 94, 239, .04) 0 1px, transparent 1px 34px);
  pointer-events: none;
  z-index: 0;
}

.home-hero > * {
  position: relative;
  z-index: 1;
}

.premium-copy {
  gap: 20px;
  align-content: center;
}

.home-hero .hero-eyebrow {
  gap: 0;
  padding: 7px 11px;
  border: 1px solid rgba(21, 94, 239, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .76);
  color: #155eef;
  box-shadow: none;
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0;
}

.hero-eyebrow .mobile-label {
  display: none;
}

.home-hero h1 {
  max-width: 570px;
  margin: 0;
  color: #101828;
  font-size: 60px;
  font-weight: 750;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.home-hero h1 span {
  display: block;
  color: var(--home-blue);
}

.home-hero .premium-copy > p {
  max-width: 540px;
  color: #344054;
  font-size: 18px;
  line-height: 1.58;
}

.home-hero .hero-actions {
  gap: 12px;
  margin-top: 2px;
}

.home-hero .main-cta,
.home-hero .secondary {
  min-height: 50px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 900;
}

.hero-confidence {
  display: grid;
  gap: 12px;
  max-width: 540px;
  padding-top: 2px;
}

.hero-confidence p {
  color: #475467;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.hero-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.hero-indicators span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #344054;
  font-size: 13px;
  font-weight: 850;
}

.hero-indicators svg {
  color: #0f9f6e;
}

.platform-showcase {
  justify-self: end;
  width: min(100%, 680px);
  min-height: auto;
  align-content: center;
  gap: 0;
  padding: 30px 0 0;
}

.platform-showcase::before {
  inset: -34px -16px -28px 28px;
  border: 0;
  border-radius: 28px;
  background:
    radial-gradient(circle at 70% 28%, rgba(17, 184, 216, .25), transparent 31%),
    radial-gradient(circle at 28% 62%, rgba(21, 94, 239, .16), transparent 35%),
    repeating-linear-gradient(90deg, rgba(21, 94, 239, .05) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(0deg, rgba(21, 94, 239, .04) 0 1px, transparent 1px 34px);
  filter: none;
}

.live-badge {
  top: 44px;
  right: 18px;
  z-index: 4;
  gap: 7px;
  padding: 7px 10px;
  border-color: rgba(18, 183, 106, .18);
  background: rgba(255, 255, 255, .90);
  color: #047857;
  font-size: 12px;
  line-height: 1;
  box-shadow: none;
}

.live-badge span {
  width: 7px;
  height: 7px;
  box-shadow: 0 0 0 5px rgba(18, 183, 106, .12);
  animation: livePulse 2.4s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(.82); opacity: .72; }
}

.platform-showcase .demo-tabs {
  width: min(100%, 640px);
  margin-left: auto;
  display: flex;
  gap: 4px;
  padding: 6px 76px 6px 6px;
  border: 1px solid #dce6f3;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  background: rgba(248, 251, 255, .95);
  box-shadow: none;
}

.platform-showcase .demo-tabs button {
  flex: 1;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 12px;
  color: #526179;
  font-size: 13px;
  font-weight: 850;
}

.platform-showcase .demo-tabs button.active {
  background: white;
  color: var(--home-blue);
  box-shadow: 0 8px 18px rgba(16, 24, 40, .08);
}

.platform-showcase .demo-tabs button:focus-visible {
  outline: 3px solid rgba(21, 94, 239, .24);
  outline-offset: 2px;
}

.hero-demo-panel {
  width: min(100%, 640px);
  margin-left: auto;
}

.hero-demo-panel.is-changing .hero-demo-screen,
.hero-demo-screen {
  animation: heroDemoIn .22s ease both;
}

@keyframes heroDemoIn {
  from { opacity: .45; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-demo-screen {
  min-height: 398px;
  max-height: 430px;
  gap: 16px;
  padding: 18px;
  border: 1px solid #dce6f3;
  border-radius: 0 0 18px 18px;
  background: rgba(255, 255, 255, .96);
  color: #101828;
  box-shadow: 0 28px 70px rgba(16, 24, 40, .16);
  overflow: hidden;
}

.demo-toolbar {
  min-height: 34px;
  color: #344054;
}

.demo-toolbar strong {
  gap: 6px;
  padding: 6px 9px;
  border-radius: 999px;
  background: #ecfdf3;
  color: #047857;
  font-size: 12px;
  font-weight: 850;
}

.demo-toolbar strong i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #12b76a;
}

.attendance-flow {
  grid-template-columns: 200px 1fr;
  gap: 14px;
  min-height: 0;
}

.attendance-controls {
  align-content: start;
  gap: 12px;
  padding: 16px;
  border: 1px solid #e1e9f5;
  border-radius: 14px;
  background: #f8fbff;
}

.attendance-controls label {
  color: #667085;
  font-size: 12px;
}

.attendance-controls strong {
  color: #101828;
  font-size: 16px;
}

.attendance-controls button {
  min-height: 46px;
  border-radius: 8px;
  background: var(--home-blue);
  color: white;
}

.attendance-tv {
  min-height: 282px;
  border: 8px solid #14213d;
  border-radius: 16px;
  background:
    radial-gradient(circle at 78% 20%, rgba(17, 184, 216, .24), transparent 31%),
    linear-gradient(135deg, rgba(21, 94, 239, .24), transparent 45%),
    #111c32;
  color: white;
}

.attendance-tv small {
  color: #c9d8f3;
  font-size: 12px;
  letter-spacing: 0;
}

.attendance-tv strong {
  font-size: 78px;
  line-height: .9;
}

.attendance-tv span {
  padding: 8px 14px;
  border-radius: 8px;
  background: #21c4b7;
  color: #031c1b;
  font-size: 18px;
}

.kitchen-ticket-list {
  display: grid;
  gap: 12px;
}

.kitchen-ticket {
  align-self: stretch;
  gap: 9px;
  padding: 18px;
  border-left-width: 5px;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(16, 24, 40, .08);
}

.kitchen-ticket.featured {
  padding: 22px;
}

.kitchen-ticket b {
  font-size: 13px;
}

.kitchen-ticket h3 {
  font-size: 26px;
  line-height: 1.12;
}

.kitchen-ticket p {
  color: #344054;
  font-size: 15px;
  line-height: 1.35;
}

.kitchen-ticket footer span {
  border-radius: 8px;
}

.demo-report {
  align-content: stretch;
}

.demo-report .demo-metrics {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.demo-report .demo-metrics div {
  min-height: 82px;
  border-color: #e1e9f5;
  background: #f8fbff;
}

.demo-report .demo-metrics span {
  color: #526179;
  font-size: 12px;
}

.demo-report .demo-metrics strong {
  color: #101828;
  font-size: 28px;
}

.demo-report .demo-chart {
  min-height: 130px;
  background: #101828;
}

.demo-footnote {
  color: #667085;
  font-size: 12px;
}

.solutions-section {
  display: grid;
  gap: 30px;
}

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

.solution-group {
  align-content: start;
  padding: 22px;
}

.solution-group.gestao {
  border-top: 4px solid #0f172a;
}

.solution-group.cozinha {
  border-top: 4px solid #16a34a;
}

.solution-group.cozinha .solution-group-copy > span {
  color: #047857;
  background: #ecfdf3;
}

.solution-title-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.solution-title-row svg {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  color: var(--home-blue);
}

.solution-group.cozinha .solution-title-row svg {
  color: #047857;
}

.solution-group.gestao .solution-title-row svg {
  color: #0f172a;
}

.solution-preview {
  min-height: 178px;
  border-radius: 8px;
  overflow: hidden;
}

.attendance-preview,
.solution-tv-preview {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  text-align: center;
  border: 1px solid #dbe6f5;
  background:
    linear-gradient(135deg, rgba(21, 94, 239, .18), transparent 46%),
    #0e1931;
  color: white;
}

.attendance-preview span,
.attendance-preview small {
  color: #c7d7ee;
  font-weight: 900;
}

.attendance-preview strong {
  font-size: 70px;
  line-height: .95;
}

.kitchen-preview {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(22, 163, 74, .16), transparent 44%),
    #101828;
}

.kitchen-preview article {
  display: grid;
  gap: 4px;
  padding: 13px;
  border-left: 4px solid var(--home-orange);
  border-radius: 8px;
  background: white;
}

.kitchen-preview b {
  color: var(--home-blue);
  font-size: 12px;
  text-transform: uppercase;
}

.kitchen-preview strong {
  color: var(--home-ink);
}

.kitchen-preview span {
  color: #526179;
  font-size: 14px;
}

.report-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  background: #0f172a;
}

.report-preview div {
  display: grid;
  gap: 4px;
  padding: 13px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.report-preview span {
  color: #bdd0f4;
  font-size: 12px;
  font-weight: 850;
}

.report-preview strong {
  color: white;
  font-size: 21px;
}

.solution-checklist {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.solution-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #344054;
  font-weight: 850;
}

.solution-checklist svg {
  color: var(--home-green);
}

.reports-spotlight {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(460px, 1.15fr);
  gap: 34px;
  align-items: center;
  padding: 38px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(17, 184, 216, .16), transparent 45%),
    #0b1220;
  color: white;
  box-shadow: 0 30px 90px rgba(16, 24, 40, .24);
}

.reports-spotlight .eyebrow {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .16);
  color: #7dd3fc;
}

.reports-copy {
  display: grid;
  gap: 17px;
}

.reports-copy h2,
.reports-copy p {
  color: white;
}

.reports-copy p {
  color: #d7e2f6;
}

.reports-copy strong {
  display: block;
  padding: 14px 16px;
  border-left: 4px solid #7dd3fc;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  color: white;
  font-size: 18px;
}

.reports-showcase {
  display: grid;
  gap: 12px;
}

.reports-showcase > small {
  color: #aebfda;
}

.report-window {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
}

.report-window-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  color: white;
  font-weight: 950;
}

.fake-report-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  background: white;
  color: var(--home-blue);
  font-weight: 950;
}

.report-filter-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.report-filter-row span {
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  color: #cfe0ff;
  font-size: 13px;
  font-weight: 850;
}

.report-demo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.report-demo-card strong {
  font-size: 25px;
}

.report-insights {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.report-insights div {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.report-insights strong {
  font-size: 16px;
  text-align: right;
}

.operators-section {
  display: grid;
}

.operators-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 28px;
  align-items: center;
  padding: 30px;
  border: 1px solid #dfe8f5;
  border-radius: 8px;
  background: white;
  box-shadow: 0 20px 58px rgba(16, 24, 40, .07);
}

.operator-mockup {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid #dfe8f5;
  border-radius: 8px;
  background: #f8fbff;
}

.operator-mockup div:not(.operator-actions) {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px;
  border-radius: 8px;
  background: white;
  font-weight: 850;
}

.operator-mockup span {
  color: #526179;
}

.operator-mockup button {
  min-height: 52px;
  background: var(--home-blue);
}

.operator-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.operator-actions span {
  padding: 10px;
  border-radius: 8px;
  background: #e8eef7;
  color: #1d2939;
  text-align: center;
  font-weight: 900;
}

.operator-mockup small {
  color: #047857;
  font-weight: 900;
}

.refined-flow {
  align-items: stretch;
}

.connected-demo {
  display: grid;
  grid-template-columns: 1fr 36px 1fr 36px 1fr;
  align-items: center;
  padding: 18px;
  border-radius: 8px;
  background: #0d1831;
  color: white;
}

.connected-demo div {
  min-height: 160px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  text-align: center;
}

.connected-demo span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #cfe0ff;
  font-weight: 900;
}

.connected-demo strong {
  font-size: 20px;
}

.connected-demo i {
  height: 2px;
  background: linear-gradient(90deg, var(--home-cyan), var(--home-blue));
}

.media-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr);
  gap: 26px;
  align-items: center;
  padding: 30px;
  border: 1px solid #dfe8f5;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(21, 94, 239, .07), transparent 50%),
    white;
}

.media-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.media-strip span {
  min-height: 78px;
  display: grid;
  place-items: center;
  border: 1px solid #dfe8f5;
  border-radius: 8px;
  background: #f8fbff;
  color: #1d2939;
  font-weight: 950;
}

.segment-experience {
  padding: 0;
}

.segment-tabs {
  overflow-x: auto;
  padding-bottom: 4px;
}

.segment-tabs button {
  white-space: nowrap;
}

.offer-section {
  grid-template-columns: minmax(0, 1fr) 420px;
}

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

.faq-list details {
  align-self: start;
}

.final-cta {
  grid-template-columns: minmax(0, 1fr) 420px;
}

.final-platform-preview {
  grid-template-columns: 1fr;
  gap: 10px;
  min-height: 260px;
  padding: 10px;
  border: 0;
  background: rgba(255, 255, 255, .08);
}

.final-platform-preview div {
  display: grid;
  grid-template-columns: 1fr auto auto;
  justify-items: start;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 8px;
  background: white;
  color: var(--home-ink);
}

.final-platform-preview span {
  color: #526179;
  font-weight: 900;
}

.final-platform-preview strong {
  color: var(--home-blue);
  font-size: 32px;
}

.final-platform-preview small {
  background: #ecfdf3;
  color: #047857;
}

.brand-link {
  color: inherit;
  text-decoration: none;
}

.legal-page {
  min-height: 100vh;
  color: var(--home-ink);
}

.legal-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.legal-header-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #526179;
  font-weight: 850;
}

.legal-header-nav a:hover {
  color: var(--home-blue);
}

.legal-main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0 72px;
}

.legal-hero {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid #dce6f3;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(21, 94, 239, .10), transparent 42%),
    linear-gradient(135deg, white, #f6fbff);
  box-shadow: 0 22px 70px rgba(16, 24, 40, .08);
}

.legal-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  line-height: .98;
  letter-spacing: 0;
}

.legal-hero p {
  max-width: 780px;
  margin: 0;
  color: #526179;
  font-size: 18px;
  line-height: 1.65;
}

.legal-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-meta-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid #dbe5f2;
  border-radius: 8px;
  background: white;
  color: #344054;
  font-size: 14px;
  font-weight: 850;
}

.legal-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 28px;
  margin-top: 28px;
  align-items: start;
}

.legal-aside {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 16px;
}

.legal-aside > div,
.legal-switch-link {
  border: 1px solid #dce6f3;
  border-radius: 14px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 14px 46px rgba(16, 24, 40, .06);
}

.legal-aside > div {
  padding: 22px;
}

.legal-aside h2 {
  margin: 8px 0 12px;
  font-size: 22px;
}

.legal-aside ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: #526179;
  line-height: 1.55;
}

.legal-contact-card {
  display: grid;
  gap: 8px;
  color: #526179;
  line-height: 1.5;
}

.legal-contact-card strong {
  color: #101828;
}

.legal-contact-card a {
  color: var(--home-blue);
  font-weight: 900;
}

.legal-switch-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 16px;
  color: var(--home-blue);
  font-weight: 950;
  text-align: center;
}

.legal-document {
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid #dce6f3;
  border-radius: 18px;
  background: white;
  box-shadow: 0 18px 60px rgba(16, 24, 40, .07);
}

.legal-document h2 {
  margin: 34px 0 12px;
  padding-top: 24px;
  border-top: 1px solid #e6edf7;
  color: #101828;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}

.legal-document h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.legal-document h3 {
  margin: 24px 0 10px;
  color: #1d2939;
  font-size: 21px;
}

.legal-document h4 {
  margin: 20px 0 8px;
  color: #344054;
  font-size: 18px;
}

.legal-document p,
.legal-document li {
  color: #475467;
  font-size: 16px;
  line-height: 1.75;
}

.legal-document p {
  margin: 0 0 14px;
}

.legal-document ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 24px;
}

.legal-document strong {
  color: #101828;
}

.legal-document a {
  color: var(--home-blue);
  font-weight: 900;
}

.legal-document code {
  padding: 2px 6px;
  border-radius: 6px;
  background: #eef4ff;
  color: #155eef;
  font-size: .92em;
}

.legal-loading,
.legal-error {
  min-height: 220px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  color: #526179;
  text-align: center;
}

.legal-error h2 {
  margin: 0;
  padding: 0;
  border: 0;
}

.legal-footer {
  margin-top: 10px;
}

@media (max-width: 1050px) {
  .home-hero,
  .reports-spotlight,
  .operators-card,
  .media-section,
  .offer-section,
  .final-cta {
    grid-template-columns: 1fr;
  }
  .platform-showcase {
    min-height: auto;
  }
  .hero-demo-panel {
    margin-left: 0;
  }
  .solutions-grid.three-columns,
  .faq-list {
    grid-template-columns: 1fr;
  }
  .legal-layout {
    grid-template-columns: 1fr;
  }
  .legal-aside {
    position: static;
  }
  .report-demo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 54px 0 58px;
  }
  .home-hero::before {
    top: 42%;
    right: -28px;
    bottom: 10px;
    width: 104%;
  }
  .home-hero h1 {
    max-width: 760px;
    font-size: 54px;
  }
  .home-hero .premium-copy > p {
    max-width: 660px;
  }
  .platform-showcase {
    justify-self: stretch;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }
  .platform-showcase .demo-tabs,
  .hero-demo-panel {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 900px) {
  .premium-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 12px 14px;
  }
  .premium-header .public-brand {
    min-width: 0;
  }
  .premium-header .public-brand small {
    display: none;
  }
  .home-menu {
    display: grid;
  }
  .home-nav {
    display: none;
    grid-column: 1 / -1;
    padding: 12px;
    border: 1px solid #dfe8f5;
    border-radius: 8px;
    background: white;
  }
  .home-nav.open {
    display: grid;
  }
  .premium-header .home-actions {
    display: none;
  }
}

@media (max-width: 760px) {
  .premium-header {
    grid-template-columns: 1fr auto;
    padding: 12px 14px;
  }
  .premium-main {
    width: min(100% - 28px, 1180px);
    padding-top: 38px;
    gap: 52px;
  }
  .home-actions {
    grid-column: 1 / -1;
  }
  .hero-actions,
  .trust-line,
  .demo-tabs {
    width: 100%;
  }
  .demo-tabs {
    overflow-x: auto;
  }
  .demo-tabs button {
    flex: 1 0 auto;
  }
  .hero-demo-screen {
    min-height: auto;
    padding: 14px;
  }
  .attendance-flow,
  .report-filter-row,
  .report-insights div,
  .connected-demo,
  .final-platform-preview div {
    grid-template-columns: 1fr;
  }
  .premium-main {
    width: 100%;
    padding: 0 0 32px;
    gap: 52px;
  }
  .home-hero {
    gap: 26px;
    padding: 34px 20px 46px;
  }
  .home-hero::before {
    top: 48%;
    right: -34px;
    bottom: 8px;
    width: 112%;
    opacity: .88;
  }
  .premium-copy {
    gap: 0;
  }
  .home-hero .hero-eyebrow {
    margin-bottom: 20px;
    padding: 6px 9px;
    font-size: 10.5px;
  }
  .hero-eyebrow .desktop-label {
    display: none;
  }
  .hero-eyebrow .mobile-label {
    display: inline;
  }
  .home-hero h1 {
    max-width: 390px;
    font-size: 42px;
    line-height: 1.06;
  }
  .home-hero .premium-copy > p {
    max-width: 390px;
    margin-top: 20px;
    color: #344054;
    font-size: 16px;
    line-height: 1.55;
  }
  .home-hero .hero-actions {
    display: grid;
    width: 100%;
    gap: 11px;
    margin-top: 26px;
  }
  .home-hero .main-cta,
  .home-hero .secondary {
    width: 100%;
    min-height: 50px;
    justify-content: center;
  }
  .hero-confidence {
    gap: 9px;
    margin-top: 16px;
  }
  .hero-confidence p {
    font-size: 13px;
  }
  .hero-indicators {
    gap: 8px 12px;
  }
  .hero-indicators span {
    font-size: 12px;
  }
  .platform-showcase {
    padding: 0;
  }
  .platform-showcase::before {
    inset: 28px -18px -18px 16px;
    border-radius: 22px;
  }
  .live-badge {
    top: 54px;
    right: 12px;
    padding: 6px 8px;
    font-size: 11px;
  }
  .platform-showcase .demo-tabs {
    width: 100%;
    padding: 5px;
    border-radius: 14px 14px 0 0;
  }
  .platform-showcase .demo-tabs button {
    min-height: 42px;
    padding: 7px 6px;
    font-size: 12px;
  }
  .hero-demo-screen {
    min-height: 340px;
    max-height: none;
    gap: 13px;
    padding: 14px;
    border-radius: 0 0 14px 14px;
  }
  .demo-toolbar {
    min-height: 32px;
  }
  .demo-toolbar strong {
    padding: 5px 8px;
    font-size: 11px;
  }
  .demo-attendance .attendance-flow {
    display: grid;
    align-content: start;
  }
  .demo-attendance .attendance-controls {
    position: relative;
    z-index: 2;
    width: min(100%, 300px);
    margin: 0 auto -24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    padding: 12px;
  }
  .demo-attendance .attendance-controls label {
    font-size: 12px;
  }
  .demo-attendance .attendance-controls strong {
    font-size: 14px;
  }
  .demo-attendance .attendance-controls button {
    grid-column: 1 / -1;
    min-height: 44px;
  }
  .attendance-tv {
    min-height: 224px;
    padding-top: 24px;
    border-width: 7px;
  }
  .attendance-tv strong {
    font-size: 66px;
  }
  .attendance-tv span {
    font-size: 15px;
  }
  .kitchen-ticket-list {
    gap: 10px;
  }
  .kitchen-ticket,
  .kitchen-ticket.featured {
    gap: 7px;
    padding: 14px;
  }
  .kitchen-ticket h3 {
    font-size: 21px;
  }
  .kitchen-ticket p {
    font-size: 13px;
  }
  .kitchen-ticket footer span {
    padding: 6px 8px;
    font-size: 12px;
  }
  .demo-report .demo-metrics {
    gap: 8px;
  }
  .demo-report .demo-metrics div {
    min-height: 70px;
    padding: 12px;
  }
  .demo-report .demo-metrics strong {
    font-size: 23px;
  }
  .demo-report .demo-chart {
    min-height: 86px;
    padding: 12px;
  }
  .demo-chart span {
    min-height: 22px;
  }
  .legal-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .legal-header-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .legal-main {
    width: min(100% - 28px, 1180px);
    padding: 32px 0 52px;
  }
  .legal-hero,
  .legal-document,
  .legal-aside > div {
    border-radius: 12px;
  }
  .legal-meta-row span {
    width: 100%;
  }
  .attendance-tv {
    min-height: 260px;
  }
  .attendance-tv strong {
    font-size: 76px;
  }
  .kitchen-ticket {
    padding: 18px;
  }
  .kitchen-ticket h3 {
    font-size: 26px;
  }
  .reports-spotlight,
  .operators-card,
  .media-section,
  .final-cta {
    padding: 22px;
  }
  .connected-demo {
    gap: 10px;
  }
  .connected-demo i {
    width: 2px;
    height: 22px;
    justify-self: center;
  }
  .operator-actions,
  .media-strip {
    grid-template-columns: 1fr;
  }
  .report-insights strong {
    text-align: left;
  }
}

.tv {
  height: 100vh;
  overflow: hidden;
  color: white;
  background: #08111f;
  display: grid;
  grid-template-rows: 84px 1fr 150px;
}

.tv-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  background: rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.tv-company {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 26px;
  font-weight: 900;
}

.tv-clock {
  font-size: 24px;
  font-weight: 800;
}

.tv-main {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
  min-height: 0;
}

.call-stage {
  display: grid;
  place-items: center;
  padding: 32px;
  background: radial-gradient(circle at 20% 20%, rgba(20,184,166,.32), transparent 35%), #0b1630;
}

.call-box {
  width: 100%;
  max-width: 780px;
  text-align: center;
  display: grid;
  gap: 18px;
}

.call-label {
  font-size: clamp(20px, 2vw, 34px);
  text-transform: uppercase;
  letter-spacing: 0;
  color: #b8c8e8;
  font-weight: 900;
}

.ticket-code {
  max-width: 100%;
  font-size: clamp(46px, min(12vw, 18vh), 210px);
  line-height: 1;
  font-weight: 1000;
  text-shadow: 0 18px 70px rgba(0,0,0,.35);
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
}

.ticket-code.pulse {
  animation: pulse-ticket .72s ease;
}

@keyframes pulse-ticket {
  0% { transform: scale(.9); filter: brightness(1.4); }
  50% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

.counter-name {
  justify-self: center;
  background: var(--accent);
  padding: 14px 26px;
  border-radius: 8px;
  font-size: clamp(28px, 5vw, 76px);
  font-weight: 1000;
  color: #05201d;
}

.media-panel {
  min-width: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  border-left: 1px solid rgba(255,255,255,.12);
  background: #0f172a;
}

.media-frame {
  min-height: 0;
  display: grid;
  place-items: center;
  background: #111827;
}

.media-frame img, .media-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-empty {
  padding: 30px;
  display: grid;
  gap: 10px;
  place-items: center;
  text-align: center;
  color: #d7deea;
  font-size: 26px;
  font-weight: 800;
}

.media-empty strong {
  display: block;
  color: white;
  font-size: 34px;
  line-height: 1;
}

.media-empty span {
  display: block;
  max-width: 520px;
  color: #d7deea;
  line-height: 1.25;
}

.media-caption {
  padding: 14px 18px;
  background: rgba(255,255,255,.08);
  color: #d7deea;
}

.last-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  background: rgba(255,255,255,.06);
}

.last-item {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255,255,255,.08);
}

.last-item strong {
  display: block;
  font-size: clamp(20px, 2.4vw, 34px);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.last-item span {
  color: #c8d3e7;
  font-weight: 700;
}

.switch {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.switch input { width: auto; }

.muted {
  color: var(--muted);
  font-size: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.badge.ok {
  background: #ecfdf3;
  color: #027a48;
}

.badge.off {
  background: #fff1f3;
  color: #c01048;
}

.asset-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

.asset-grid.compact {
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  max-height: 420px;
  overflow: auto;
}

.asset {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: white;
}

.asset img, .asset video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: #111827;
}

.asset div {
  padding: 10px;
  font-size: 13px;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.asset-footer {
  display: grid;
  gap: 8px;
  padding: 10px;
}

.asset-footer div {
  padding: 0;
}

.asset-footer button {
  width: 100%;
  padding: 9px 10px;
}

.status {
  padding: 10px 12px;
  border-radius: 8px;
  background: #ecfdf3;
  color: #027a48;
  font-weight: 800;
}

.error {
  padding: 10px 12px;
  border-radius: 8px;
  background: #fff1f3;
  color: #c01048;
  font-weight: 800;
}

@media (max-width: 900px) {
  .shell { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .nav { grid-template-columns: repeat(3, 1fr); }
  .grid.two, .grid.three, .feature-grid, .steps, .hero { grid-template-columns: 1fr; }
  .hero { min-height: 0; }
  .mockup-screen { grid-template-columns: 1fr; }
  .metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .topbar { align-items: flex-start; flex-direction: column; }
  .tv { height: auto; min-height: 100vh; grid-template-rows: auto 1fr auto; }
  .tv-main { grid-template-columns: 1fr; }
  .media-panel { border-left: 0; min-height: 320px; }
  .last-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .daily-summary-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .content { padding: 18px; }
  .home-header { padding: 14px; }
  .home-main { width: min(100% - 28px, 1180px); padding: 34px 0; }
  .home-header .actions { grid-template-columns: 1fr; width: auto; }
  .contact-section { grid-template-columns: 1fr; padding: 24px; }
  .contact-section .contact-button { width: 100%; }
  .actions { display: grid; }
  .topbar-actions, .workspace-picker { width: 100%; }
  .metric-grid { grid-template-columns: 1fr; }
  .daily-summary-row { grid-template-columns: 1fr; }
  .daily-summary-row span { white-space: normal; }
  .nav { grid-template-columns: 1fr; }
  .tv-header { align-items: flex-start; flex-direction: column; }
  .last-strip { grid-template-columns: 1fr; }
}

.settings-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.settings-tabs a,
.button-like {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  color: #0f172a;
  font-weight: 800;
  text-decoration: none;
}

.settings-tabs a:hover,
.button-like:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.section-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-title h2,
.section-title p {
  margin: 0;
}

.section-title p {
  margin-top: 5px;
  color: var(--muted);
}

.list-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.list-header h2,
.list-header h3,
.list-header p {
  margin: 0;
}

.list-header p {
  margin-top: 5px;
  color: var(--muted);
}

.search-field {
  min-width: min(320px, 100%);
}

.search-field input {
  margin-top: 6px;
}

.searchable-select {
  display: grid;
  gap: 6px;
}

.select-search {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  min-height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  padding: 0 10px;
  color: var(--muted);
}

.select-search input {
  min-height: 34px;
  border: 0;
  padding: 0;
  background: transparent;
}

.select-search input:focus {
  outline: none;
}

.scroll-three-rows {
  max-height: 232px;
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.scroll-three-rows .table {
  margin: 0;
}

.scroll-three-rows thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #ffffff;
}

.filter-empty {
  margin-top: 12px;
}

.settings-card {
  display: grid;
  gap: 18px;
}

.settings-groups {
  display: grid;
  gap: 14px;
}

.settings-group {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  background: #fbfdff;
}

.settings-group h3 {
  margin: 0 0 12px;
}

.system-brand-card {
  display: grid;
  gap: 16px;
}

.system-brand-layout {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(320px, 1fr);
  gap: 18px;
  align-items: stretch;
}

.system-brand-preview {
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  display: grid;
  align-content: center;
  gap: 14px;
  background: linear-gradient(135deg, #f8fbff, #eef6ff);
}

.system-brand-preview > span {
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}

.system-brand-actions {
  display: grid;
  align-content: start;
  gap: 12px;
}

.brand-current-logo {
  width: 92px;
  height: 92px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: contain;
  background: white;
  padding: 8px;
}

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

.attendant-app {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 18px;
  align-items: stretch;
}

.call-card,
.manual-card {
  display: grid;
  align-content: start;
  gap: 16px;
}

.call-actions {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 10px;
}

.primary-big {
  min-height: 58px;
  font-size: 18px;
}

.current-pill,
.license-mini {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: #ecfeff;
  color: #0f766e;
  font-weight: 900;
  padding: 10px 12px;
}

.workspaces-plan-card {
  display: grid;
  gap: 18px;
}

.workspace-plan-list {
  display: grid;
  gap: 14px;
  max-height: 560px;
  overflow: auto;
  padding-right: 4px;
}

.workspace-plan-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  display: grid;
  gap: 14px;
  background: #fff;
}

.workspace-plan-head,
.workspace-plan-summary,
.workspace-plan-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.workspace-plan-head strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.workspace-plan-head a {
  display: block;
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  margin-top: 2px;
}

.workspace-plan-status {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.workspace-plan-summary {
  justify-content: flex-start;
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}

.workspace-plan-summary span {
  padding: 7px 10px;
  border-radius: 8px;
  background: #f6f8fc;
}

.workspace-plan-controls {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr .8fr .8fr auto;
  gap: 12px;
  align-items: end;
}

.workspace-plan-controls .switch {
  min-height: 54px;
  align-items: center;
}

.mini-current {
  display: grid;
  gap: 6px;
  margin-top: 10px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #f8fafc;
}

.mini-current span {
  color: var(--muted);
  font-weight: 800;
}

.blocked-workspace {
  border-color: #fecdd3;
  background: #fff8fa;
}

.blocked-workspace h2 {
  margin-bottom: 8px;
}

.blocked-workspace p {
  max-width: 760px;
}

.license-alert-list {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.license-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  background: #fff7ed;
  color: #9a3412;
  padding: 12px 14px;
  font-weight: 800;
}

.license-alert.vencido,
.license-alert.bloqueado {
  border-color: #fecdd3;
  background: #fff1f2;
  color: #be123c;
}

.badge.warn {
  background: #fff7ed;
  color: #c2410c;
}

.badge.danger {
  background: #fff1f2;
  color: #be123c;
}

.metric-grid.compact {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 12px 0 18px;
}

.metric-grid.report-metrics-attendance,
.metric-grid.report-metrics-kitchen {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.daily-summary-box {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #f8fafc;
  padding: 14px;
  margin: 0 0 18px;
}

.summary-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 900;
}

.daily-summary-row {
  display: grid;
  grid-template-columns: minmax(110px, 1fr) repeat(auto-fit, minmax(120px, auto));
  gap: 12px;
  align-items: center;
  border-top: 1px solid var(--border);
  padding: 10px 0;
}

.summary-heading + .daily-summary-row {
  border-top: 0;
}

.daily-summary-row span {
  color: var(--muted);
  font-weight: 800;
  white-space: nowrap;
}

.report-grid h3 {
  margin: 0 0 10px;
}

.report-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--border);
  padding: 9px 0;
}

.report-line span {
  color: var(--muted);
}

.media-manager {
  display: grid;
  gap: 16px;
}

.advertising-manager {
  display: grid;
  gap: 18px;
}

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

.ad-summary div {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #f8fbff;
}

.ad-summary span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ad-summary strong {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-size: 30px;
  line-height: 1;
}

.campaign-form {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid #dce6f3;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.campaign-workspaces {
  max-height: 240px;
  display: grid;
  gap: 8px;
  overflow: auto;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
}

.campaign-workspaces[hidden] {
  display: none;
}

.campaign-workspace-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  background: #ffffff;
}

.campaign-workspace-option span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.campaign-workspace-option small {
  color: var(--muted);
}

.campaign-list {
  display: grid;
  gap: 12px;
}

.campaign-list h3 {
  margin: 0;
}

.campaign-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
}

.campaign-preview {
  min-height: 102px;
  overflow: hidden;
  border-radius: 8px;
  background: #0f172a;
}

.campaign-preview img,
.campaign-preview video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campaign-body {
  display: grid;
  align-content: start;
  gap: 7px;
  min-width: 0;
}

.campaign-editor {
  display: grid;
  gap: 10px;
  padding-top: 6px;
}

.campaign-editor label {
  min-width: 0;
}

.campaign-editor .grid {
  gap: 10px;
}

.campaign-editor .actions {
  margin-top: 0;
}

.campaign-title,
.asset-title-row,
.campaign-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.campaign-title strong,
.asset-title-row strong {
  color: var(--text);
}

.campaign-status {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 999px;
  background: #e2e8f0;
  color: #334155;
  font-size: 12px;
  font-weight: 900;
}

.campaign-status.ativa {
  background: #dcfce7;
  color: #166534;
}

.campaign-status.agendada {
  background: #dbeafe;
  color: #1d4ed8;
}

.campaign-status.encerrada,
.campaign-status.pausada {
  background: #fee2e2;
  color: #991b1b;
}

.campaign-meta span,
.campaign-small {
  color: var(--muted);
  font-size: 13px;
}

.media-upload-row {
  align-items: end;
}

.file-preview {
  display: none;
  align-items: center;
  gap: 12px;
  border: 1px dashed var(--border);
  border-radius: 8px;
  padding: 12px;
  background: #f8fafc;
}

.file-preview:not(:empty) {
  display: flex;
}

.file-preview img,
.file-preview video {
  width: 160px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  background: #0f172a;
}

.asset-grid.managed {
  grid-template-columns: repeat(auto-fill, minmax(220px, 260px));
  align-items: start;
  justify-content: start;
  gap: 14px;
}

.asset-grid.managed .asset {
  max-width: 260px;
}

.asset-grid.managed .asset img,
.asset-grid.managed .asset video {
  height: 120px;
  aspect-ratio: auto;
  object-fit: contain;
  background: #f8fafc;
  border-bottom: 1px solid var(--line);
}

.asset .asset-body,
.asset .asset-body div,
.asset .asset-body p {
  white-space: normal;
  overflow: visible;
  text-overflow: initial;
}

.asset .asset-body {
  display: grid;
  gap: 8px;
  padding: 10px;
}

.asset .asset-body label {
  font-size: 12px;
}

.asset .asset-body input,
.asset .asset-body select {
  margin-top: 5px;
  min-height: 36px;
}

.tv-license-warning {
  display: none;
}

.tv-license-warning:not(:empty) {
  display: inline-flex;
  align-items: center;
  max-width: min(48vw, 620px);
  border-radius: 8px;
  background: #fff1f2;
  color: #be123c;
  padding: 10px 12px;
  font-weight: 900;
}

.ticket-code {
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 0.95;
}

textarea {
  width: 100%;
  resize: vertical;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  font: inherit;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.module-pill {
  align-items: center;
  background: #eef6ff;
  border-radius: 8px;
  color: #155eef;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  min-height: 28px;
  padding: 5px 10px;
}

.span-two {
  grid-column: 1 / -1;
}

.search-mini {
  color: var(--muted);
  height: 16px;
  width: 16px;
}

.is-filtered-out,
[hidden].is-filtered-out {
  display: none !important;
}

.kitchen-panel {
  display: grid;
  gap: 18px;
}

.kitchen-box {
  background: #fbfdff;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 16px;
}

.kitchen-box h3,
.kitchen-lists h3 {
  margin: 0 0 10px;
}

.kitchen-items-head {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.kitchen-order-items {
  display: grid;
  gap: 10px;
}

.kitchen-add-item-button {
  justify-self: end;
  min-height: 44px;
  width: min(220px, 100%);
}

.kitchen-order-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 12px;
}

.kitchen-item-main {
  align-items: end;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(180px, 1fr) 120px auto;
}

.kitchen-item-main button {
  min-height: 44px;
}

.kitchen-item-addons {
  background: #f8fbff;
}

.kitchen-item-details {
  gap: 10px;
}

.kitchen-quick-form {
  align-items: end;
}

.kitchen-quick-form button {
  align-self: end;
  min-height: 46px;
  width: min(260px, 100%);
}

.addon-checks {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  padding: 12px;
}

.kitchen-orders-section {
  border-top: 1px solid var(--border);
  display: grid;
  gap: 16px;
  padding-top: 18px;
}

.kitchen-report-card {
  border-top: 1px solid var(--border);
  display: grid;
  gap: 16px;
  padding-top: 18px;
}

.kitchen-report-card .section-title {
  align-items: flex-start;
}

.kitchen-section-head {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.kitchen-section-head h3 {
  font-size: 26px;
  margin: 4px 0;
}

.kitchen-section-head p {
  color: var(--muted);
  margin: 0;
}

.section-kicker {
  color: #155eef;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.kitchen-board {
  align-items: start;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.kitchen-board-simple {
  overflow: visible;
}

.kitchen-column {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 8px;
  min-width: 220px;
  padding: 10px;
}

.kitchen-column header {
  align-items: center;
  display: flex;
  font-weight: 900;
  justify-content: space-between;
  margin-bottom: 10px;
}

.kitchen-column header strong {
  background: #fff;
  border-radius: 8px;
  padding: 4px 8px;
}

.kitchen-column-list {
  display: grid;
  gap: 10px;
  max-height: 70vh;
  overflow: auto;
}

.kitchen-order {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  padding: 16px;
}

.kitchen-order.urgent {
  border-color: #f97316;
  box-shadow: inset 4px 0 0 #f97316, 0 10px 24px rgba(15, 23, 42, 0.06);
}

.kitchen-order-head,
.kitchen-order-meta,
.kitchen-actions {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: space-between;
}

.kitchen-order-number {
  color: #155eef;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.kitchen-customer {
  display: block;
  font-size: 22px;
  margin-top: 10px;
}

.kitchen-order h3 {
  font-size: 22px;
  margin: 10px 0;
}

.kitchen-order p {
  color: #334155;
  margin: 6px 0;
}

.kitchen-order-meta {
  color: var(--muted);
  font-size: 12px;
  margin-top: 10px;
}

.kitchen-actions {
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 12px;
}

.kitchen-empty {
  background: #f8fafc;
  border: 1px dashed var(--border);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 800;
  padding: 24px;
  text-align: center;
}

.kitchen-tv {
  background: #0f172a;
  color: #fff;
  display: grid;
  gap: 18px;
  grid-template-rows: auto 1fr;
  min-height: 100vh;
  padding: 24px;
}

.kitchen-tv header {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.kitchen-tv header div {
  align-items: center;
  display: flex;
  gap: 12px;
}

.kitchen-tv-actions {
  justify-content: flex-end;
}

.kitchen-tv .ghost {
  border-color: #334155;
  color: #fff;
}

.kitchen-tv h1 {
  font-size: clamp(28px, 4vw, 54px);
  margin: 0;
}

.kitchen-tv .kitchen-board {
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kitchen-tv .kitchen-column {
  background: #172033;
  border-color: #2b3a55;
}

.kitchen-tv .kitchen-column header strong {
  background: #0f172a;
  color: #fff;
}

.kitchen-tv .kitchen-order {
  color: #0f172a;
  min-height: 260px;
  padding: 24px;
}

.kitchen-tv .kitchen-order-number {
  font-size: 18px;
}

.kitchen-tv .kitchen-customer {
  font-size: clamp(30px, 3vw, 52px);
  line-height: 1.05;
}

.kitchen-tv .kitchen-order h3 {
  font-size: clamp(28px, 2.6vw, 46px);
  line-height: 1.12;
}

.kitchen-tv .kitchen-order p {
  font-size: clamp(18px, 1.4vw, 26px);
}

.kitchen-tv .kitchen-column.entregue,
.kitchen-tv .kitchen-column.cancelado {
  opacity: 0.72;
}

.kitchen-waiting {
  border: 1px solid #334155;
  border-radius: 8px;
  color: #cbd5e1;
  display: grid;
  font-size: 24px;
  place-items: center;
}

@media (max-width: 900px) {
  .attendant-app,
  .grid.four,
  .system-brand-layout,
  .metric-grid.compact,
  .ad-summary,
  .campaign-card {
    grid-template-columns: 1fr;
  }

  .call-actions {
    grid-template-columns: 1fr;
  }

  .primary-big,
  .call-actions button,
  .manual-card button {
    min-height: 60px;
    font-size: 18px;
  }

  .section-title {
    flex-direction: column;
  }

  .list-header {
    align-items: stretch;
    flex-direction: column;
  }

  .search-field {
    width: 100%;
  }

  .settings-tabs {
    position: sticky;
    top: 0;
    z-index: 5;
    background: rgba(244, 247, 251, 0.96);
    padding: 10px 0;
  }

  .span-two {
    grid-column: auto;
  }

  .kitchen-order-item {
    grid-template-columns: 1fr;
  }

  .kitchen-item-main {
    grid-template-columns: 1fr;
  }

  .kitchen-section-head {
    align-items: stretch;
    flex-direction: column;
  }

  .kitchen-board,
  .kitchen-tv .kitchen-board {
    grid-template-columns: 1fr;
  }

  .kitchen-tv {
    padding: 16px;
  }

  .kitchen-tv header {
    align-items: flex-start;
    flex-direction: column;
  }

  .workspace-plan-controls {
    grid-template-columns: 1fr 1fr;
  }

  .workspace-plan-controls .switch {
    min-height: auto;
  }
}

@media (max-width: 430px) {
  .home-hero {
    padding-left: 20px;
    padding-right: 20px;
  }
  .home-hero h1 {
    font-size: 40px;
  }
  .home-hero .premium-copy > p {
    max-width: 350px;
  }
  .hero-demo-screen {
    min-height: 328px;
  }
}

@media (max-width: 360px) {
  .home-hero {
    padding-left: 18px;
    padding-right: 18px;
  }
  .home-hero h1 {
    font-size: 38px;
  }
  .home-hero .hero-eyebrow {
    font-size: 10px;
  }
  .platform-showcase .demo-tabs button {
    font-size: 11.5px;
  }
  .attendance-tv strong {
    font-size: 60px;
  }
  .demo-attendance .attendance-controls {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 330px) {
  .home-hero h1 {
    font-size: 38px;
  }
  .home-hero .premium-copy > p {
    font-size: 15px;
  }
  .hero-indicators {
    display: grid;
  }
  .workspace-plan-controls {
    grid-template-columns: 1fr;
  }
  .kitchen-ticket h3 {
    font-size: 19px;
  }
}
