/* Tipografia Inter (clone fiel do San Francisco/iOS) — auto-hospedada,
   idêntica em qualquer dispositivo. SF real fica como fallback. */

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter Tight";
  src: url("assets/fonts/inter-tight-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   AURA — site institucional
   Tema light (padrão) + tema dark ([data-theme="dark"])
   ============================================================ */

:root {
  --font-display: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
  --bg: #f8f7fc;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.78);
  --ink: #111135;
  --muted: #69677f;
  --soft: #aaa7bc;
  --violet: #46626f;
  --violet-deep: #304d5a;
  --lavender: #e7eff2;
  --cyan: #68c8f5;
  --mint: #67d9b8;
  --amber: #f5bf5b;
  --dark: #141329;
  --line: rgba(20, 30, 38, 0.10);
  --shadow: 0 28px 80px rgba(20, 30, 38, 0.10), 0 4px 18px rgba(20, 30, 38, 0.05);
  --shadow-strong: 0 34px 90px rgba(20, 30, 38, 0.18);
  --grad: linear-gradient(110deg, #46626f 0%, #a9d6e6 48%, #68c8f5 100%);
  --grad-text: linear-gradient(110deg, #2d4651 0%, #46626f 52%, #74aec2 100%);
  --glass-fill: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.62));
  --glass-line: rgba(70, 98, 111, 0.16);
  --glass-blur: blur(18px) saturate(140%);
  --glass-shadow: 0 30px 80px -34px rgba(33, 48, 56, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  --radius: 26px;
  --card-glass: rgba(255, 255, 255, 0.86);
  --nav-glass: rgba(255, 255, 255, 0.74);
  --chip-bg: rgba(255, 255, 255, 0.72);
  --input-bg: #ffffff;
  --featured-ink: #ffffff;
}

/* ---------- Tema dark (cristal: preto-azulado + aço/ciano, sem violeta) ---------- */

[data-theme="dark"] {
  --bg: #0a0e13;
  --surface: #10151c;
  --surface-soft: rgba(255, 255, 255, 0.035);
  --ink: #eef2f5;
  --muted: #9db0bc;
  --soft: #6e808c;
  --violet: #74aec2;
  --violet-deep: #a9d6e6;
  --lavender: rgba(116, 174, 194, 0.14);
  --cyan: #9adcf0;
  --mint: #7fd8c2;
  --amber: #d9c48a;
  --dark: #06090d;
  --line: rgba(255, 255, 255, 0.09);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42), 0 4px 18px rgba(0, 0, 0, 0.3);
  --shadow-strong: 0 34px 90px rgba(0, 0, 0, 0.55);
  --grad: linear-gradient(110deg, #46626f 0%, #74aec2 52%, #cfe6ef 100%);
  --grad-text: linear-gradient(110deg, #74aec2 0%, #a9d6e6 45%, #cfe6ef 100%);
  /* Vidro do concept-3d. O preenchimento e ate mais escuro que o painel
     opaco antigo: o que da leveza e o degrade + borda aco a 18% + sombra
     com recuo negativo, que faz flutuar em vez de virar laje. */
  --glass-fill: linear-gradient(180deg, rgba(16, 21, 28, 0.62), rgba(16, 21, 28, 0.42));
  --glass-line: rgba(157, 176, 188, 0.18);
  --glass-blur: blur(18px) saturate(140%);
  --glass-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  --card-glass: rgba(255, 255, 255, 0.04);
  --nav-glass: rgba(10, 14, 19, 0.72);
  --chip-bg: rgba(255, 255, 255, 0.05);
  --input-bg: rgba(255, 255, 255, 0.05);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100%;
  background: linear-gradient(180deg, #fcfbff 0%, var(--bg) 44%, #ffffff 100%);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
}

[data-theme="dark"] body {
  background:
    radial-gradient(1000px 520px at 82% -10%, rgba(116, 174, 194, 0.13), transparent 60%),
    radial-gradient(700px 480px at -8% 30%, rgba(154, 220, 240, 0.05), transparent 62%),
    linear-gradient(180deg, #0c1118 0%, var(--bg) 50%, #070a0e 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(70, 98, 111, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(104, 200, 245, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 80%);
}

[data-theme="dark"] body::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p, h1, h2, h3 { margin-top: 0; }

/* Tipografia San Francisco (mesma stack do sistema aura-os):
   --font-display em títulos, marca e destaques; --font-body no texto corrido. */
h1, h2, h3, .btn, .topbar-cta, .topbar-login, .plan-badge,
.kicker, .eyebrow, .lang-toggle button, .faq-list summary,
.number-card strong, .plan strong, .plan > p,
.workspace-metrics b, .workspace-top strong, .orbit-card strong,
.benefit-strip b, .agent-stack b, .footer-col h4 {
  font-family: var(--font-display);
}

h1, h2 { font-weight: 600; }
h3 { font-weight: 600; }

.number-card strong, .plan strong, .workspace-metrics b,
.benefit-strip b, .agent-stack b, .faq-list summary { font-weight: 600; }

/* ---------- Animação de entrada (intro) ---------- */

.intro {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
}

[data-theme="dark"] .intro { background: #0a0e13; }



.intro.done {
  transform: translateY(-101%);
  pointer-events: none;
}

.intro-inner {
  display: grid;
  justify-items: center;
  gap: 20px;
}

.intro-mark {
  width: clamp(150px, 22vw, 230px);
  height: clamp(150px, 22vw, 230px);
  overflow: visible;
  color: #74aec2;
  animation: introMark 1.35s cubic-bezier(0.22, 1, 0.36, 1) both, spinKnot 26s linear 1.35s infinite;
  filter: drop-shadow(0 26px 60px rgba(70, 98, 111, 0.35));
}

[data-theme="dark"] .intro-mark {
  color: #cfe6ef;
  filter: drop-shadow(0 26px 60px rgba(154, 220, 240, 0.28));
}





@keyframes introMark {
  from { opacity: 0; transform: scale(0.78) translateY(14px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}



body.intro-lock { overflow: hidden; }

/* ---------- Topbar ---------- */

.topbar {
  width: min(1180px, calc(100vw - 28px));
  margin: 0 auto;
  min-height: 104px;
  padding: 16px 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}

/* ---------- Marca (lockup vetorial com hierarquia) ---------- */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-sym {
  width: 54px;
  height: 54px;
  overflow: visible;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 22px rgba(70, 98, 111, 0.22));
}

[data-theme="dark"] .brand-sym {
  filter: drop-shadow(0 10px 22px rgba(94, 158, 210, 0.25));
}

.brand-text {
  display: grid;
  gap: 3px;
}

.brand-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

[data-theme="dark"] .brand-word {
  background: linear-gradient(110deg, #a9d6e6 0%, #74aec2 52%, #9adcf0 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.brand-sub {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink);
}

.brand-slogan {
  font-style: italic;
  font-size: 10.5px;
  color: var(--violet);
  letter-spacing: 0.04em;
}

.topbar nav {
  justify-self: center;
  display: flex;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px;
  background: var(--nav-glass);
  backdrop-filter: blur(18px);
}

.topbar nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
}

.topbar nav a:hover {
  background: var(--surface);
  color: var(--violet-deep);
}

.topbar-side {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  background: var(--nav-glass);
  backdrop-filter: blur(18px);
}

.lang-toggle button {
  border: 0;
  border-radius: 999px;
  min-height: 32px;
  padding: 0 12px;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.16s ease;
}

.lang-toggle button.active {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 18px rgba(70, 98, 111, 0.28);
}

.topbar-login {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--nav-glass);
  backdrop-filter: blur(18px);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  transition: 0.16s ease;
}

.topbar-login:hover {
  border-color: var(--violet);
  color: var(--violet-deep);
  transform: translateY(-1px);
}

.topbar-cta,
.btn {
  border: 0;
  border-radius: 999px;
  min-height: 46px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--grad);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 16px 36px rgba(70, 98, 111, 0.24);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.topbar-cta:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(70, 98, 111, 0.32);
}

.btn.ghost {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 12px 24px rgba(20, 30, 38, 0.06);
}

.btn.light {
  background: #fff;
  color: #141329;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

/* ---------- Estrutura ---------- */

.hero,
.benefit-strip,
.section,
.final-cta,
.site-footer {
  width: min(1180px, calc(100vw - 28px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 140px);
  padding: 18px 0 64px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--violet-deep);
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 14px;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 0 8px rgba(103, 217, 184, 0.14);
}

h1 {
  font-size: clamp(3.1rem, 6.5vw, 6.4rem);
  line-height: 0.96;
  font-weight: 500;
  margin: 0 0 22px;
}

h2 {
  font-size: clamp(2.2rem, 4.3vw, 4.6rem);
  line-height: 1;
  font-weight: 500;
  margin: 0 0 16px;
}

h3 {
  font-size: 22px;
  line-height: 1.1;
  font-weight: 600;
  margin: 0 0 10px;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.58;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 30px 0 20px;
}

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

.proof-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--chip-bg);
  color: var(--muted);
  padding: 9px 12px;
  font-size: 13px;
}

/* ---------- Hero visual ---------- */

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

.orbit-stage {
  position: absolute;
  inset: 0 0 auto;
  height: 400px;
  display: grid;
  place-items: center;
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(70, 98, 111, 0.18);
  border-radius: 50%;
}

.orbit-ring.one {
  width: 330px;
  height: 330px;
  transform: rotate(18deg) skew(-10deg);
  animation: spinSlow 18s linear infinite;
}

.orbit-ring.two {
  width: 430px;
  height: 220px;
  transform: rotate(-22deg);
  animation: breathe 7s ease-in-out infinite;
}

.orbit-mark {
  width: 216px;
  height: 216px;
  overflow: visible;
  color: #74aec2;
  filter: drop-shadow(0 26px 50px rgba(70, 98, 111, 0.25));
  animation: spinKnot 26s linear infinite;
}

[data-theme="dark"] .orbit-mark {
  color: #cfe6ef;
  filter: drop-shadow(0 22px 48px rgba(154, 220, 240, 0.22));
}

@keyframes spinKnot {
  to { transform: rotate(360deg); }
}

.orbit-card {
  position: absolute;
  width: 178px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--card-glass);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  padding: 15px;
  z-index: 2;
}

.orbit-card small,
.workspace-top small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 5px;
}

.orbit-card strong,
.workspace-top strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
}

.orbit-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.card-a { left: 14px; top: 66px; animation: floatSoft 8s ease-in-out infinite; }
.card-b { right: 6px; top: 108px; animation: floatSoft 9s ease-in-out infinite reverse; }
.card-c { right: 22px; bottom: -66px; animation: floatSoft 7.5s ease-in-out infinite; }

.workspace-card {
  position: absolute;
  left: 50%;
  right: 0;
  bottom: 0;
  transform: translateX(-50%);
  width: min(100%, 560px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(135deg, var(--card-glass), var(--surface-soft)),
    linear-gradient(120deg, rgba(70, 98, 111, 0.08), rgba(104, 200, 245, 0.08));
  box-shadow: var(--shadow-strong);
  padding: 22px;
  z-index: 1;
}

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

.live-dot {
  border-radius: 999px;
  background: rgba(103, 217, 184, 0.18);
  color: #0c7d5e;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 700;
}

[data-theme="dark"] .live-dot { color: #67d9b8; }

.workspace-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.workspace-metrics div,
.mini-feed p {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  padding: 13px;
}

.workspace-metrics b {
  display: block;
  color: var(--violet-deep);
  font-size: 28px;
}

.workspace-metrics span,
.mini-feed {
  color: var(--muted);
  font-size: 13px;
}

.mini-feed {
  display: grid;
  gap: 9px;
}

.mini-feed p {
  margin: 0;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 9px;
  align-items: center;
}

.mini-feed time { color: #bf7a17; }
[data-theme="dark"] .mini-feed time { color: var(--amber); }
.mini-feed b { color: var(--violet-deep); font-weight: 700; }

/* ---------- Benefícios / Números ---------- */

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 96px 0 0;
}

.benefit-strip article {
  min-height: 132px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: 0 16px 42px rgba(20, 30, 38, 0.07);
  padding: 22px;
}

[data-theme="dark"] .benefit-strip article {
  background: var(--card-glass);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.benefit-strip b {
  display: block;
  font-size: 22px;
  margin-bottom: 7px;
}

.benefit-strip span,
.section-heading p,
.module-card p,
.method-step p,
.security-card p,
.faq-list p,
.final-copy p,
.plan li,
.plan em {
  color: var(--muted);
  font-size: 15px;
}

.section {
  padding: 86px 0 0;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 28px;
}

.section-heading.centered {
  text-align: center;
  margin-inline: auto;
}

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

.number-card {
  min-height: 168px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 24px;
}

[data-theme="dark"] .number-card {
  background: var(--card-glass);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.number-card strong {
  display: block;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  line-height: 1;
  font-weight: 600;
  color: var(--violet-deep);
}

.number-card span {
  display: block;
  color: var(--muted);
  margin-top: 10px;
}

/* ---------- Módulos ---------- */

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.module-card,
.method-step,
.security-card,
.plan,
.lead-form,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 16px 48px rgba(20, 30, 38, 0.07);
}

[data-theme="dark"] .module-card,
[data-theme="dark"] .method-step,
[data-theme="dark"] .security-card,
[data-theme="dark"] .plan,
[data-theme="dark"] .lead-form,
[data-theme="dark"] .faq-list details {
  background: var(--card-glass);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.module-card {
  min-height: 250px;
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.symbol {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--lavender), var(--surface));
  border: 1px solid rgba(70, 98, 111, 0.14);
  position: relative;
  overflow: hidden;
}

.symbol::before,
.symbol::after {
  content: "";
  position: absolute;
}

.symbol.mission::before { width: 26px; height: 26px; border: 4px solid var(--violet); border-radius: 50%; }
.symbol.mission::after { width: 9px; height: 9px; background: var(--cyan); border-radius: 50%; }
.symbol.timeline::before { width: 6px; height: 34px; background: var(--violet); border-radius: 999px; }
.symbol.timeline::after { width: 28px; height: 6px; background: var(--cyan); border-radius: 999px; box-shadow: 0 13px 0 var(--mint), 0 -13px 0 var(--amber); }
.symbol.autopilot::before { width: 30px; height: 30px; border: 4px solid var(--violet); border-right-color: var(--cyan); border-radius: 50%; }
.symbol.autopilot::after { width: 10px; height: 10px; background: var(--cyan); clip-path: polygon(0 0, 100% 50%, 0 100%); right: 13px; top: 14px; }
.symbol.library::before { width: 30px; height: 22px; border: 3px solid var(--violet); border-radius: 7px; top: 17px; }
.symbol.library::after { width: 22px; height: 5px; background: var(--cyan); border-radius: 999px; top: 14px; left: 15px; }
.symbol.memory::before { width: 33px; height: 20px; border: 4px solid var(--violet); border-radius: 50%; transform: rotate(-22deg); }
.symbol.memory::after { width: 20px; height: 33px; border: 4px solid var(--cyan); border-radius: 50%; transform: rotate(20deg); }
.symbol.reports::before { width: 7px; height: 28px; background: var(--violet); border-radius: 999px; left: 16px; bottom: 13px; box-shadow: 11px -8px 0 var(--cyan), 22px -2px 0 var(--mint); }
.symbol.experts::before { width: 18px; height: 18px; background: var(--violet); border-radius: 50%; top: 11px; }
.symbol.experts::after { width: 34px; height: 16px; background: var(--cyan); border-radius: 20px 20px 8px 8px; bottom: 11px; }
.symbol.content::before { width: 32px; height: 22px; border: 3px solid var(--violet); border-radius: 8px; }
.symbol.content::after { width: 0; height: 0; border-left: 10px solid var(--cyan); border-top: 7px solid transparent; border-bottom: 7px solid transparent; left: 25px; top: 21px; }
.symbol.shield::before { width: 28px; height: 32px; background: var(--violet); clip-path: polygon(50% 0, 88% 14%, 82% 72%, 50% 100%, 18% 72%, 12% 14%); }
.symbol.approval::before { width: 32px; height: 32px; border: 4px solid var(--violet); border-radius: 50%; }
.symbol.approval::after { width: 19px; height: 9px; border-left: 4px solid var(--mint); border-bottom: 4px solid var(--mint); transform: rotate(-45deg); }
.symbol.handoff::before { width: 34px; height: 18px; border: 4px solid var(--violet); border-radius: 999px; transform: rotate(-18deg); }
.symbol.handoff::after { width: 34px; height: 18px; border: 4px solid var(--cyan); border-radius: 999px; transform: rotate(18deg); }

/* ---------- Agentes AURA ---------- */

.ai-band {
  margin-top: 96px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: center;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(70, 98, 111, 0.22), rgba(104, 200, 245, 0.12)),
    #141329;
  color: #fff;
  padding: 48px 44px;
  box-shadow: var(--shadow-strong);
  position: relative;
  overflow: hidden;
}

.ai-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(116, 174, 194, 0.9), transparent);
}

[data-theme="dark"] .ai-band {
  background:
    linear-gradient(135deg, rgba(116, 174, 194, 0.14), rgba(154, 220, 240, 0.05)),
    #0d141b;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), var(--shadow-strong);
}

[data-theme="dark"] .ai-band::before {
  background: linear-gradient(90deg, transparent, rgba(169, 214, 230, 0.8), transparent);
}

[data-theme="dark"] .ai-band .kicker { color: #a9d6e6; }
[data-theme="dark"] .agent-stack span { color: #35606f; }

.ai-band .kicker { color: #cdbfff; }

.ai-band > .ai-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.agent-stack {
  display: grid;
  gap: 12px;
}

.agent-stack article {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  padding: 18px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
}

.agent-stack span {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #fff;
  color: #304d5a;
  font-weight: 700;
}

.agent-stack b {
  display: block;
  font-size: 20px;
}

.agent-stack small {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  font-size: 12px;
}

/* ---------- Método ---------- */

.method-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}

.method-step {
  min-height: 230px;
  padding: 24px;
}

.method-step span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: var(--lavender);
  color: var(--violet-deep);
  margin-bottom: 18px;
}

/* ---------- Planos ---------- */

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.plan {
  min-height: 560px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.plan::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18%;
  right: 18%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(70, 98, 111, 0.55), transparent);
}

.plan.featured {
  background:
    linear-gradient(135deg, rgba(70, 98, 111, 0.30), rgba(104, 200, 245, 0.12)),
    #141329;
  color: #fff;
  transform: translateY(-16px);
  box-shadow: var(--shadow-strong);
}

[data-theme="dark"] .plan.featured {
  background:
    linear-gradient(160deg, rgba(116, 174, 194, 0.22), rgba(116, 174, 194, 0.04) 55%),
    #0f171e;
  box-shadow:
    inset 0 0 0 1px rgba(169, 214, 230, 0.40),
    0 30px 80px rgba(116, 174, 194, 0.16);
}

[data-theme="dark"] .plan::before {
  background: linear-gradient(90deg, transparent, rgba(116, 174, 194, 0.5), transparent);
}

[data-theme="dark"] .plan.featured::before {
  background: linear-gradient(90deg, transparent, rgba(169, 214, 230, 0.95), transparent);
}

[data-theme="dark"] .orbit-ring { border-color: rgba(154, 220, 240, 0.18); }

[data-theme="dark"] .topbar-cta,
[data-theme="dark"] .btn {
  box-shadow: 0 16px 36px rgba(116, 174, 194, 0.18);
}

[data-theme="dark"] .topbar-cta:hover,
[data-theme="dark"] .btn:hover {
  box-shadow: 0 20px 44px rgba(154, 220, 240, 0.24);
}

[data-theme="dark"] .lang-toggle button.active {
  box-shadow: 0 8px 18px rgba(116, 174, 194, 0.22);
}

[data-theme="dark"] input:focus,
[data-theme="dark"] select:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(116, 174, 194, 0.14);
}

