/* =====================================================
   ZENDYAGENDA PRO - TEMA CLARO PREMIUM
===================================================== */

:root {
  --bg: #f5f7fb;
  --bg-soft: #eef2ff;
  --card: rgba(255, 255, 255, 0.92);
  --card2: #ffffff;
  --line: rgba(15, 23, 42, 0.10);
  --text: #0f172a;
  --muted: #64748b;
  --purple: #7c3aed;
  --blue: #2563eb;
  --cyan: #06b6d4;
  --green: #16a34a;
  --orange: #f97316;
  --red: #dc2626;
  --shadow: 0 22px 70px rgba(15, 23, 42, 0.10);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: Inter, system-ui, Segoe UI, Arial, sans-serif;
  background:
    radial-gradient(circle at 10% 0%, rgba(124, 58, 237, 0.12), transparent 34%),
    radial-gradient(circle at 86% 8%, rgba(6, 182, 212, 0.16), transparent 30%),
    linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
  color: var(--text);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
  border-right: 1px solid var(--line);
  backdrop-filter: blur(22px);
  box-shadow: 12px 0 40px rgba(15, 23, 42, 0.04);
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}

.brand-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--cyan), var(--purple), var(--orange));
  color: white;
  box-shadow: 0 18px 45px rgba(124, 58, 237, 0.25);
  font-size: 24px;
  font-weight: 1000;
}

.brand h1 {
  margin: 0;
  font-size: 19px;
  letter-spacing: -0.5px;
}

.brand span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.license-card {
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(6, 182, 212, 0.08));
  box-shadow: var(--shadow-soft);
}

.license-card.expired {
  border-color: rgba(220, 38, 38, 0.18);
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.08), rgba(249, 115, 22, 0.10));
}

.license-card strong {
  display: block;
  font-size: 26px;
  letter-spacing: -0.8px;
}

.license-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

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

.nav button {
  width: 100%;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid transparent;
  border-radius: 17px;
  background: transparent;
  color: #475569;
  font-weight: 850;
  cursor: pointer;
  text-align: left;
  transition: 0.18s;
}

.nav button:hover,
.nav button.active {
  background: #ffffff;
  border-color: rgba(124, 58, 237, 0.15);
  color: var(--purple);
  box-shadow: var(--shadow-soft);
}

.main {
  min-width: 0;
  padding: 30px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
}

.topbar h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -1.8px;
}

.topbar p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 700;
}

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

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: #ffffff;
  color: var(--text);
  font-weight: 950;
  cursor: pointer;
  transition: 0.2s;
  box-shadow: var(--shadow-soft);
}

.btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--purple), var(--blue));
}

.btn-green {
  color: #ffffff;
  background: linear-gradient(135deg, var(--green), #22c55e);
}

.btn-orange {
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), #f59e0b);
}

.btn-red {
  color: #ffffff;
  background: linear-gradient(135deg, var(--red), #ef4444);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.58);
  border-color: var(--line);
  color: #334155;
  box-shadow: none;
}

.view {
  display: none;
}

.view.active {
  display: block;
}

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

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

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

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

.card {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--card);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 14px;
  font-size: 21px;
  letter-spacing: -0.4px;
}

.metric {
  overflow: hidden;
}

.metric::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--cyan), var(--purple), var(--orange));
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.metric strong {
  display: block;
  margin-top: 10px;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -1px;
}

.metric small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.form {
  display: grid;
  gap: 14px;
}

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

label {
  display: grid;
  gap: 7px;
  color: #334155;
  font-size: 13px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 16px;
  outline: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(124, 58, 237, 0.45);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.10);
}

textarea {
  min-height: 96px;
  resize: vertical;
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
}

table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

th,
td {
  padding: 14px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  text-align: left;
}

th {
  background: #f8fafc;
  color: #64748b;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

td {
  color: #334155;
}

.badge {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.10);
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 950;
}

.badge.green {
  background: rgba(22, 163, 74, 0.12);
  color: #15803d;
}

.badge.orange {
  background: rgba(249, 115, 22, 0.14);
  color: #c2410c;
}

.badge.red {
  background: rgba(220, 38, 38, 0.12);
  color: #b91c1c;
}

.agenda-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 18px;
}

.appointment-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(248,250,252,0.92)),
    #ffffff;
  box-shadow: var(--shadow-soft);
}

.appointment-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--cyan), var(--purple), var(--orange));
}

.appointment-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.appointment-time strong {
  display: block;
  font-size: 31px;
  line-height: 1;
  letter-spacing: -1px;
}

.appointment-time span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.appointment-client {
  display: grid;
  gap: 8px;
}

.appointment-client h3 {
  margin: 0;
  color: var(--text);
  font-size: 21px;
  letter-spacing: -0.5px;
}

.appointment-client p {
  margin: 0;
  color: #475569;
  line-height: 1.45;
}

.appointment-actions,
.clean-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.clean-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.clean-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, rgba(124,58,237,.85), rgba(6,182,212,.85));
}

.clean-card h3 {
  margin: 0 0 8px;
  color: var(--text);
}

.clean-card p {
  margin: 0;
  color: #64748b;
  line-height: 1.5;
}

.inline-toolbar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.inline-toolbar input {
  max-width: 300px;
}

.empty-state {
  padding: 34px;
  border: 1px dashed rgba(15, 23, 42, 0.18);
  border-radius: 24px;
  text-align: center;
  color: #64748b;
  background: rgba(255,255,255,.58);
}

.modal,
.lock-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.28);
  backdrop-filter: blur(16px);
}

.modal.show,
.lock-overlay.show {
  display: grid;
}

.modal-card,
.lock-card {
  width: min(620px, 100%);
  max-height: 90vh;
  overflow: auto;
  padding: 26px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 32px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 30px 100px rgba(15, 23, 42, 0.22);
}

.lock-card {
  text-align: center;
}

.modal-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.modal-head h3 {
  margin: 0;
  font-size: 24px;
}

.login-page,
.public-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px;
}

.auth-card,
.public-card {
  width: min(960px, 100%);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.auth-card {
  width: min(470px, 100%);
}

.logo-center {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
  margin-bottom: 22px;
}

.logo-center .brand-icon {
  width: 78px;
  height: 78px;
  font-size: 34px;
}

.public-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
}

.public-business {
  display: flex;
  gap: 14px;
  align-items: center;
}

.avatar {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #ffffff;
  font-size: 26px;
  font-weight: 1000;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
}

