:root {
  color-scheme: dark;
  --bg: #061019;
  --bg-soft: #0a1620;
  --surface: rgba(14, 27, 38, 0.84);
  --surface-solid: #0f1d28;
  --surface-raised: #142532;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f7fbff;
  --muted: #9bb0c0;
  --muted-strong: #c2d0da;
  --teal: #25d6b3;
  --teal-dark: #109b84;
  --blue: #4c8dff;
  --purple: #9c70ff;
  --rose: #ff5d9b;
  --amber: #f8bd4f;
  --danger: #ff6b74;
  --success: #31d0aa;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 11px;
  --content: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 104px; }

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 5% 10%, rgba(37, 214, 179, 0.12), transparent 32rem),
    radial-gradient(circle at 94% 20%, rgba(76, 141, 255, 0.14), transparent 34rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .26;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 70%);
  z-index: -2;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img { max-width: 100%; display: block; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.ambient {
  position: fixed;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: .12;
  z-index: -1;
}
.ambient-one { background: var(--teal); left: -8rem; top: 35%; }
.ambient-two { background: var(--purple); right: -9rem; top: 60%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: min(calc(100% - 32px), var(--content));
  margin: 16px auto 0;
  min-height: 72px;
  padding: 10px 12px 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(7, 16, 25, .78);
  box-shadow: 0 14px 45px rgba(0,0,0,.2);
  backdrop-filter: blur(20px);
}

.brand { display: inline-flex; align-items: center; gap: 11px; min-width: max-content; }
.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--teal), var(--blue) 55%, var(--purple));
  box-shadow: 0 10px 28px rgba(37, 214, 179, .2);
  font-weight: 900;
  letter-spacing: -6px;
  padding-right: 5px;
  color: #03130f;
}
.brand-mark span:last-child { color: white; }
.brand-logo { padding: 4px; object-fit: contain; background: #07141e; border: 1px solid rgba(37, 214, 179, .34); letter-spacing: 0; }
.brand-logo span { display: none; }
.system-logo { overflow: hidden; padding: 6px; }
.system-logo img { display: block; width: 100%; height: 100%; object-fit: contain; border-radius: 12px; }
.solution-symbol.system-logo { padding: 3px; }
.product-hero-card > .product-hero-logo { position: absolute; top: 30px; right: 34px; z-index: 2; width: 108px; height: 108px; margin: 0; border-radius: 28px; background: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.35); box-shadow: 0 18px 42px rgba(0,0,0,.26); }
.product-hero-card > .product-hero-logo img { border-radius: 21px; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-size: 1.05rem; letter-spacing: -.02em; }
.brand-copy small { color: var(--muted); font-size: .66rem; margin-top: 5px; letter-spacing: .06em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; justify-content: flex-end; gap: 5px; }
.main-nav a { color: var(--muted-strong); padding: 11px 13px; border-radius: 12px; font-size: .91rem; transition: .2s ease; }
.main-nav a:hover { color: white; background: rgba(255,255,255,.06); }
.main-nav .nav-login, .main-nav .nav-panel { color: #041611; font-weight: 800; background: var(--teal); padding-inline: 18px; }
.main-nav .nav-login:hover, .main-nav .nav-panel:hover { background: #57e2c6; color: #03110d; }
.menu-toggle { display: none; border: 0; background: transparent; font-size: 1.35rem; padding: 8px 10px; }

main { min-height: 70vh; }
main:focus { outline: none; }
.page, .section { width: min(calc(100% - 32px), var(--content)); margin-inline: auto; }
.page { padding: 64px 0 90px; }
.section { padding: 88px 0; }

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 60px;
  padding-top: 48px;
  padding-bottom: 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: #90f4df;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; }

h1, h2, h3, h4, p { margin-top: 0; }
h1 { margin-bottom: 24px; font-size: clamp(3rem, 7vw, 6.6rem); line-height: .92; letter-spacing: -.067em; }
h2 { margin-bottom: 18px; font-size: clamp(2.15rem, 4vw, 4.2rem); line-height: 1; letter-spacing: -.055em; }
h3 { margin-bottom: 10px; font-size: 1.25rem; line-height: 1.2; letter-spacing: -.025em; }
.gradient-text { background: linear-gradient(105deg, #fff 10%, #8beed9 47%, #87aaff 80%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-copy > p { max-width: 660px; color: var(--muted-strong); font-size: clamp(1.05rem, 2vw, 1.28rem); }
.hero-actions, .button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 30px; color: var(--muted); font-size: .84rem; }
.trust-row span::before { content: "✓"; color: var(--teal); margin-right: 7px; font-weight: 900; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted-strong);
  font-weight: 800;
  transition: color .2s ease, transform .2s ease;
}
.text-link:hover { color: var(--teal); transform: translateY(-1px); }
.breadcrumb { margin-bottom: 24px; }
.eyebrow-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 15px rgba(37, 214, 179, .8);
}
.eyebrow:has(.eyebrow-dot)::before { display: none; }

.editorial-hero {
  min-height: 720px;
  grid-template-columns: minmax(0, 1.04fr) minmax(400px, .96fr);
  gap: clamp(36px, 6vw, 78px);
}
.editorial-hero .hero-copy { min-width: 0; }
.editorial-hero h1 em {
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}
.solution-board {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0, rgba(76, 141, 255, .16), transparent 45%),
    linear-gradient(150deg, rgba(20, 39, 52, .97), rgba(8, 20, 29, .96));
  box-shadow: var(--shadow);
}
.board-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}
.board-heading > div { min-width: 0; }
.board-heading strong,
.board-heading small { display: block; }
.board-heading strong { font-size: 1rem; }
.board-heading small { margin-top: 2px; color: var(--muted); font-size: .75rem; }
.solution-list { display: grid; }
.solution-list a {
  min-width: 0;
  padding: 14px 22px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid var(--line);
  transition: background .2s ease, padding-left .2s ease;
}
.solution-list a:hover { padding-left: 27px; background: rgba(255, 255, 255, .045); }
.solution-list a > span:nth-child(2) { min-width: 0; }
.solution-list strong,
.solution-list small { display: block; overflow: hidden; text-overflow: ellipsis; }
.solution-list strong { color: white; font-size: .91rem; white-space: nowrap; }
.solution-list small { margin-top: 2px; color: var(--muted); font-size: .7rem; white-space: nowrap; }
.solution-list a > span:last-child { color: var(--teal); font-weight: 900; }
.solution-symbol {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: white;
  background: linear-gradient(135deg, var(--card-start), color-mix(in srgb, var(--card-start) 45%, var(--purple)));
  box-shadow: 0 8px 22px color-mix(in srgb, var(--card-start) 24%, transparent);
  font-size: .8rem;
  font-weight: 950;
}
.board-bottom {
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted-strong);
  font-size: .76rem;
}

.btn {
  min-height: 48px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: var(--teal);
  color: #031510;
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border .2s ease, opacity .2s ease;
}
.btn:hover { transform: translateY(-2px); background: #5be3c8; }
.btn:disabled { opacity: .55; cursor: wait; transform: none; }
.btn-secondary { color: white; border-color: var(--line-strong); background: rgba(255,255,255,.04); }
.btn-secondary:hover { background: rgba(255,255,255,.09); }
.btn-danger { color: #ffd7da; border-color: rgba(255,107,116,.28); background: rgba(255,107,116,.1); }
.btn-small { min-height: 38px; padding: 8px 13px; border-radius: 10px; font-size: .84rem; }
.btn-block { width: 100%; }
.icon-button { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.04); cursor: pointer; }

.hero-visual { position: relative; min-height: 540px; display: grid; place-items: center; }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; animation: spin 24s linear infinite; }
.orbit-one { width: 470px; height: 470px; }
.orbit-two { width: 350px; height: 350px; animation-direction: reverse; animation-duration: 18s; }
.orbit::before, .orbit::after { content: ""; position: absolute; width: 11px; height: 11px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 22px var(--teal); }
.orbit::before { left: 18%; top: 5%; }
.orbit::after { right: 8%; bottom: 23%; background: var(--purple); box-shadow: 0 0 22px var(--purple); }
@keyframes spin { to { transform: rotate(360deg); } }

.command-card {
  position: relative;
  width: min(100%, 380px);
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background: linear-gradient(155deg, rgba(22,41,54,.97), rgba(9,21,31,.92));
  box-shadow: var(--shadow);
  z-index: 2;
}
.command-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.status-pill { display: inline-flex; align-items: center; gap: 7px; color: #b9fced; font-size: .75rem; font-weight: 800; }
.status-pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 12px var(--teal); }
.mini-dots { letter-spacing: 3px; color: var(--muted); }
.metric-large { padding: 20px; margin-bottom: 12px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.035); }
.metric-large small, .metric-card small { color: var(--muted); display: block; }
.metric-large strong { display: block; font-size: 2.5rem; letter-spacing: -.05em; margin: 3px 0; }
.metric-large span { color: var(--teal); font-size: .83rem; }
.metric-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.metric-card { padding: 17px; border-radius: 18px; background: rgba(255,255,255,.04); border: 1px solid var(--line); }
.metric-card strong { display: block; font-size: 1.25rem; margin-top: 5px; }
.product-chips { display: flex; gap: 8px; margin-top: 22px; }
.product-chip { flex: 1; padding: 10px; text-align: center; border-radius: 12px; font-size: .75rem; font-weight: 800; background: rgba(76,141,255,.12); color: #b8ceff; border: 1px solid rgba(76,141,255,.22); }

.section-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 36px; }
.section-head p { max-width: 590px; color: var(--muted); margin-bottom: 4px; }
.section-title-center { max-width: 760px; text-align: center; margin: 0 auto 44px; }
.section-title-center p { color: var(--muted); font-size: 1.05rem; }

.systems-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.system-card {
  grid-column: span 6;
  min-height: 390px;
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
  transition: transform .25s ease, border .25s ease;
}
.system-card:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.system-card::before { content: ""; position: absolute; width: 280px; height: 280px; border-radius: 50%; right: -100px; top: -100px; background: radial-gradient(circle, var(--card-start), transparent 70%); opacity: .24; }
.system-card.full { grid-column: span 12; display: grid; grid-template-columns: 1.2fr .8fr; gap: 30px; }
.system-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 28px; border-radius: 18px; background: linear-gradient(135deg, var(--card-start), var(--card-end)); font-size: 1.2rem; font-weight: 950; box-shadow: 0 13px 34px color-mix(in srgb, var(--card-start) 30%, transparent); }
.system-card p { color: var(--muted); max-width: 570px; }
.catalog-card { display: flex; flex-direction: column; }
.catalog-card:nth-child(odd):last-child { grid-column: span 12; }
.catalog-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.catalog-index { color: rgba(255, 255, 255, .25); font-size: .78rem; font-weight: 850; letter-spacing: .12em; }
.catalog-section { position: relative; }
.feature-list { list-style: none; margin: 22px 0 26px; padding: 0; display: grid; gap: 9px; color: var(--muted-strong); font-size: .9rem; }
.feature-list li::before { content: "✓"; color: var(--teal); margin-right: 9px; font-weight: 900; }
.card-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: auto; }
.price-from { color: var(--muted); font-size: .8rem; }
.price-from strong { display: block; color: white; font-size: 1.3rem; }
.empty-card { grid-column: 1 / -1; padding: 44px; text-align: center; color: var(--muted); border: 1px dashed var(--line-strong); border-radius: var(--radius-lg); }

.steps-grid, .benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card, .benefit-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.025); }
.step-number { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 24px; border-radius: 13px; color: var(--teal); background: rgba(37,214,179,.1); border: 1px solid rgba(37,214,179,.2); font-weight: 900; }
.step-card p, .benefit-card p { color: var(--muted); margin-bottom: 0; }
.contact-section {
  margin-bottom: 70px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(37, 214, 179, .22);
  border-radius: 32px;
  background: linear-gradient(130deg, rgba(37, 214, 179, .1), rgba(76, 141, 255, .075), rgba(156, 112, 255, .08));
}
.contact-section h2 { margin-bottom: 12px; }
.contact-section p:not(.eyebrow) { margin-bottom: 0; color: var(--muted-strong); }