[data-theme="dark"] .plan-badge { background: #eaf4f8; color: #23414d; }

[data-theme="dark"] .btn.light { background: #eef2f5; color: #0a0e13; }

.plan.featured:hover { transform: translateY(-20px); }

.plan.featured::before {
  background: linear-gradient(90deg, transparent, rgba(116, 174, 194, 1), transparent);
}

.plan > p {
  color: var(--violet-deep);
  font-weight: 700;
  margin-bottom: 10px;
}

.featured > p,
.featured em,
.featured li {
  color: rgba(255, 255, 255, 0.78);
}

.plan strong {
  color: var(--violet-deep);
  display: block;
  font-size: 30px;
  font-weight: 600;
  margin: 4px 0 14px;
}

.plan strong span {
  color: var(--muted);
  font-size: 14px;
}

.featured strong,
.featured strong span {
  color: #fff;
}

.plan em {
  min-height: 70px;
  display: block;
  font-style: normal;
}

.plan-badge {
  position: absolute;
  right: 18px;
  top: 18px;
  border-radius: 999px;
  background: #fff;
  color: #304d5a;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
}

ul {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}

.plan li {
  border-bottom: 1px solid var(--line);
  padding: 11px 0 11px 26px;
  position: relative;
}

.plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 14px;
  height: 8px;
  border-left: 2.5px solid var(--violet);
  border-bottom: 2.5px solid var(--violet);
  transform: rotate(-45deg);
}

.featured li { border-color: rgba(255, 255, 255, 0.14); }

.featured li::before {
  border-color: var(--cyan);
}

.plan-cta {
  margin-top: auto;
  padding-top: 20px;
}

.plan-cta .btn {
  width: 100%;
}

.plan:not(.featured) .plan-cta .btn {
  background: var(--surface);
  color: var(--violet-deep);
  border: 1px solid rgba(70, 98, 111, 0.35);
  box-shadow: none;
}

.plan:not(.featured) .plan-cta .btn:hover {
  background: var(--lavender);
  transform: translateY(-1px);
}

/* ---------- Pagamento (abaixo dos planos) ---------- */

.payment-row {
  margin-top: 34px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface-soft);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

[data-theme="dark"] .payment-row {
  background: var(--card-glass);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.payment-row p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.payment-flags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.pay-chip {
  min-height: 34px;
  min-width: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

[data-theme="dark"] .pay-chip {
  background: rgba(255, 255, 255, 0.05);
}

.pay-chip svg { display: block; height: 16px; width: auto; }

/* ---------- Segurança / FAQ ---------- */

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

.security-card {
  min-height: 226px;
  padding: 24px;
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0 22px;
}

.faq-list summary {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  font-size: 19px;
}

.faq-list summary::after {
  content: "+";
  color: var(--violet-deep);
  font-size: 26px;
}

.faq-list details[open] summary::after { content: "-"; }

.faq-list p {
  margin: -4px 0 20px;
}

/* ---------- CTA final ---------- */

.final-cta {
  margin-top: 88px;
  padding: 44px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: start;
  border-radius: 42px;
  background:
    linear-gradient(135deg, var(--card-glass), var(--surface-soft)),
    linear-gradient(120deg, rgba(70, 98, 111, 0.10), rgba(103, 217, 184, 0.09));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.lead-form {
  padding: 24px;
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
}

label span {
  color: var(--muted);
  font-size: 13px;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--input-bg);
  color: var(--ink);
  font: inherit;
  padding: 0 14px;
}

[data-theme="dark"] select option { background: #16142a; }

input:focus,
select:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(70, 98, 111, 0.12);
}

/* ---------- Footer ---------- */

.site-footer {
  padding: 52px 0 36px;
  margin-top: 72px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13.5px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 28px;
  margin-bottom: 34px;
}

.footer-brand .brand {
  margin-bottom: 14px;
}

.footer-brand .brand-sym {
  width: 44px;
  height: 44px;
}

.footer-brand .brand-word { font-size: 21px; }

.footer-brand p {
  margin: 0 0 18px;
  font-style: italic;
  color: var(--soft);
}

.newsletter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 340px;
}

.newsletter-status {
  flex-basis: 100%;
  min-height: 18px;
  color: var(--muted);
  font-size: 12px;
}

.newsletter input {
  min-height: 44px;
  border-radius: 999px;
  font-size: 13px;
}

.newsletter .btn {
  min-height: 44px;
  padding: 0 16px;
  font-size: 13px;
  flex: 0 0 auto;
}

.footer-col h4 {
  margin: 4px 0 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col button {
  display: block;
  background: none;
  border: 0;
  padding: 0;
  margin: 0 0 10px;
  color: var(--muted);
  font: inherit;
  font-size: 13.5px;
  cursor: pointer;
  text-align: left;
}

.footer-col a:hover { color: var(--violet-deep); }

.social-row {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.social-row a {
  width: 40px;
  height: 40px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--violet-deep);
  opacity: 1;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.social-row a:hover {
  transform: translateY(-2px);
  border-color: var(--violet);
  background: var(--surface-soft);
}

.social-row a[aria-disabled="true"] {
  color: var(--soft);
  opacity: 0.42;
  cursor: not-allowed;
  pointer-events: none;
}

.social-row a svg {
  width: 17px;
  height: 17px;
}

.social-note {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--soft);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

.footer-bottom p { margin: 0; }

.theme-link { color: var(--violet-deep); font-weight: 700; }

/* ---------- Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes spinSlow {
  to { transform: rotate(378deg) skew(-10deg); }
}

@keyframes breathe {
  0%, 100% { transform: rotate(-22deg) scale(1); opacity: 0.8; }
  50% { transform: rotate(-18deg) scale(1.07); opacity: 0.55; }
}

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

  .intro { display: none; }
}

/* ---------- Responsivo ---------- */

@media (max-width: 1040px) {
  .topbar {
    grid-template-columns: 1fr auto;
    min-height: 96px;
  }

  .topbar nav { display: none; }

  .hero,
  .ai-band,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .ai-copy { position: static; }

  .hero-visual { min-height: 690px; }
  .benefit-strip,
  .number-grid,
  .module-grid,
  .method-track,
  .plans-grid,
  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plan.featured { transform: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .topbar {
    width: calc(100vw - 18px);
    min-height: auto;
    padding: 12px 0 14px;
    gap: 10px;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .brand-sym {
    width: 44px;
    height: 44px;
  }

  .brand-slogan { display: none; }

  .topbar-side {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .topbar-cta,
  .topbar-login {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 13px;
  }

  .hero,
  .benefit-strip,
  .section,
  .final-cta,
  .site-footer {
    width: calc(100vw - 18px);
  }

  .hero {
    min-height: auto;
    padding-top: 22px;
  }

  h1 { font-size: clamp(2.9rem, 15vw, 4.4rem); }
  h2 { font-size: clamp(2rem, 10.5vw, 3.2rem); }

  .hero-visual { min-height: 640px; }
  .orbit-stage { height: 340px; }
  .orbit-ring.one { width: 250px; height: 250px; }
  .orbit-ring.two { width: 310px; height: 165px; }
  .orbit-mark { width: 155px; }
  .orbit-card { width: 148px; }
  .card-a { left: 0; top: 54px; }
  .card-b { right: 0; top: 126px; }
  .card-c { right: 4px; bottom: -46px; }

  .workspace-card { padding: 16px; }
  .workspace-metrics,
  .mini-feed p,
  .benefit-strip,
  .number-grid,
  .module-grid,
  .method-track,
  .plans-grid,
  .security-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .benefit-strip { padding-top: 72px; }

  .ai-band { margin-top: 72px; }

  .final-cta,
  .ai-band {
    padding: 24px;
    border-radius: 30px;
  }

  .plan { min-height: auto; }

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

  .actions,
  .btn {
    width: 100%;
  }

  .newsletter { max-width: none; width: 100%; }

  .footer-bottom {
    flex-direction: column;
  }
}

/* Versão clara: inversão da composição monocromática */
html[data-aura-preview="light-inversion"] {
  --bg: #f7f7f5;
  --surface: #ffffff;
  --surface-soft: #ededeb;
  --card-glass: rgba(255, 255, 255, 0.82);
  --ink: #090909;
  --muted: #5f5f5c;
  --soft: #969692;
  --violet: #252525;
  --violet-deep: #080808;
  --cyan: #737370;
  --mint: #cfcfcb;
  --amber: #747470;
  --line: rgba(0, 0, 0, 0.11);
  --line-strong: rgba(0, 0, 0, 0.22);
  --chip-bg: rgba(0, 0, 0, 0.025);
  --input-bg: #ffffff;
  --grad: linear-gradient(110deg, #050505 0%, #30302f 52%, #777773 100%);
  --grad-text: var(--grad);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.09);
  --shadow-strong: 0 34px 100px rgba(0, 0, 0, 0.14);
}

html[data-theme="light"],
html[data-theme="light"] body {
  background: #f7f7f5;
  color: var(--ink);
}

html[data-theme="light"] body::before {
  background:
    linear-gradient(rgba(0, 0, 0, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.5;
}

html[data-theme="light"] .brand-logo-img {
  filter: grayscale(1) brightness(0) contrast(1.4);
}

html[data-theme="light"] .topbar {
  color: #090909;
}

html[data-theme="light"] .eyebrow > span {
  background: #090909;
  box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.055);
}

html[data-theme="light"] .btn,
html[data-theme="light"] .topbar-cta {
  border-color: #090909;
  background: #090909;
  color: #fff;
}

html[data-theme="light"] .btn:hover,
html[data-theme="light"] .topbar-cta:hover {
  background: #30302f;
  color: #fff;
}

html[data-theme="light"] .btn.ghost {
  border-color: var(--line-strong);
  background: transparent;
  color: #090909;
}

html[data-theme="light"] .btn.ghost:hover {
  border-color: #090909;
  background: rgba(0, 0, 0, 0.055);
  color: #090909;
}

html[data-theme="light"] .lp-ico,
html[data-theme="light"] .proof-ico,
html[data-theme="light"] .inside-ico {
  color: #202020;
}

html[data-theme="light"] .kicker,
html[data-theme="light"] .plans-from,
html[data-theme="light"] .inside-tag,
html[data-theme="light"] .social-note {
  color: #5f5f5c;
}

html[data-theme="light"] main > .section::after {
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.18), transparent);
}

html[data-theme="light"] .chaos-chip {
  border-color: rgba(0, 0, 0, 0.18);
  background: rgba(0, 0, 0, 0.025);
}

html[data-theme="light"] .chaos-chip::before {
  color: #333331;
}

html[data-theme="light"] .chaos-line,
html[data-theme="light"] .how-track::before {
  background: linear-gradient(180deg, transparent, #4a4a48, transparent);
}

html[data-theme="light"] .inside-card::before {
  background: #262625;
}

html[data-theme="light"] .inside-card,
html[data-theme="light"] .faq-list details,
html[data-theme="light"] .plan-comparison {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

html[data-theme="light"] .system-demo {
  border-color: rgba(0, 0, 0, 0.15);
  background: #ffffff;
  color: #111;
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.13);
}

html[data-theme="light"] .demo-toolbar,
html[data-theme="light"] .demo-sidebar,
html[data-theme="light"] .demo-content,
html[data-theme="light"] .demo-request {
  border-color: rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

html[data-theme="light"] .demo-content {
  background-image:
    radial-gradient(circle at 100% 0%, rgba(0, 0, 0, 0.04), transparent 34%),
    linear-gradient(rgba(0, 0, 0, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.022) 1px, transparent 1px);
}

html[data-theme="light"] .demo-client-mark {
  border-color: rgba(0, 0, 0, 0.18);
  background: #111;
  color: #fff;
}

html[data-theme="light"] .demo-client small,
html[data-theme="light"] .demo-request small,
html[data-theme="light"] .demo-control,
html[data-theme="light"] .demo-progress button,
html[data-theme="light"] .demo-sidebar > p,
html[data-theme="light"] .demo-sidebar dt,
html[data-theme="light"] .demo-request p,
html[data-theme="light"] .demo-event p,
html[data-theme="light"] .demo-action span,
html[data-theme="light"] .demo-caption {
  color: #747470;
}

html[data-theme="light"] .demo-client strong,
html[data-theme="light"] .demo-progress button.active,
html[data-theme="light"] .demo-sidebar > strong,
html[data-theme="light"] .demo-sidebar dd,
html[data-theme="light"] .demo-status,
html[data-theme="light"] .demo-request h3,
html[data-theme="light"] .demo-event b {
  color: #111;
}

html[data-theme="light"] .demo-progress button.active {
  border-color: #111;
}

html[data-theme="light"] .demo-progress button.complete,
html[data-theme="light"] .demo-progress button.complete span,
html[data-theme="light"] .demo-event .lp-ico,
html[data-theme="light"] .system-demo[data-demo-index="5"] [data-demo-leads] {
  color: #30302f;
}

html[data-theme="light"] .demo-status span {
  background: #111;
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.06);
}

html[data-theme="light"] .demo-request {
  border-color: rgba(0, 0, 0, 0.12);
  background: #f7f7f5;
}

html[data-theme="light"] .demo-deliverables span,
html[data-theme="light"] .demo-control {
  border-color: rgba(0, 0, 0, 0.13);
  color: #555552;
}

html[data-theme="light"] .demo-event,
html[data-theme="light"] .system-demo[data-demo-index="3"] .demo-event {
  border-left-color: #252525;
  background: rgba(0, 0, 0, 0.04);
}

html[data-theme="light"] .demo-action button {
  background: #111;
  color: #fff;
}

html[data-theme="light"] .plan-comparison .recommended {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.075), rgba(0, 0, 0, 0.025));
  box-shadow: inset 1px 0 rgba(0, 0, 0, 0.09), inset -1px 0 rgba(0, 0, 0, 0.09);
}

html[data-theme="light"] .plan-comparison thead .recommended {
  border-top-color: #111;
}

html[data-theme="light"] .plan-comparison thead .recommended b,
html[data-theme="light"] .plan-check {
  background: #111;
  color: #fff;
}

html[data-theme="light"] .final-cta {
  border-color: #111;
  background: #0a0a0a;
  color: #f7f7f5;
}

html[data-theme="light"] .final-cta .kicker,
html[data-theme="light"] .final-cta p {
  color: #bdbdb9;
}

html[data-theme="light"] .final-cta .btn {
  border-color: #fff;
  background: #fff;
  color: #080808;
}

html[data-theme="light"] .site-footer {
  color: #62625f;
}

/* Paleta oficial em aço: mantém o layout atual e restaura apenas as cores */
html[data-theme="dark"] {
  --bg: #0a0e13;
  --surface: #10151c;
  --surface-soft: rgba(255, 255, 255, 0.035);
  --card-glass: rgba(255, 255, 255, 0.04);
  --ink: #eef2f5;
  --muted: #9db0bc;
  --soft: #6e808c;
  --violet: #74aec2;
  --violet-deep: #a9d6e6;
  --cyan: #9adcf0;
  --mint: #7fd8c2;
  --amber: #d9c48a;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(169, 214, 230, 0.25);
  --chip-bg: rgba(255, 255, 255, 0.05);
  --input-bg: rgba(255, 255, 255, 0.05);
  --grad: linear-gradient(110deg, #46626f 0%, #74aec2 52%, #cfe6ef 100%);
  --grad-text: linear-gradient(110deg, #74aec2 0%, #a9d6e6 45%, #cfe6ef 100%);
  /* Vidro do concept-3d. O preenchimento e ate mais escuro que o painel
     opaco antigo: o que da leveza e o degrade + borda aco a 18% + sombra
     com recuo negativo, que faz flutuar em vez de virar laje. */
  --glass-fill: linear-gradient(180deg, rgba(16, 21, 28, 0.62), rgba(16, 21, 28, 0.42));
  --glass-line: rgba(157, 176, 188, 0.18);
  --glass-blur: blur(18px) saturate(140%);
  --glass-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42), 0 4px 18px rgba(0, 0, 0, 0.3);
  --shadow-strong: 0 34px 90px rgba(0, 0, 0, 0.55);
}

html[data-theme="dark"] body {
  background:
    radial-gradient(1000px 520px at 82% -10%, rgba(116, 174, 194, 0.13), transparent 60%),
    radial-gradient(700px 480px at -8% 30%, rgba(154, 220, 240, 0.05), transparent 62%),
    linear-gradient(180deg, #0c1118 0%, #0a0e13 50%, #070a0e 100%);
}

html[data-theme="dark"] body::before {
  background:
    linear-gradient(rgba(169, 214, 230, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(169, 214, 230, 0.018) 1px, transparent 1px);
  background-size: 80px 80px;
}

html[data-theme="dark"] .brand-logo-img {
  filter: none;
}

html[data-theme="dark"] .eyebrow > span {
  background: #a9d6e6;
  box-shadow: 0 0 0 6px rgba(116, 174, 194, 0.1);
}

html[data-theme="dark"] .btn,
html[data-theme="dark"] .topbar-cta {
  border-color: transparent;
  background: var(--grad);
  color: #06121a;
  box-shadow: 0 14px 30px rgba(116, 174, 194, 0.18);
}

html[data-theme="dark"] .btn:hover,
html[data-theme="dark"] .topbar-cta:hover {
  background: linear-gradient(110deg, #5d8798, #a9d6e6);
  color: #06121a;
}

html[data-theme="dark"] .btn.ghost {
  border-color: rgba(169, 214, 230, 0.22);
  background: transparent;
  color: #dcebf0;
  box-shadow: none;
}

html[data-theme="dark"] .btn.ghost:hover {
  border-color: #a9d6e6;
  background: rgba(116, 174, 194, 0.08);
  color: #fff;
}

html[data-theme="dark"] .lp-ico,
html[data-theme="dark"] .proof-ico,
html[data-theme="dark"] .inside-ico {
  color: #a9d6e6;
}

html[data-theme="dark"] main > .section::after {
  background: linear-gradient(90deg, transparent, rgba(116, 174, 194, 0.34), transparent);
}

html[data-theme="dark"] .system-demo {
  border-color: var(--glass-line);
  background: var(--glass-fill);
}

html[data-theme="dark"] .demo-toolbar,
html[data-theme="dark"] .demo-sidebar,
html[data-theme="dark"] .demo-content,
html[data-theme="dark"] .demo-request {
  border-color: rgba(169, 214, 230, 0.13);
}

html[data-theme="dark"] .demo-content {
  background-image:
    radial-gradient(circle at 100% 0%, rgba(116, 174, 194, 0.09), transparent 32%),
    linear-gradient(rgba(169, 214, 230, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(169, 214, 230, 0.018) 1px, transparent 1px);
}

html[data-theme="dark"] .demo-client-mark {
  border-color: rgba(169, 214, 230, 0.3);
  background: linear-gradient(145deg, #24424e, #0c171d);
  color: #cfe6ef;
}

html[data-theme="dark"] .demo-progress button.active {
  border-color: #a9d6e6;
}

html[data-theme="dark"] .demo-progress button.complete,
html[data-theme="dark"] .demo-progress button.complete span,
html[data-theme="dark"] .demo-event .lp-ico,
html[data-theme="dark"] .system-demo[data-demo-index="5"] [data-demo-leads] {
  color: #a9d6e6;
}

html[data-theme="dark"] .demo-status span {
  background: #a9d6e6;
  box-shadow: 0 0 18px rgba(169, 214, 230, 0.65);
}

html[data-theme="dark"] .demo-event {
  border-left-color: #74aec2;
  background: rgba(116, 174, 194, 0.07);
}

html[data-theme="dark"] .system-demo[data-demo-index="3"] .demo-event {
  background: rgba(116, 174, 194, 0.12);
}

html[data-theme="dark"] .demo-action button {
  background: linear-gradient(115deg, #74aec2, #cfe6ef);
  color: #0a171d;
}

html[data-theme="dark"] .plan-comparison .recommended {
  background: linear-gradient(180deg, rgba(116, 174, 194, 0.14), rgba(116, 174, 194, 0.055));
  box-shadow: inset 1px 0 rgba(169, 214, 230, 0.16), inset -1px 0 rgba(169, 214, 230, 0.16);
}

html[data-theme="dark"] .plan-comparison thead .recommended {
  border-top-color: #a9d6e6;
}

html[data-theme="dark"] .plan-comparison thead .recommended b {
  background: #dcecf2;
  color: #23414d;
}

html[data-theme="dark"] .plan-check {
  background: rgba(127, 216, 194, 0.13);
  color: #7fd8c2;
}

/* ============================================================
   NOVA IDENTIDADE + NARRATIVA MOS (bloco consolidado — vence acima)
   ============================================================ */

/* --- Cores do nó vetorial por tema --- */
:root {
  --knot-c1: #46626F;
  --knot-c2: #74AEC2;
  --knot-c3: #9ADCF0;
}

[data-theme="dark"] {
  --knot-c1: #74aec2;
  --knot-c2: #a9d6e6;
  --knot-c3: #cfe6ef;
}

/* --- Lockup: hierarquia do modelo (sem linha; o respiro dela fica) --- */
.brand { gap: 14px; }

.brand-sym {
  width: 58px;
  height: 58px;
}

.brand-text { gap: 0; }

.brand-word {
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.brand-sub {
  margin-top: 4px;
  font-size: 8.6px;
  font-weight: 600;
  letter-spacing: 0.215em;
  color: var(--violet-deep);
}

.brand-slogan {
  margin-top: 9px; /* espaco da linha invisivel */
  font-size: 11px;
  font-style: italic;
  color: var(--soft);
}

[data-theme="dark"] .brand-word {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

[data-theme="dark"] .brand-sub { color: var(--violet-deep); }
[data-theme="dark"] .brand-sym { filter: drop-shadow(0 10px 22px rgba(116, 174, 194, 0.28)); }

.footer-brand .brand-sym { width: 46px; height: 46px; }
.footer-brand .brand-word { font-size: 23px; }
.footer-brand { margin-bottom: 6px; }
.footer-brand .newsletter { margin-top: 16px; }


.intro-flash {
  position: absolute;
  inset: 30%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(116, 174, 194, 0.4) 45%, transparent 70%);
  opacity: 0;
  pointer-events: none;
}

[data-theme="dark"] .intro-flash {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(154, 220, 240, 0.4) 45%, transparent 70%);
}

.intro.burst .intro-flash {
  animation: flashPop 0.6s ease-out both;
}

@keyframes flashPop {
  0% { opacity: 0; transform: scale(0.4); }
  18% { opacity: 1; }
  100% { opacity: 0; transform: scale(2.6); }
}

.intro-shards { position: absolute; inset: 0; pointer-events: none; }

.shard {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 26px;
  opacity: 0;
  background: linear-gradient(150deg, #ffffff 0%, var(--knot-c2) 45%, var(--knot-c1) 100%);
  clip-path: polygon(50% 0%, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0% 50%, 39% 39%);
  filter: drop-shadow(0 0 10px rgba(116, 174, 194, 0.75));
}

[data-theme="dark"] .shard {
  background: linear-gradient(150deg, #ffffff 0%, #cfe6ef 45%, #74aec2 100%);
  filter: drop-shadow(0 0 10px rgba(154, 220, 240, 0.8));
}

.intro.burst .shard {
  animation: shardFly var(--dur, 0.9s) cubic-bezier(0.16, 0.8, 0.35, 1) var(--delay, 0s) both;
}

@keyframes shardFly {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.4) rotate(0deg); }
  10% { opacity: 1; }
  70% { opacity: 1; }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(var(--sc, 1)) rotate(var(--rot, 240deg));
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro { display: none; }
}

/* --- Secao da dor (caos) --- */
.chaos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

.chaos-chip {
  border: 1px dashed rgba(220, 38, 38, 0.35);
  border-radius: 999px;
  background: rgba(220, 38, 38, 0.05);
  color: var(--muted);
  padding: 12px 18px;
  font-size: 14.5px;
  position: relative;
  transform: rotate(var(--tilt, 0deg));
}

.chaos-chip::before {
  content: "✕";
  color: #d24545;
  margin-right: 8px;
  font-size: 12px;
}

.chaos-chip:nth-child(odd) { --tilt: -1.3deg; }
.chaos-chip:nth-child(even) { --tilt: 1.2deg; }
.chaos-chip:nth-child(3n) { --tilt: 2deg; }

[data-theme="dark"] .chaos-chip {
  background: rgba(220, 38, 38, 0.08);
  border-color: rgba(240, 100, 100, 0.35);
}

.chaos-line {
  width: 2px;
  height: 72px;
  margin: 34px auto 26px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, var(--violet));
}

.chaos-resolve {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  max-width: 720px;
  margin: 0 auto;
  background: var(--grad-text, var(--grad));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --- Como funciona (7 passos) --- */
.how-track {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 720px;
  position: relative;
}

.how-track::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, var(--violet), var(--cyan));
  opacity: 0.35;
}

.how-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 14px 0;
  position: relative;
}

.how-step span {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--violet-deep);
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(20, 30, 38, 0.08);
  position: relative;
  z-index: 1;
}

[data-theme="dark"] .how-step span {
  background: #10161d;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.how-step b {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  margin: 6px 0 4px;
}

.how-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
}

/* --- Por dentro da operacao (4 transformacoes) --- */
.inside-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 16px aqui destoava do ritmo do resto da página (152px entre seções) e
     tornava esta a seção mais densa do site, justamente a que promete
     "você entende tudo em segundos". */
  gap: clamp(18px, 1.8vw, 26px);
  max-width: 980px;
  margin: 0 auto;
}

.inside-card {
  border: 1px solid var(--glass-line);
  border-radius: 16px;
  background: var(--glass-fill);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
  padding: clamp(26px, 2.2vw, 32px);
  min-height: 210px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.inside-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18%;
  right: 18%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(70, 98, 111, 0.5), transparent);
}

[data-theme="dark"] .inside-card {
  background: var(--card-glass);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .inside-card::before {
  background: linear-gradient(90deg, transparent, rgba(116, 174, 194, 0.55), transparent);
}

.inside-tag {
  display: inline-block;
  align-self: flex-start;
  border-radius: 999px;
  background: var(--lavender);
  color: var(--violet-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 12px;
  margin: 0 0 16px;
}

.inside-card h3 {
  font-size: 21px;
  line-height: 1.28;
  font-weight: 600;
  margin: 0 0 14px;
}

.inside-how {
  margin-top: auto;
  color: var(--violet-deep);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
}

.inside-note {
  text-align: center;
  color: var(--soft);
  font-size: 14px;
  margin: 26px auto 0;
  max-width: 640px;
}

/* --- CTA final centrado --- */
.final-cta {
  display: block;
  text-align: center;
}

.final-cta .actions { justify-content: center; }
.final-cta .final-copy { max-width: 780px; margin: 0 auto; }

/* --- Bandeiras visiveis no dark --- */
.pay-chip {
  background: #ffffff;
  border-color: rgba(20, 30, 38, 0.12);
  color: #1c2b33;
}

[data-theme="dark"] .pay-chip {
  background: #eef2f5;
  border-color: rgba(255, 255, 255, 0.25);
  color: #1c2b33;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.pay-chip-text { font-weight: 800; letter-spacing: 0.08em; }

/* --- Responsivo das novas secoes --- */
@media (max-width: 680px) {
  .brand-word { font-size: 25px; }
  .brand-sym { width: 48px; height: 48px; }
  .inside-grid { grid-template-columns: 1fr; }
  .how-track::before { left: 23px; }
  .how-step span { width: 46px; height: 46px; }
  .chaos-chip { font-size: 13px; padding: 10px 14px; }
}

/* correção: a intro nova usa fade, não slide */
.intro.done { transform: none; }


/* ============================================================
   MARCA DEFINITIVA — AURA.os (estrela + Vortania Expanded)
   ============================================================ */

.brand-logo-img {
  display: block;
  width: clamp(150px, 15vw, 208px);
  aspect-ratio: 1414 / 266;
  background: url("assets/aura-star-lockup-dark.png") no-repeat left center / contain;
  filter: drop-shadow(0 10px 24px rgba(70, 98, 111, 0.18));
}

[data-theme="dark"] .brand-logo-img {
  background-image: url("assets/aura-star-lockup-dark.png");
  filter: drop-shadow(0 10px 24px rgba(154, 220, 240, 0.16));
}

.footer-brand .brand-logo-img { width: 188px; }

/* planos sem preço individual */
.plans-from {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  margin: 14px 0 0;
  background: var(--grad-text, var(--grad));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.plan em { min-height: 54px; margin-top: 4px; }

.plan-price { display: grid; gap: 3px; margin: 14px 0 4px; }
.plan-price strong { font-family: var(--font-display); font-size: 1.12rem; }
.plan-price span { color: var(--muted); font-size: 0.78rem; }

.plans-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.plans-cta-row .btn { min-height: 54px; padding: 0 34px; font-size: 15px; }


/* ---------- Manifesto (essência) ---------- */
.manifesto-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 42px;
  background: var(--card-glass);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), var(--shadow);
  padding: clamp(34px, 6vw, 64px);
  position: relative;
  overflow: hidden;
}

.manifesto-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24%;
  right: 24%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(169, 214, 230, 0.85), transparent);
}

.manifesto-lines {
  display: grid;
  gap: 2px;
  margin: 0 0 22px;
  color: var(--soft);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.manifesto-lines span:nth-child(3) { color: var(--muted); }

.manifesto .manifesto-inner h2 {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  margin: 0 0 18px;
}

.manifesto-close {
  margin: 0 auto;
  max-width: 620px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  background: var(--grad-text, var(--grad));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


/* ============================================================
   RITMO EDITORIAL — identidade original, mais respiro entre blocos
   ============================================================ */

main > .section {
  padding-top: 108px;
  padding-bottom: 108px;
  border-top: 1px solid var(--line);
}

main > .section:first-of-type {
  border-top: 0;
}

.section-heading {
  margin-bottom: 42px;
}

@media (max-width: 860px) {
  main > .section {
    padding-top: 78px;
    padding-bottom: 78px;
  }
}

/* ---------- Páginas legais alinhadas à identidade oficial ---------- */

.legal-page {
  background: #f8f7fc;
  font-family: var(--font-body);
}

.legal-page .topbar {
  min-height: 92px;
}

.legal-page .brand-logo-img {
  width: clamp(164px, 16vw, 210px);
}

.legal-content {
  width: min(820px, calc(100vw - 36px));
  margin-inline: auto;
  padding: 58px 0 88px;
}

.legal-content .kicker {
  margin-bottom: 12px;
}

.legal-content h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 5vw, 4.4rem) !important;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.legal-content .lead {
  margin-bottom: 54px;
  font-size: 15px !important;
}

.legal-content h3 {
  margin: 38px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.22rem, 2.2vw, 1.55rem);
  line-height: 1.2;
}

.legal-content > p:not(.kicker):not(.lead) {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--muted) !important;
  font-size: 16px;
  line-height: 1.75;
}

.legal-page .site-footer {
  margin-top: 0;
}

@media (max-width: 700px) {
  .legal-page .topbar {
    min-height: 76px;
  }

  .legal-content {
    padding-top: 38px;
    padding-bottom: 68px;
  }

  .legal-content .lead {
    margin-bottom: 42px;
  }
}

/* ---------- Família de símbolos da identidade (traço aço, angular) ---------- */

.lp-ico {
  width: 34px;
  height: 34px;
  display: block;
  margin-bottom: 12px;
  fill: none;
  stroke: url(#aura-steel);
  stroke-width: 1.6;
  stroke-linejoin: round;
  stroke-linecap: round;
  overflow: visible;
}

.inside-ico {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 30px;
  height: 30px;
  margin: 0;
  opacity: 0.9;
}

.proof-ico {
  width: 15px;
  height: 15px;
  margin: 0 7px 0 0;
  stroke-width: 2;
  flex: 0 0 auto;
}

.proof-row span {
  display: inline-flex;
  align-items: center;
}

.manifesto-star {
  width: 30px;
  height: 30px;
  margin: 0 auto 18px;
}

/* estrela pequena antes de cada kicker (assinatura da marca) */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.kicker::before {
  content: "";
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1 C12.9 8, 16 11.1, 23 12 C16 12.9, 12.9 16, 12 23 C11.1 16, 8 12.9, 1 12 C8 11.1, 11.1 8, 12 1 Z"/></svg>') no-repeat center / contain;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 1 C12.9 8, 16 11.1, 23 12 C16 12.9, 12.9 16, 12 23 C11.1 16, 8 12.9, 1 12 C8 11.1, 11.1 8, 12 1 Z"/></svg>') no-repeat center / contain;
}

.section-heading.centered .kicker { justify-content: center; }

/* ============================================================
   LAYOUT EDITORIAL AURA — ritmo, hierarquia e leitura
   ============================================================ */

/* Uma grade mais larga e consistente, sem alterar a identidade. */
.hero,
.benefit-strip,
.section,
.final-cta,
.site-footer {
  width: min(1240px, calc(100vw - 48px));
}

.topbar {
  width: min(1240px, calc(100vw - 48px));
  min-height: 88px;
}

.hero {
  min-height: calc(100svh - 88px);
  grid-template-columns: minmax(0, 1.12fr) minmax(460px, 0.88fr);
  gap: clamp(44px, 6vw, 92px);
  padding: 34px 0 76px;
}

.hero-copy { max-width: 720px; }
.hero h1 {
  max-width: 700px;
  font-size: clamp(3.5rem, 6.3vw, 6.7rem);
  letter-spacing: -0.06em;
}

.hero .lead { max-width: 620px; }
.hero-visual { min-height: 620px; }

/* O conteúdo deixa de parecer uma pilha de blocos iguais. */
main > .section {
  position: relative;
  padding-top: clamp(104px, 11vw, 152px);
  padding-bottom: clamp(104px, 11vw, 152px);
}

main > .section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(116, 174, 194, 0.34), transparent);
}

.section-heading { max-width: 780px; margin-bottom: 56px; }
.section-heading.centered { text-align: left; margin-inline: 0; }
.section-heading.centered .kicker { justify-content: flex-start; }
.section-heading h2 {
  max-width: 780px;
  letter-spacing: -0.05em;
  text-wrap: balance;
}
.section-heading > p:last-child { max-width: 660px; }

/* Problema em duas colunas: mensagem de um lado, sinais do outro. */
.chaos {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  column-gap: clamp(48px, 8vw, 112px);
  align-items: start;
}
.chaos .section-heading { position: sticky; top: 124px; }
.chaos-grid { margin-top: 0; justify-content: flex-start; }
.chaos-line,
.chaos-resolve { grid-column: 2; }
.chaos-resolve { text-align: left; max-width: 620px; }

/* O manifesto funciona como uma pausa ampla, não como mais um cartão. */
.manifesto-inner {
  max-width: none;
  min-height: 540px;
  display: grid;
  place-content: center;
  border-radius: 0;
  border-inline: 0;
  box-shadow: none;
}
.manifesto .manifesto-inner h2 { max-width: 850px; margin-inline: auto; }

/* Benefícios em faixa editorial numerada. */
.solution .section-heading { margin-left: 8.333%; }
.benefit-strip {
  counter-reset: aura-benefit;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.benefit-strip article {
  counter-increment: aura-benefit;
  min-height: 250px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 34px clamp(24px, 3vw, 42px);
}
.benefit-strip article:last-child { border-right: 0; }
.benefit-strip .lp-ico { width: 40px; height: 40px; margin-bottom: 20px; }

/* Processo em duas colunas, com a explicação sempre visível. */
.how {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}
.how .section-heading { position: sticky; top: 124px; }
.how-track { margin: 0; }
.how-step {
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.how-step:first-child { padding-top: 0; }
.how-step:last-child { border-bottom: 0; }

/* Resultados em mosaico, com pesos diferentes. */
.inside .section-heading { margin-left: auto; max-width: 720px; }
.inside-grid {
  max-width: none;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  grid-template-rows: repeat(2, minmax(170px, auto));
}
.inside-card { min-height: 0; }
.inside-card:nth-child(1) { grid-column: 1 / 3; }
.inside-card:nth-child(2) { grid-column: 3 / 5; }
.inside-card:nth-child(3) { grid-column: 1 / 2; }
.inside-card:nth-child(4) { grid-column: 2 / 5; }
.inside-note { margin-top: 36px; }

/* Planos ficam subordinados ao diagnóstico, com leitura 2 x 2. */
.plans .section-heading { max-width: 900px; }
.plans-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 1040px;
  margin-left: auto;
}
.plan,
.plan.featured {
  min-height: 0;
  transform: none;
  padding: 30px;
}
.plan.featured:hover,
.plan:hover { transform: translateY(-4px); }
.plans-from { text-align: left; }
.plans-cta-row { justify-content: flex-end; max-width: 1040px; margin-left: auto; }
.payment-row { max-width: 1040px; margin-left: auto; }

.plan-comparison {
  max-width: 1120px;
  margin-left: auto;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: var(--shadow);
  scrollbar-width: thin;
  scrollbar-color: var(--violet) transparent;
}

.plan-comparison table {
  width: 100%;
  min-width: 850px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.plan-comparison th,
.plan-comparison td {
  border-bottom: 1px solid var(--line);
  padding: 18px 16px;
  text-align: center;
  vertical-align: middle;
}

.plan-comparison tr:last-child th,
.plan-comparison tr:last-child td { border-bottom: 0; }

.plan-comparison thead th {
  position: relative;
  height: 116px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--ink);
}

.plan-comparison thead th:first-child,
.plan-comparison tbody th {
  width: 26%;
  text-align: left;
}

.plan-comparison thead span {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
}

.plan-comparison thead small,
.plan-comparison td small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
}

.plan-comparison tbody th {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.plan-comparison td strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
}

.plan-comparison .recommended {
  background: linear-gradient(180deg, rgba(116, 174, 194, 0.14), rgba(116, 174, 194, 0.055));
  box-shadow: inset 1px 0 rgba(169, 214, 230, 0.16), inset -1px 0 rgba(169, 214, 230, 0.16);
}

.plan-comparison thead .recommended { border-top: 2px solid #a9d6e6; }
.plan-comparison thead .recommended b {
  display: inline-flex;
  margin-bottom: 8px;
  border-radius: 999px;
  background: #dcecf2;
  color: #23414d;
  padding: 4px 8px;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-check {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(127, 216, 194, 0.13);
  color: #7fd8c2;
  font-size: 18px;
  font-weight: 800;
}

.plan-none { color: var(--soft); font-size: 17px; }

/* FAQ: título como coluna de navegação e respostas como foco. */
.faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: start;
}
.faq .section-heading { position: sticky; top: 124px; }
.faq-list { margin: 0; max-width: none; }

/* Encerramento amplo e direto. */
.final-cta {
  width: min(1240px, calc(100vw - 48px));
  min-height: 520px;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  margin-top: 36px;
  border-radius: 40px;
  padding: clamp(54px, 9vw, 110px);
}
.final-copy h2 { letter-spacing: -0.05em; text-wrap: balance; }

.site-footer { padding-top: 86px; }
.footer-grid { grid-template-columns: minmax(300px, 1.7fr) repeat(3, 0.7fr); }

@media (max-width: 1040px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 34px; }
  .chaos,
  .how,
  .faq { grid-template-columns: 1fr; gap: 34px; }
  .chaos .section-heading,
  .how .section-heading,
  .faq .section-heading { position: static; }
  .chaos-line,
  .chaos-resolve { grid-column: 1; }
  .inside-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: none; }
  .inside-card:nth-child(n) { grid-column: auto; }
  .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); }
}