.slot {
  padding: 12px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 15px;
  background: #ffffff;
  color: #1d4ed8;
  font-weight: 900;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.slot.selected {
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #ffffff;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 140;
  max-width: 370px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  color: var(--text);
  box-shadow: var(--shadow);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu {
  display: none;
}

.sidebar-footer {
  display: none !important;
}

@media (max-width: 980px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 90;
    width: 292px;
    transform: translateX(-105%);
    transition: 0.25s;
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .mobile-menu {
    display: inline-flex;
  }

  .main {
    padding: 20px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .form-row {
    grid-template-columns: 1fr;
  }

  .agenda-card-grid {
    grid-template-columns: 1fr;
  }

  .appointment-top,
  .public-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .inline-toolbar {
    align-items: stretch;
  }

  .inline-toolbar input {
    max-width: 100%;
  }
}

.badge.pending{background:rgba(249,115,22,.14);color:#c2410c}
.prof-fin-card{padding:20px;border-radius:24px;border:1px solid rgba(15,23,42,.09);background:#fff;box-shadow:var(--shadow-soft)}
.prof-fin-card h3{margin:0 0 10px}.prof-fin-card strong{display:block;font-size:30px;letter-spacing:-1px}.prof-fin-card span{color:#64748b;font-weight:800}

.badge.received {
  background: rgba(22, 163, 74, 0.14);
  color: #15803d;
}

.receipt-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 14px;
}

.receipt-row input {
  min-width: 0;
}

.finance-status{display:inline-flex;align-items:center;gap:6px;color:#15803d;font-weight:900}
.received-hidden-note{margin-top:12px;padding:12px;border-radius:16px;background:rgba(22,163,74,.10);color:#166534;font-weight:800}


/* Sidebar com rolagem */
.sidebar {
  overflow-y: auto !important;
  overflow-x: hidden !important;
  max-height: 100vh !important;
  padding-bottom: 120px !important;
  scrollbar-width: thin;
}

.sidebar::-webkit-scrollbar {
  width: 8px;
}

.sidebar::-webkit-scrollbar-thumb {
  background: rgba(100,116,139,.35);
  border-radius: 999px;
}

/* Melhor experiência mobile/PWA */
html, body {
  overscroll-behavior: none;
  -webkit-tap-highlight-color: transparent;
}



/* Agrupamento por profissional */
.professional-group {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(248,250,252,.86));
  box-shadow: var(--shadow-soft);
}

.professional-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.professional-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.professional-avatar-small {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #fff;
  font-weight: 1000;
  font-size: 18px;
}

.professional-title h3 {
  margin: 0;
  font-size: 20px;
}

.professional-title span {
  display: block;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.group-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 14px;
}

.date-chip {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.10);
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 950;
}

.service-chip {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.10);
  color: #6d28d9;
  font-size: 12px;
  font-weight: 950;
}


/* =====================================================
   FIX FINAL: LINK PÚBLICO PREMIUM + PWA
===================================================== */

.public-steps {
  display: grid;
  gap: 22px;
}

.public-step-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.public-step-title h2 {
  margin: 0;
  font-size: clamp(22px, 4vw, 34px);
  letter-spacing: -1px;
}

.public-step-title p {
  margin: 5px 0 0;
  color: #64748b;
  font-weight: 700;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 14px;
}

.choice-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: .2s;
}

.choice-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.choice-card.selected {
  border-color: rgba(124, 58, 237, .45);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, .10), var(--shadow);
}

.choice-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--cyan), var(--purple), var(--orange));
}

.choice-avatar {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  margin-bottom: 14px;
  color: #fff;
  font-size: 24px;
  font-weight: 1000;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
}

.choice-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  letter-spacing: -.5px;
}

.choice-card p {
  margin: 0;
  color: #64748b;
  line-height: 1.45;
}

.public-hidden {
  display: none !important;
}

.public-summary {
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(37,99,235,.08), rgba(124,58,237,.08));
  border: 1px solid rgba(37,99,235,.12);
}

.public-summary strong {
  display: block;
  margin-bottom: 6px;
}

.app-install-tip {
  margin-top: 10px;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

/* Correções finais estáveis */
.time-list{display:flex;flex-wrap:wrap;gap:8px;margin-top:12px}
.time-pill{display:inline-flex;padding:8px 10px;border-radius:999px;background:rgba(37,99,235,.10);color:#1d4ed8;font-weight:950;font-size:13px}
.finance-ok{color:#15803d;font-weight:1000}
.badge.received{background:rgba(22,163,74,.14);color:#15803d}
.receipt-row{display:grid;grid-template-columns:1fr auto;gap:8px;margin-top:14px}
.receipt-row input{min-width:0}
.sidebar{overflow-y:auto!important;overflow-x:hidden!important;max-height:100vh!important;padding-bottom:120px!important;scrollbar-width:thin}


/* FINAL: horários mobile clicáveis */
.admin-time-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(86px, 1fr));
  gap: 10px;
}

.admin-time-btn {
  min-height: 44px;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(37,99,235,.18);
  background: #fff;
  color: #1d4ed8;
  font-weight: 950;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.admin-time-btn.selected {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--blue));
}

.admin-time-btn.disabled {
  opacity: .42;
  cursor: not-allowed;
  filter: grayscale(1);
}

.quick-time-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.license-real-warning {
  margin-top: 8px;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}


/* =====================================================
   PAINEL ADMIN MASTER MANUAL
===================================================== */

.admin-shell {
  min-height: 100vh;
  padding: 28px;
}

.admin-container {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.admin-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 26px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(248,250,252,.92));
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: var(--shadow);
}

.admin-hero h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -1.6px;
}

.admin-hero p {
  margin: 8px 0 0;
  color: #64748b;
  font-weight: 800;
}

.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 22px;
}

.admin-login-card {
  width: min(460px, 100%);
  padding: 28px;
  border-radius: 32px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: var(--shadow);
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.admin-metric {
  padding: 18px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: var(--shadow-soft);
}

.admin-metric span {
  display: block;
  color: #64748b;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
}

.admin-metric strong {
  display: block;
  margin-top: 8px;
  font-size: 32px;
  letter-spacing: -1px;
}

.admin-toolbar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.admin-toolbar-left,
.admin-toolbar-right {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.admin-client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
}

.admin-client-card {
  padding: 20px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: var(--shadow-soft);
}

.admin-client-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.admin-client-head h3 {
  margin: 0;
  font-size: 20px;
}

.admin-client-head p,
.admin-client-card p {
  margin: 4px 0;
  color: #64748b;
  font-weight: 750;
}

.admin-client-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.admin-small {
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.admin-status {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 1000;
}

.admin-status.active {
  background: rgba(22,163,74,.12);
  color: #15803d;
}

.admin-status.trial {
  background: rgba(37,99,235,.12);
  color: #1d4ed8;
}

.admin-status.warning {
  background: rgba(249,115,22,.14);
  color: #c2410c;
}

.admin-status.expired {
  background: rgba(220,38,38,.12);
  color: #b91c1c;
}

.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(15,23,42,.32);
  backdrop-filter: blur(14px);
}

.admin-modal.show {
  display: grid;
}

.admin-modal-card {
  width: min(560px, 100%);
  padding: 24px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 30px 100px rgba(15,23,42,.24);
}

@media (max-width: 980px) {
  .admin-hero {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .admin-client-grid {
    grid-template-columns: 1fr;
  }
}


/* =====================================================
   ZENDYFLOW LANDING PAGE - EMPRESA DE SOLUÇÕES
===================================================== */

.site-body {
  background:
    radial-gradient(circle at 15% 5%, rgba(124,58,237,.18), transparent 34%),
    radial-gradient(circle at 85% 8%, rgba(6,182,212,.16), transparent 30%),
    linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(18px);
}

.site-nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-brand h1 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -.6px;
}

.site-brand span {
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-menu a {
  padding: 10px 12px;
  color: #334155;
  font-weight: 900;
  border-radius: 14px;
}

.site-menu a:hover {
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.site-main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-site {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 34px;
  padding: 72px 0 46px;
}

.hero-kicker {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(124,58,237,.10);
  color: #6d28d9;
  font-weight: 1000;
  font-size: 13px;
  margin-bottom: 18px;
}

.hero-site h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .92;
  letter-spacing: -3px;
}

.hero-site h2 span {
  background: linear-gradient(135deg, var(--purple), var(--blue), var(--cyan));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-site p {
  margin: 20px 0 0;
  color: #475569;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.proof-card {
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: var(--shadow-soft);
}

.proof-card strong {
  display: block;
  font-size: 26px;
}

.proof-card span {
  color: #64748b;
  font-size: 13px;
  font-weight: 850;
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.mock-dashboard {
  position: absolute;
  inset: 20px 0 auto;
  padding: 22px;
  border-radius: 34px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 30px 100px rgba(15,23,42,.16);
  backdrop-filter: blur(18px);
}

.mock-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.mock-dots {
  display: flex;
  gap: 7px;
}

.mock-dots i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #cbd5e1;
}

.mock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mock-card {
  padding: 16px;
  border-radius: 22px;
  background: #f8fafc;
  border: 1px solid rgba(15,23,42,.08);
}

.mock-card strong {
  display: block;
  font-size: 28px;
}

.mock-card span {
  color: #64748b;
  font-weight: 850;
  font-size: 13px;
}

.mock-agenda {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.mock-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
}

.mock-row b {
  color: #4f46e5;
}

.section-site {
  padding: 54px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 54px);
  letter-spacing: -2px;
}

.section-head p {
  color: #64748b;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 700;
}

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

.product-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 34px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(15,23,42,.09);
  box-shadow: var(--shadow);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--cyan), var(--purple), var(--orange));
}