.partner-band {
  padding: 54px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 38px;
  align-items: center;
  border: 1px solid rgba(37,214,179,.2);
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(37,214,179,.1), rgba(76,141,255,.08) 50%, rgba(156,112,255,.09));
  box-shadow: var(--shadow);
}
.partner-band p { color: var(--muted-strong); }
.split-example { padding: 24px; border-radius: 22px; background: rgba(5,14,21,.55); border: 1px solid var(--line); }
.split-bar { display: flex; height: 15px; overflow: hidden; border-radius: 999px; margin: 18px 0; }
.split-bar span:nth-child(1) { width: 50%; background: var(--teal); }
.split-bar span:nth-child(2) { width: 20%; background: var(--blue); }
.split-bar span:nth-child(3) { width: 30%; background: var(--purple); }
.split-legend { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; font-size: .75rem; color: var(--muted); }
.split-legend strong { display: block; color: white; font-size: 1rem; }

.product-hero { padding-top: 84px; }
.product-hero-card { padding: 52px; position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 36px; background: linear-gradient(135deg, rgba(19,35,48,.95), rgba(8,19,28,.96)); }
.product-hero-card::after { content: ""; position: absolute; width: 500px; height: 500px; border-radius: 50%; right: -180px; top: -250px; background: radial-gradient(circle, var(--product-start), transparent 67%); opacity: .28; pointer-events: none; }
.product-hero-content { position: relative; z-index: 2; max-width: 780px; }
.product-hero h1 { font-size: clamp(2.8rem, 6vw, 5.8rem); }
.product-hero p { color: var(--muted-strong); font-size: 1.1rem; max-width: 680px; }
.product-feature-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.product-feature-row span { padding: 9px 12px; border-radius: 999px; background: rgba(255,255,255,.055); border: 1px solid var(--line); color: var(--muted-strong); font-size: .8rem; }