@media (max-width: 680px) {
  .hero,
  .benefit-strip,
  .section,
  .final-cta,
  .site-footer,
  .topbar { width: calc(100vw - 24px); }

  .hero { padding-top: 16px; gap: 20px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.4rem); }
  .hero-visual { min-height: 610px; }
  main > .section { padding-top: 84px; padding-bottom: 84px; }
  .section-heading { margin-bottom: 34px; }
  .solution .section-heading,
  .inside .section-heading { margin-left: 0; }
  .benefit-strip { grid-template-columns: 1fr; }
  .benefit-strip article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 28px 4px;
  }
  .benefit-strip article::before { margin-bottom: 24px; }
  .benefit-strip article:last-child { border-bottom: 0; }
  .manifesto-inner { min-height: 460px; padding-inline: 10px; }
  .inside-grid,
  .plans-grid { grid-template-columns: 1fr; }
  .plans-grid,
  .plans-cta-row,
  .payment-row { margin-left: 0; }
  .plan-comparison {
    width: calc(100vw - 24px);
    margin-left: 0;
    border-radius: 22px;
  }
  .plan-comparison th,
  .plan-comparison td { padding: 15px 12px; }
  .plans-cta-row { justify-content: stretch; }
  .final-cta { min-height: 460px; border-radius: 28px; margin-top: 12px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================================
   Clareza de narrativa + demonstração do produto
   ============================================================ */

.hero-copy h1 {
  max-width: 780px;
  font-size: clamp(3.5rem, 6.8vw, 7.5rem);
  line-height: 0.92;
  text-wrap: balance;
}

.hero-copy .lead {
  max-width: 680px;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  line-height: 1.55;
}

.system-demo {
  /* Vive dentro do hero: e o objeto mais importante da pagina e precisa
     ser o maior. A margem negativa vaza da coluna de texto. */
  width: min(1520px, 100vw - 24px);
  margin: clamp(30px, 4vh, 58px) 0 0;
  margin-left: calc(50% - min(1520px, 100vw - 24px) / 2);
  overflow: hidden;
  border: 1px solid var(--glass-line);
  border-radius: 16px;
  background: var(--glass-fill);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
  color: #edf5f7;
}

/* Chrome de navegador, como na cena 06 do concept. Sinaliza produto real
   sem o peso de uma moldura de device, e o portal e web mesmo. */
.demo-chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 24px;
  border-bottom: 1px solid var(--glass-line);
}