.product-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff;
  font-size: 30px;
  font-weight: 1000;
}

.product-card h3 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -1px;
}

.product-card p {
  color: #475569;
  line-height: 1.65;
  font-weight: 700;
}

.price-box {
  display: flex;
  align-items: end;
  gap: 8px;
  margin: 18px 0;
}

.price-box strong {
  font-size: 38px;
  letter-spacing: -1.6px;
}

.price-box span {
  color: #64748b;
  font-weight: 900;
  padding-bottom: 7px;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
}

.feature-list div {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: #334155;
  font-weight: 850;
}

.feature-list div::before {
  content: "✓";
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  flex: 0 0 22px;
  border-radius: 999px;
  background: rgba(22,163,74,.12);
  color: #15803d;
  font-weight: 1000;
}

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

.step-card {
  padding: 22px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: var(--shadow-soft);
}

.step-card b {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  margin-bottom: 14px;
}

.step-card h3 {
  margin: 0 0 8px;
}

.step-card p {
  margin: 0;
  color: #64748b;
  line-height: 1.55;
  font-weight: 700;
}

.cta-site {
  margin: 54px 0;
  padding: 38px;
  border-radius: 36px;
  color: #fff;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.20), transparent 26%),
    linear-gradient(135deg, #4f46e5, #7c3aed, #06b6d4);
  box-shadow: 0 30px 100px rgba(79,70,229,.28);
}

.cta-site h2 {
  margin: 0;
  font-size: clamp(32px,5vw,58px);
  letter-spacing: -2px;
}

.cta-site p {
  max-width: 760px;
  color: rgba(255,255,255,.88);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 750;
}

.cta-site .btn {
  background: #fff;
  color: #1e293b;
}

.site-footer {
  padding: 34px 0 44px;
  color: #64748b;
  font-weight: 800;
  text-align: center;
}

@media (max-width: 940px) {
  .site-menu {
    display: none;
  }

  .hero-site,
  .product-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }
}


/* =====================================================
   LANDING PREMIUM 2026 - IMAGENS + VIDEO
===================================================== */

.premium-hero {
  position: relative;
  padding: 82px 0 50px;
}

.premium-hero::before {
  content: "";
  position: absolute;
  inset: 24px -60px auto auto;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: rgba(124, 58, 237, .18);
  filter: blur(70px);
  pointer-events: none;
}

.premium-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 38px;
  align-items: center;
}

.premium-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
}

.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15,23,42,.08);
  color: #334155;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}

.hero-showcase {
  position: relative;
  min-height: 610px;
}

.showcase-card {
  position: absolute;
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 28px 90px rgba(15,23,42,.16);
  backdrop-filter: blur(18px);
}

.showcase-main {
  inset: 0 0 auto 42px;
  width: min(640px, calc(100% - 42px));
  min-height: 405px;
  padding: 18px;
}

.showcase-floating {
  right: auto;
  left: 0;
  bottom: 40px;
  width: 300px;
  padding: 16px;
  z-index: 3;
}

.showcase-pdv {
  right: 0;
  bottom: 0;
  width: 360px;
  padding: 16px;
  z-index: 2;
}

.showcase-img {
  width: 100%;
  min-height: 250px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(124,58,237,.12), rgba(6,182,212,.10)),
    #f8fafc;
  border: 1px solid rgba(15,23,42,.08);
}

.visual-fallback {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.visual-bar {
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124,58,237,.70), rgba(6,182,212,.55));
}

.visual-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.visual-mini {
  min-height: 90px;
  padding: 14px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
}

.visual-mini b {
  display: block;
  font-size: 26px;
  color: #111827;
}

.visual-mini span {
  color: #64748b;
  font-weight: 850;
  font-size: 12px;
}

.showcase-label {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
}

.showcase-label strong {
  font-size: 16px;
}

.showcase-label span {
  color: #64748b;
  font-weight: 850;
  font-size: 12px;
}

.video-section {
  padding: 58px 0;
}

.video-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 22px;
  align-items: center;
}

.video-copy {
  padding: 28px;
  border-radius: 34px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(15,23,42,.09);
  box-shadow: var(--shadow);
}

.video-copy h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 54px);
  letter-spacing: -2px;
}

.video-copy p {
  color: #64748b;
  line-height: 1.65;
  font-weight: 750;
}

.video-player-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.18), transparent 28%),
    linear-gradient(135deg, #0f172a, #312e81, #0891b2);
  padding: 18px;
  box-shadow: 0 32px 110px rgba(15,23,42,.26);
}

.video-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
  border-radius: 26px;
  background: #020617;
}

.video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  border-radius: 26px;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 25% 20%, rgba(255,255,255,.16), transparent 28%),
    linear-gradient(135deg, rgba(15,23,42,.95), rgba(49,46,129,.95));
}

.video-play {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.28);
  font-size: 32px;
}

.gallery-section {
  padding: 54px 0;
}

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

.gallery-card {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: var(--shadow-soft);
}

.gallery-card img {
  width: 100%;
  height: 170px;
  display: block;
  object-fit: cover;
  background: #f8fafc;
}

.gallery-card div {
  padding: 14px;
}

.gallery-card strong {
  display: block;
  font-size: 16px;
}

.gallery-card span {
  display: block;
  margin-top: 4px;
  color: #64748b;
  font-weight: 800;
  font-size: 13px;
}

.product-card.highlight-agenda {
  background:
    radial-gradient(circle at 10% 0%, rgba(124,58,237,.12), transparent 34%),
    rgba(255,255,255,.94);
}

.product-card.highlight-pdv {
  background:
    radial-gradient(circle at 10% 0%, rgba(22,163,74,.12), transparent 34%),
    rgba(255,255,255,.94);
}

@media (max-width: 980px) {
  .premium-hero-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: 720px;
  }

  .showcase-main {
    left: 0;
    width: 100%;
  }

  .showcase-floating {
    left: 0;
    bottom: 220px;
    width: min(320px, 86%);
  }

  .showcase-pdv {
    right: 0;
    width: min(360px, 88%);
  }

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

@media (max-width: 620px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: 760px;
  }
}


/* =====================================================
   ZENDYFLOW FINAL DARK PREMIUM + NOVA LOGO
===================================================== */