.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 18px; align-items: stretch; }
.plan-card { min-width: 0; }
.plans-grid-vetor { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.plan-card { position: relative; padding: 28px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); }
.plan-card.featured { border-color: rgba(37,214,179,.48); box-shadow: 0 18px 55px rgba(37,214,179,.11); transform: translateY(-9px); }
.popular-tag { position: absolute; right: 18px; top: 18px; padding: 6px 10px; border-radius: 999px; background: var(--teal); color: #031510; font-size: .67rem; font-weight: 950; text-transform: uppercase; letter-spacing: .08em; }
.plan-price { display: flex; align-items: end; gap: 6px; margin: 22px 0; }
.plan-price strong { font-size: 2.55rem; letter-spacing: -.055em; line-height: .9; }
.plan-price span { color: var(--muted); font-size: .8rem; }
.plan-card > p:not(.eyebrow):not(.secure-note) { min-height: 48px; color: var(--muted); }
.plan-credit-bundle { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin: 0 0 18px; padding: 12px; border: 1px solid rgba(37,214,179,.22); border-radius: 16px; background: rgba(37,214,179,.055); }
.plan-credit-bundle > div:not(.plan-credit-free-note) { min-width: 0; display: grid; gap: 3px; }
.plan-credit-bundle strong { color: #e7fff9; font-size: 1.2rem; line-height: 1; }
.plan-credit-bundle span { color: #b8e9dd; font-size: .67rem; font-weight: 800; line-height: 1.25; }
.plan-credit-bundle small { color: var(--muted); font-size: .62rem; line-height: 1.3; }
.plan-credit-free-note { grid-column: 1 / -1; padding-top: 8px; border-top: 1px solid rgba(37,214,179,.16); color: #b8e9dd; font-size: .7rem; line-height: 1.4; }
.plan-credit-bundle-free { grid-template-columns: 1fr; }
.plan-credit-bundle-free strong { font-size: .88rem; }
.plan-credit-bundle-free span, .plan-credit-bundle-free small { font-size: .7rem; }
.plan-limits { list-style: none; padding: 18px 0; margin: 0 0 20px; border-top: 1px solid var(--line); display: grid; gap: 10px; color: var(--muted-strong); font-size: .86rem; }
.plan-limits li::before { content: "✓"; margin-right: 8px; color: var(--teal); }
.plan-actions { display: grid; gap: 9px; margin-top: auto; }
.plan-locked { display: block; padding: 12px 14px; border: 1px dashed rgba(241, 191, 94, .4); border-radius: 12px; color: #f3d595; background: rgba(241, 191, 94, .06); font-size: .72rem; line-height: 1.35; text-align: center; }
.secure-note { text-align: center; color: var(--muted); font-size: .74rem; margin: 12px 0 0; }
.plan-card .secure-note { min-height: 0; }

/* Keep the ImobGere cards readable on ordinary desktop widths. Four narrow
   columns work only on a wide monitor; two columns preserve the copy and
   buttons without forcing horizontal overflow. */
@media (min-width: 761px) and (max-width: 1380px) {
  .plans-grid:not(.plans-grid-vetor) { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .plans-grid-vetor { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .plans-grid:not(.plans-grid-vetor).plans-grid-count-3 > .plan-card:last-child { grid-column: 1 / -1; width: calc(50% - 7px); justify-self: center; }
}

/* GereVetorizador: compact, aligned cards without unrelated team limits. */
.plan-card-vetor { padding: 22px; border-radius: 20px; }
.plan-card-vetor h3 { margin-bottom: 8px; }
.plan-card-vetor .plan-price { margin: 16px 0 14px; }
.plan-card-vetor .plan-price strong { font-size: 2.25rem; }
.plan-card-vetor .plan-credit-bundle {
  min-height: 98px;
  margin: 0 0 14px;
  padding: 9px 0 12px;
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}
.plan-card-vetor .plan-credit-bundle > div:not(.plan-credit-free-note) + div:not(.plan-credit-free-note) {
  padding-left: 10px;
  border-left: 1px solid rgba(37, 214, 179, .16);
}
.plan-card-vetor .plan-credit-bundle strong { font-size: 1.08rem; }
.plan-card-vetor .plan-credit-bundle span { font-size: .62rem; }
.plan-card-vetor .plan-credit-bundle small { font-size: .59rem; }
.plan-card-vetor .plan-credit-free-note { padding-top: 7px; font-size: .67rem; }
.plan-card-vetor .plan-credit-bundle-free { display: grid; align-content: center; gap: 3px; }
.plan-card-vetor .plan-credit-bundle-free strong { font-size: .84rem; }
.plan-card-vetor .plan-credit-bundle-free span,
.plan-card-vetor .plan-credit-bundle-free small { font-size: .66rem; }
.plan-card-vetor .plan-actions .btn { min-height: 46px; padding: 11px 14px; }
.plans-grid-vetor .plan-card-vetor { padding: 18px; }
.plans-grid-vetor .plan-card-vetor > p:not(.eyebrow):not(.secure-note) { font-size: .75rem; line-height: 1.42; }
.plans-grid-vetor .plan-card-vetor .plan-price strong { font-size: 2rem; }
.plans-grid-vetor .plan-card-vetor .plan-credit-bundle { min-height: 94px; }
.plans-grid-vetor .plan-card-vetor .plan-credit-bundle strong { font-size: .98rem; }

.auth-page { min-height: 720px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: center; }
.auth-intro { padding: 24px; }
.auth-intro p { color: var(--muted-strong); font-size: 1.08rem; }
.auth-highlights { display: grid; gap: 14px; margin-top: 30px; }
.auth-highlight { display: flex; gap: 14px; align-items: flex-start; padding: 15px; border-radius: 16px; background: rgba(255,255,255,.025); border: 1px solid var(--line); }
.auth-highlight span { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 10px; background: rgba(37,214,179,.1); color: var(--teal); font-weight: 900; }
.auth-highlight p { margin: 3px 0 0; color: var(--muted); font-size: .84rem; }
.form-card { padding: 34px; border: 1px solid var(--line-strong); border-radius: var(--radius-xl); background: rgba(13,27,38,.92); box-shadow: var(--shadow); }
.form-card > p { color: var(--muted); }
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.field { display: grid; gap: 7px; margin-bottom: 15px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--muted-strong); font-size: .78rem; font-weight: 750; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: white;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  outline: none;
  background: rgba(3,12,18,.56);
  transition: border .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 105px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: rgba(37,214,179,.65); box-shadow: 0 0 0 4px rgba(37,214,179,.08); }
.field small { color: var(--muted); font-size: .73rem; }
.checkbox { display: flex; gap: 10px; align-items: flex-start; color: var(--muted-strong); font-size: .8rem; margin: 10px 0 18px; }
.checkbox input { margin-top: 3px; accent-color: var(--teal); }
.form-switch { margin-top: 18px; text-align: center; color: var(--muted); font-size: .86rem; }
.form-switch a { color: var(--teal); font-weight: 800; }
.invite-banner { margin-bottom: 20px; padding: 14px 16px; border-radius: 15px; color: #c8ffef; background: rgba(37,214,179,.09); border: 1px solid rgba(37,214,179,.2); font-size: .84rem; }
.application-page .auth-intro { max-width: 650px; }
.application-page .form-card { max-width: 720px; width: 100%; justify-self: end; }
.application-success { min-height: 620px; max-width: 760px; margin-inline: auto; justify-items: center; text-align: center; }
.application-success .login-monogram { margin-bottom: 18px; }
.application-success p:not(.eyebrow) { max-width: 560px; color: var(--muted-strong); }
.application-message { display: block; max-width: 290px; white-space: normal; color: var(--muted-strong); }
.login-page .auth-intro { max-width: 580px; }
.login-monogram {
  width: 62px;
  height: 62px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 19px;
  color: #021510;
  background: linear-gradient(135deg, var(--teal), var(--blue) 58%, var(--purple));
  box-shadow: 0 15px 35px rgba(37, 214, 179, .17);
  font-weight: 950;
}
.login-monogram span { position: absolute; right: -7px; top: -7px; color: white; font-size: .78rem; }
.password-field { position: relative; }
.password-field input { padding-right: 82px; }
.password-field button {
  position: absolute;
  right: 7px;
  top: 7px;
  min-height: 34px;
  padding: 5px 9px;
  border: 0;
  border-radius: 9px;
  color: var(--teal);
  background: rgba(37, 214, 179, .08);
  cursor: pointer;
  font-size: .73rem;
  font-weight: 800;
}
.login-recovery { display: flex; justify-content: flex-end; margin: -4px 0 18px; }
.login-recovery button { padding: 0; border: 0; background: transparent; cursor: pointer; font-size: .79rem; }
.login-help { margin: 18px 0 0; text-align: center; font-size: .78rem; }
.auth-signature { display: flex; align-items: center; gap: 13px; margin-top: 28px; color: var(--muted); font-size: .79rem; }
.auth-signature strong { color: white; }
.availability-card { padding: 30px; border: 1px dashed var(--line-strong); border-radius: 22px; text-align: center; color: var(--muted-strong); }

.dashboard-page { width: 100%; min-width: 0; overflow-x: clip; padding: 0 0 70px; }
.dashboard-shell { --dashboard-sidebar-width: 264px; display: grid; grid-template-columns: var(--dashboard-sidebar-width) minmax(0, 1fr); gap: 0; min-width: 0; align-items: start; transition: grid-template-columns .24s ease; }
.dashboard-shell.is-menu-collapsed { --dashboard-sidebar-width: 118px; }
.dashboard-sidebar { position: sticky; top: 0; align-self: start; height: fit-content; min-height: 100dvh; min-width: 0; padding: 16px 12px 22px; display: flex; flex-direction: column; isolation: isolate; overflow: visible; border: 0; border-right: 1px solid rgba(111, 143, 166, .2); border-radius: 0; background: linear-gradient(180deg, #101a24 0%, #0d1720 55%, #09121b 100%); box-shadow: 12px 0 30px rgba(0, 0, 0, .16), inset -1px 0 0 rgba(255, 255, 255, .025); }
.dashboard-sidebar::before { position: absolute; inset: 0 0 auto; height: 2px; content: ""; background: linear-gradient(90deg, var(--teal), rgba(76, 141, 255, .65), transparent); pointer-events: none; }
.dashboard-sidebar > * { position: relative; z-index: 1; }
.dashboard-sidebar-brand { min-width: 0; min-height: 48px; margin: 0 4px 20px; display: flex; align-items: center; gap: 10px; color: white; }
.dashboard-sidebar-brand-logo { width: 42px; height: 42px; flex: 0 0 42px; padding: 3px; border: 1px solid rgba(37, 214, 179, .36); border-radius: 13px; background: #07141e; box-shadow: 0 7px 17px rgba(37, 214, 179, .14); object-fit: contain; }
.dashboard-sidebar-brand-copy { min-width: 0; display: grid; gap: 1px; }
.dashboard-sidebar-brand-copy strong { font-size: 1rem; letter-spacing: -.02em; }
.dashboard-sidebar-brand-copy small { overflow: hidden; color: #8fa9b9; font-size: .58rem; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.dashboard-user { min-width: 0; min-height: 66px; padding: 10px; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; border: 1px solid rgba(111, 143, 166, .26); border-radius: 15px; background: rgba(255, 255, 255, .035); }
.dashboard-user-mark { width: 36px; height: 36px; flex: 0 0 36px; display: grid; place-items: center; border: 1px solid rgba(37, 214, 179, .35); border-radius: 11px; color: #aef5e6; background: rgba(37, 214, 179, .11); font-size: .72rem; font-weight: 950; letter-spacing: -.04em; }
.dashboard-user-copy { min-width: 0; flex: 1 1 auto; }
.dashboard-user strong, .dashboard-user small { display: block; overflow: hidden; text-overflow: ellipsis; }
.dashboard-user strong { color: #fff; font-size: .83rem; }
.dashboard-user small { margin-top: 3px; color: #9cb2c0; font-size: .69rem; }
.role-tag { display: inline-flex !important; width: max-content; margin-top: 8px !important; padding: 5px 8px; border-radius: 999px; color: #aef5e6 !important; background: rgba(37, 214, 179, .12); text-transform: uppercase; font-size: .58rem !important; font-weight: 950; letter-spacing: .09em; }
.dashboard-menu-toggle { width: 100%; min-width: 0; margin: 0 0 10px; padding: 8px 6px 12px; display: flex; align-items: center; gap: 9px; border: 0; border-bottom: 1px solid rgba(111, 143, 166, .2); background: transparent; color: white; text-align: left; cursor: pointer; }
.dashboard-menu-toggle:focus-visible { outline: 2px solid var(--teal); outline-offset: -3px; border-radius: 10px; }
.dashboard-menu-summary-icon { width: 30px; height: 30px; flex: 0 0 30px; display: grid; place-items: center; border: 1px solid rgba(37, 214, 179, .34); border-radius: 9px; color: var(--teal); background: rgba(37, 214, 179, .08); font-size: .86rem; }
.dashboard-menu-summary-copy { min-width: 0; flex: 1 1 auto; display: grid; gap: 2px; }
.dashboard-menu-summary-copy small { color: #8fa9b9; font-size: .58rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.dashboard-menu-summary-copy strong { overflow: hidden; color: white; font-size: .8rem; text-overflow: ellipsis; white-space: nowrap; }
.dashboard-menu-action { flex: 0 0 auto; color: #9cb2c0; font-size: .62rem; font-weight: 850; white-space: nowrap; }
.dashboard-menu-summary-chevron { width: 21px; height: 21px; flex: 0 0 21px; display: grid; place-items: center; color: var(--teal); font-size: 1rem; transition: transform .2s ease; }
.dashboard-sidebar.is-collapsed .dashboard-menu-summary-chevron { display: none; }
.dashboard-nav { display: grid; gap: 19px; overflow: visible; padding: 0 2px 4px; }
.dashboard-nav-group { display: grid; gap: 3px; }
.dashboard-nav-group + .dashboard-nav-group { margin-top: 1px; padding-top: 15px; border-top: 1px solid rgba(111, 143, 166, .16); }
.dashboard-nav-label { display: flex; align-items: center; gap: 8px; margin: 1px 10px 6px; color: #8fa9b9; font-size: .57rem; font-weight: 950; letter-spacing: .14em; line-height: 1.2; text-transform: uppercase; }
.dashboard-nav-label::before { width: 14px; height: 2px; flex: 0 0 14px; border-radius: 99px; content: ""; background: linear-gradient(90deg, var(--teal), rgba(37, 214, 179, .1)); }
.dashboard-nav button { width: 100%; min-width: 0; min-height: 42px; padding: 8px 10px; display: flex; align-items: center; gap: 9px; border: 1px solid transparent; border-left: 3px solid transparent; border-radius: 10px; background: transparent; color: #c3d2dc; font-size: .78rem; text-align: left; cursor: pointer; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease; }
.dashboard-nav button > .dashboard-nav-icon { width: 23px; height: 23px; flex: 0 0 23px; display: grid; place-items: center; color: #8fa9b9; font-size: .76rem; text-align: center; }
.dashboard-nav button .dashboard-nav-text { min-width: 0; overflow: hidden; text-overflow: ellipsis; }
.dashboard-nav button:hover { color: white; border-color: rgba(37, 214, 179, .2); background: rgba(255, 255, 255, .045); transform: translateX(2px); }
.dashboard-nav button.active { color: white; border-color: rgba(37, 214, 179, .35); border-left-color: var(--teal); background: linear-gradient(90deg, rgba(37, 214, 179, .13), rgba(76, 141, 255, .08)); box-shadow: 0 8px 18px rgba(0, 0, 0, .15), inset 0 1px 0 rgba(255, 255, 255, .04); }
.dashboard-nav button.active > .dashboard-nav-icon { color: var(--teal); }
.dashboard-sidebar.is-collapsed .dashboard-sidebar-brand { justify-content: center; margin-inline: 0; }
.dashboard-sidebar.is-collapsed .dashboard-sidebar-brand-copy, .dashboard-sidebar.is-collapsed .dashboard-user-copy, .dashboard-sidebar.is-collapsed .dashboard-menu-summary-copy, .dashboard-sidebar.is-collapsed .dashboard-nav-label, .dashboard-sidebar.is-collapsed .dashboard-nav-text { display: none; }
.dashboard-sidebar.is-collapsed .dashboard-user { justify-content: center; padding-inline: 5px; }
.dashboard-sidebar.is-collapsed .dashboard-menu-toggle { justify-content: center; gap: 6px; padding-inline: 0; border-bottom: 0; }
.dashboard-sidebar.is-collapsed .dashboard-menu-action { display: inline-flex; color: #a9bbc6; font-size: .58rem; }
.dashboard-sidebar.is-collapsed .dashboard-nav { gap: 8px; padding-inline: 0; }
.dashboard-sidebar.is-collapsed .dashboard-nav-group + .dashboard-nav-group { margin-top: 0; padding-top: 0; border-top: 0; }
.dashboard-sidebar.is-collapsed .dashboard-nav button { justify-content: center; padding-inline: 0; border-left-color: transparent; }
.dashboard-sidebar.is-collapsed .dashboard-nav button:hover { transform: translateY(-1px); }
.sidebar-bottom { margin-top: auto; padding-top: 16px; display: grid; gap: 8px; border-top: 1px solid rgba(111, 143, 166, .18); }
.sidebar-bottom .btn { min-height: 36px; padding: 8px 9px; border-color: rgba(111, 143, 166, .28); color: #cbd8e0; background: rgba(255, 255, 255, .025); font-size: .76rem; }
.sidebar-bottom .btn:hover { border-color: rgba(37, 214, 179, .45); background: rgba(37, 214, 179, .08); }
.dashboard-sidebar.is-collapsed .sidebar-bottom .btn { padding-inline: 0; font-size: 0; }
.dashboard-sidebar.is-collapsed .sidebar-bottom a::before { content: "↗"; font-size: 1rem; }
.dashboard-sidebar.is-collapsed .sidebar-bottom button::before { content: "↪"; font-size: 1rem; }
.dashboard-main { min-width: 0; padding: 0 40px 60px; }
.dashboard-top { min-height: 106px; padding: 28px 0 22px; border-bottom: 1px solid var(--line); }
.dashboard-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 25px; }
.dashboard-top h1 { font-size: clamp(2rem, 4vw, 3.3rem); margin-bottom: 7px; }
.dashboard-top p { color: var(--muted); margin-bottom: 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-bottom: 20px; }
.stat-card { min-width: 0; padding: 20px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 19px; background: var(--surface); }
.stat-card small { color: var(--muted); }
.stat-card strong { display: block; margin-top: 9px; font-size: 1.65rem; letter-spacing: -.04em; }
.stat-card .up { margin-top: auto; color: var(--teal); font-size: .74rem; }
.panel { margin-bottom: 18px; padding: 24px; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); overflow: hidden; }
.panel-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.panel-head h2 { font-size: 1.4rem; margin-bottom: 3px; letter-spacing: -.025em; }
.panel-head p { margin: 0; color: var(--muted); font-size: .83rem; }
.panel-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.link-list { display: grid; gap: 12px; }
.sales-link { padding: 16px; display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.025); }
.sales-link strong { display: block; }
.link-state { display: block; margin-top: 7px; }
.sales-link code { display: block; max-width: 100%; margin-top: 5px; color: var(--muted); font-family: inherit; font-size: .74rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; }
table { width: 100%; border-collapse: collapse; min-width: 760px; }
th, td { padding: 13px 14px; text-align: left; border-bottom: 1px solid var(--line); font-size: .79rem; }
th { color: var(--muted); background: rgba(255,255,255,.025); font-weight: 750; }
td { color: var(--muted-strong); }
tr:last-child td { border-bottom: 0; }
.status { display: inline-flex; align-items: center; padding: 5px 8px; border-radius: 999px; font-size: .68rem; font-weight: 850; background: rgba(255,255,255,.07); }
.status.active, .status.available, .status.paid, .status.verified, .status.delivered { color: #b8ffeb; background: rgba(37,214,179,.11); }
.status.paused, .status.failed, .status.refused, .status.retry, .status.checkout_failed { color: #ffd1d5; background: rgba(255,107,116,.11); }
.status.held, .status.pending, .status.pending_adapter, .status.awaiting_approval, .status.awaiting_authorization { color: #ffe7b4; background: rgba(248,189,79,.11); }
.empty-state { padding: 34px; text-align: center; color: var(--muted); }
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 15px; }
.filter-row input, .filter-row select { min-height: 40px; padding: 9px 11px; border: 1px solid var(--line); border-radius: 10px; color: white; background: rgba(3,12,18,.55); }
.network-summary { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin-bottom: 15px; }
.network-summary > div { padding: 14px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.025); }
.network-summary small, .network-summary span { display: block; color: var(--muted); font-size: .7rem; }
.network-summary strong { display: block; margin: 4px 0; font-size: 1.15rem; color: white; }
.network-table { min-width: 1260px; }
.network-table code { color: #b6f7e9; font-family: inherit; font-weight: 750; }
.action-stack { min-width: 235px; display: grid; gap: 7px; }
.manager-control { display: grid; grid-template-columns: minmax(120px, 1fr) auto; gap: 6px; }
.manager-control select { min-width: 0; min-height: 34px; padding: 6px 8px; border: 1px solid var(--line); border-radius: 9px; color: white; background: #081722; }
.payout-summary { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 18px; }
.payout-box { padding: 17px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.025); }
.payout-box small { display: block; color: var(--muted); }
.payout-box strong { display: block; margin-top: 6px; font-size: 1.25rem; }
.payout-account-panel { padding: 0; }
.payout-account-panel > summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; cursor: pointer; list-style: none; }
.payout-account-panel > summary::-webkit-details-marker { display: none; }
.payout-account-panel > summary > span:first-child { min-width: 0; }
.payout-account-panel > summary strong, .payout-account-panel > summary small { display: block; }
.payout-account-panel > summary strong { color: white; font-size: 1.05rem; }
.payout-account-panel > summary small { margin-top: 4px; color: var(--muted); font-size: .8rem; }
.payout-account-panel > summary::after { flex: 0 0 auto; width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 9px; color: var(--teal); content: "+"; font-size: 1.1rem; }
.payout-account-panel[open] > summary::after { content: "−"; }
.payout-account-content { padding: 0 24px 24px; }
.payout-account-content .info-banner { margin-bottom: 16px; }
.payout-account-meta { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-bottom: 16px; }
.payout-account-meta > div { min-width: 0; padding: 13px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.025); }
.payout-account-meta small, .payout-account-meta strong { display: block; }
.payout-account-meta small { color: var(--muted); font-size: .7rem; }
.payout-account-meta strong { margin-top: 5px; color: var(--muted-strong); font-size: .82rem; overflow: hidden; text-overflow: ellipsis; }
.payout-form .field-grid { margin-bottom: 16px; }
.team-history-section { margin-top: 22px; }
.team-history-section h3 { margin-bottom: 10px; font-size: 1rem; }
.info-banner { padding: 15px 17px; margin-bottom: 18px; border-radius: 15px; color: #c7dbed; background: rgba(76,141,255,.08); border: 1px solid rgba(76,141,255,.18); font-size: .82rem; }
.warning-banner { color: #ffe8bd; background: rgba(248,189,79,.08); border-color: rgba(248,189,79,.2); }
.danger-banner { color: #ffd5d8; background: rgba(255,107,116,.08); border-color: rgba(255,107,116,.2); }
.inline-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.tab-pane.hidden { display: none; }

.viewing-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(248, 189, 79, .28);
  border-radius: 16px;
  background: linear-gradient(115deg, rgba(248, 189, 79, .12), rgba(255, 255, 255, .025));
}
.viewing-banner strong,
.viewing-banner span { display: block; }
.viewing-banner span { margin-top: 3px; color: var(--muted); font-size: .8rem; }
.catalog-admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}
.catalog-admin-grid > .panel { min-width: 0; }
.admin-system-card { min-height: 310px; display: flex; flex-direction: column; }
.admin-system-card > .card-footer { margin-top: auto; }
.admin-section-intro { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.admin-section-intro h2 { margin-bottom: 5px; }
.admin-section-intro p:last-child { max-width: 760px; margin: 0; color: var(--muted); }
.admin-editor-panel { border-color: rgba(37, 214, 179, .25); background: linear-gradient(145deg, rgba(14, 45, 54, .65), rgba(10, 22, 32, .96)); scroll-margin-top: 24px; }
.admin-system-heading, .admin-list-card-head { display: flex; align-items: center; gap: 13px; min-width: 0; }
.admin-system-heading > div:last-child, .admin-list-card-head > div:nth-child(2) { min-width: 0; }
.admin-product-logo, .admin-list-logo { flex: 0 0 auto; padding: 4px; background: rgba(255, 255, 255, .92); border: 1px solid rgba(255, 255, 255, .25); overflow: hidden; }
.admin-product-logo { width: 62px; height: 62px; border-radius: 17px; }
.admin-list-logo { width: 48px; height: 48px; border-radius: 14px; }
.admin-product-logo img, .admin-list-logo img { width: 100%; height: 100%; object-fit: contain; border-radius: 10px; }
.admin-system-card > p { min-height: 47px; margin: 18px 0 0; }
.admin-system-grid { align-items: stretch; }
.admin-list-card { min-width: 0; padding: 20px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(145deg, rgba(17, 36, 49, .84), rgba(8, 18, 27, .94)); }
.admin-list-card[hidden] { display: none; }
.admin-list-card-head { margin-bottom: 17px; }
.admin-list-card-head > .status { margin-left: auto; flex: 0 0 auto; }
.admin-list-card h3 { margin: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.admin-list-card-head small { color: var(--muted); }
.admin-card-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; margin-bottom: 18px; }
.plan-admin-price { display: flex; align-items: baseline; gap: 7px; margin: 5px 0 12px; }
.plan-admin-price strong { font-size: 1.7rem; letter-spacing: -.04em; }
.plan-admin-price span { color: var(--muted); font-size: .78rem; }
.admin-list-card > p { min-height: 39px; margin: 0; color: var(--muted); font-size: .82rem; }
.admin-list-card > .card-footer { margin-top: auto; }
.plan-limit-chips { display: flex; flex-wrap: wrap; gap: 7px; min-height: 31px; margin: 16px 0 18px; }
.plan-limit-chips span { padding: 5px 8px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted-strong); font-size: .68rem; }
.plan-credit-summary { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 17px; }
.plan-credit-summary span { padding: 6px 9px; border: 1px solid rgba(99, 242, 204, .24); border-radius: 999px; color: #a9dfd1; background: rgba(17, 75, 63, .18); font-size: .68rem; }
.plan-credit-summary strong { color: #e0fff7; }
.plan-credit-editor { margin: 22px 0 17px; padding: 18px; border: 1px solid rgba(99, 242, 204, .25); border-radius: 17px; background: linear-gradient(145deg, rgba(8, 34, 39, .68), rgba(7, 20, 29, .7)); }
.plan-credit-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 17px; }
.plan-credit-heading h3 { margin: 0 0 4px; font-size: 1.05rem; }
.plan-credit-heading p:last-child { max-width: 760px; margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.5; }
.credit-included-grid { margin-bottom: 18px; }
.credit-usage-grid, .credit-topup-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 12px; }
.credit-usage-card, .credit-topup-card { min-width: 0; padding: 14px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255, 255, 255, .025); }
.credit-action-costs, .credit-recharge-settings { margin-top: 12px; padding: 14px; border: 1px solid rgba(99, 242, 204, .18); border-radius: 14px; background: rgba(4, 24, 29, .42); }
.credit-action-costs > div:first-child, .credit-recharge-settings > div:first-child { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 11px; }
.credit-action-costs strong, .credit-recharge-settings strong { color: var(--muted-strong); font-size: .82rem; }
.credit-action-costs small, .credit-recharge-settings small { color: var(--muted); font-size: .68rem; line-height: 1.4; }
.credit-action-costs .field-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 9px; }
.credit-recharge-settings .field-grid + .field-grid { margin-top: 10px; }
.credit-usage-card > div:first-child, .credit-topup-card > strong { display: block; margin-bottom: 11px; color: var(--muted-strong); font-size: .82rem; }
.credit-usage-card > div:first-child small { display: block; margin-top: 3px; color: var(--muted); font-size: .68rem; font-weight: 500; }
.credit-usage-card .field-grid, .credit-topup-card .field-grid { gap: 9px; }
.credit-usage-card .field label, .credit-topup-card .field label { font-size: .68rem; }
.credit-usage-card .field input, .credit-usage-card .field select, .credit-topup-card .field input { min-width: 0; }
.credit-topup-card .checkbox { margin-top: 9px; font-size: .72rem; }
.credit-cost-preview { margin-top: 12px; padding: 12px; border: 1px dashed rgba(99, 242, 204, .32); border-radius: 13px; background: rgba(4, 20, 24, .5); }
.credit-preview-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.credit-preview-head strong { color: #d9fff4; font-size: .78rem; }
.credit-preview-head small { color: var(--muted); font-size: .68rem; }
.credit-preview-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; margin-top: 9px; }
.credit-preview-grid > div { min-width: 0; padding: 9px; border-radius: 10px; background: rgba(255, 255, 255, .035); }
.credit-preview-grid strong, .credit-preview-grid span, .credit-preview-grid b, .credit-preview-grid small { display: block; }
.credit-preview-grid strong { color: var(--muted-strong); font-size: .7rem; }
.credit-preview-grid span { margin-top: 4px; color: var(--muted); font-size: .68rem; }
.credit-preview-grid b { margin-top: 4px; color: #a9f8df; font-size: .76rem; }
.credit-preview-grid small { margin-top: 4px; color: #789a96; font-size: .62rem; line-height: 1.35; }
.credit-capacity { display: grid; gap: 4px; margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(99, 242, 204, .16); }
.credit-capacity strong { color: #d9fff4; font-size: .76rem; }
.credit-capacity span, .credit-capacity small { color: var(--muted); font-size: .68rem; line-height: 1.4; }
.credit-lock-note { margin: 15px 0 0; font-size: .75rem; line-height: 1.5; }
.admin-list-card .card-footer { align-items: center; }
.admin-list-card .card-footer .secure-note { max-width: 65%; }
.commission-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 14px 0; }
.commission-grid > div { min-width: 0; padding: 12px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255, 255, 255, .025); }
.commission-grid small, .commission-grid strong { display: block; }
.commission-grid small { color: var(--muted); font-size: .68rem; }
.commission-grid strong { margin-top: 5px; color: var(--muted-strong); font-size: .75rem; line-height: 1.45; }
.continuity-note { min-height: 0 !important; color: #aef5e6 !important; font-size: .76rem !important; }
.filter-label { align-self: center; color: var(--muted); font-size: .78rem; font-weight: 700; }
.system-meta,
.status-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.system-meta { margin-top: 16px; }
.system-meta span {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: .7rem;
}
.status-stack { align-items: center; }
.table-line { display: block; margin: 2px 0; }
.commission-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}
.commission-preview > div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, .025);
}
.commission-preview small,
.commission-preview strong { display: block; }
.commission-preview small { color: var(--muted); }
.commission-preview strong { margin-top: 5px; color: var(--teal); font-size: 1.3rem; }
.commission-preview .invalid-share { color: var(--danger); font-size: .92rem; }

@media (max-width: 1050px) {
  .catalog-admin-grid { grid-template-columns: 1fr; }
  .admin-card-list { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .admin-section-intro { align-items: stretch; flex-direction: column; }
  .admin-section-intro .btn { width: 100%; }
  .viewing-banner { align-items: stretch; flex-direction: column; }
  .commission-preview { grid-template-columns: 1fr; }
  .commission-grid { grid-template-columns: 1fr; }
}

.loading-page { min-height: 70vh; display: grid; place-content: center; justify-items: center; color: var(--muted); }
.loader { width: 42px; height: 42px; border: 3px solid rgba(255,255,255,.12); border-top-color: var(--teal); border-radius: 50%; animation: spin 1s linear infinite; }
.not-found { min-height: 70vh; display: grid; place-content: center; text-align: center; }
.not-found h1 { font-size: clamp(4rem, 10vw, 8rem); color: var(--teal); margin-bottom: 10px; }
.not-found p { color: var(--muted); }

.site-footer { width: min(calc(100% - 32px), var(--content)); margin: 0 auto 26px; padding: 35px; display: grid; grid-template-columns: 1fr auto; gap: 26px; border-top: 1px solid var(--line); color: var(--muted); }
.footer-brand { margin-bottom: 16px; color: white; }
.site-footer p { max-width: 430px; font-size: .84rem; }
.footer-links { display: grid; grid-template-columns: repeat(2, auto); gap: 10px 24px; align-content: start; }
.footer-links a:hover { color: white; }
.site-footer > small { grid-column: 1 / -1; padding-top: 18px; border-top: 1px solid var(--line); }

.toast-stack { position: fixed; right: 18px; bottom: 18px; z-index: 100; display: grid; gap: 9px; width: min(380px, calc(100% - 36px)); }
.toast { padding: 15px 17px; border: 1px solid var(--line-strong); border-radius: 15px; background: #112330; box-shadow: var(--shadow); animation: toast-in .24s ease; }
.toast.success { border-color: rgba(37,214,179,.32); }
.toast.error { border-color: rgba(255,107,116,.38); }
.toast strong { display: block; margin-bottom: 3px; font-size: .86rem; }
.toast span { color: var(--muted-strong); font-size: .78rem; }
@keyframes toast-in { from { opacity: 0; transform: translateY(12px); } }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; text-align: center; gap: 34px; padding-top: 72px; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .editorial-hero .solution-board { width: min(100%, 660px); margin-inline: auto; text-align: left; }
  .hero-visual { min-height: 490px; }
  .partner-band, .auth-page { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .network-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dashboard-shell { grid-template-columns: 1fr; }
  .dashboard-shell.is-menu-collapsed { grid-template-columns: 1fr; }
  .dashboard-sidebar { position: static; height: auto; min-height: 0; max-height: none; padding: 15px 18px 18px; overflow: hidden; border-right: 0; border-bottom: 1px solid rgba(111, 143, 166, .2); }
  .dashboard-sidebar.is-collapsed .dashboard-sidebar-brand { justify-content: flex-start; margin-inline: 4px; }
  .dashboard-sidebar.is-collapsed .dashboard-sidebar-brand-copy, .dashboard-sidebar.is-collapsed .dashboard-user-copy, .dashboard-sidebar.is-collapsed .dashboard-menu-summary-copy, .dashboard-sidebar.is-collapsed .dashboard-menu-action { display: grid; }
  .dashboard-sidebar.is-collapsed .dashboard-user { justify-content: flex-start; padding-inline: 10px; }
  .dashboard-sidebar.is-collapsed .dashboard-menu-toggle { justify-content: flex-start; padding-inline: 8px; border-bottom: 1px solid rgba(111, 143, 166, .2); }
  .dashboard-sidebar.is-collapsed .dashboard-menu-summary-chevron { display: grid; transform: rotate(-90deg); }
  .dashboard-sidebar.is-collapsed .dashboard-nav, .dashboard-sidebar.is-collapsed .sidebar-bottom { display: none; }
  .dashboard-nav { grid-template-columns: 1fr; gap: 12px; overflow: visible; padding: 0 2px 4px; }
  .dashboard-nav-group { grid-template-columns: 1fr; gap: 4px; }
  .dashboard-nav-group + .dashboard-nav-group { margin-top: 0; padding-top: 11px; border-top: 1px solid rgba(111, 143, 166, .16); }
  .dashboard-nav-label { grid-column: auto; margin: 3px 7px 2px; }
  .dashboard-nav button { min-width: 0; width: 100%; min-height: 44px; padding: 9px 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .dashboard-nav button .dashboard-nav-text { overflow: hidden; line-height: 1.2; text-overflow: ellipsis; }
  .sidebar-bottom { margin-top: 16px; grid-template-columns: repeat(2, 1fr); }
  .dashboard-main { padding: 0 24px 45px; }
}

@media (max-width: 760px) {
  .site-header { min-height: 64px; margin-top: 8px; border-radius: 18px; }
  .brand-copy small { display: none; }
  .menu-toggle { display: block; }
  .main-nav { position: absolute; left: 0; right: 0; top: calc(100% + 8px); padding: 12px; display: none; flex-direction: column; align-items: stretch; border: 1px solid var(--line); border-radius: 17px; background: #0b1822; box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .main-nav a { text-align: center; }
  .page { padding-top: 40px; }
  .section { padding: 64px 0; }
  .hero { min-height: auto; padding-top: 58px; padding-bottom: 72px; }
  .editorial-hero { display: grid; gap: 34px; }
  .editorial-hero h1 { font-size: clamp(2.75rem, 15vw, 4.25rem); }
  .editorial-hero .hero-actions { display: grid; justify-items: stretch; }
  .editorial-hero .hero-actions > * { width: 100%; justify-content: center; }
  .solution-board { border-radius: 22px; }
  .board-heading { padding: 17px; }
  .solution-list a { padding: 13px 16px; grid-template-columns: 38px minmax(0, 1fr) auto; gap: 11px; }
  .solution-list a:hover { padding-left: 16px; }
  .solution-symbol { width: 38px; height: 38px; border-radius: 11px; }
  .solution-list strong { font-size: .84rem; }
  .solution-list small { font-size: .66rem; }
  .board-bottom { padding: 14px 16px; }
  h1 { font-size: clamp(2.7rem, 15vw, 4.6rem); }
  .hero-visual { min-height: 390px; transform: scale(.88); margin-inline: -28px; }
  .orbit-one { width: 390px; height: 390px; }
  .orbit-two { width: 290px; height: 290px; }
  .systems-grid, .steps-grid, .benefit-grid, .plans-grid { grid-template-columns: 1fr; }
  .system-card, .system-card.full { grid-column: 1 / -1; grid-template-columns: 1fr; }
  .catalog-card:nth-child(odd):last-child { grid-column: 1 / -1; }
  .section-head { display: block; }
  .partner-band, .product-hero-card { padding: 30px 22px; border-radius: 25px; }
  .split-legend { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
  .plan-card-vetor { padding: 18px; }
  .plan-card-vetor .plan-price strong { font-size: 2rem; }
  .plan-card-vetor .plan-credit-bundle { min-height: 0; padding: 8px 0 10px; }
  .plan-card-vetor .plan-credit-bundle > div:not(.plan-credit-free-note) + div:not(.plan-credit-free-note) { padding-top: 8px; padding-left: 0; border-top: 1px solid rgba(37, 214, 179, .13); border-left: 0; }
  .plan-credit-bundle { grid-template-columns: 1fr; gap: 10px; }
  .plan-credit-bundle > div:not(.plan-credit-free-note) { grid-template-columns: auto 1fr; align-items: baseline; column-gap: 7px; }
  .plan-credit-bundle > div:not(.plan-credit-free-note) strong { grid-row: span 2; }
  .plan-credit-bundle > div:not(.plan-credit-free-note) small { grid-column: 2; }
  .auth-page { gap: 10px; }
  .auth-intro, .form-card { padding: 24px 20px; }
  .field-grid, .panel-grid { grid-template-columns: 1fr; }
  .credit-usage-grid, .credit-topup-grid { grid-template-columns: 1fr; }
  .credit-action-costs .field-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .credit-action-costs > div:first-child, .credit-recharge-settings > div:first-child { align-items: flex-start; flex-direction: column; gap: 3px; }
  .credit-preview-grid { grid-template-columns: 1fr; }
  .credit-preview-head { align-items: flex-start; flex-direction: column; gap: 3px; }
  .stats-grid, .payout-summary { grid-template-columns: repeat(2, 1fr); }
  .network-summary { grid-template-columns: 1fr; }
  .dashboard-top { align-items: flex-start; flex-direction: column; }
  .dashboard-main { padding: 0 14px 32px; }
  .dashboard-sidebar { padding: 12px 10px 14px; }
  .dashboard-menu-toggle { padding: 10px 8px 12px; }
  .dashboard-menu-summary-copy strong { font-size: .78rem; }
  .panel { padding: 18px; }
  .payout-account-panel > summary { padding: 17px 18px; }
  .payout-account-content { padding: 0 18px 18px; }
  .payout-account-meta { grid-template-columns: 1fr; }
  .panel-head { align-items: flex-start; flex-direction: column; }
  .plan-credit-editor { padding: 14px; }
  .plan-credit-heading { flex-direction: column; gap: 9px; }
  .contact-section { margin-bottom: 46px; padding: 30px 24px; align-items: flex-start; flex-direction: column; }
  .contact-section .btn { width: 100%; }
  .sales-link { grid-template-columns: minmax(0, 1fr); }
  .site-footer { grid-template-columns: 1fr; padding: 26px 8px; }
  .site-footer > small { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Vitrine oficial: cada sistema aparece como um produto, não como uma linha de menu. */
.solution-board-premium { overflow: hidden; }
.board-heading-premium { min-height: 88px; padding: 18px 20px; background: rgba(4, 15, 24, .28); }
.board-brand-logo { flex: 0 0 auto; width: 52px; height: 52px; padding: 5px; border-radius: 16px; background: #07141e; border: 1px solid rgba(37, 214, 179, .36); }
.board-brand-logo img { width: 100%; height: 100%; object-fit: contain; border-radius: 11px; }
.board-count { margin-left: auto; padding: 7px 10px; border: 1px solid rgba(37, 214, 179, .35); border-radius: 999px; color: #90f4df; font-size: .68rem; font-weight: 900; letter-spacing: .12em; }
.solution-showcase-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; padding: 16px; }
.solution-product-card { min-width: 0; min-height: 148px; display: grid; grid-template-columns: 72px minmax(0, 1fr); grid-template-rows: 1fr auto; gap: 12px 14px; padding: 15px; border: 1px solid rgba(255, 255, 255, .09); border-radius: 21px; background: linear-gradient(145deg, color-mix(in srgb, var(--card-start) 18%, rgba(12, 28, 40, .96)), rgba(7, 18, 27, .94)); box-shadow: 0 12px 26px rgba(0, 0, 0, .16); transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.solution-product-card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--card-start) 66%, rgba(255, 255, 255, .25)); background: linear-gradient(145deg, color-mix(in srgb, var(--card-start) 28%, rgba(12, 28, 40, .96)), rgba(7, 18, 27, .94)); box-shadow: 0 20px 35px rgba(0, 0, 0, .26); }
.solution-product-logo { width: 72px; height: 72px; display: grid; place-items: center; grid-row: 1 / -1; align-self: center; padding: 5px; border: 1px solid rgba(255, 255, 255, .2); border-radius: 20px; background: rgba(255, 255, 255, .94); color: #061019; font-size: 1rem; font-weight: 950; box-shadow: 0 12px 25px color-mix(in srgb, var(--card-start) 30%, transparent); }
.solution-product-logo img { width: 100%; height: 100%; object-fit: contain; border-radius: 14px; }
.solution-product-copy { min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.solution-product-index { margin-bottom: 8px; color: #90f4df; font-size: .62rem; font-weight: 900; letter-spacing: .08em; line-height: 1.2; text-transform: uppercase; }
.solution-product-copy strong { color: #fff; font-size: 1rem; line-height: 1.1; }
.solution-product-copy small { display: -webkit-box; margin-top: 5px; overflow: hidden; color: var(--muted); font-size: .7rem; line-height: 1.3; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.solution-product-action { grid-column: 2; display: flex; align-items: center; justify-content: space-between; gap: 8px; color: var(--muted-strong); font-size: .68rem; font-weight: 800; }
.solution-product-action b { color: var(--teal); font-size: 1rem; }
.board-bottom { border-top: 1px solid var(--line); border-bottom: 0; }
.catalog-card .system-icon.system-logo { padding: 5px; background: rgba(255, 255, 255, .94); border: 1px solid rgba(255, 255, 255, .18); }
.catalog-card .system-icon.system-logo img { border-radius: 12px; }

@media (max-width: 620px) {
  .board-heading-premium { padding: 16px; }
  .board-heading-premium strong { font-size: .9rem; }
  .board-heading-premium small { font-size: .68rem; }
  .board-brand-logo { width: 46px; height: 46px; }
  .solution-showcase-grid { grid-template-columns: 1fr; gap: 10px; padding: 12px; }
  .solution-product-card { min-height: 116px; grid-template-columns: 62px minmax(0, 1fr); padding: 13px; gap: 10px 12px; }
  .solution-product-logo { width: 62px; height: 62px; border-radius: 17px; }
  .solution-product-copy strong { font-size: .94rem; }
  .solution-product-copy small { font-size: .68rem; }
}

/* Acabamento premium da marca e do destaque dos produtos. */
.site-header .brand-logo { width: 58px; height: 58px; padding: 4px; border-radius: 17px; filter: drop-shadow(0 5px 15px rgba(37, 214, 179, .16)); }
.site-header .brand-copy strong { font-size: 1.14rem; }
.site-footer { margin-bottom: 12px; padding: 27px 36px 18px; gap: 18px; align-items: center; }
.site-footer .brand-logo { width: 70px; height: 70px; padding: 4px; border-radius: 21px; filter: drop-shadow(0 7px 18px rgba(37, 214, 179, .2)); }
.site-footer .brand-copy strong { font-size: 1.13rem; }
.site-footer > small { padding-top: 12px; }
.solution-product-card { min-height: 170px; grid-template-columns: 92px minmax(0, 1fr); padding: 18px; }
.solution-product-logo { position: relative; width: 92px; height: 92px; overflow: visible; border: 2px solid rgba(37, 214, 179, .82); box-shadow: 0 0 0 4px rgba(37, 214, 179, .1), 0 0 25px rgba(37, 214, 179, .28); }
.solution-product-logo::after { content: ""; position: absolute; inset: -7px; z-index: 0; border: 1px solid rgba(37, 214, 179, .46); border-radius: 28px; box-shadow: 0 0 0 4px rgba(37, 214, 179, .06), 0 0 22px rgba(37, 214, 179, .24); pointer-events: none; }
.solution-product-logo::before { content: ""; position: absolute; top: -10px; right: -8px; z-index: 3; width: 11px; height: 11px; border: 2px solid #07141e; border-radius: 50%; background: #25d6b3; box-shadow: 0 0 12px rgba(37, 214, 179, .95); }
.solution-product-logo img { position: relative; z-index: 1; }
.solution-product-card.is-featured-system { grid-column: 1 / -1; grid-template-columns: 116px minmax(0, 1fr) auto; min-height: 190px; padding: 20px; border-color: rgba(37, 214, 179, .58); background: linear-gradient(135deg, rgba(22, 102, 91, .38), rgba(8, 27, 36, .98) 64%); box-shadow: 0 18px 38px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .05); }
.solution-product-card.is-featured-system .solution-product-logo { width: 116px; height: 116px; border-radius: 30px; }
.solution-product-card.is-featured-system .solution-product-logo::after { inset: -9px; border-radius: 36px; }
.solution-product-card.is-featured-system .solution-product-copy { grid-column: 2; grid-row: 1 / -1; }
.solution-product-card.is-featured-system .solution-product-copy strong { font-size: 1.22rem; }
.solution-product-card.is-featured-system .solution-product-copy small { max-width: 430px; font-size: .76rem; }
.solution-product-card.is-featured-system .solution-product-action { grid-column: 3; grid-row: 2; align-self: end; min-width: 94px; }
.catalog-card .system-icon.system-logo { position: relative; width: 72px; height: 72px; overflow: visible; border: 2px solid rgba(37, 214, 179, .72); box-shadow: 0 0 0 3px rgba(37, 214, 179, .08), 0 0 18px rgba(37, 214, 179, .18); }
.catalog-card .system-icon.system-logo::after { content: ""; position: absolute; inset: -5px; border: 1px solid rgba(37, 214, 179, .4); border-radius: 19px; box-shadow: 0 0 15px rgba(37, 214, 179, .17); pointer-events: none; }
.product-hero-card > .product-hero-logo { border-color: rgba(37, 214, 179, .62); box-shadow: 0 0 0 4px rgba(37, 214, 179, .1), 0 18px 42px rgba(0,0,0,.26), 0 0 24px rgba(37, 214, 179, .24); }

@media (max-width: 760px) {
  .site-header .brand-logo { width: 52px; height: 52px; }
  .site-footer { padding: 24px 18px 14px; }
  .site-footer .brand-logo { width: 60px; height: 60px; }
  .solution-product-card { min-height: 140px; grid-template-columns: 76px minmax(0, 1fr); padding: 15px; }
  .solution-product-logo { width: 76px; height: 76px; border-radius: 21px; }
  .solution-product-card.is-featured-system { grid-template-columns: 88px minmax(0, 1fr); min-height: 160px; }
  .solution-product-card.is-featured-system .solution-product-logo { width: 88px; height: 88px; border-radius: 24px; }
  .solution-product-card.is-featured-system .solution-product-action { grid-column: 2; grid-row: 2; min-width: 0; }
}

/* Texto comercial dos cards: curto, legível e sem estourar o quadro. */
.solution-product-copy { min-width: 0; max-width: 100%; overflow: hidden; }
.solution-product-index { display: -webkit-box; max-width: 100%; overflow: hidden; color: #90f4df; font-size: .61rem; font-weight: 900; letter-spacing: .06em; line-height: 1.22; text-overflow: ellipsis; text-transform: uppercase; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.solution-product-copy strong { display: -webkit-box; overflow: hidden; text-overflow: ellipsis; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.solution-product-copy small { max-width: 100%; overflow: hidden; text-overflow: ellipsis; word-break: break-word; }
.whatsapp-badge { width: 14px; height: 14px; flex: 0 0 auto; margin-right: 4px; color: #25d366; vertical-align: -2px; filter: drop-shadow(0 0 5px rgba(37, 211, 102, .62)); }

/* Os arquivos originais têm fundo escuro; a composição remove o retângulo sem alterar os assets oficiais. */
.solution-product-logo { background: rgba(4, 15, 22, .25); }
.solution-product-logo img { mix-blend-mode: screen; filter: drop-shadow(0 7px 11px rgba(0, 0, 0, .2)); }
.catalog-card .system-icon.system-logo { background: rgba(4, 15, 22, .25); }
.catalog-card .system-icon.system-logo img { mix-blend-mode: screen; filter: drop-shadow(0 5px 9px rgba(0, 0, 0, .2)); }

@media (max-width: 760px) {
  .solution-product-index { font-size: .57rem; }
}

/* Cards de produto: categoria clara, marca maior e benefício visível. */
.solution-product-card {
  min-height: 204px;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 14px 18px;
  padding: 20px;
}
.solution-product-logo { width: 104px; height: 104px; border-radius: 27px; }
.solution-product-index { display: block; max-height: 2.6em; color: #98f7e3; font-size: .59rem; letter-spacing: .065em; line-height: 1.3; }
.solution-product-index b { color: #d8fff6; }
.solution-product-copy strong { font-size: 1.08rem; line-height: 1.12; }
.solution-product-copy small { margin-top: 7px; font-size: .73rem; line-height: 1.36; -webkit-line-clamp: 3; }
.solution-product-badge {
  margin-top: 11px;
  border-color: rgba(37, 214, 179, .5);
  color: #b6ffed;
  background: linear-gradient(90deg, rgba(37, 214, 179, .18), rgba(37, 214, 179, .07));
  box-shadow: 0 0 16px rgba(37, 214, 179, .09);
}
.solution-product-card.is-featured-system {
  grid-template-columns: 136px minmax(0, 1fr) auto;
  min-height: 226px;
  padding: 24px;
}
.solution-product-card.is-featured-system .solution-product-logo { width: 136px; height: 136px; border-radius: 34px; }
.solution-product-card.is-featured-system .solution-product-logo::after { inset: -10px; border-radius: 40px; }
.solution-product-card.is-featured-system .solution-product-copy strong { font-size: 1.34rem; }
.solution-product-card.is-featured-system .solution-product-copy small { max-width: 500px; font-size: .8rem; }

@media (max-width: 760px) {
  .solution-product-card { min-height: 176px; grid-template-columns: 84px minmax(0, 1fr); gap: 12px 15px; padding: 17px; }
  .solution-product-logo { width: 84px; height: 84px; border-radius: 23px; }
  .solution-product-card.is-featured-system { grid-template-columns: 100px minmax(0, 1fr); min-height: 196px; padding: 19px; }
  .solution-product-card.is-featured-system .solution-product-logo { width: 100px; height: 100px; border-radius: 27px; }
  .solution-product-card.is-featured-system .solution-product-copy strong { font-size: 1.12rem; }
  .solution-product-card.is-featured-system .solution-product-copy small { font-size: .72rem; }
}

@media (max-width: 620px) {
  .solution-showcase-grid { gap: 12px; padding: 14px; }
  .solution-product-card { min-height: 174px; grid-template-columns: 82px minmax(0, 1fr); padding: 16px; gap: 11px 14px; }
  .solution-product-logo { width: 82px; height: 82px; border-radius: 22px; }
  .solution-product-index { font-size: .55rem; }
  .solution-product-copy strong { font-size: 1rem; }
  .solution-product-copy small { font-size: .68rem; line-height: 1.34; }
  .solution-product-badge { max-width: 100%; margin-top: 8px; padding: 4px 7px; font-size: .5rem; }
  .solution-product-card.is-featured-system { grid-template-columns: 96px minmax(0, 1fr); min-height: 192px; padding: 18px; }
  .solution-product-card.is-featured-system .solution-product-logo { width: 96px; height: 96px; border-radius: 26px; }
  .solution-product-card.is-featured-system .solution-product-copy strong { font-size: 1.08rem; }
}

@media (min-width: 901px) {
  .editorial-hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    gap: 42px;
    padding-top: 72px;
  }
  .editorial-hero .hero-copy { max-width: 960px; }
  .editorial-hero .solution-board { width: 100%; }
  .editorial-hero .solution-showcase-grid { gap: 16px; padding: 18px; }
}

/* Ferramenta pública compacta: o removedor aparece na apresentação sem virar outra página pesada. */
.editorial-hero .hero-copy {
  max-width: 1200px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .72fr);
  align-items: start;
  gap: clamp(26px, 4vw, 48px);
}
.hero-copy-main { min-width: 0; }
.hero-copy-main > p { max-width: 660px; color: var(--muted-strong); font-size: clamp(1.05rem, 2vw, 1.28rem); }
.hero-copy-main .eyebrow { font-size: .78rem; }
.free-remover-card {
  min-width: 0;
  padding: 23px;
  border: 1px solid rgba(37, 214, 179, .35);
  border-radius: 25px;
  background: linear-gradient(145deg, rgba(15, 48, 55, .82), rgba(8, 22, 31, .96));
  box-shadow: 0 22px 42px rgba(0, 0, 0, .23), inset 0 1px 0 rgba(255, 255, 255, .05);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.free-remover-card [hidden] { display: none !important; }
.free-remover-file-input { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; opacity: 0; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.free-remover-card.dragging { border-color: #a7ffeb; box-shadow: 0 0 0 4px rgba(37, 214, 179, .12), 0 25px 50px rgba(0, 0, 0, .3); transform: translateY(-2px); }
.free-remover-heading { min-width: 0; display: grid; grid-template-columns: 52px minmax(0, 1fr) auto; align-items: center; gap: 11px; }
.free-remover-heading .eyebrow { margin: 0 0 4px; font-size: .55rem; letter-spacing: .1em; }
.free-remover-kicker { color: #8fffe4; }
.free-remover-heading h2 { margin: 0; color: #fff; font-size: clamp(1.35rem, 2.5vw, 1.85rem); letter-spacing: -.05em; }
.free-remover-mark { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid rgba(37, 214, 179, .6); border-radius: 17px; color: #b9ffef; background: linear-gradient(135deg, rgba(37, 214, 179, .25), rgba(76, 141, 255, .16)); box-shadow: 0 0 22px rgba(37, 214, 179, .2); font-size: 1.5rem; }
.free-remover-free-tag { align-self: start; padding: 7px 9px; border: 1px solid rgba(37, 214, 179, .75); border-radius: 999px; color: #05251d; background: #8fffe4; box-shadow: 0 0 18px rgba(37, 214, 179, .22); font-size: .55rem; font-weight: 950; letter-spacing: .08em; }
.free-remover-intro { margin: 17px 0 11px; color: var(--muted-strong); font-size: .84rem; line-height: 1.48; }
.free-remover-quality-note { display: grid; gap: 3px; margin: 0 0 16px; padding: 10px 12px; border-left: 2px solid #25d6b3; border-radius: 0 12px 12px 0; background: rgba(37, 214, 179, .08); }
.free-remover-quality-note strong { color: #a7f9e5; font-size: .72rem; }
.free-remover-quality-note span { color: var(--muted); font-size: .68rem; line-height: 1.4; }
.free-remover-preview { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.free-remover-preview-tile { min-width: 0; }
.free-remover-preview-tile > span { display: block; margin-bottom: 6px; color: #a8bbc6; font-size: .61rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.free-remover-image-stage { height: 132px; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(255, 255, 255, .12); border-radius: 15px; background: rgba(3, 12, 18, .62); }
.free-remover-transparent { background-color: #17242b; background-image: linear-gradient(45deg, rgba(255,255,255,.08) 25%, transparent 25%), linear-gradient(-45deg, rgba(255,255,255,.08) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, rgba(255,255,255,.08) 75%), linear-gradient(-45deg, transparent 75%, rgba(255,255,255,.08) 75%); background-position: 0 0, 0 7px, 7px -7px, -7px 0; background-size: 14px 14px; }
.free-remover-image-stage img { width: 100%; height: 100%; object-fit: contain; }
.free-remover-placeholder { color: rgba(144, 244, 223, .72); font-size: 1.25rem; }
.free-remover-file-line { min-width: 0; display: grid; gap: 3px; margin: 10px 0 12px; }
.free-remover-file-line strong { overflow: hidden; color: #e8f7f5; font-size: .73rem; text-overflow: ellipsis; white-space: nowrap; }
.free-remover-file-line small { color: var(--muted); font-size: .65rem; }
.free-remover-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.free-remover-actions .btn { min-height: 36px; padding: 8px 11px; font-size: .68rem; }
.free-remover-actions .text-link { padding: 5px; border: 0; background: transparent; font-size: .68rem; }
.free-remover-download { color: #061611 !important; background: #a7f9e5 !important; border-color: #a7f9e5 !important; }
.free-remover-progress { display: grid; gap: 6px; margin-top: 13px; }
.free-remover-progress > div { display: flex; justify-content: space-between; gap: 8px; color: var(--muted); font-size: .62rem; }
.free-remover-progress > div b { color: #a7f9e5; }
.free-remover-progress > i { display: block; width: 100%; height: 5px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.09); }
.free-remover-progress > i::after { content: ""; display: block; width: var(--progress, 0%); height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--teal), #a7f9e5); transition: width .16s ease; }
.free-remover-status { min-height: 17px; margin: 10px 0 0; color: var(--muted); font-size: .65rem; line-height: 1.35; }
.free-remover-status.success { color: #a7f9e5; }
.free-remover-status.error { color: #ffc5c9; }

@media (max-width: 900px) {
  .editorial-hero .hero-copy { grid-template-columns: 1fr; max-width: 680px; margin-inline: auto; }
  .hero-copy-main > p { margin-inline: auto; }
  .free-remover-card { width: min(100%, 500px); margin-inline: auto; }
}

@media (min-width: 901px) {
  .free-remover-card { align-self: start; }
}

@media (max-width: 420px) {
  .free-remover-card { padding: 18px; border-radius: 21px; }
  .free-remover-heading { grid-template-columns: 45px minmax(0, 1fr); }
  .free-remover-mark { width: 45px; height: 45px; border-radius: 14px; }
  .free-remover-free-tag { grid-column: 2; justify-self: start; margin-top: -4px; }
  .free-remover-image-stage { height: 116px; }
  .free-remover-actions .btn { flex: 1 1 auto; }
}

/* Estrutura final: o painel ocupa a própria área e o rodapé nunca atravessa o conteúdo. */
body { display: flex; flex-direction: column; }
main { width: 100%; flex: 1 0 auto; }
.dashboard-active .site-footer { display: none; }
.dashboard-active .site-header { display: none; }
.dashboard-active .dashboard-page { min-height: 100dvh; padding-bottom: 0; }
.site-footer { position: relative; z-index: 1; align-items: start; grid-template-columns: minmax(0, 1fr) auto; margin-top: auto; }
.site-footer > div:first-child { min-width: 0; }
.site-footer .footer-brand { align-items: center; }
.footer-links { justify-self: end; min-width: 150px; }
.site-footer > small { width: 100%; }

@media (max-width: 760px) {
  .site-footer { grid-template-columns: 1fr; align-items: start; }
  .footer-links { justify-self: start; min-width: 0; grid-template-columns: repeat(2, auto); }
  .site-footer > small { width: auto; }
}

/* Fechamento comercial: cards mais leves e rodapé com informação útil, sem
   deixar a página parecer esticada ou terminar em um vazio grande. */
.plans-grid:not(.plans-grid-vetor) { width: min(100%, 1120px); margin-inline: auto; gap: 14px; }
.plans-grid:not(.plans-grid-vetor) .plan-card { padding: 22px; border-radius: 21px; }
.plans-grid:not(.plans-grid-vetor) .plan-card h3 { margin-bottom: 8px; }
.plans-grid:not(.plans-grid-vetor) .plan-card > p:not(.eyebrow):not(.secure-note) { min-height: 42px; font-size: .92rem; line-height: 1.42; }
.plans-grid:not(.plans-grid-vetor) .plan-price { margin: 18px 0; }
.plans-grid:not(.plans-grid-vetor) .plan-price strong { font-size: 2.35rem; }
.plans-grid:not(.plans-grid-vetor) .plan-limits { padding: 14px 0; margin-bottom: 16px; gap: 8px; font-size: .82rem; }
.plans-grid:not(.plans-grid-vetor) .plan-actions { gap: 7px; }
.plans-grid:not(.plans-grid-vetor) .plan-actions .btn { min-height: 44px; padding: 10px 14px; }
.plans-grid:not(.plans-grid-vetor) .secure-note { margin-top: 9px; font-size: .7rem; }

.site-footer {
  width: min(calc(100% - 32px), var(--content));
  margin: 38px auto 18px;
  padding: 30px 32px 18px;
  display: grid;
  grid-template-columns: minmax(250px, 1.25fr) minmax(120px, .65fr) minmax(250px, 1fr);
  gap: 30px;
  align-items: start;
  border: 1px solid rgba(111, 143, 166, .2);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(14, 30, 42, .9), rgba(9, 19, 30, .88));
  box-shadow: 0 18px 50px rgba(0, 0, 0, .16);
}
.footer-brand-column,
.footer-nav-column,
.footer-contact-column { min-width: 0; }
.site-footer .footer-brand { margin-bottom: 12px; }
.site-footer p { max-width: 430px; margin: 0; font-size: .82rem; line-height: 1.55; }
.site-footer .footer-note { display: block; max-width: 390px; margin-top: 10px; color: var(--muted); font-size: .73rem; line-height: 1.45; }
.footer-heading { margin: 4px 0 10px !important; color: #d7fff6; font-size: .68rem !important; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.site-footer .footer-links { display: grid; grid-template-columns: 1fr; gap: 2px; min-width: 0; justify-self: stretch; }
.site-footer .footer-links a { width: fit-content; padding: 5px 0; color: var(--muted-strong); font-size: .82rem; }
.site-footer .footer-links a:hover { color: white; }
.footer-contact-column > p:not(.footer-heading) { color: var(--muted); }
.footer-contact-link { display: inline-flex; max-width: 100%; margin-top: 12px; color: var(--teal); font-size: .78rem; font-weight: 800; overflow-wrap: anywhere; }
.footer-contact-link:hover { color: #8ff8e3; }
.site-footer > .footer-legal { grid-column: 1 / -1; width: 100%; margin: 0; padding-top: 14px; display: flex; justify-content: space-between; gap: 16px; border-top: 1px solid var(--line); color: var(--muted); font-size: .68rem; line-height: 1.4; }

@media (max-width: 980px) {
  .site-footer { grid-template-columns: minmax(0, 1.15fr) minmax(150px, .85fr); gap: 24px; }
  .footer-contact-column { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .plans-grid:not(.plans-grid-vetor) { width: 100%; }
  .plans-grid:not(.plans-grid-vetor) .plan-card { padding: 20px; }
  .plans-grid:not(.plans-grid-vetor) .plan-price strong { font-size: 2.15rem; }
  .site-footer { grid-template-columns: 1fr; margin-top: 28px; padding: 24px 20px 16px; gap: 20px; }
  .footer-contact-column { grid-column: auto; }
  .site-footer .footer-links { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px 18px; }
  .site-footer > .footer-legal { grid-column: auto; flex-direction: column; gap: 4px; }
}

/* Cards do catálogo: a página geral apresenta valor e benefício na página de
   venda; aqui o CTA leva direto para os planos, sem preço solto no resumo. */
.catalog-card .card-footer { width: 100%; }
.catalog-card .card-footer .btn { width: 100%; }
.catalog-card .feature-list { margin-bottom: 22px; }

/* Camada comercial das páginas de venda: benefício primeiro, detalhe depois. */
.section-head h2 em { color: var(--teal); font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
.solution-product-badge {
  width: fit-content;
  max-width: 100%;
  margin-top: 9px;
  padding: 5px 8px;
  overflow: hidden;
  border: 1px solid rgba(37, 214, 179, .28);
  border-radius: 999px;
  color: #9df5e1;
  background: rgba(37, 214, 179, .1);
  font-size: .57rem;
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1.15;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.catalog-special-note {
  display: grid;
  gap: 2px;
  margin-top: 3px;
  padding: 11px 13px;
  border-left: 2px solid var(--teal);
  border-radius: 0 12px 12px 0;
  background: rgba(37, 214, 179, .07);
}
.catalog-special-note strong { color: #a6f8e5; font-size: .68rem; letter-spacing: .07em; text-transform: uppercase; }
.catalog-special-note span { color: var(--muted); font-size: .76rem; }
.product-special-note {
  width: fit-content;
  max-width: min(100%, 620px);
  display: grid;
  gap: 2px;
  margin-top: 24px;
  padding: 13px 16px;
  border: 1px solid rgba(37, 214, 179, .28);
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(37, 214, 179, .14), rgba(37, 214, 179, .035));
}
.product-special-note strong { color: #a6f8e5; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.product-special-note span { color: var(--muted-strong); font-size: .84rem; }
.product-guide { padding-top: 54px; }
.product-guide-head { align-items: end; }
.product-guide-head > p { max-width: 430px; margin-bottom: 0; color: var(--muted-strong); }
.product-guide-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.product-guide-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(18, 38, 50, .76), rgba(8, 19, 28, .8));
  box-shadow: 0 15px 38px rgba(0, 0, 0, .13);
}
.product-guide-number { display: block; margin-bottom: 26px; color: var(--teal); font-size: .72rem; font-weight: 950; letter-spacing: .14em; }
.product-guide-card h3 { margin-bottom: 9px; font-size: 1.12rem; }
.product-guide-card p { max-width: 500px; margin-bottom: 0; color: var(--muted); font-size: .9rem; }
.product-access-details {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(37, 214, 179, .24);
  border-radius: var(--radius-lg);
  background: rgba(10, 27, 36, .78);
}
.product-access-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 24px;
  cursor: pointer;
  list-style: none;
}
.product-access-details summary::-webkit-details-marker { display: none; }
.product-access-details summary > span:first-child { display: grid; gap: 4px; }
.product-access-kicker { color: #8ff4dd; font-size: .68rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.product-access-details summary strong { font-size: 1.06rem; }
.product-access-details summary small { color: var(--muted); font-size: .8rem; }
.product-details-icon { width: 31px; height: 31px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid rgba(37, 214, 179, .34); border-radius: 50%; color: var(--teal); font-size: 1.15rem; transition: transform .2s ease; }
.product-access-details[open] .product-details-icon { transform: rotate(45deg); }
.product-role-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 13px; padding: 0 24px 24px; }
.product-role-card { min-width: 0; display: flex; gap: 11px; padding: 17px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255, 255, 255, .025); }
.product-role-mark { width: 26px; height: 26px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 9px; color: var(--teal); background: rgba(37, 214, 179, .1); font-size: .75rem; font-weight: 900; }
.product-role-card h3 { margin-bottom: 5px; font-size: .93rem; }
.product-role-card p { margin-bottom: 0; color: var(--muted); font-size: .78rem; line-height: 1.45; }

@media (max-width: 760px) {
  .product-guide { padding-top: 30px; }
  .product-guide-head { display: block; }
  .product-guide-head > p { margin-top: 15px; }
  .product-guide-grid { grid-template-columns: 1fr; gap: 12px; }
  .product-guide-card { min-height: 0; padding: 20px; }
  .product-guide-number { margin-bottom: 17px; }
  .product-access-details summary { align-items: flex-start; padding: 18px; }
  .product-access-details summary strong { font-size: .96rem; }
  .product-access-details summary small { line-height: 1.4; }
  .product-role-grid { grid-template-columns: 1fr; padding: 0 18px 18px; }
  .product-special-note { max-width: 100%; }
  .solution-product-badge { font-size: .52rem; }
}

.identity-model-grid,
.identity-products-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.identity-model-grid { margin-bottom: 18px; }
.identity-model-item,
.identity-product-cell {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .025);
}
.identity-model-item strong,
.identity-product-cell strong,
.identity-model-item span,
.identity-product-cell span,
.identity-product-cell small { display: block; min-width: 0; }
.identity-model-item strong,
.identity-product-cell strong { overflow: hidden; color: var(--text); font-size: .78rem; text-overflow: ellipsis; white-space: nowrap; }
.identity-model-item span,
.identity-product-cell span,
.identity-product-cell small { margin-top: 3px; color: var(--muted); font-size: .67rem; line-height: 1.3; }
.identity-product-cell.is-active { border-color: rgba(37, 214, 179, .32); background: rgba(37, 214, 179, .06); }
.identity-product-cell.is-empty { opacity: .62; }
.identity-model-logo,
.identity-product-logo { width: 27px; height: 27px; flex: 0 0 27px; border-radius: 9px; }
.identity-model-logo.system-logo img,
.identity-product-logo.system-logo img { width: 100%; height: 100%; object-fit: contain; border-radius: inherit; }
.customer-identity-card .card-footer { align-items: center; }

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

@media (max-width: 620px) {
  .identity-model-grid,
  .identity-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .identity-model-item,
  .identity-product-cell { padding: 10px; }
}

/* Hero do produto: usa o espaço disponível e mantém a marca legível em qualquer tela. */
.product-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(250px, .78fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(44px, 5.4vw, 72px);
}
.product-hero-card > .product-hero-content {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  max-width: none;
}
.product-hero-card > .product-hero-logo {
  position: relative;
  inset: auto;
  z-index: 2;
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  align-self: center;
  width: clamp(190px, 20vw, 270px);
  height: clamp(190px, 20vw, 270px);
  margin: 0;
  padding: 12px;
  overflow: visible;
  border-radius: 36px;
  background: rgba(255, 255, 255, .96);
  border: 2px solid rgba(99, 255, 221, .7);
  box-shadow: 0 0 0 7px rgba(37, 214, 179, .1), 0 26px 58px rgba(0, 0, 0, .34), 0 0 42px rgba(37, 214, 179, .24);
}
.product-hero-card > .product-hero-logo::before {
  content: "";
  position: absolute;
  inset: -15px;
  z-index: -1;
  border: 1px solid rgba(121, 255, 229, .38);
  border-radius: 49px;
  box-shadow: 0 0 0 8px rgba(37, 214, 179, .045), 0 0 35px rgba(37, 214, 179, .18);
  pointer-events: none;
}
.product-hero-card > .product-hero-logo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: contain;
}
.product-hero h1 { max-width: 760px; }
.product-hero-content > .product-identity-note,
.product-hero-content > .product-path-note { max-width: 100%; }

@media (max-width: 980px) {
  .product-hero-card {
    grid-template-columns: minmax(0, 1.08fr) minmax(190px, .72fr);
    gap: 30px;
    padding: 42px;
  }
  .product-hero-card > .product-hero-logo {
    width: 205px;
    height: 205px;
    padding: 10px;
  }
}

@media (max-width: 860px) {
  .product-hero-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 28px;
  }
  .product-hero-card > .product-hero-logo {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    width: 166px;
    height: 166px;
    border-radius: 30px;
  }
  .product-hero-card > .product-hero-content {
    grid-column: 1;
    grid-row: 2;
  }
}

@media (max-width: 760px) {
  .product-hero-card {
    gap: 20px;
    padding: 25px 18px 28px;
    border-radius: 25px;
  }
  .product-hero-card > .product-hero-logo {
    justify-self: center;
    width: 136px;
    height: 136px;
    padding: 8px;
    border-radius: 27px;
  }
  .product-hero-card > .product-hero-logo::before {
    inset: -10px;
    border-radius: 36px;
  }
  .product-hero-card > .product-hero-logo img { border-radius: 19px; }
  .product-hero h1 { font-size: clamp(2.35rem, 12vw, 4rem); line-height: .98; }
  .product-hero p { font-size: .98rem; }
  .product-feature-row { gap: 7px; margin-top: 20px; }
  .product-feature-row span { padding: 8px 10px; font-size: .72rem; }
}

/* A passagem do hero para o guia não deve parecer um fim de página. */
.product-hero { padding-bottom: 10px; }
.product-hero + .product-guide { padding-top: 18px; }
/* O guia e os planos são blocos contínuos da mesma página; não repetir o
   espaçamento vertical padrão de .section entre eles. */
.product-guide { padding-bottom: 22px; }
.product-guide + #planos { padding-top: 22px; }

@media (max-width: 760px) {
  .product-hero { padding-bottom: 8px; }
  .product-hero + .product-guide { padding-top: 14px; }
  .product-guide { padding-bottom: 18px; }
  .product-guide + #planos { padding-top: 18px; }
}

/* Entrada da Central: uma marca real, dois blocos bem encaixados e nenhum
   monograma solto ocupando espaço sem explicar o que é. */
.login-page.auth-page {
  min-height: clamp(520px, calc(100svh - 180px), 690px);
  gap: clamp(28px, 5vw, 64px);
  padding-top: clamp(28px, 5vw, 58px);
  padding-bottom: clamp(34px, 5vw, 58px);
}
.login-page .auth-intro {
  align-self: center;
  padding: 0;
}
.login-page .auth-intro > p:not(.eyebrow) { max-width: 500px; }
.login-page .auth-highlights { max-width: 520px; margin-top: 24px; gap: 10px; }
.login-page .auth-highlight { padding: 13px 14px; }
.login-page .form-card {
  width: min(100%, 520px);
  justify-self: end;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 26px;
}
.login-brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.login-brand-lockup img {
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
  padding: 6px;
  object-fit: contain;
  border: 1px solid rgba(37, 214, 179, .58);
  border-radius: 22px;
  background: #07141e;
  box-shadow: 0 0 0 5px rgba(37, 214, 179, .08), 0 16px 30px rgba(0, 0, 0, .28), 0 0 26px rgba(37, 214, 179, .16);
}
.login-brand-lockup span { display: grid; gap: 3px; }
.login-brand-lockup strong { color: white; font-size: 1.22rem; letter-spacing: -.03em; }
.login-brand-lockup small { color: var(--muted); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.login-page .login-monogram,
.login-page .auth-signature { display: none; }

/* O convite chega primeiro pela senha, mas o vínculo comercial é confirmado
   em uma segunda ação. Deixar esta orientação dentro do cartão evita que ela
   desapareça no desktop ou fique escondida depois do formulário no celular. */
.login-activation-card {
  display: grid;
  gap: 8px;
  margin: 18px 0 20px;
  padding: 15px 16px;
  border: 1px solid rgba(37, 214, 179, .34);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(37, 214, 179, .1), rgba(76, 141, 255, .07));
}
.login-activation-card .eyebrow { margin: 0; color: var(--teal); }
.login-activation-card > strong { color: #f5fffc; font-size: .96rem; }
.login-activation-card > p:not(.eyebrow) { margin: 0; color: var(--muted-strong); font-size: .8rem; line-height: 1.5; }
.login-activation-card .btn { justify-self: start; margin-top: 2px; }
.activation-missing .auth-intro { max-width: 650px; }
.activation-info-card { width: min(100%, 620px); justify-self: end; }
.activation-info-card > p:not(.eyebrow) { color: var(--muted-strong); }
.activation-info-card .button-row { margin-top: 18px; }

/* Rodapé de acesso: marca, três atalhos e a assinatura legal. */
.compact-footer {
  width: min(calc(100% - 32px), var(--content));
  margin: 26px auto 14px;
  padding: 18px 26px 13px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 13px 28px;
  align-items: center;
  border-radius: 20px;
}
.compact-footer .footer-brand { min-width: 0; margin: 0; }
.compact-footer .brand-logo { width: 48px; height: 48px; padding: 3px; border-radius: 15px; }
.compact-footer .brand-copy strong { font-size: 1rem; }
.compact-footer .brand-copy small { margin-top: 3px; font-size: .59rem; }
.compact-footer .footer-links {
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  justify-self: end;
  gap: 4px 18px;
}
.compact-footer .footer-links a { padding: 4px 0; font-size: .78rem; }
.compact-footer > .footer-legal {
  grid-column: 1 / -1;
  width: 100%;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: .65rem;
}

@media (max-width: 1050px) {
  .login-page.auth-page { min-height: 0; padding-top: 42px; padding-bottom: 44px; }
  .login-page .form-card { justify-self: stretch; width: min(100%, 680px); margin-inline: auto; }
}

@media (max-width: 760px) {
  .login-page.auth-page {
    width: min(calc(100% - 24px), 560px);
    min-height: 0;
    gap: 18px;
    padding-top: 26px;
    padding-bottom: 34px;
  }
  .login-page .auth-intro { padding: 0 4px; }
  .login-page .auth-intro h1 { font-size: clamp(2.3rem, 12vw, 3.45rem); line-height: 1.02; }
  .login-page .auth-intro > p:not(.eyebrow) { font-size: .96rem; }
  .login-page .auth-highlights { margin-top: 18px; }
  .login-page .auth-highlight { gap: 10px; padding: 11px 12px; border-radius: 14px; }
  .login-page .auth-highlight span { width: 30px; height: 30px; border-radius: 9px; }
  .login-page .auth-highlight p { font-size: .77rem; }
  .login-page .form-card { width: 100%; padding: 22px 18px; border-radius: 22px; }
  .login-brand-lockup { margin-bottom: 18px; }
  .login-brand-lockup img { width: 64px; height: 64px; flex-basis: 64px; border-radius: 19px; }
  .login-brand-lockup strong { font-size: 1.1rem; }
  .login-activation-card { margin: 16px 0 18px; padding: 14px; }
  .login-activation-card .btn { width: 100%; justify-self: stretch; text-align: center; }
  .activation-info-card { width: 100%; }
  .compact-footer {
    width: min(calc(100% - 24px), 560px);
    margin-top: 14px;
    padding: 16px 16px 12px;
    grid-template-columns: 1fr;
    gap: 12px;
    border-radius: 18px;
  }
  .compact-footer .footer-links { justify-self: start; gap: 2px 16px; }
  .compact-footer > .footer-legal {
    grid-column: auto;
    flex-direction: column;
    gap: 2px;
    padding-top: 9px;
  }
}