.demo-chrome i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(157, 176, 188, 0.26);
}

.demo-chrome-url {
  margin-left: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid var(--glass-line);
  background: rgba(255, 255, 255, 0.03);
  color: #8fa3ab;
  font-size: 10.5px;
  letter-spacing: 0.02em;
}

.demo-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(169, 214, 230, 0.13);
  background: rgba(255, 255, 255, 0.025);
}

.demo-client,
.demo-controls,
.demo-deliverables,
.demo-action {
  display: flex;
  align-items: center;
}

.demo-client { gap: 12px; }
.demo-client-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(169, 214, 230, 0.3);
  border-radius: 12px;
  background: linear-gradient(145deg, #24424e, #0c171d);
  color: #cfe6ef;
  font-size: 12px;
  font-weight: 800;
}

.demo-client small,
.demo-request small {
  display: block;
  margin-bottom: 3px;
  color: #7f98a3;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.demo-client strong { display: block; font-size: 14px; }
.demo-controls { gap: 8px; }
.demo-control {
  border: 1px solid rgba(169, 214, 230, 0.18);
  border-radius: 999px;
  background: transparent;
  color: #a9bdc5;
  padding: 8px 12px;
  font: inherit;
  font-size: 11px;
  cursor: pointer;
}
.demo-control:hover,
.demo-control:focus-visible { border-color: #a9d6e6; color: #fff; }

.demo-progress {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  padding: 0 24px;
  border-bottom: 1px solid rgba(169, 214, 230, 0.13);
}

.demo-progress button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #6f848d;
  padding: 17px 7px 15px;
  font: inherit;
  font-size: 11px;
  cursor: pointer;
  transition: color 220ms ease, border-color 220ms ease;
}

.demo-progress button span {
  color: #53666e;
  font-size: 9px;
  font-weight: 800;
}

.demo-progress button.active {
  border-color: #a9d6e6;
  color: #f6fbfc;
}

.demo-progress button.complete { color: #9fb5be; }
.demo-progress button.complete span { color: #a9d6e6; }

.demo-screen {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  min-height: 500px;
}

.demo-sidebar {
  padding: 30px 24px;
  border-right: 1px solid rgba(169, 214, 230, 0.13);
  background: rgba(255, 255, 255, 0.018);
}

.demo-sidebar > p {
  margin: 0 0 8px;
  color: #718892;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.demo-sidebar > strong {
  display: block;
  min-height: 46px;
  color: #e8f3f6;
  font-size: 17px;
  line-height: 1.25;
}

.demo-sidebar dl { margin: 42px 0 0; }
.demo-sidebar dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(169, 214, 230, 0.09);
}
.demo-sidebar dt { color: #8297a0; font-size: 12px; }
.demo-sidebar dd { margin: 0; color: #d5e8ee; font-size: 19px; font-weight: 750; }

.demo-content {
  position: relative;
  display: grid;
  align-content: start;
  gap: 20px;
  padding: clamp(26px, 4vw, 48px);
  background:
    radial-gradient(circle at 100% 0%, rgba(116, 174, 194, 0.09), transparent 32%),
    #0c1419;
}

.demo-status {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #afc2c9;
  font-size: 12px;
}
.demo-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a9d6e6;
  box-shadow: 0 0 18px rgba(169, 214, 230, 0.65);
}
.demo-status time { margin-left: auto; color: #61767f; }

.demo-request {
  border: 1px solid rgba(169, 214, 230, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  padding: clamp(22px, 3vw, 34px);
}
.demo-request h3 {
  max-width: 680px;
  margin: 0 0 10px;
  color: #f5fafb;
  font-size: clamp(1.45rem, 2.6vw, 2.35rem);
  line-height: 1.06;
}
.demo-request p { max-width: 690px; margin: 0; color: #9db0b7; line-height: 1.55; }
.demo-deliverables { flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.demo-deliverables span {
  border: 1px solid rgba(169, 214, 230, 0.14);
  border-radius: 999px;
  color: #afc4cb;
  padding: 7px 10px;
  font-size: 10px;
}

.demo-event {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px 20px;
  border-left: 2px solid #74aec2;
  background: rgba(116, 174, 194, 0.07);
  transition: transform 240ms ease, background 240ms ease;
}
.demo-event .lp-ico { width: 28px; height: 28px; color: #a9d6e6; }
.demo-event b { display: block; margin-bottom: 4px; color: #e4f0f3; font-size: 13px; }
.demo-event p { margin: 0; color: #8fa3ab; font-size: 12px; line-height: 1.45; }

.demo-action { justify-content: flex-start; flex-wrap: wrap; gap: 10px; }
.demo-action[hidden] { display: none; }
/* A nota empurra para a direita; os dois botoes ficam juntos, como no portal. */
.demo-action span { margin-left: auto; }
/* Secundario = "Solicitar alteracoes". Existe no sistema real e e o que
   fecha o ciclo de retrabalho, entao a demo nao pode esconder. */
.demo-action .demo-action-secondary {
  background: transparent;
  border: 1px solid var(--glass-line);
  color: #cfe6ef;
  font-weight: 600;
}
.demo-action button {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(115deg, #74aec2, #cfe6ef);
  color: #0a171d;
  padding: 12px 18px;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
}
.demo-action span { color: #82969e; font-size: 11px; }
.demo-caption { margin: 0; padding: 13px 22px; border-top: 1px solid rgba(169, 214, 230, 0.1); color: #7d939c; font-size: 10px; text-align: center; }

.system-demo[data-demo-index="3"] .demo-event { background: rgba(116, 174, 194, 0.12); transform: translateX(4px); }
.system-demo[data-demo-index="5"] [data-demo-leads] { color: #cfe6ef; text-shadow: 0 0 18px rgba(169, 214, 230, 0.35); }

.how-track-short { max-width: 900px; }
.how-track-short .how-step { min-height: 0; }

.plans .section-heading h2,
.inside .section-heading h2,
.how .section-heading h2,
.faq .section-heading h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.99;
}

.plan-comparison th,
.plan-comparison td { padding-block: 15px; }
.plan-comparison thead th { height: 104px; }

main > section:not(.hero):not(.demo-section) {
  content-visibility: auto;
  contain-intrinsic-size: 760px;
}

@media (max-width: 860px) {
  .demo-progress { overflow-x: auto; grid-template-columns: repeat(6, minmax(112px, 1fr)); }
  .demo-screen { grid-template-columns: 1fr; }
  .demo-sidebar {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid rgba(169, 214, 230, 0.13);
    padding: 20px;
  }
  .demo-sidebar > p,
  .demo-sidebar > strong { grid-column: 1; }
  .demo-sidebar dl { grid-column: 2; grid-row: 1 / 3; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 0; }
  .demo-sidebar dl div { display: block; border: 0; padding: 0; text-align: center; }
  .demo-sidebar dt { min-height: 30px; }
  .demo-sidebar dd { margin-top: 5px; }
}

@media (max-width: 680px) {
  .hero-copy h1 { font-size: clamp(2.8rem, 13vw, 4.4rem); line-height: 0.96; }
  .hero-copy .lead { font-size: 1rem; }
  .system-demo { margin-top: 34px; border-radius: 22px; }
  .demo-toolbar { align-items: flex-start; padding: 15px; }
  .demo-controls { flex-direction: column; align-items: stretch; }
  .demo-control { padding: 6px 9px; }
  .demo-progress { padding-inline: 12px; }
  .demo-screen { min-height: 0; }
  .demo-sidebar { grid-template-columns: 1fr; gap: 14px; }
  .demo-sidebar > p,
  .demo-sidebar > strong,
  .demo-sidebar dl { grid-column: 1; grid-row: auto; }
  .demo-sidebar > strong { min-height: 0; }
  .demo-content { padding: 20px 15px 24px; }
  .demo-request { padding: 20px; }
  .demo-action { align-items: flex-start; flex-direction: column; }
  .proof-row { gap: 10px; }
  .plans .section-heading h2,
  .inside .section-heading h2,
  .how .section-heading h2,
  .faq .section-heading h2 { font-size: clamp(2.25rem, 10vw, 3.6rem); }
}

@media (prefers-reduced-motion: reduce) {
  .demo-event,
  .demo-progress button { transition: none; }
}

/* Hero simplificado: cristal como elemento principal */
.hero-visual {
  min-height: 560px;
}

.hero-visual .orbit-stage {
  height: 540px;
}

.hero-visual .card-a {
  left: 0;
  top: 54px;
}

.hero-visual .card-b {
  right: 0;
  top: 116px;
}

.hero-visual .card-c {
  right: 18px;
  bottom: 12px;
}

@media (max-width: 1040px) {
  .hero-visual {
    width: min(680px, 100%);
    min-height: 570px;
    margin-inline: auto;
  }

}

@media (max-width: 680px) {
  .hero-visual {
    min-height: 440px;
  }

  .hero-visual .orbit-stage {
    height: 420px;
  }

  .hero-visual .orbit-card {
    width: 146px;
    padding: 12px;
  }

  .hero-visual .card-a { top: 18px; }
  .hero-visual .card-b { top: 104px; }
  .hero-visual .card-c { right: 4px; bottom: 0; }
}

/* ============================================================
   Direção monocromática — preto, branco e cinza claro
   Referências de ritmo: Linear, Raycast e Framer
   ============================================================ */

:root,
[data-theme="dark"] {
  --bg: #050505;
  --surface: #0b0b0b;
  --surface-soft: #111111;
  --card-glass: rgba(255, 255, 255, 0.035);
  --ink: #f5f5f3;
  --muted: #a5a5a2;
  --soft: #6d6d6a;
  --violet: #d9d9d6;
  --violet-deep: #f5f5f3;
  --cyan: #bcbcb8;
  --mint: #e2e2df;
  --amber: #b8b8b4;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --chip-bg: rgba(255, 255, 255, 0.035);
  --grad: linear-gradient(110deg, #ffffff 0%, #d7d7d3 52%, #9d9d99 100%);
  --grad-text: var(--grad);
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
  --shadow-strong: 0 36px 110px rgba(0, 0, 0, 0.58);
}

html,
body,
[data-theme="dark"] body {
  background: #050505;
  color: var(--ink);
}

body::before,
[data-theme="dark"] body::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.42;
}

.brand-logo-img,
[data-theme="dark"] .brand-logo-img {
  filter: grayscale(1) brightness(2.8) contrast(1.15);
}

.hero {
  display: block;
  /* Sem altura minima de tela cheia: o hero agora contem a propria demo,
     e reservar 100svh antes dela empurrava o produto para fora da dobra. */
  min-height: auto;
  padding: clamp(30px, 4vh, 60px) 0 clamp(80px, 11vh, 130px);
}

.hero-copy {
  display: grid;
  justify-items: center;
  max-width: 1120px;
  margin-inline: auto;
  text-align: center;
}

.hero-copy h1,
.hero h1 {
  max-width: 1080px;
  margin-inline: auto;
  font-size: clamp(4.6rem, 9vw, 10.2rem);
  line-height: 0.86;
  letter-spacing: -0.075em;
}

.hero-copy .lead,
.hero .lead {
  max-width: 720px;
  margin-inline: auto;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

.hero .actions,
.hero .proof-row {
  justify-content: center;
}

.eyebrow > span {
  background: #f5f5f3;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.07);
}

.btn,
.topbar-cta,
[data-theme="dark"] .btn,
[data-theme="dark"] .topbar-cta {
  border-color: #f5f5f3;
  background: #f5f5f3;
  color: #080808;
  box-shadow: none;
}

.btn:hover,
.topbar-cta:hover,
[data-theme="dark"] .btn:hover,
[data-theme="dark"] .topbar-cta:hover {
  background: #cfcfcb;
  color: #050505;
}

.btn.ghost {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--ink);
}

.btn.ghost:hover {
  border-color: #f5f5f3;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.lp-ico,
.proof-ico,
.inside-ico,
.manifesto-star {
  color: #d9d9d6;
  fill: currentColor;
  stroke: currentColor;
}

.kicker,
.plans-from,
.inside-tag,
.social-note,
.demo-request small,
.demo-client small {
  color: #b9b9b5;
}

main > .section::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
}

.chaos-line,
.how-track::before {
  background: linear-gradient(180deg, transparent, #d5d5d1, transparent);
}

.inside-card::before {
  background: #d7d7d3;
}

/* Vidro do concept tambem aqui: esta camada vem depois e vencia a regra
   base, deixando a tela como uma laje preta opaca. */
.system-demo {
  border-color: var(--glass-line);
  background: var(--glass-fill);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
}

.demo-toolbar,
.demo-sidebar,
.demo-content,
.demo-request {
  background-color: transparent;
}

/* O card do pedido precisa se destacar de dentro do vidro, entao ganha
   uma lamina propria em vez de fundo opaco. */
.demo-request {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
}

.demo-content {
  background-image:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.055), transparent 34%),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
}

.demo-client-mark {
  border-color: rgba(255, 255, 255, 0.24);
  background: linear-gradient(145deg, #2d2d2b, #0b0b0b);
  color: #fff;
}

.demo-progress button.active {
  border-color: #f0f0ed;
}

.demo-progress button.complete,
.demo-progress button.complete span,
.demo-event .lp-ico,
.system-demo[data-demo-index="5"] [data-demo-leads] {
  color: #dededb;
}

.demo-status span {
  background: #f1f1ee;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.45);
}

.demo-event {
  border-left-color: #d8d8d4;
  background: rgba(255, 255, 255, 0.055);
}

.system-demo[data-demo-index="3"] .demo-event {
  background: rgba(255, 255, 255, 0.09);
}

.demo-action .demo-action-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #e6e6e3;
}

.demo-action button {
  background: #f2f2ef;
  color: #080808;
}

.system-demo.is-updating .demo-request,
.system-demo.is-updating .demo-event,
.system-demo.is-updating .demo-status {
  animation: auraDemoEnter 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.system-demo.is-updating .demo-event { animation-delay: 70ms; }
.system-demo.is-updating .demo-status { animation-delay: 110ms; }

@keyframes auraDemoEnter {
  from { opacity: 0.25; transform: translateY(10px) scale(0.992); filter: blur(3px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

.plan-comparison .recommended {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035));
  box-shadow: inset 1px 0 rgba(255, 255, 255, 0.12), inset -1px 0 rgba(255, 255, 255, 0.12);
}

.plan-comparison thead .recommended {
  border-top-color: #f2f2ef;
}

.plan-comparison thead .recommended b,
.plan-check {
  background: #e5e5e1;
  color: #111;
}

.payment-flags {
  filter: grayscale(1);
}

@media (max-width: 680px) {
  .hero {
    min-height: auto;
    padding-top: 54px;
    padding-bottom: 84px;
  }

  .hero-copy h1,
  .hero h1 {
    max-width: 100%;
    font-size: clamp(3.35rem, 16vw, 5.2rem);
    line-height: 0.9;
  }
}

@media (prefers-reduced-motion: reduce) {
  .system-demo.is-updating .demo-request,
  .system-demo.is-updating .demo-event,
  .system-demo.is-updating .demo-status {
    animation: none;
  }
}

/* Aplicação final da paleta oficial em aço */
html[data-theme="dark"] {
  --bg: #0a0e13;
  --surface: #10151c;
  --surface-soft: rgba(255, 255, 255, 0.035);
  --card-glass: rgba(255, 255, 255, 0.04);
  --ink: #eef2f5;
  --muted: #9db0bc;
  --soft: #6e808c;
  --violet: #74aec2;
  --violet-deep: #a9d6e6;
  --cyan: #9adcf0;
  --mint: #7fd8c2;
  --amber: #d9c48a;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(169, 214, 230, 0.25);
  --chip-bg: rgba(255, 255, 255, 0.05);
  --input-bg: rgba(255, 255, 255, 0.05);
  --grad: linear-gradient(110deg, #46626f 0%, #74aec2 52%, #cfe6ef 100%);
  --grad-text: linear-gradient(110deg, #74aec2 0%, #a9d6e6 45%, #cfe6ef 100%);
  /* Vidro do concept-3d. O preenchimento e ate mais escuro que o painel
     opaco antigo: o que da leveza e o degrade + borda aco a 18% + sombra
     com recuo negativo, que faz flutuar em vez de virar laje. */
  --glass-fill: linear-gradient(180deg, rgba(16, 21, 28, 0.62), rgba(16, 21, 28, 0.42));
  --glass-line: rgba(157, 176, 188, 0.18);
  --glass-blur: blur(18px) saturate(140%);
  --glass-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

html[data-theme="dark"] body {
  background:
    radial-gradient(1000px 520px at 82% -10%, rgba(116, 174, 194, 0.13), transparent 60%),
    radial-gradient(700px 480px at -8% 30%, rgba(154, 220, 240, 0.05), transparent 62%),
    linear-gradient(180deg, #0c1118 0%, #0a0e13 50%, #070a0e 100%);
}

html[data-theme="dark"] body::before {
  background:
    linear-gradient(rgba(169, 214, 230, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(169, 214, 230, 0.018) 1px, transparent 1px);
  background-size: 80px 80px;
}

html[data-theme="dark"] .brand-logo-img { filter: none; }
html[data-theme="dark"] .eyebrow > span { background: #a9d6e6; box-shadow: 0 0 0 6px rgba(116, 174, 194, 0.1); }

html[data-theme="dark"] .btn,
html[data-theme="dark"] .topbar-cta {
  border-color: transparent;
  background: var(--grad);
  color: #06121a;
  box-shadow: 0 14px 30px rgba(116, 174, 194, 0.18);
}

html[data-theme="dark"] .btn:hover,
html[data-theme="dark"] .topbar-cta:hover { background: linear-gradient(110deg, #5d8798, #a9d6e6); color: #06121a; }

html[data-theme="dark"] .btn.ghost {
  border-color: rgba(169, 214, 230, 0.22);
  background: transparent;
  color: #dcebf0;
  box-shadow: none;
}

html[data-theme="dark"] .btn.ghost:hover { border-color: #a9d6e6; background: rgba(116, 174, 194, 0.08); color: #fff; }
html[data-theme="dark"] .lp-ico,
html[data-theme="dark"] .proof-ico,
html[data-theme="dark"] .inside-ico { color: #a9d6e6; }
html[data-theme="dark"] main > .section::after { background: linear-gradient(90deg, transparent, rgba(116, 174, 194, 0.34), transparent); }

html[data-theme="dark"] .system-demo { border-color: var(--glass-line); background: var(--glass-fill); }
html[data-theme="dark"] .demo-content {
  background-image:
    radial-gradient(circle at 100% 0%, rgba(116, 174, 194, 0.09), transparent 32%),
    linear-gradient(rgba(169, 214, 230, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(169, 214, 230, 0.018) 1px, transparent 1px);
}
html[data-theme="dark"] .demo-client-mark { border-color: rgba(169, 214, 230, 0.3); background: linear-gradient(145deg, #24424e, #0c171d); color: #cfe6ef; }
html[data-theme="dark"] .demo-progress button.active { border-color: #a9d6e6; }
html[data-theme="dark"] .demo-progress button.complete,
html[data-theme="dark"] .demo-progress button.complete span,
html[data-theme="dark"] .demo-event .lp-ico,
html[data-theme="dark"] .system-demo[data-demo-index="5"] [data-demo-leads] { color: #a9d6e6; }
html[data-theme="dark"] .demo-status span { background: #a9d6e6; box-shadow: 0 0 18px rgba(169, 214, 230, 0.65); }
html[data-theme="dark"] .demo-event { border-left-color: #74aec2; background: rgba(116, 174, 194, 0.07); }
html[data-theme="dark"] .system-demo[data-demo-index="3"] .demo-event { background: rgba(116, 174, 194, 0.12); }
html[data-theme="dark"] .demo-action button { background: linear-gradient(115deg, #74aec2, #cfe6ef); color: #0a171d; }

html[data-theme="dark"] .plan-comparison .recommended {
  background: linear-gradient(180deg, rgba(116, 174, 194, 0.14), rgba(116, 174, 194, 0.055));
  box-shadow: inset 1px 0 rgba(169, 214, 230, 0.16), inset -1px 0 rgba(169, 214, 230, 0.16);
}
html[data-theme="dark"] .plan-comparison thead .recommended { border-top-color: #a9d6e6; }
html[data-theme="dark"] .plan-comparison thead .recommended b { background: #dcecf2; color: #23414d; }
html[data-theme="dark"] .plan-check { background: rgba(127, 216, 194, 0.13); color: #7fd8c2; }
html[data-theme="dark"] .payment-flags { filter: none; }

/* ============================================================
   HARMONIZAÇÃO COM O CONCEPT-3D — mesma linguagem visual da intro
   (paleta aço, tipografia SF contida, painéis glass, glow discreto)
   Só design: nenhum texto, conteúdo ou layout é alterado.
   ============================================================ */

html[data-theme="dark"] {
  --line: rgba(157, 176, 188, 0.18);
  --line-strong: rgba(157, 176, 188, 0.32);
  --mint: #74aec2;
  --amber: #9db0bc;
  --card-glass: rgba(16, 21, 28, 0.52);
  --chip-bg: rgba(157, 176, 188, 0.06);
  --input-bg: rgba(157, 176, 188, 0.06);
  --radius: 16px;
  --shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.7), 0 4px 18px rgba(0, 0, 0, 0.25);
  --shadow-strong: 0 40px 100px -30px rgba(0, 0, 0, 0.8);
}

/* fundo: mesmo preto-azulado profundo do concept, brilho central discreto */
html[data-theme="dark"] body {
  background:
    radial-gradient(900px 600px at 50% 12%, rgba(157, 176, 188, 0.07), transparent 65%),
    radial-gradient(1000px 520px at 82% -10%, rgba(116, 174, 194, 0.08), transparent 60%),
    #0a0e13;
}

/* grão de filme — assinatura de textura da intro */
html[data-theme="dark"] body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Tipografia: SF contida, peso 600, tracking -0.01em ---------- */

html[data-theme="dark"] h1,
html[data-theme="dark"] h2,
html[data-theme="dark"] h3 {
  font-weight: 600;
  letter-spacing: -0.01em;
}

html[data-theme="dark"] .hero h1,
html[data-theme="dark"] .hero-copy h1 {
  max-width: 940px;
  font-size: clamp(2.9rem, 5.4vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

html[data-theme="dark"] h2,
html[data-theme="dark"] .section-heading h2,
html[data-theme="dark"] .demo-section .section-heading h2,
html[data-theme="dark"] .plans .section-heading h2,
html[data-theme="dark"] .inside .section-heading h2,
html[data-theme="dark"] .how .section-heading h2,
html[data-theme="dark"] .faq .section-heading h2 {
  font-size: clamp(1.7rem, 2.9vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
}

html[data-theme="dark"] .final-copy h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  letter-spacing: -0.015em;
  line-height: 1.1;
}

html[data-theme="dark"] .chaos-resolve {
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  letter-spacing: -0.01em;
}

/* kicker no padrão do concept: uppercase, espaçado, cor glow */
html[data-theme="dark"] .kicker {
  color: var(--violet);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

html[data-theme="dark"] .eyebrow {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

html[data-theme="dark"] .plans-from {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  letter-spacing: 0.02em;
}

/* ---------- Painéis glass do concept (borda fina + blur + luz interna) ---------- */

html[data-theme="dark"] .inside-card,
html[data-theme="dark"] .faq-list details,
html[data-theme="dark"] .plan,
html[data-theme="dark"] .method-step,
html[data-theme="dark"] .security-card,
html[data-theme="dark"] .lead-form,
html[data-theme="dark"] .payment-row,
html[data-theme="dark"] .manifesto-inner {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(16, 21, 28, 0.62), rgba(16, 21, 28, 0.42));
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

html[data-theme="dark"] .plan-comparison {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(16, 21, 28, 0.62), rgba(16, 21, 28, 0.42));
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

html[data-theme="dark"] .system-demo {
  border-color: var(--line);
  border-radius: 16px;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

html[data-theme="dark"] .final-cta {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(16, 21, 28, 0.62), rgba(16, 21, 28, 0.42));
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

html[data-theme="dark"] .demo-request { border-radius: 12px; }
html[data-theme="dark"] .orbit-card,
html[data-theme="dark"] .workspace-card { border-radius: 14px; }
html[data-theme="dark"] .inside-card::before {
  background: linear-gradient(90deg, transparent, rgba(116, 174, 194, 0.45), transparent);
  height: 1px;
}

/* filete superior dos cartões, fino como no concept */
html[data-theme="dark"] .plan::before,
html[data-theme="dark"] .manifesto-inner::before { height: 1px; }

/* ---------- Botões no formato do CTA do concept (pill de contorno + glow) ---------- */

html[data-theme="dark"] .btn,
html[data-theme="dark"] .topbar-cta {
  border: 1px solid rgba(116, 174, 194, 0.5);
  background: linear-gradient(180deg, rgba(116, 174, 194, 0.12), rgba(116, 174, 194, 0.02));
  color: #cfe6ef;
  font-weight: 500;
  letter-spacing: 0.04em;
  box-shadow: none;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

html[data-theme="dark"] .btn:hover,
html[data-theme="dark"] .topbar-cta:hover {
  transform: translateY(-2px);
  border-color: #cfe6ef;
  background: linear-gradient(180deg, rgba(116, 174, 194, 0.2), rgba(116, 174, 194, 0.05));
  color: #eef2f5;
  box-shadow: none;
}

html[data-theme="dark"] .btn.ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--muted);
}

html[data-theme="dark"] .btn.ghost:hover {
  border-color: var(--line-strong);
  background: rgba(157, 176, 188, 0.06);
  color: var(--ink);
}

html[data-theme="dark"] .topbar-login {
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* seletor de idioma igual ao lang-switch do concept */
html[data-theme="dark"] .lang-toggle button {
  color: var(--soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

html[data-theme="dark"] .lang-toggle button.active {
  background: linear-gradient(180deg, rgba(116, 174, 194, 0.24), rgba(116, 174, 194, 0.08));
  color: #cfe6ef;
  box-shadow: none;
}

/* ---------- Chips e etiquetas no padrão status-chip do concept ---------- */

/* etiqueta dos cartões: rótulo simples, como no concept — não é botão */
html[data-theme="dark"] .inside-tag {
  background: transparent;
  border: 0;
  color: var(--violet);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.14em;
  padding: 0;
}

/* textos dos cartões alinhados no fluxo (não ancorados no rodapé) */
html[data-theme="dark"] .inside-card h3 { margin-bottom: 8px; }
html[data-theme="dark"] .inside-how {
  margin-top: 0;
  color: var(--muted);
  font-weight: 400;
}

html[data-theme="dark"] .plan-badge,
html[data-theme="dark"] .plan-comparison thead .recommended b {
  background: transparent;
  border: 1px solid rgba(116, 174, 194, 0.4);
  color: var(--violet);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* selos de prova: texto simples com ícone — não são botões */
html[data-theme="dark"] .proof-row span {
  border: 0;
  background: transparent;
  padding: 6px 0;
  color: var(--muted);
  font-size: 13px;
}

/* ícones da identidade: traço de linha (nunca preenchidos) */
html[data-theme="dark"] .lp-ico,
html[data-theme="dark"] .proof-ico,
html[data-theme="dark"] .inside-ico,
html[data-theme="dark"] .manifesto-star {
  fill: none;
  stroke: currentColor;
}

/* caos: chips retos, aço apagado, com o ✕ vermelho de alerta */
html[data-theme="dark"] .chaos-chip {
  border: 1px dashed rgba(157, 176, 188, 0.32);
  background: rgba(157, 176, 188, 0.05);
  color: var(--soft);
  transform: none;
}

html[data-theme="dark"] .chaos-chip::before { color: #d24545; }

html[data-theme="dark"] .chaos-line {
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--violet));
}

/* check dos planos com o glow oficial, sem verde-menta */
html[data-theme="dark"] .plan-check {
  background: rgba(116, 174, 194, 0.14);
  color: #a9d6e6;
  font-weight: 600;
}

html[data-theme="dark"] .mini-feed time { color: var(--muted); }
html[data-theme="dark"] .live-dot {
  background: rgba(116, 174, 194, 0.14);
  color: #a9d6e6;
}

/* bandeiras de pagamento: vidro escuro monocromático, como o resto */
html[data-theme="dark"] .pay-chip {
  background: rgba(157, 176, 188, 0.07);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  box-shadow: none;
}

html[data-theme="dark"] .pay-chip svg {
  filter: grayscale(1) invert(1) brightness(1.15);
}

html[data-theme="dark"] .payment-flags { filter: none; }

/* ---------- Demonstração: mesmos acabamentos ---------- */

html[data-theme="dark"] .demo-action button {
  border: 1px solid rgba(116, 174, 194, 0.5);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(116, 174, 194, 0.18), rgba(116, 174, 194, 0.04));
  color: #cfe6ef;
  font-weight: 600;
  letter-spacing: 0.04em;
}

html[data-theme="dark"] .demo-client-mark { border-radius: 10px; }
html[data-theme="dark"] .demo-control { font-weight: 500; letter-spacing: 0.06em; }

/* seção de demonstração: subtítulo centralizado junto com o título */

/* divisórias de seção mais discretas, como as linhas do concept */
html[data-theme="dark"] main > .section::after {
  background: linear-gradient(90deg, transparent, rgba(157, 176, 188, 0.22), transparent);
}

/* FAQ mais próximo da leitura do concept */
html[data-theme="dark"] .faq-list summary {
  font-size: 16.5px;
  font-weight: 600;
}

html[data-theme="dark"] .faq-list summary::after { color: var(--violet); }

/* inputs */
html[data-theme="dark"] input,
html[data-theme="dark"] select {
  border-radius: 12px;
}

html[data-theme="dark"] .newsletter input { border-radius: 999px; }

/* topbar: vidro do concept */
html[data-theme="dark"] .topbar nav,
html[data-theme="dark"] .lang-toggle,
html[data-theme="dark"] .topbar-login {
  background: rgba(16, 21, 28, 0.55);
  border-color: var(--line);
}

html[data-theme="dark"] .topbar nav a { font-size: 13.5px; }
html[data-theme="dark"] .topbar nav a:hover {
  background: rgba(157, 176, 188, 0.08);
  color: var(--ink);
}

/* responsivo: hierarquia contida também no mobile */
@media (max-width: 680px) {
  html[data-theme="dark"] .hero h1,
  html[data-theme="dark"] .hero-copy h1 {
    font-size: clamp(2.1rem, 9.5vw, 2.9rem);
    line-height: 1.08;
  }

  html[data-theme="dark"] h2,
  html[data-theme="dark"] .demo-section .section-heading h2,
  html[data-theme="dark"] .plans .section-heading h2,
  html[data-theme="dark"] .inside .section-heading h2,
  html[data-theme="dark"] .how .section-heading h2,
  html[data-theme="dark"] .faq .section-heading h2 {
    font-size: clamp(1.45rem, 6.4vw, 1.9rem);
  }
}

/* Fundo Aurora — profundidade sem preto chapado */
html[data-theme="dark"] body { background: radial-gradient(1200px 700px at 50% -6%, rgba(116, 174, 194, 0.20), transparent 62%), radial-gradient(900px 620px at 86% 22%, rgba(154, 220, 240, 0.11), transparent 66%), linear-gradient(180deg, #0b1219 0%, #0a0e13 46%, #070a0e 100%); background-attachment: fixed; }
@media (max-width: 820px), (hover: none) { html[data-theme="dark"] body { background-attachment: scroll; } }

/* Mockup do produto no hero */
.device-showcase {
  position: relative;
  width: min(960px, 82vw);
  margin: 28px auto 0;
  isolation: isolate;
  perspective: 1400px;
}

.device-showcase::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 8% 4% -10%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, rgba(169, 214, 230, 0.3), rgba(116, 174, 194, 0.1) 42%, transparent 72%);
  filter: blur(34px);
  opacity: 0.9;
  pointer-events: none;
}

.device-label {
  position: absolute;
  z-index: 4;
  top: -18px;
  right: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(169, 214, 230, 0.32);
  border-radius: 999px;
  background: rgba(10, 14, 19, 0.86);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.34), 0 0 28px rgba(116, 174, 194, 0.13);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: #cfe6ef;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.device-label i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a9d6e6;
  box-shadow: 0 0 14px rgba(169, 214, 230, 0.9);
}

.device-shell {
  position: relative;
  padding: 14px 14px 18px;
  border: 1px solid rgba(207, 230, 239, 0.28);
  border-radius: 28px 28px 18px 18px;
  background: linear-gradient(145deg, #30383d 0%, #12171b 34%, #080b0e 100%);
  box-shadow:
    0 42px 100px rgba(0, 0, 0, 0.52),
    0 14px 38px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.9);
  transform: rotateX(1.4deg);
  transform-origin: center bottom;
}

.device-camera {
  position: absolute;
  z-index: 3;
  top: 5px;
  left: 50%;
  width: 5px;
  height: 5px;
  border: 1px solid rgba(169, 214, 230, 0.26);
  border-radius: 50%;
  background: #050708;
  box-shadow: 0 0 8px rgba(116, 174, 194, 0.18);
  transform: translateX(-50%);
}

.device-showcase .system-demo {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 16px 16px 10px 10px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.device-showcase .demo-toolbar { padding: 14px 18px; }
.device-showcase .demo-progress { padding-inline: 18px; }
.device-showcase .demo-progress button { padding-block: 12px 11px; }
.device-showcase .demo-screen {
  grid-template-columns: 188px minmax(0, 1fr);
  min-height: 360px;
}
.device-showcase .demo-sidebar { padding: 22px 18px; }
.device-showcase .demo-sidebar dl { margin-top: 24px; }
.device-showcase .demo-sidebar dl div { padding-block: 10px; }
.device-showcase .demo-content { gap: 14px; padding: 24px 28px 26px; }
.device-showcase .demo-request { padding: 22px 24px; }
.device-showcase .demo-request h3 { font-size: clamp(1.25rem, 2vw, 1.8rem); }
.device-showcase .demo-request p { font-size: 13px; }
.device-showcase .demo-deliverables { margin-top: 15px; }
.device-showcase .demo-event { padding: 14px 16px; }
.device-showcase .demo-caption { padding-block: 9px; }

.device-base {
  position: relative;
  z-index: 2;
  width: 106%;
  height: 18px;
  margin: -2px -3% 0;
  border: 1px solid rgba(207, 230, 239, 0.22);
  border-radius: 3px 3px 44px 44px;
  background: linear-gradient(180deg, #343b40 0%, #151a1e 52%, #080a0c 100%);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.device-base::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 16%;
  height: 5px;
  border-radius: 0 0 9px 9px;
  background: #080a0c;
  transform: translateX(-50%);
}

/* Icones dos cards em modulos consistentes, sem recortes ou formas soltas */
.inside-ico {
  top: 18px;
  right: 18px;
  box-sizing: content-box;
  width: 20px;
  height: 20px;
  padding: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(169, 214, 230, 0.1), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 24px rgba(0, 0, 0, 0.2);
  opacity: 1;
}

@media (max-width: 860px) {
  .device-showcase { width: min(760px, calc(100vw - 34px)); }
  .device-showcase .demo-screen { grid-template-columns: 1fr; min-height: 0; }
  .device-showcase .demo-sidebar { padding: 16px 18px; }
}

@media (max-width: 680px) {
  .device-showcase {
    width: 100%;
    margin-top: 42px;
    perspective: none;
  }
  .device-showcase::before { inset: 4% 0 -4%; filter: blur(24px); }
  .device-label { top: -15px; right: 14px; min-height: 31px; padding-inline: 11px; font-size: 8px; }
  .device-shell {
    padding: 9px;
    border-radius: 24px;
    transform: none;
  }
  .device-camera { top: 3px; }
  .device-showcase .system-demo { border-radius: 17px; }
  .device-showcase .demo-toolbar { padding: 14px; }
  .device-showcase .demo-progress { padding-inline: 10px; }
  .device-showcase .demo-content { padding: 18px 14px 20px; }
  .device-showcase .demo-request { padding: 18px; }
  .device-showcase .demo-event { grid-template-columns: 30px minmax(0, 1fr); gap: 10px; padding: 13px; }
  .device-showcase .demo-event .lp-ico { width: 22px; height: 22px; }
  .device-base { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .device-shell { transform: none; }
}