.zf-logo {
  width: 220px;
  height: auto;
  display: block;
}

.zf-logo-small {
  width: 176px;
  height: auto;
  display: block;
}

.brand-icon {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #22d3ee 0%, #7c3aed 50%, #ec4899 100%) !important;
  box-shadow: 0 20px 55px rgba(124,58,237,.35) !important;
  color: transparent !important;
}

.brand-icon::after {
  content: "Z";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 1000;
  font-size: inherit;
  text-shadow: 0 4px 18px rgba(0,0,0,.25);
}

.site-body.dark-premium {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 8%, rgba(124,58,237,.24), transparent 32%),
    radial-gradient(circle at 78% 16%, rgba(6,182,212,.16), transparent 28%),
    linear-gradient(180deg, #070A14 0%, #0A1020 45%, #070A14 100%);
  color: #fff;
}

.site-body.dark-premium::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.dark-premium .site-header {
  background: rgba(7,10,20,.76);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(20px);
}

.dark-premium .site-menu a {
  color: #e5e7eb;
}

.dark-premium .site-menu a:hover {
  background: rgba(255,255,255,.08);
}

.dark-premium .site-brand h1,
.dark-premium .site-brand span {
  display: none;
}

.dark-premium .hero-kicker {
  background: rgba(124,58,237,.14);
  border: 1px solid rgba(168,85,247,.32);
  color: #e9d5ff;
}

.dark-premium .premium-hero {
  padding: 86px 0 28px;
}

.dark-premium .premium-hero-grid {
  grid-template-columns: .92fr 1.08fr;
}

.dark-premium .premium-hero h2,
.dark-premium .section-head h2,
.dark-premium .video-copy h2,
.dark-premium .cta-site h2 {
  color: #fff;
}

.dark-premium .premium-hero h2 {
  margin: 0;
  font-size: clamp(44px, 6.2vw, 80px);
  line-height: .92;
  letter-spacing: -3px;
}

.dark-premium .premium-hero h2 span {
  background: linear-gradient(135deg, #a78bfa, #7c3aed, #22d3ee);
  -webkit-background-clip: text;
  color: transparent;
}

.dark-premium .premium-hero p,
.dark-premium .section-head p,
.dark-premium .video-copy p,
.dark-premium .product-card p,
.dark-premium .step-card p {
  color: #cbd5e1;
}

.dark-premium .premium-badge,
.dark-premium .proof-card,
.dark-premium .product-card,
.dark-premium .step-card,
.dark-premium .video-copy,
.dark-premium .gallery-card {
  background: rgba(15,23,42,.72);
  border: 1px solid rgba(148,163,184,.16);
  color: #fff;
  box-shadow: 0 24px 80px rgba(0,0,0,.26);
}

.dark-premium .premium-badge,
.dark-premium .proof-card span,
.dark-premium .gallery-card span {
  color: #cbd5e1;
}

.dark-premium .btn-outline {
  background: rgba(15,23,42,.58);
  border-color: rgba(148,163,184,.22);
  color: #fff;
}

.dark-premium .showcase-card {
  background: rgba(15,23,42,.78);
  border: 1px solid rgba(148,163,184,.18);
  box-shadow: 0 30px 100px rgba(0,0,0,.42);
}

.dark-premium .showcase-label strong,
.dark-premium .mock-row strong,
.dark-premium .visual-mini b {
  color: #fff;
}

.dark-premium .showcase-label span,
.dark-premium .visual-mini span {
  color: #94a3b8;
}

.dark-premium .visual-mini,
.dark-premium .mock-row {
  background: rgba(2,6,23,.7);
  border-color: rgba(148,163,184,.12);
}

.dark-premium .mock-row span {
  color: #e2e8f0;
}

.dark-premium .product-card.highlight-agenda,
.dark-premium .product-card.highlight-pdv {
  background:
    radial-gradient(circle at 12% 0%, rgba(124,58,237,.16), transparent 34%),
    rgba(15,23,42,.72);
}

.dark-premium .feature-list div {
  color: #e2e8f0;
}

.dark-premium .price-box strong {
  color: #fff;
}

.dark-premium .price-box span {
  color: #94a3b8;
}

.dark-premium .video-player-wrap {
  box-shadow: 0 32px 120px rgba(124,58,237,.20);
}

.dark-premium .gallery-card div {
  background: rgba(15,23,42,.92);
}

.dark-premium .gallery-card strong {
  color: #fff;
}

.dark-premium .cta-site {
  background:
    radial-gradient(circle at 12% 15%, rgba(34,211,238,.20), transparent 26%),
    linear-gradient(135deg, #141429, #4c1d95, #7c3aed);
}

.hero-products-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 26px;
}

.hero-product-mini {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 24px;
  background: rgba(15,23,42,.72);
  border: 1px solid rgba(148,163,184,.16);
}

.hero-product-mini img {
  width: 72px;
  height: 52px;
  object-fit: cover;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
}

.hero-product-mini strong {
  display: block;
  color: #fff;
}

.hero-product-mini span {
  display: block;
  color: #94a3b8;
  font-weight: 800;
  font-size: 13px;
}

.mock-admin-panel {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.mock-admin-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  background: rgba(2,6,23,.72);
  color: #e2e8f0;
}

.mock-admin-row small {
  color: #22c55e;
  font-weight: 900;
}

@media (max-width: 980px) {
  .dark-premium .premium-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-products-row {
    grid-template-columns: 1fr;
  }
}


/* =====================================================
   LANDING EXATA ESTILO IMAGEM 2 - DARK PREMIUM
===================================================== */

.img2-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 5%, rgba(124,58,237,.28), transparent 35%),
    radial-gradient(circle at 88% 12%, rgba(147,51,234,.22), transparent 32%),
    linear-gradient(180deg, #090817 0%, #0A0D1D 48%, #070815 100%);
  color: #fff;
  overflow-x: hidden;
}

.img2-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 95%);
}

.img2-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(8,10,23,.78);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}

.img2-nav {
  width: min(1480px, calc(100% - 42px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.img2-nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.img2-nav-links a {
  color: #dbeafe;
  font-size: 14px;
  font-weight: 850;
  opacity: .92;
}

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

.img2-layout {
  width: min(1480px, calc(100% - 42px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.46fr) minmax(410px, .92fr);
  gap: 28px;
  padding: 34px 0 30px;
}

.img2-left {
  min-width: 0;
}

.img2-hero {
  position: relative;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 26px;
  align-items: center;
  min-height: 430px;
  padding: 18px 0 8px;
}

.img2-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  color: #f0abfc;
  background: rgba(168,85,247,.08);
  border: 1px solid rgba(217,70,239,.28);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.img2-hero h1 {
  margin: 24px 0 0;
  font-size: clamp(44px, 5.2vw, 74px);
  line-height: .98;
  letter-spacing: -3px;
  color: #fff;
}

.img2-hero h1 span {
  background: linear-gradient(135deg, #c084fc, #7c3aed, #22d3ee);
  -webkit-background-clip: text;
  color: transparent;
}

.img2-hero p {
  max-width: 560px;
  margin: 22px 0 0;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 650;
}

.img2-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.img2-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 24px;
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 850;
}

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

.img2-visual {
  position: relative;
  min-height: 390px;
}

.img2-laptop {
  position: absolute;
  top: 12px;
  right: 62px;
  width: min(560px, 90%);
  padding: 14px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 34px 110px rgba(124,58,237,.25),
    0 40px 120px rgba(0,0,0,.45);
  transform: perspective(900px) rotateY(-7deg) rotateX(2deg);
}

.img2-screen {
  overflow: hidden;
  border-radius: 18px;
  background: #f8fafc;
  min-height: 285px;
  color: #0f172a;
}

.img2-screen-top {
  height: 34px;
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 0 12px;
  background: #0f172a;
}

.img2-screen-top i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #64748b;
}

.img2-screen-body {
  display: grid;
  grid-template-columns: 128px 1fr;
  min-height: 250px;
}

.img2-screen-side {
  background: #111827;
  padding: 14px 10px;
  color: #cbd5e1;
}

.img2-screen-logo {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
  font-weight: 900;
  color: #fff;
}

.img2-screen-logo b {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #22d3ee, #7c3aed, #ec4899);
}

.img2-screen-menu {
  display: grid;
  gap: 8px;
}

.img2-screen-menu span {
  height: 22px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}

.img2-screen-menu span:first-child {
  background: rgba(124,58,237,.82);
}

.img2-screen-main {
  padding: 16px;
  background: #f8fafc;
}

.img2-screen-main h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.img2-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.img2-stat {
  padding: 10px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(15,23,42,.08);
}

.img2-stat span {
  display: block;
  color: #64748b;
  font-size: 10px;
  font-weight: 800;
}

.img2-stat b {
  display: block;
  margin-top: 5px;
  font-size: 18px;
}

.img2-chart {
  height: 98px;
  margin-top: 14px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 20% 70%, rgba(124,58,237,.14), transparent 18%),
    linear-gradient(135deg, rgba(124,58,237,.12), rgba(34,211,238,.08));
  position: relative;
}

.img2-chart::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 52px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7c3aed, #22d3ee);
  box-shadow: 45px -22px 0 #7c3aed, 95px -6px 0 #22d3ee, 145px -34px 0 #7c3aed, 205px -16px 0 #22d3ee;
}

.img2-phone {
  position: absolute;
  right: 0;
  bottom: 8px;
  width: 190px;
  padding: 12px;
  border-radius: 32px;
  background: #070A14;
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  transform: rotate(7deg);
}

.img2-phone-screen {
  min-height: 285px;
  border-radius: 24px;
  padding: 14px;
  background: #0f172a;
  color: #fff;
}

.img2-phone-title {
  display: flex;
  justify-content: space-between;
  color: #cbd5e1;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 18px;
}

.img2-phone-card {
  display: grid;
  gap: 6px;
  padding: 10px;
  margin-bottom: 8px;
  border-radius: 16px;
  background: rgba(124,58,237,.16);
  border: 1px solid rgba(168,85,247,.20);
}

.img2-phone-card b {
  font-size: 12px;
}

.img2-phone-card span {
  font-size: 10px;
  color: #cbd5e1;
}

.img2-video-strip {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 22px;
  align-items: center;
  margin: 10px 0 30px;
  padding: 26px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 9% 50%, rgba(124,58,237,.24), transparent 22%),
    rgba(15,23,42,.72);
  border: 1px solid rgba(148,163,184,.14);
  box-shadow: 0 28px 90px rgba(0,0,0,.28);
}

.img2-play {
  width: 106px;
  height: 106px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255,255,255,.10), transparent 60%),
    linear-gradient(135deg, #22113f, #0f172a);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 0 55px rgba(124,58,237,.32);
  font-size: 40px;
}

.img2-video-strip h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -.8px;
}

.img2-video-strip p {
  margin: 8px 0 0;
  color: #94a3b8;
  font-weight: 750;
}

.img2-products-title {
  margin: 0 auto 20px;
  max-width: 780px;
  text-align: center;
}

.img2-products-title h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -1.5px;
  line-height: 1.12;
}

.img2-products-title span {
  color: #c084fc;
}

.img2-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.img2-product {
  overflow: hidden;
  padding: 22px;
  border-radius: 26px;
  background: rgba(15,23,42,.78);
  border: 1px solid rgba(148,163,184,.14);
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
}

.img2-product-head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.img2-product-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #22d3ee, #7c3aed, #ec4899);
  font-size: 28px;
  font-weight: 1000;
}

.img2-product h3 {
  margin: 0;
  font-size: 26px;
}

.img2-product small {
  color: #c084fc;
  font-weight: 900;
}

.img2-product-content {
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 14px;
  align-items: center;
}

.img2-product ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: #dbeafe;
  font-weight: 750;
  font-size: 14px;
}

.img2-product li::before {
  content: "✓";
  color: #22c55e;
  margin-right: 8px;
}

.img2-product-img {
  height: 126px;
  border-radius: 18px;
  object-fit: cover;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
}

.img2-price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 18px;
  border: 1px solid rgba(148,163,184,.14);
  border-radius: 18px;
  overflow: hidden;
}

.img2-price-cell {
  padding: 14px;
  background: rgba(2,6,23,.34);
  text-align: center;
}

.img2-price-cell:first-child {
  border-right: 1px solid rgba(148,163,184,.14);
}

.img2-price-cell span {
  display: block;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 850;
}

.img2-price-cell strong {
  display: block;
  margin-top: 4px;
  font-size: 24px;
}

.img2-product .btn {
  width: 100%;
  margin-top: 12px;
}

.img2-bottom-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 22px 0 34px;
}

.img2-benefit {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 18px;
  border-radius: 20px;
  background: rgba(15,23,42,.72);
  border: 1px solid rgba(148,163,184,.12);
}

.img2-benefit b {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(124,58,237,.18);
}

.img2-benefit strong {
  display: block;
}

.img2-benefit span {
  color: #94a3b8;
  font-size: 12px;
  font-weight: 750;
}

.img2-right {
  display: grid;
  gap: 18px;
  align-content: start;
}

.img2-login-preview,
.img2-admin-preview,
.img2-footer-preview {
  overflow: hidden;
  border-radius: 26px;
  background: rgba(15,23,42,.76);
  border: 1px solid rgba(148,163,184,.14);
  box-shadow: 0 28px 90px rgba(0,0,0,.30);
}

.img2-login-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
}

.img2-login-form {
  padding: 34px;
}

.img2-login-form img {
  width: 210px;
  margin-bottom: 24px;
}

.img2-login-form h3 {
  margin: 0 0 4px;
  font-size: 24px;
}

.img2-login-form p {
  margin: 0 0 22px;
  color: #94a3b8;
  font-weight: 750;
}

.img2-fake-field {
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(148,163,184,.18);
  margin-bottom: 12px;
  background: rgba(2,6,23,.46);
}

.img2-login-art {
  position: relative;
  background:
    radial-gradient(circle at 30% 20%, rgba(124,58,237,.34), transparent 28%),
    linear-gradient(135deg, rgba(49,46,129,.88), rgba(15,23,42,.62));
  padding: 28px;
}

.img2-login-art h3 {
  position: absolute;
  left: 28px;
  bottom: 28px;
  max-width: 180px;
  margin: 0;
  line-height: 1.15;
}

.img2-admin-preview {
  padding: 18px;
}

.img2-admin-inner {
  display: grid;
  grid-template-columns: 126px 1fr;
  min-height: 390px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(2,6,23,.55);
  border: 1px solid rgba(148,163,184,.10);
}

.img2-admin-side {
  padding: 16px 12px;
  background: rgba(2,6,23,.55);
  border-right: 1px solid rgba(148,163,184,.10);
}

.img2-admin-side img {
  width: 112px;
  margin-bottom: 16px;
}

.img2-admin-menu {
  display: grid;
  gap: 8px;
}

.img2-admin-menu span {
  height: 25px;
  border-radius: 9px;
  background: rgba(255,255,255,.06);
}

.img2-admin-menu span:first-child {
  background: rgba(124,58,237,.92);
}

.img2-admin-main {
  padding: 18px;
}

.img2-admin-main h3 {
  margin: 0 0 14px;
}

.img2-admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.img2-admin-stat {
  padding: 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
}

.img2-admin-stat span {
  color: #94a3b8;
  font-size: 10px;
  font-weight: 850;
}

.img2-admin-stat b {
  display: block;
  margin-top: 6px;
  font-size: 24px;
}

.img2-admin-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.img2-table {
  padding: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
}

.img2-table h4 {
  margin: 0 0 10px;
  font-size: 12px;
}

.img2-table div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 7px;
  border-radius: 8px;
  background: rgba(2,6,23,.40);
  color: #cbd5e1;
  font-size: 11px;
  margin-bottom: 6px;
}

.img2-table small {
  color: #22c55e;
  font-weight: 900;
}

.img2-footer-preview {
  display: grid;
  grid-template-columns: 1fr 148px;
  gap: 20px;
  padding: 24px;
  align-items: center;
}

.img2-footer-preview img:first-child {
  width: 174px;
  margin-bottom: 12px;
}

.img2-big-icon {
  width: 132px;
  height: 132px;
  border-radius: 32px;
  box-shadow: 0 22px 90px rgba(124,58,237,.34);
}

@media (max-width: 1220px) {
  .img2-layout {
    grid-template-columns: 1fr;
  }

  .img2-right {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .img2-nav-links {
    display: none;
  }

  .img2-hero,
  .img2-product-content,
  .img2-login-preview,
  .img2-admin-inner {
    grid-template-columns: 1fr;
  }

  .img2-visual {
    min-height: 560px;
  }

  .img2-laptop {
    right: 0;
    width: 100%;
  }

  .img2-phone {
    right: 20px;
    bottom: 0;
  }

  .img2-video-strip,
  .img2-product-grid,
  .img2-bottom-benefits,
  .img2-admin-tables {
    grid-template-columns: 1fr;
  }
}


/* =====================================================
   LANDING ORGANIZADA E RESPONSIVA - SEM ADMIN MOCKUP
===================================================== */

.clean-landing {
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 4%, rgba(124,58,237,.26), transparent 34%),
    radial-gradient(circle at 84% 10%, rgba(34,211,238,.14), transparent 28%),
    linear-gradient(180deg, #070A14 0%, #0B1020 52%, #070A14 100%);
  color: #fff;
}

.clean-landing::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.clean-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(7,10,20,.78);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}

.clean-nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 auto;
}

.clean-nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.clean-nav-links a {
  color: #e2e8f0;
  font-size: 14px;
  font-weight: 850;
}

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

.clean-main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.clean-hero {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 38px;
  align-items: center;
  padding: 74px 0 48px;
}

.clean-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  color: #f0abfc;
  background: rgba(168,85,247,.10);
  border: 1px solid rgba(217,70,239,.30);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.clean-hero h1 {
  margin: 24px 0 0;
  color: #fff;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .94;
  letter-spacing: -3px;
}

.clean-hero h1 span {
  background: linear-gradient(135deg, #c084fc, #7c3aed, #22d3ee);
  -webkit-background-clip: text;
  color: transparent;
}

.clean-hero p {
  max-width: 620px;
  margin: 22px 0 0;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 680;
}

.clean-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.clean-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.clean-trust span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 10px 13px;
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(15,23,42,.68);
  border: 1px solid rgba(148,163,184,.15);
  font-size: 13px;
  font-weight: 850;
}

.clean-hero-visual {
  position: relative;
  min-height: 460px;
}

.clean-device-card {
  position: absolute;
  overflow: hidden;
  border-radius: 34px;
  background: rgba(15,23,42,.78);
  border: 1px solid rgba(148,163,184,.16);
  box-shadow: 0 34px 100px rgba(0,0,0,.38);
}

.clean-agenda-main {
  top: 0;
  right: 0;
  width: min(560px, 100%);
  padding: 18px;
}

.clean-pdv-mini {
  left: 0;
  bottom: 0;
  width: min(340px, 72%);
  padding: 16px;
  z-index: 2;
}

.clean-device-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.clean-device-label strong {
  color: #fff;
}

.clean-device-label span {
  color: #94a3b8;
  font-size: 12px;
  font-weight: 850;
}

.clean-device-img {
  width: 100%;
  height: 275px;
  display: block;
  object-fit: cover;
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(124,58,237,.14), transparent 30%),
    rgba(255,255,255,.04);
  border: 1px solid rgba(148,163,184,.12);
}

.clean-pdv-mini .clean-device-img {
  height: 165px;
}

.clean-fallback {
  display: grid;
  gap: 12px;
  padding: 16px;
  min-height: 260px;
}

.clean-fallback-bar {
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7c3aed, #22d3ee);
}

.clean-fallback-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.clean-fallback-card {
  min-height: 86px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(2,6,23,.58);
  border: 1px solid rgba(148,163,184,.10);
}

.clean-fallback-card span {
  display: block;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 850;
}

.clean-fallback-card b {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 25px;
}

.clean-section {
  padding: 56px 0;
}

.clean-section-head {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.clean-section-head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: -2px;
}

.clean-section-head h2 span {
  color: #c084fc;
}

.clean-section-head p {
  color: #cbd5e1;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 700;
}

.clean-video {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 22px;
  align-items: center;
  padding: 26px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 8% 50%, rgba(124,58,237,.24), transparent 22%),
    rgba(15,23,42,.72);
  border: 1px solid rgba(148,163,184,.14);
  box-shadow: 0 28px 90px rgba(0,0,0,.28);
}

.clean-video-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px,4vw,44px);
  letter-spacing: -1.2px;
}

.clean-video-copy p {
  color: #cbd5e1;
  line-height: 1.6;
  font-weight: 700;
}

.clean-video-box {
  overflow: hidden;
  border-radius: 28px;
  background: #020617;
  border: 1px solid rgba(148,163,184,.14);
}

.clean-video-box video,
.clean-video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  border: 0;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 40% 30%, rgba(124,58,237,.28), transparent 28%),
    linear-gradient(135deg, #020617, #1e1b4b);
}

.clean-play {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  font-size: 30px;
}

.clean-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.clean-product {
  padding: 24px;
  border-radius: 32px;
  background: rgba(15,23,42,.78);
  border: 1px solid rgba(148,163,184,.14);
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
}

.clean-product-top {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.clean-product-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: 0 0 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, #22d3ee, #7c3aed, #ec4899);
  font-weight: 1000;
  font-size: 30px;
}

.clean-product h3 {
  margin: 0;
  color: #fff;
  font-size: 28px;
  letter-spacing: -1px;
}

.clean-product small {
  color: #c084fc;
  font-weight: 900;
}

.clean-product-body {
  display: grid;
  grid-template-columns: 1fr 210px;
  gap: 16px;
  align-items: center;
}

.clean-product ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: #dbeafe;
  font-weight: 750;
}

.clean-product li::before {
  content: "✓";
  color: #22c55e;
  margin-right: 8px;
  font-weight: 1000;
}

.clean-product img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(148,163,184,.12);
}

.clean-price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 18px 0 14px;
  border: 1px solid rgba(148,163,184,.14);
  border-radius: 18px;
  overflow: hidden;
}

.clean-price-cell {
  padding: 14px;
  background: rgba(2,6,23,.35);
  text-align: center;
}

.clean-price-cell:first-child {
  border-right: 1px solid rgba(148,163,184,.14);
}

.clean-price-cell span {
  display: block;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 850;
}

.clean-price-cell strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 24px;
}

.clean-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.clean-benefit {
  padding: 20px;
  border-radius: 24px;
  background: rgba(15,23,42,.70);
  border: 1px solid rgba(148,163,184,.12);
}

.clean-benefit b {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 15px;
  background: rgba(124,58,237,.18);
}

.clean-benefit strong {
  display: block;
  color: #fff;
}

.clean-benefit span {
  display: block;
  margin-top: 5px;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 750;
}

.clean-cta {
  margin: 42px 0 52px;
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 15%, rgba(34,211,238,.20), transparent 26%),
    linear-gradient(135deg, #141429, #4c1d95, #7c3aed);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 30px 100px rgba(124,58,237,.22);
  text-align: center;
}

.clean-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px,5vw,52px);
  letter-spacing: -1.8px;
}

.clean-cta p {
  max-width: 760px;
  margin: 14px auto 0;
  color: #e2e8f0;
  line-height: 1.6;
  font-weight: 700;
}

.clean-cta .hero-buttons {
  justify-content: center;
}

.clean-footer {
  padding: 30px 0 44px;
  color: #94a3b8;
  text-align: center;
  font-weight: 800;
}

@media (max-width: 980px) {
  .clean-nav-links {
    display: none;
  }

  .clean-hero,
  .clean-video,
  .clean-products,
  .clean-product-body,
  .clean-benefits {
    grid-template-columns: 1fr;
  }

  .clean-hero {
    padding-top: 46px;
  }

  .clean-hero-visual {
    min-height: 590px;
  }

  .clean-agenda-main {
    left: 0;
    right: 0;
    width: 100%;
  }

  .clean-pdv-mini {
    width: min(360px, 88%);
    left: 0;
    bottom: 0;
  }

  .clean-product img {
    height: 210px;
  }
}

@media (max-width: 640px) {
  .clean-nav {
    width: min(100% - 22px, 1180px);
  }

  .zf-logo-small {
    width: 150px;
  }

  .clean-nav-actions .btn-outline {
    display: none;
  }

  .clean-hero h1 {
    font-size: 42px;
    letter-spacing: -1.8px;
  }

  .clean-hero p {
    font-size: 16px;
  }

  .clean-hero-actions .btn,
  .clean-cta .btn {
    width: 100%;
  }

  .clean-hero-visual {
    min-height: 520px;
  }

  .clean-device-img {
    height: 220px;
  }

  .clean-pdv-mini {
    width: 92%;
  }

  .clean-price-row {
    grid-template-columns: 1fr;
  }

  .clean-price-cell:first-child {
    border-right: 0;
    border-bottom: 1px solid rgba(148,163,184,.14);
  }
}


/* =====================================================
   HERO FINAL COM NOTEBOOK + CELULAR
===================================================== */

.hero-device-showcase {
  position: relative;
  min-height: 560px;
  isolation: isolate;
}

.hero-device-glow {
  position: absolute;
  inset: 12% 4% auto auto;
  width: 380px;
  height: 380px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(124,58,237,.42), rgba(34,211,238,.14), transparent 68%);
  filter: blur(34px);
  z-index: -1;
}

.laptop-mockup {
  position: absolute;
  right: 0;
  top: 28px;
  width: min(680px, 100%);
  transform: perspective(1000px) rotateY(-8deg) rotateX(2deg);
}

.laptop-screen-frame {
  padding: 16px 16px 20px;
  border-radius: 32px 32px 22px 22px;
  background: linear-gradient(180deg, #2b3142, #090b14 78%);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow:
    0 38px 120px rgba(0,0,0,.50),
    0 0 70px rgba(124,58,237,.18);
}

.laptop-screen {
  overflow: hidden;
  min-height: 365px;
  border-radius: 22px;
  background: #f8fafc;
  color: #111827;
}

.laptop-bar {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  background: #0f172a;
}

.laptop-bar i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #64748b;
}

.laptop-ui {
  display: grid;
  grid-template-columns: 155px 1fr;
  min-height: 331px;
}

.laptop-sidebar {
  padding: 16px 12px;
  background: #101827;
  color: #cbd5e1;
}

.laptop-brand {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
  font-weight: 950;
  color: #fff;
}

.laptop-brand-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #22d3ee, #7c3aed, #ec4899);
}

.laptop-menu {
  display: grid;
  gap: 8px;
}

.laptop-menu span {
  height: 28px;
  border-radius: 10px;
  background: rgba(255,255,255,.07);
}

.laptop-menu span:first-child {
  background: linear-gradient(90deg, #7c3aed, #2563eb);
}

.laptop-content {
  padding: 20px;
  background: #f8fafc;
}

.laptop-content-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.laptop-content-head h3 {
  margin: 0;
  font-size: 22px;
}

.laptop-actions {
  display: flex;
  gap: 8px;
}

.laptop-actions span {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(15,23,42,.08);
}

.laptop-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.laptop-stat {
  padding: 13px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15,23,42,.08);
}

.laptop-stat span {
  display: block;
  color: #64748b;
  font-size: 11px;
  font-weight: 850;
}

.laptop-stat b {
  display: block;
  margin-top: 6px;
  font-size: 20px;
  letter-spacing: -.6px;
}

.laptop-chart {
  position: relative;
  overflow: hidden;
  height: 132px;
  margin-top: 18px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(124,58,237,.12), rgba(34,211,238,.06)),
    #fff;
  box-shadow: 0 10px 30px rgba(15,23,42,.08);
}

.laptop-chart::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 32px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7c3aed, #22d3ee);
  box-shadow:
    55px -24px 0 -1px #7c3aed,
    110px -8px 0 -1px #22d3ee,
    170px -42px 0 -1px #7c3aed,
    245px -18px 0 -1px #22d3ee,
    310px -58px 0 -1px #7c3aed;
}

.laptop-chart::after {
  content: "";
  position: absolute;
  inset: auto 28px 32px 28px;
  height: 78px;
  background: linear-gradient(180deg, rgba(124,58,237,.18), transparent);
  clip-path: polygon(0 70%, 16% 42%, 34% 58%, 52% 26%, 72% 50%, 100% 8%, 100% 100%, 0 100%);
}

.laptop-base {
  width: 78%;
  height: 28px;
  margin: -2px auto 0;
  border-radius: 0 0 50px 50px;
  background: linear-gradient(180deg, #3f4658, #141824);
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}

.phone-mockup {
  position: absolute;
  right: 18px;
  bottom: 8px;
  width: 218px;
  padding: 12px;
  border-radius: 38px;
  background: linear-gradient(180deg, #1f2937, #020617);
  border: 1px solid rgba(255,255,255,.20);
  box-shadow:
    0 34px 100px rgba(0,0,0,.56),
    0 0 50px rgba(124,58,237,.20);
  transform: rotate(5deg);
}

.phone-notch {
  width: 78px;
  height: 20px;
  margin: 0 auto -6px;
  border-radius: 0 0 16px 16px;
  background: #020617;
  position: relative;
  z-index: 2;
}

.phone-screen {
  min-height: 372px;
  border-radius: 30px;
  padding: 18px 14px;
  background:
    radial-gradient(circle at 80% 0%, rgba(124,58,237,.26), transparent 32%),
    #0f172a;
  color: #fff;
}

.phone-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 900;
}

.phone-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 18px;
}

.phone-calendar span {
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #94a3b8;
  font-size: 10px;
  font-weight: 800;
}

.phone-calendar span.active {
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  color: #fff;
}

.phone-appointment {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  padding: 10px;
  margin-bottom: 9px;
  border-radius: 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(148,163,184,.10);
}

.phone-avatar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #ec4899, #7c3aed);
  font-weight: 1000;
}

.phone-appointment b {
  display: block;
  font-size: 12px;
}

.phone-appointment small {
  display: block;
  color: #94a3b8;
  margin-top: 2px;
  font-size: 10px;
}

.phone-plus {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: 18px 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  font-size: 24px;
  box-shadow: 0 15px 45px rgba(124,58,237,.38);
}

@media (max-width: 980px) {
  .hero-device-showcase {
    min-height: 650px;
  }

  .laptop-mockup {
    left: 0;
    right: 0;
    width: 100%;
  }

  .phone-mockup {
    right: 24px;
    bottom: 0;
  }
}

@media (max-width: 640px) {
  .hero-device-showcase {
    min-height: 560px;
  }

  .laptop-mockup {
    transform: none;
  }

  .laptop-screen {
    min-height: 290px;
  }

  .laptop-ui {
    grid-template-columns: 96px 1fr;
    min-height: 256px;
  }

  .laptop-sidebar {
    padding: 12px 8px;
  }

  .laptop-brand {
    font-size: 11px;
  }

  .laptop-menu span {
    height: 20px;
  }

  .laptop-content {
    padding: 12px;
  }

  .laptop-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .laptop-stat {
    padding: 10px;
  }

  .laptop-stat b {
    font-size: 16px;
  }

  .laptop-chart {
    height: 92px;
  }

  .phone-mockup {
    width: 158px;
    right: 4px;
    bottom: 4px;
    padding: 8px;
  }

  .phone-screen {
    min-height: 280px;
    border-radius: 24px;
    padding: 14px 10px;
  }

  .phone-calendar {
    gap: 4px;
  }

  .phone-calendar span {
    height: 20px;
    font-size: 9px;
  }

  .phone-appointment {
    grid-template-columns: 28px 1fr;
    gap: 8px;
    padding: 8px;
  }

  .phone-avatar {
    width: 28px;
    height: 28px;
  }
}

.payment-mini-card {
  margin-top: 18px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(124, 58, 237, 0.10);
  border: 1px solid rgba(124, 58, 237, 0.18);
}

.payment-mini-card h3 {
  margin: 0 0 6px;
}

.payment-mini-card p {
  margin: 0 0 12px;
  color: #64748b;
  font-weight: 750;
}


/* Botão checkout bonito */
.btn-checkout {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #16a34a, #22c55e, #06b6d4) !important;
  color: #fff !important;
  border: 0 !important;
  box-shadow: 0 16px 45px rgba(34, 197, 94, .28);
  animation: checkoutPulse 1.8s ease-in-out infinite;
}

.btn-checkout::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-110%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent);
  animation: checkoutShine 2.2s ease-in-out infinite;
}

.btn-checkout span {
  position: relative;
  z-index: 1;
}

.btn-checkout.loading {
  pointer-events: none;
  filter: saturate(1.15);
}

.btn-checkout.loading span::after {
  content: "  •••";
  animation: checkoutDots 1s infinite;
}

@keyframes checkoutPulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 16px 45px rgba(34, 197, 94, .25); }
  50% { transform: translateY(-1px); box-shadow: 0 22px 60px rgba(34, 197, 94, .38); }
}

@keyframes checkoutShine {
  0% { transform: translateX(-110%); }
  55%, 100% { transform: translateX(110%); }
}

@keyframes checkoutDots {
  0% { content: "  •"; }
  33% { content: "  ••"; }
  66%, 100% { content: "  •••"; }
}

.payment-mini-card {
  background: linear-gradient(135deg, rgba(124,58,237,.10), rgba(34,197,94,.08)) !important;
}

.payment-mini-card .btn {
  width: 100%;
}

/* InfinitePay Checkout */
[data-infinitepay-produto].loading {
  position: relative;
  pointer-events: none;
  filter: saturate(1.2);
  animation: checkoutPulse 1s ease-in-out infinite;
}
[data-infinitepay-produto].loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent);
  animation: checkoutShine 1s linear infinite;
}

/* Correção final link público - datas em cards */
.public-date-pills {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 8px 2px 14px;
  margin-bottom: 12px;
  scrollbar-width: thin;
}
.date-pill {
  min-width: 92px;
  border: 1px solid rgba(79,70,229,.18);
  background: #fff;
  border-radius: 18px;
  padding: 10px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 3px;
  text-align: center;
}
.date-pill strong { color: #111827; font-size: 14px; }
.date-pill span { color: #64748b; font-size: 11px; font-weight: 850; }
.date-pill.selected { color: #fff; background: linear-gradient(135deg, var(--purple), var(--blue)); }
.date-pill.selected strong, .date-pill.selected span { color: #fff; }

/* Agenda pública - datas e horários premium */
.public-date-pills {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 8px 4px 16px;
  margin-bottom: 16px;
  scrollbar-width: thin;
}

.date-pill-premium {
  min-width: 92px;
  border: 1px solid rgba(99,102,241,.16);
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border-radius: 22px;
  padding: 12px 10px;
  cursor: pointer;
  box-shadow: 0 14px 35px rgba(15,23,42,.08);
  display: grid;
  gap: 3px;
  text-align: center;
  transition: .2s ease;
}

.date-pill-premium:hover {
  transform: translateY(-2px);
  border-color: rgba(79,70,229,.36);
}

.date-pill-premium .date-week {
  color: #64748b;
  font-size: 11px;
  font-weight: 900;
}

.date-pill-premium strong {
  color: #111827;
  font-size: 26px;
  line-height: 1;
}

.date-pill-premium small {
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
}

.date-pill-premium.selected {
  background: linear-gradient(135deg, var(--purple), var(--blue));
  border-color: transparent;
  box-shadow: 0 18px 50px rgba(79,70,229,.32);
}

.date-pill-premium.selected .date-week,
.date-pill-premium.selected strong,
.date-pill-premium.selected small {
  color: #fff;
}

.slot-premium {
  min-height: 72px;
  border-radius: 20px !important;
  background: linear-gradient(180deg, #ffffff, #f8fafc) !important;
  border: 1px solid rgba(99,102,241,.16) !important;
  box-shadow: 0 14px 35px rgba(15,23,42,.08);
  display: grid !important;
  place-items: center;
  gap: 2px;
  transition: .2s ease;
}

.slot-premium span {
  color: #64748b;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .3px;
}

.slot-premium strong {
  color: #111827;
  font-size: 24px;
  line-height: 1;
}

.slot-premium:hover,
.slot-premium.selected {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--purple), var(--blue)) !important;
  border-color: transparent !important;
  box-shadow: 0 18px 50px rgba(79,70,229,.32);
}

.slot-premium:hover span,
.slot-premium:hover strong,
.slot-premium.selected span,
.slot-premium.selected strong {
  color: #fff;
}
